@charset "UTF-8";

/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block;}

/* !Reseting
---------------------------------------------------------- */
body {
	font-family:"M PLUS 1, sans-serif", "pHelvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	-webkit-text-size-adjust: none;
	font-size: 18px;
	color: #000;
	line-height: 1.6em;
	word-wrap:break-word;/* 英数字折り返し */
	background: #fff;
}
body, div, pre, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, th, td
{ margin: 0; padding: 0;}

input, textarea
{ margin: 0; font-size: 100%;}

label
{ cursor: pointer;}

table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}

img
{ max-width: 100%; width: 100%; height: auto; vertical-align: top;}

ol, ul
{ list-style: none;}

h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: normal;}

a, input
{ outline: none; }

input, textarea
{ border-radius: 0; font-family:"M PLUS 1, sans-serif", "pHelvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; }

input[type="button"],input[type="submit"]
{ -webkit-appearance: none; background: none; border: none; padding: 0; cursor: pointer;}

*
{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;}
/* !Clearfix
---------------------------------------------------------- */
.Clear::after {
	content: "";
	display: block;
	clear: both;
}
.Clear::before {
	content: "";
	display: block;
	clear: both;
}
.Clear {
	display: block;
}

/* !contents
---------------------------------------------------------- */
html {
	overflow-y: scroll;
	scroll-behavior: smooth;
}

a {
	color: #0068b6;
	text-decoration: underline;
}

a:hover {
	color: #0068b6;
	text-decoration: none;
}

.row {
	width:100%;
	max-width: 1280px;
	margin: 0 auto;
}

p {
	margin-top: 0;
}

/* !Header
---------------------------------------------------------- */
/*---ナビゲーション---*/
#Navi_Wrap {
	height:100px;
	position: sticky;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	transition: 0.3s;
}

#Navi_Text_Wrap {
	float: right;
	margin-right:290px;
	line-height: 1em;
	padding-top: 34px;
}

#Navi_Text_Wrap span {
	font-size:10px;
	color:#000;
}

#Navi_Text ul {
	clear:both;
	width:100%;
	height:44px;
	display:table;
	margin:0 auto;
	z-index:1;
}

#Navi_Text ul li {
	display:table-cell;
	text-align:center;
	vertical-align: middle;
}

#Navi_Text ul li a {
	height:44px;
	font-size:16px;
	color:#000;
	font-weight: bold;
	text-decoration:none;
	padding:0 20px;
	position: relative;
	display: inline-block;
	transition: .3s;
}

#Navi_Text ul li a:hover {
	color: #0068b6;
	text-decoration: none;
}

/*--- ロゴ ---*/
#Logo {
	display: block;
	width: 200px;
	float: left;
	margin: 28px 0 0 28px;
}

/*--- TEL ---*/
.tel {
	position: fixed;
	z-index: 100;
	top: 24px;
	right: 24px;
	width: 240px;
	height: auto;
	text-align: center;
	font-size:12px;
	color: #000;
	font-weight: bold;
	line-height: 2.4em;
	letter-spacing: 0.12em;
}

.tel img {
	width: 240px;
}

/* !Footer
---------------------------------------------------------- */
footer {
	padding: 120px 0 80px;
}

/*--- お問い合わせ ---*/
#Contact_Box {
	width:100%;
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	position: relative;
	background: #f5f5f1;
	padding: 60px;
	margin-bottom:40px;
}

#Contact_Box .column_box {
	flex: 1;
	text-align: center;
	box-sizing: border-box;
}

#Contact_Box .column_box img {
	width: 300px;
	margin:20px 0 10px;
}

#Contact_Box::before {
	content: "";
	position: absolute;
	top: 40px;
	bottom: 40px;
	left: 50%;
	width: 1px;
	background: #d3d3d3;
}

/*--- 住所 ---*/
#FtrLogo {
	display: block;
	width: 120px;
	margin:0 auto;
}

#Company_Box {
	display: flex;
	justify-content:center;
	align-items:center;
	gap: 20px;
	margin-top:20px;
}

#Company_Box .box01 {
	font-size:18px;
	letter-spacing: 0.08em;
}

#Company_Box .box02 {
	font-size:14px;
	line-height: 1.6em;
}

/*---ページの先頭へ---*/
#back-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 5;
}

#back-top a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	border: 2px solid #000;
	border-radius: 50%;
	background: #fff;
	text-decoration: none;
}

/* 矢印 */
.hover-arrow {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	line-height: 1em;
	transform: translateY(-2px);
}

.hover-arrow span {
	display: block;
	color: #000;
	font-size: 14px;
	transition: transform 0.3s ease, color 0.3s ease;
	transform: scaleX(1.2) translateY(0);
}

.hover-arrow span:nth-child(2) {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	color: #0068b6;
}

#back-top:hover .hover-arrow span:nth-child(1) {
	transform: scaleX(1.2) translateY(-100%);
	color: #0068b6;
}

#back-top:hover .hover-arrow span:nth-child(2) {
	transform: scaleX(1.2) translateY(-100%);
}

/* !汎用コンテンツ
---------------------------------------------------------- */
/*--- ぱんくず ---*/
#Sitepath {
	width: 100%;
	max-width: 1280px;
	margin: 10px auto 40px;
}

#Sitepath li {
	float: left;
	font-size:14px;
	background: url(common/img/ico_sitepath.png) no-repeat right center;
	padding:0px 15px 0px 0px;
	margin:0px 5px 0px 0px;
}

#Sitepath li a {
	color: #000;
	text-decoration: underline;
}

#Sitepath li.noarrows {
	background: none;
}

#Sitepath li a:hover {
	color: #000;
	text-decoration: none;
}

/*--- 見出し ---*/
h2 .title {
	font-size:48px;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2em;
	letter-spacing: 0.08rem;
}

h2 .sub_tit {
	font-size:16px;
	color: #000;
}

h4 {
	font-size:24px;
	font-weight: bold;
	line-height: 1.4em;
}

/*--- アイコン（四角形） ---*/
.icon_square {
	position: relative;
	padding-left: 1.2em;
}

.icon_square::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 0.9em;
	height: 0.9em;
	background-color: #0068b6;
}

/*--- アイコン（外部リンク） ---*/
.icon_blank {
	display: inline-block;
	position: relative;
	padding-right: 24px;
}

.icon_blank::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background-image: url("common/img/ico_blank.png");
	background-size: contain;
	background-repeat: no-repeat;
}

/*--- ボタン（青色） ---*/
.btn_blue {
	width: 100%;
	max-width: 240px;
	display: block;
	position: relative;
	z-index: 2;
	font-size: 16px;
	color: #fff;
	line-height: 1.5em;
	text-align: center;
	text-decoration: none;
	padding: 12px 0;
	background: #009fd9;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50px;
}

.btn_blue::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.btn_blue:hover {
	color: #fff;
	text-decoration: none;
	background: #0068b6;
	transition: all .3s;
}

/*--- ボタン（黒色） ---*/
.btn_black {
	width: 100%;
	max-width: 240px;
	display: block;
	position: relative;
	z-index: 2;
	font-size: 16px;
	color: #fff;
	line-height: 1.5em;
	text-align: center;
	text-decoration: none;
	padding: 12px 0;
	background: #000;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50px;
}

.btn_black::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.btn_black:hover {
	color: #fff;
	text-decoration: none;
	background: #0068b6;
	transition: all .3s;
}

/*--- ボタン（青色_大きめ） ---*/
.btn_blue_big {
	width: 100%;
	max-width: 320px;
	display: block;
	position: relative;
	z-index: 2;
	font-size: 20px;
	color: #fff;
	line-height: 1.5em;
	text-align: center;
	text-decoration: none;
	padding: 18px 0;
	background: #009fd9;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50px;
}

.btn_blue_big::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.btn_blue_big:hover {
	color: #fff;
	text-decoration: none;
	background: #0068b6;
	transition: all .3s;
}

/*--- 角丸 ---*/
.border_radius {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

/*---リスト（黒丸）---*/
.Disc {
	margin-left:20px;
}

.Disc li {
	list-style-type:disc;
	line-height: 1.6em;
}

/* !Box
----------------------------------------------------------- */
/*--- 可変 ---*/
.box_column {
	margin: 0;
}
.box_column .col {
	float: left;
}
.box_column.col2 .col {
	margin: 0 2.2% 2.2% 0;
	width: 48.9%;
}
.box_column.col3 .col {
	margin: 0 2.2% 2.2% 0;
	width: 31.86%;
}
.box_column.col4 .col {
	margin: 0 2% 2% 0;
	width: 23.5%;
}
.box_column.col5 .col {
	margin: 0 1% 1% 0;
	width: 19.2%;
}
.box_column.col2 .col:nth-child(2n),
.box_column.col3 .col:nth-child(3n),
.box_column.col4 .col:nth-child(4n),
.box_column.col5 .col:nth-child(5n) {
	margin-right: 0;
}
.box_column.col2 .col:nth-child(2n+1),
.box_column.col3 .col:nth-child(3n+1),
.box_column.col4 .col:nth-child(4n+1),
.box_column.col5 .col:nth-child(5n+1) {
	clear: both;
}

@media screen and (max-width:811px){
	.box_column {
		margin: 0;
	}
	/*---2→1---*/
	.box_column.col2 .col {
		margin: 0 0 4%;
		width: 100%;
	}
	/*---3→1---*/
	.box_column.col3 .col {
		margin: 0 0 4%;
		width: 100%;
	}
	.box_column.col3 .col:nth-child(2n+1) {/*奇数*/
		clear: both;
	}
	.box_column.col3 .col:nth-child(2n) {/*偶数*/
		clear: none;
		float: right;
	}
	.box_column.col3 .col:nth-child(3n) {/*3の倍数*/
		float: left;
	}
	/*---4→2---*/
	.box_column.col4 .col {
		margin: 0 2% 4%;
		width: 46%;
	}
	.box_column.col4 .col:nth-child(2n+1) {/*奇数*/
		clear: both;
	}
	.box_column.col4 .col:nth-child(2n) {/*偶数*/
		clear: none;
		float: right;
	}
	.box_column.col4 .col:nth-child(4n) {/*4の倍数*/
		float: left;
	}
	/*---5→2---*/
	.box_column.col5 .col {
		margin: 0 2% 4%;
		width: 46%;
	}
	.box_column.col5 .col:nth-child(2n+1) {/*奇数*/
		clear: both;
	}
	.box_column.col5 .col:nth-child(2n) {/*偶数*/
		clear: none;
		float: right;
	}
	.box_column.col5 .col:nth-child(5n) {/*5の倍数*/
		float: left;
	}

}

/* !Fonts -------------------------------------------------------------- */
.fwB { font-weight: bold;}
.fz28 { font-size: 28px; line-height: 1.6em;}
.fz48 { font-size: 48px; line-height: 1.6em;}

/* !Margin ------------------------------------------------------------------ */
.mt10 { margin-top:10px !important;}
.mt20 { margin-top:20px !important;}
.mt30 { margin-top:30px !important;}
.mt40 { margin-top:40px !important;}
.mt50 { margin-top:50px !important;}
.mt60 { margin-top:60px !important;}
.mt80 { margin-top:80px !important;}
.mt100 { margin-top:100px !important;}

/* !Width ------------------------------------------------------------------- */
.w960px {
	width:100%;
	max-width: 960px;
	margin: 0 auto;
}

/* !BgColor -------------------------------------------------------------- */
.bgBlue { background: #0068b6;}
.bgLight-blue { background: #009fd9;}
.bgGreen { background: #00a63c;}

/* !Inline Align ------------------------------------------------------------ */
.taC { text-align: center !important;}
.taC_spL { text-align: center !important;}
.taL_spC { text-align: left !important;}
.taR_spL { text-align: right !important;}
.taL { text-align: left !important;}
.taR { text-align: right !important;}
.ImgC { display: block; margin-left: auto; margin-right: auto;}

/* !Floats ------------------------------------------------------------------ */
.flL { display: inline; float: left;}
.flR { display: inline; float: right;}




/* ==========================================================
トップページ
========================================================== */
/*--- カバー画像 ---*/
#Cover_Main {
	width: 100%;
	height: 84vh;
	background: url(common/img/main.jpg) no-repeat center;
	background-size: cover;
	position: relative;
}

#Cover_Main .Catchphrase {
	font-size: 28px;
	font-weight: bold;
	color: #000;
	line-height: 1.6em;
	letter-spacing: 0.4rem;
	position: absolute;
	top: 16%;
	left: 26%;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}

/* !ニュース
---------------------------------------------------------- */
#Area_News {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 0;
}

#Frame_News {
	border-top: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	margin: 40px 0 50px;
	padding: 60px 0 50px;
}

/*---横並び（お知らせ）---*/
#news_flex {
	width: 90%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.news_box {
	cursor: pointer;
	overflow: hidden;
}

.news_box img {
	height:auto;
}

.news_box .date {
	font-size: 15px;
	line-height: 1;
	margin: 10px 0 6px;
}

.news_box .cont {
	font-size: 16px;
	line-height: 1;
	/*---文字数制限---*/
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1; /* 任意の行数 */
}

.news_box a {
	display: block;
	color: #000;
	text-decoration:none;
}

.news_box:hover {
	transition: all .2s linear;
}

/*--- 画像 hover ---*/
.img-wrapper {
	cursor: pointer;
	aspect-ratio: 4 / 3; /* 画像の比率 */
	overflow: hidden;
}

.img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.news_box:hover .img-wrapper img {
	transform: scale(1.1);
}

/*--- リンク（下線） ---*/
.news_text{
	position: relative;
	display: inline-block;
}

.news_text::after {
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.news_box:hover .news_text:after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* !セイミヤについて
---------------------------------------------------------- */
#Area_About {
	padding: 40px 0 80px;
}

#Area_About .ContL {
	width: 58%;
	float: left;
}

#Area_About .ContR {
	width: 36%;
	float: right;
	padding-top: 40px;
}

/* !リフォーム
---------------------------------------------------------- */
#Area_Reform {
	background: #f5f5f1;
	padding: 80px 0;
}

/*--- 基準 ---*/
.Posi_Point {
	position: relative;
}

/*--- 画像（左側） ---*/
.ContImgL {
	width: 50%;
	float: left;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	overflow: hidden;
}

/*--- 画像（右側） ---*/
.ContImgR {
	width: 50%;
	float: right;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	overflow: hidden;
}

/*--- タイトル（左側） ---*/
.ContTitL {
	position: absolute;
	top: 50%;
	right: 45%;
	transform: translateY(-50%);
	width: 240px;
	height: 100px;
	color: #000;
	background: #fff;
	padding-top: 26px;
	z-index: 1;
}

/*--- タイトル（右側） ---*/
.ContTitR {
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translateY(-50%);
	width: 240px;
	height: 100px;
	color: #000;
	background: #fff;
	padding-top: 26px;
	z-index: 1;
}

/*--- タイトル（中央） ---*/
.ContTitC {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 240px;
	height: 100px;
	color: #000;
	background: #fff;
	padding-top: 26px;
	z-index: 1;
}

h3 .ReformTit {
	font-size:22px;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	position: relative;
	display: inline-block;
	line-height: 1.1em;
	letter-spacing: 0.08rem;
}

h3 .ReformTit .sub_tit {
	font-size:14px;
	font-family: 'M PLUS 1p', sans-serif;
}

/*--- hover ---*/
.Posi_Point a:hover .img-wrapper img {
	transform: scale(1.1);
}

/* !施工事例
---------------------------------------------------------- */
#Area_Works {
	padding: 80px 0;
}

/* !お知らせ内容スライド（Swiper）
----------------------------------------------------------- */
.inner {
	position: relative;
	-webkit-box-sizing: content-box;
			box-sizing: content-box;
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px;
}

[class*=swiper]:focus {
	outline: none;
}

.slide-photo {
	position: relative;
	overflow: hidden;
}

.slide-photo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.swiper-button-prev, .swiper-button-next {
	display: grid;
	place-content: center;
	width: 48px;
	height: 48px;
	cursor: pointer;
	-webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
			transition: .8s cubic-bezier(.2, 1, .2, 1);
}

.swiper-button-prev::before, .swiper-button-next::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	border-radius: 50%;
}

.swiper-button-prev::after, .swiper-button-next::after {
	width: 0.6rem;
	height: 0.6rem;
	content: "";
	border: solid #fff;
	border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
	margin-left: 0.4rem;
	-webkit-transform: rotate(-135deg);
			transform: rotate(-135deg);
}

.swiper-button-next::after {
	margin-right: 0.4rem;
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}

.swiper-button-disabled {
	pointer-events: none;
	opacity: 0;
}

.swiper-slide {
	transition: opacity 0.4s, transform 0.4s;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
	opacity: 1;
	transform: scale(1.05);
	z-index: 2;
}

/* 大枠 */
.box {
	overflow: hidden;
}

.box .swiper {
	overflow: visible;
}

.box .swiper-button-prev, .box .swiper-button-next {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
}

.box .swiper-button-prev::before, .box .swiper-button-next::before {
	background-color: rgba(0, 0, 0, 1);
}

.box .swiper-button-prev::after, .box .swiper-button-next::after {
	border-color: #fff;
}

.box .swiper-button-prev {
	right: calc(100% - 0.7rem);
}

.box .swiper-button-next {
	left: calc(100% - 0.7rem);
}

/* 記事枠 */
.box .slide {
	background-color: #fff;
	overflow: hidden;
	-webkit-transition: .8s cubic-bezier(.2, 1, .2, 1), opacity 1s;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1), 0 0 50px rgba(128, 128, 128, 0.1) ;
}

.box .slide-photo {
	cursor: pointer;
	aspect-ratio: 4 / 3; /* 画像の比率 */
	overflow: hidden;
}

.box .slide-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.slide:hover .slide-photo img {
	transform: scale(1.1);
}

.box .slide-content {
	padding: 16px 20px 18px;
}

.box .slide-icon {
	width: 76px;
	font-size: 11px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #000;
	padding:4px 0;
	border-radius: 20px;
	float: left;
	margin-right: 8px;
}

.box .slide-date {
	font-size: 14px;
	line-height: 1.4em;
	color: #999;
	float: left;
}

.box .slide-title {
	font-size: 16px;
	color: #000;
	line-height: 1;
	/*---文字数制限---*/
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1; /* 任意の行数 */
	margin-top: 10px;
}

.slide:hover .slide-title {
	color: #000;
	text-decoration: none;
}

.box a {
	text-decoration: none;
}

/*---リンク（下線）---*/
.works_text{
	position: relative;
	display: inline-block;
}

.works_text::after {
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.swiper-slide:hover .works_text:after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* !採用情報
---------------------------------------------------------- */
#Area_Recruit {
	padding: 40px 0 0;
}

#Area_Recruit .ContL {
	width: 49%;
	float: left;
	padding-top: 40px;
}

#Area_Recruit .ContR {
	width: 49%;
	float: right;
}




/* ==========================================================
第二階層共通
========================================================== */
/*--- カバー画像 ---*/
#Cover_Common {
	width: 100%;
	height: 480px;
	background: url(common/img/cmn_cover.jpg) no-repeat center bottom;
	background-size: cover;
}

/*--- カバータイトル ---*/
#Cover_Title {
	position: absolute;
	top: 240px;
	left: 160px;
	width: 320px;
	height: 200px;
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
}

#Cover_Title .title {
	font-size: 32px;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2em;
	letter-spacing: 0.08rem;
}

#Cover_Title .sub_tit {
	font-size:14px;
	color: #000;
}

/*--- カバータイトル（第三階層用） ---*/
#Cover_Title_Lower {
	position: absolute;
	top: 240px;
	left: 160px;
	width: 320px;
	height: 200px;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
}

#Cover_Title_Lower .title {
	font-size: 20px;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
	line-height: 1.2em;
	letter-spacing: 0.08rem;
}

#Cover_Title_Lower .sub_tit {
	font-size:12px;
	color: #fff;
}

#Cover_Title_Lower .category_name {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.2rem;
	margin-top: 10px;
}

/* !背景・マージン設定
---------------------------------------------------------- */
/*--- 白色 ---*/
.Bg_White_80 {
	background: #fff;
	padding: 80px 0;
}

.Bg_White_40-80 {
	background: #fff;
	padding: 40px 0 80px;
}

.Bg_White_40-0 {
	background: #fff;
	padding: 40px 0 0;
}

.Bg_White_80-0 {
	background: #fff;
	padding: 80px 0 0;
}

.Bg_White_80-120 {
	background: #fff;
	padding: 80px 0 120px;
}

/*--- ベージュ色 ---*/
.Bg_Beige_80 {
	background: #f5f5f1;
	padding: 80px 0;
}

.Bg_Beige_60-100 {
	background: #f5f5f1;
	padding: 60px 0 100px;
}

.Bg_Beige_60-120 {
	background: #f5f5f1;
	padding: 60px 0 120px;
}




/* ==========================================================
セイミヤについて
========================================================== */
#Cover_About {
	width: 100%;
	height: 480px;
	background: url(common/img/about/cover.jpg) no-repeat center bottom;
	background-size: cover;
}

/* !ごあいさつ
---------------------------------------------------------- */
#Area_Message {
	width:100%;
	max-width: 960px;
	margin: 0 auto;
}

#Area_Message .ContL {
	width: 54%;
	float: left;
}

#Area_Message .ContR {
	width: 40%;
	float: right;
}

/* !私たちの想い
---------------------------------------------------------- */
#Area_Mission {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

#Area_Mission .ContL,
#Area_Mission .ContR {
	width: 50%;
	height: 380px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 28px;
	line-height: 1.6em;
	color: #fff;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#Area_Mission .ContL {
	float: left;
	background-image: url("common/img/about/mission01.png");
}

#Area_Mission .ContR {
	float: right;
	background-image: url("common/img/about/mission02.png");
}

#Area_Mission .fz36 {
	font-size: 36px;
}

#Area_Mission .text {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
}

/*--- 経営理念 ---*/
#Box_Philosophy {
	width:100%;
	background: #fff;
	padding: 60px 100px;
}

#Box_Philosophy .Title {
	font-size: 32px;
	font-weight: bold;
	color: #525252;
	text-align: center;
}

.philosophy_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.frame_philosophy {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 40px 0;
	border-bottom: solid 1px #999;
}

.frame_philosophy .number {
	width: 15%;
	font-size: 48px;
	line-height: 1em;
	font-weight: bold;
	color: #999;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.frame_philosophy .text {
	width: 85%;
	font-size: 24px;
	line-height: 1.6em;
	font-weight: bold;
}

.frame_philosophy:last-child {
	border-bottom: none;
}

/* !私たちの強み
---------------------------------------------------------- */
#Area_Strength {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

#Area_Strength .ContL {
	width: 47%;
	float: left;
}

#Area_Strength .ImgR {
	width: 50%;
	float: right;
}

#Area_Strength .ImgL {
	width: 50%;
	float: left;
}

#Area_Strength .ContR {
	width: 47%;
	float: right;
}

#Area_Strength .Title {
	font-size: 28px;
	font-weight: bold;
	color: #525252;
	line-height: 1.4em;
}

/*--- 2カラム（受賞スタッフ） ---*/
#Award_Wrap {
	width: 100%;
}

#Award_Wrap .AreaL {
	width: 48%;
	float: left;
}

#Award_Wrap .AreaR {
	width: 48%;
	float: right;
}

/*--- 加盟会社 ---*/
#Area_Member {
	width: 100%;
}

#Area_Member img {
	display: block;
	width: 300px;
	margin:0 auto;
}

#Area_Member p {
	font-size: 14px;
}




/* ==========================================================
リフォーム
========================================================== */
#Cover_Reform {
	width: 100%;
	height: 480px;
	background: url(common/img/reform/cover.jpg) no-repeat center bottom;
	background-size: cover;
}

#Cover_Reform_Exterior {
	width: 100%;
	height: 480px;
	background: url(common/img/reform/cover_exterior.jpg) no-repeat center bottom;
	background-size: cover;
}

#Cover_Reform_Wetareas {
	width: 100%;
	height: 480px;
	background: url(common/img/reform/cover_wetareas.jpg) no-repeat center bottom;
	background-size: cover;
}

#Cover_Reform_Interior {
	width: 100%;
	height: 480px;
	background: url(common/img/reform/cover_interior.jpg) no-repeat center bottom;
	background-size: cover;
}

#Cover_Reform_Landscaping {
	width: 100%;
	height: 480px;
	background: url(common/img/reform/cover_landscaping.jpg) no-repeat center bottom;
	background-size: cover;
}

/*--- セイミヤのこだわり ---*/
.square {
	position: relative;
	width: 100%;
	color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.square::before {
	content: '';
	display: block;
	padding-top: 100%;
}

.square .inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
	box-sizing: border-box;
}

.square .tit {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 24px;
}

.square p {
	font-size: 16px;
	line-height: 1.6em;
	text-align: left;
}

/*--- セイミヤのお約束 ---*/
.box_promise {
	display: flex;
	align-items: center;
	background: linear-gradient(to right, transparent 5%, #fff 5%);
	gap: 60px;
	padding: 30px 0;
}

.box_promise .title {
	width: 15%;
	color: #fff;
	text-align: center;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.box_promise .text {
	width: auto;
}

/*--- 様々なリフォームに対応 ---*/
.Reform_Category {
	position: relative;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	overflow: hidden;
}

/*--- hover ---*/
.Reform_Category a:hover .img-wrapper img {
	transform: scale(1.1);
}

/*--- 施工の流れ ---*/
.box_flow {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 20px 20px 20px 0;
	border-left: solid 4px #808080;
}

.box_flow .number {
	width: 15%;
	color: #000;
	text-align: center;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box_flow .text {
	width: 85%;
	border-left: solid 1px #808080;
	padding-left: 40px;
}

.ico_triangle {
	display: block;
	margin: 30px auto;
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-top: 16px solid #251e1c;
}




/* ==========================================================
リフォーム（下層）
========================================================== */
/*--- タブ（リフォーム） ---*/
.tab_reform-box {
	width:100%;
	max-width: 1280px;
	margin: 60px auto 0;
}

.tab_reform-box .link_area {
	display: flex;
	justify-content:center;
}

.tab_reform-box .tab_link {
	width: 100%;
	padding: 18px 0;
	color: #000;
	background: #e6e6e6;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease 0s;
	display: flex;
	align-items: center;
	justify-content:center;
}

.tab_reform-box .link_area img {
	width: 40px;
	margin-right: 10px;
}

.tab_reform-box .tab_link + .tab_link {
	margin-left: 10px;
}

.tab_reform-box .tab_link:hover {
	background: #ccc;
}

.tab_reform-box .tab_link.active {
	background:#fff;
	color:#000;
}

.tab_reform-box .reform-panel_area {
	padding: 0;
}

.tab_reform-box .tab_reform-panel {
	background:#fff;
	display:none;
	padding: 60px 80px;
}

.tab_reform-box .tab_reform-panel .ContL {
	width: 48%;
	float: left;
}

.tab_reform-box .tab_reform-panel .ContR {
	width: 48%;
	float: right;
}

.tab_reform-box .tab_reform-panel.active {
	display:block;
}

/*--- 見出し（よくある質問） ---*/
.faq_category_tit {
	width: 100%;
	font-size: 22px;
	color: #fff;
	background: #0068b6;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content:center;
	padding: 14px 0;
}

.faq_category_tit img {
	width: 38px;
	margin-right: 16px;
}

/* !アコーディオン（よくある質問）
----------------------------------------------------------- */
.accordion-area{
	list-style: none;
	width: 100%;
}

.accordion-area li{
	padding: 12px 0;
}

/*アコーディオンタイトル*/
.faq_title {
	position: relative;
	cursor: pointer;
	padding: 14px 40px 14px 20px;
	transition: all .3s ease;
	font-size: 20px;
	color: #000;
	line-height: 1.4em;
	background: #f5f5f5;
}

.faq_title:hover {
	background: #dcdcdc;
}

.faq_title .areaL {
	width: 5%;
	float: left;
}

.faq_title .areaL span {
	font-size: 26px;
	font-weight: bold;
	line-height: 1em;
}

.faq_title .areaR {
	width: 95%;
	float: left;
}

/*アイコンの＋と×*/
.faq_title::before,
.faq_title::after{
	position: absolute;
	content:'';
	width: 8px;
	height: 2px;
	background-color: #000;
	z-index:99;
	transition: .1s;
}
.faq_title::before{
	position: absolute;
	top:49%;
	right: 25px;
	transform: rotate(45deg);
}
.faq_title::after{
	position: absolute;
	top:49%;
	right: 20px;
	transform: rotate(-45deg);
}

/* closeというクラスがついたら形状変化 */
.faq_title.close::before{
	position: absolute;
	top:48%;
	right: 25px;
	transform: rotate(-45deg);
}

.faq_title.close::after{
	position: absolute;
	top:48%;
	right: 20px;
	transform: rotate(45deg);
}

/*アコーディオンで現れるエリア*/
.faq_cont {
	display: none;
	margin:0;
	padding: 20px 10px 20px 66px;
	font-size: 18px;
	line-height: 1.6em;
}

.faq_cont .areaL {
	width: 5%;
	float: left;
}

.faq_cont .areaL span {
	font-size: 28px;
	font-weight: bold;
	color: #000;
}

.faq_cont .areaR {
	width: 95%;
	float: left;
}




/* ==========================================================
施工事例
========================================================== */
#Cover_Works {
	width: 100%;
	height: 480px;
	background: url(common/img/works/cover.jpg) no-repeat center bottom;
	background-size: cover;
}

/*--- タブ ---*/
.works_link_area {
	display: flex;
	justify-content:center;
}

.works_link_area a {
	color: #000;
	text-decoration: none;
}

.works_tab {
	width: 200px;
	padding: 8px 0;
	color: #000;
	background: #f5f5f5;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease 0s;
}

.works_tab + .works_tab {
	margin-left: 10px;
}

.works_tab:hover {
	background: #dcdcdc;
}

.works_tab.active {
	background:#009fd9;
	color:#fff;
}

/*--- カラム（施工事例一覧用） ---*/
.works_column {
	margin: 0;
	padding: 40px;
}
.works_column .col {
	float: left;
}
.works_column.col3 .col {
	margin: 0 3.8% 50px 0;
	width: 30.8%;
}
.works_column.col3 .col:nth-child(3n) {
	margin-right: 0;
}
.works_column.col3 .col:nth-child(3n+1) {
	clear: both;
}

@media screen and (max-width:811px){
	.works_column {
		margin: 0;
		padding: 0 5% 10px;
	}
	/*---3→1---*/
	.works_column.col3 .col {
		margin: 30px 0 0;
		width: 100%;
	}
	.works_column.col3 .col:nth-child(2n+1) { /* 奇数 */
		clear: both;
	}
	.works_column.col3 .col:nth-child(2n) { /* 偶数 */
		clear: none;
		float: right;
	}
	.works_column.col3 .col:nth-child(3n) { /* 3の倍数 */
		float: left;
	}
	.works_column.col3 .slide { /* 影の幅調整 */
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1), 0 0 10px rgba(128, 128, 128, 0.1) ;
	}
}

/*---リンク（下線）---*/
.works_column .col:hover .works_text:after {
	transform-origin: left top;
	transform: scale(1, 1);
}




/* ==========================================================
会社概要
========================================================== */
#Cover_Company {
	width: 100%;
	height: 480px;
	background: url(common/img/company/cover.jpg) no-repeat center bottom;
	background-size: cover;
}

/* !テーブル
---------------------------------------------------------- */
.table_company {
	width:100%;
	max-width: 960px;
	margin: 0 auto;
	border-top: 3px solid #808080;
}
.table_company th,
.table_company td {
	text-align: left;
	vertical-align: top;
	padding: 30px 0;
	background: #fff;
	border-bottom: 1px solid #b3b3b3;
}
.table_company th {
	padding-left: 60px;
	font-weight: normal;
}
.table_company .year {
	text-align: right;
	padding-right: 100px;
}
/*--- 2列表示 ---*/
.table_company .two-columns {
	column-count: 2;
	column-gap: 1rem;
}
@media screen and (max-width:441px){
	.table_company {
		width: 100%;
	}
	.table_company th,
	.table_company td {
		width: 100%;
		display: block;
		text-align: left;
		vertical-align: top;
		padding: 20px;
		background: #fff;
		border-bottom: 1px solid #b3b3b3;
	}
	.table_company th {
		background: #fafafa;
		font-weight: bold;
	}
	.table_company .year {
		text-align: left;
		padding-right: 0;
	}
	.table_company .two-columns {
		column-count: 1;
	}
}

/*--- 行頭揃え ---*/
.info .label {
	display: inline-block;
	width: 54px;
}

.info .value {
	display: inline-block;
}

/*--- 所属団体リンク ---*/
.link_frame {
	display: block;
	color: #000;
	text-decoration: none;
	border: 1px solid #b3b3b3;
	padding: 20px 40px 20px 20px;
	background-image: url("common/img/ico_blank.png");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 16px 16px;
}

.link_frame:hover {
	color: #0068b6;
	text-decoration: underline;
}




/* ==========================================================
採用情報
========================================================== */
#Cover_Recruit {
	width: 100%;
	height: 480px;
	background: url(common/img/recruit/cover.jpg) no-repeat center bottom;
	background-size: cover;
}

/*--- エリア分け ---*/
#Job_Introduce .ImgL {
	width: 58%;
	float: left;
}

#Job_Introduce .ContR {
	width: 38%;
	float: right;
	padding-top: 40px;
}

#Job_Introduce .ImgR {
	width: 58%;
	float: right;
}

#Job_Introduce .ContL {
	width: 38%;
	float: left;
	padding-top: 40px;
}

/*--- 枠（社員の声01） ---*/
.frame_voice01 {
	position: relative;
	width: 82%;
	border: 3px solid #000;
	background: #fff;
	padding: 60px 40px 100px 40px;
	line-height: 1.6em;
	border-radius: 16px;
	float: left;
}

.frame_voice01 .photo {
	float: left;
	width: 20%;
	position: relative;
	margin-top: -120px;
}

.frame_voice01 .photo img {
	width: 100%;
	height: auto;
	display: block;
}

.frame_voice01 .text {
	float: right;
	width: 80%;
	padding-left: 20px;
}

/*--- 枠（社員の声02） ---*/
.frame_voice02 {
	position: relative;
	width: 82%;
	border: 3px solid #000;
	background: #fff;
	padding: 60px 40px 100px 60px;
	line-height: 1.6em;
	border-radius: 16px;
	float: right;
	margin-top: -40px;
}

.frame_voice02 .photo {
	float: right;
	width: 20%;
	position: relative;
	margin-top: -120px;
}

.frame_voice02 .photo img {
	width: 100%;
	height: auto;
	display: block;
}

.frame_voice02 .text {
	float: left;
	width: 80%;
	padding-right: 10px;
}

/*--- 枠（社員の声03） ---*/
.frame_voice03 {
	position: relative;
	width: 82%;
	border: 3px solid #000;
	background: #fff;
	padding: 60px 40px 80px 40px;
	line-height: 1.6em;
	border-radius: 16px;
	float: left;
	margin-top: -40px;
}

.frame_voice03 .photo {
	float: left;
	width: 20%;
	position: relative;
	margin-top: -120px;
}

.frame_voice03 .photo img {
	width: 100%;
	height: auto;
	display: block;
}

.frame_voice03 .text {
	float: right;
	width: 80%;
	padding-left: 20px;
}

/*--- Daily Work Schedule ---*/
#Bg_Schedule {
	background: linear-gradient(0deg, #fff 0%, #fff 15%, #f5f5f2 15%, #f5f5f2 100%);
}

#Bg_Schedule .ImgL {
	width: 58%;
	float: left;
}

#Bg_Schedule .ContR {
	width: 38%;
	float: right;
	padding-top: 40px;
}

/*--- 1日の仕事の流れ ---*/
.Flow_Wrap {
	padding: 40px 0;
}

.Flow_Box {
	width:100%;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	position: relative;
	background: #fff;
	border-top: 3px solid #808080;
	border-bottom: 1px solid #b3b3b3;
	padding: 40px 0;
}

.Flow_Box .column_box {
	text-align: center;
	box-sizing: border-box;
}

.Flow_Box .column_box:first-child {
	flex: 0 0 15%;
	font-size: 24px;
}

.Flow_Box .column_box:last-child {
	flex: 0 0 85%;
	text-align: left;
	padding-left: 34px;
}

.Flow_Box .column_box:last-child span {
	font-size: 24px;
}

.Flow_Box::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 15%;
	width: 1px;
	background: #808080;
}




/* ==========================================================
お問い合わせ
========================================================== */
#Cover_Contact {
	width: 100%;
	height: 480px;
	background: url(common/img/contact/cover.jpg) no-repeat center bottom;
	background-size: cover;
}

#Frame_Privacy {
	font-size: 16px;
	line-height: 1.6em;
	width:100%;
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid #b3b3b3;
	padding: 40px;
}




/* ==========================================================
お知らせ
========================================================== */
/*--- 記事詳細（お知らせ・施工事例） ---*/
#Cont_Detail {
	width:100%;
	max-width: 960px;
	margin: 0 auto;
	margin-top: 40px;
}

#Cont_Detail .icon {
	width: 120px;
	font-size: 14px;
	line-height: 1em;
	text-align: center;
	color: #fff;
	background: #000;
	padding:8px 0;
	border-radius: 20px;
	float: left;
	margin-right: 20px;
}

#Cont_Detail .date {
	font-size: 18px;
	line-height: 1.6em;
	float: left;
}

#Cont_Detail .tit {
	font-size: 32px;
	line-height: 1.2em;
	margin: 20px 0 30px;
	padding-bottom: 14px;
	border-bottom:1px solid #ccc;
}

#Post p {
	margin: 20px 0;
}

#Post li {
	margin-left:20px;
	list-style-type:disc;
}




/* ==========================================================
PageNavi
========================================================== */
.wp-pagenavi {
	clear: both;
	font-size: 13px;
	text-align:center;
}

.wp-pagenavi a, .wp-pagenavi span {
	color: #000;
	background-color: #fafafa;
	border: 1px solid #999 !important;
	padding: 4px 8px 6px !important;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
}

.wp-pagenavi a:hover{
	color: #FFF;
	background-color: #009fd9;
	border-color: #999 !important;
}

.wp-pagenavi span.current{
	color: #FFF;
	background-color: #0068b6;
	border-color: #999 !important;
	font-weight: bold;
}

/* ==========================================================
Contact Form7
========================================================== */
#Area_Form {
	width: 100%;
	max-width: 960px;
	margin: 40px auto 60px;
}

/*---テーブル（基本）---*/
.table_cf7 {
	width: 100%;
	border-collapse: separate;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.table_cf7 th,
.table_cf7 td {
	font-weight: normal;
	text-align: left;
	background-color: #fff;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 20px;
}
.table_cf7 th {
	background-color: #f5f5f5;

}
@media screen and (max-width:811px){
	.table_cf7 {
		width: 100%;
	}
	.table_cf7,
	.table_cf7 thead,
	.table_cf7 tbody,
	.table_cf7 tr,
	.table_cf7 th,
	.table_cf7 td {
		width: 100%;
		display: block;
	}
	.table_cf7 th,
	.table_cf7 td {
		border-top: none;
		border-left: none;
		padding: 20px;
	}
}

/* 入力項目を見やすくする */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 4px 15px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/*「必須」文字デザイン*/
.required{
	font-size:.7em;
	padding: 6px;
	background: #e60039;
	color: #fff;
	border-radius: 3px;
	margin-right: 10px;
}

/*「任意」文字デザイン*/
.optional{
	font-size:.7em;
	padding: 6px;
	background: #1c80c4;
	color: #fff;
	border-radius: 3px;
	margin-right: 10px;
}

/*「認証」文字デザイン*/
.check{
	text-decoration: none;
	line-height: 1.4em;
	border: 1px solid #ccc;
	padding: 20px 0 26px;
}

/*---ボタン---*/
input[type='submit'] {
	display: block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: 60px;
	text-align: center;
	text-decoration: none;
	background: #009fd9;
	color: #fff;
	line-height: 60px;
	overflow: hidden;
	font-size: 18px;
	border-radius:6px;
}

input[type='submit']:hover {
	color: #fff;
	text-decoration: none;
	background: #0068b6;
	transition: all .5s ease;
}

/* ラジオボタン */
.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.wpcf7-radio input[type="radio"] {
	margin-right: 4px;
}

/* チェックボックス */
.wpcf7-checkbox .wpcf7-list-item {
	display: block;
	margin-bottom: 4px;
}

.wpcf7-checkbox input[type="checkbox"] {
	margin-right: 4px;
}

@media screen and (max-width:811px){
	.wpcf7-radio {
		flex-direction: column;
		gap: 10px;
	}
	.wpcf7-checkbox .wpcf7-list-item {
		display: block;
		margin-bottom: 10px;
		margin-right: 0;
	}
}

/* エラーメッセージを見やすくする */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	margin-top: 6px;
}

/* 入力不備（オレンジ） */
.wpcf7 form.invalid .wpcf7-response-output {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 90px;
	text-align: center;
	border: 2px solid #ffb900 !important;
	background: #fff8e5;
	padding: 14px;
}

/* 送信成功（緑） */
.wpcf7 form.sent .wpcf7-response-output {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 90px;
	text-align: center;
	border: 2px solid #46b450 !important;
	background: #edfaef;
	padding: 14px;
}

/* 送信失敗（赤） */
.wpcf7 form.failed .wpcf7-response-output {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 90px;
	text-align: center;
	border: 2px solid #dc3232 !important;
	background: #fdecea;
	padding: 14px;
}