@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}


/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px,6vw,70px);
	/* font-style: italic; */
	text-align: center;
	/* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-family: "Dancing Script", cursive;
	font-weight: 500;
	color:#2d2d2d;
}
.spot-heading01::first-letter {
	color: var(--main-color)
}





/*======= TOP ======*/
/*ご挨拶*/

.col{
	color:var(--main-color);
	font-weight:500;
}

.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto;
	width: fit-content;
	color: #666;
}

/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 30px 0 20px 0;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
	}
}


.symptoms-section{
	padding:80px 20px 90px;
}

.symptoms-inner{
	max-width:1200px;
	margin:0 auto;
}

.section-heading{
	text-align:center;
	margin-bottom:48px;
}

.section-heading:before,
.section-heading:after{
	content:"";
	display:block;
	width:72px;
	height:1px;
	margin:0 auto;
	background:linear-gradient(to right, transparent 0%, var(--accent-color1) 50%, transparent 100%);
}

.section-heading:before{
	margin-bottom:16px;
}

.section-heading:after{
	margin-top:16px;
}

.section-heading__sub{
	display:inline-block;
	margin-bottom:10px;
	font-size:12px;
	letter-spacing:0.18em;
	color:var(--accent-color2);
	text-transform:uppercase;
}

.section-heading h2{
	margin:0;
	font-size:18px;
	line-height:1.5;
	color:var(--txt-color);

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
}

.section-heading p{
	max-width:760px;
	margin:16px auto 0;
	font-size:15px;
	color:#444444;
}


.symptoms-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}

@media only screen and (max-width: 968px) {
	.symptoms-grid{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.symptoms-grid{
		grid-template-columns: repeat(1, 1fr);
	}
}




.symptom-card{
	background:var(--base-color);
	border:1px solid rgba(50,104,133,0.08);
	border-radius:12px;
	overflow:hidden;
	position:relative;
	box-shadow:0 8px 24px rgba(50,104,133,0.08);
	transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.symptom-card:before{
	content:"";
	position:absolute;
	top:10px;
	right:10px;
	bottom:10px;
	left:10px;
	pointer-events:none;
}


.symptom-card__image{
	position:relative;
	aspect-ratio:16 / 10;
	overflow:hidden;
}

.symptom-card__body{
	padding:26px 24px 24px;
}

.symptom-card__body h3{
	margin:0 0 14px;
	padding-bottom:14px;
	text-align:center;
	font-size: clamp(12px, 1.5vw, 22px);
	line-height:1.5;
	color:var(--main-color);
	position:relative;

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

	font-weight:500;
}

.symptom-card__body h3:after{
	content:"";
	position:absolute;
	left:50%;
	bottom:0;
	width:78px;
	height:1px;
	transform:translateX(-50%);
	background:linear-gradient(to right, transparent 0%, var(--accent-color1) 20%, var(--accent-color1) 80%, transparent 100%);
}

.symptom-card__body p{
	margin:0;
	font-size:15px;
	line-height:2;
	color:#333333;
}

.symptoms-note{
	margin-top:40px;
	text-align:center;
}

.symptoms-note p{
	display:inline-block;
	margin:0;
	padding:14px 24px;
	border-bottom:4px solid var(--accent-color1);
	font-size:18px;
	color:var(--txt-color);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

	font-weight:500;
}

@media screen and (max-width:900px){
	.symptoms-section{
		padding:64px 16px 72px;
	}

	.section-heading h2{
		font-size:30px;
	}

	.symptoms-grid{
		grid-template-columns:1fr;
		gap:22px;
	}

	.symptom-card__body{
		padding:22px 18px 20px;
	}

	.symptom-card__body h3{
		font-size:22px;
	}

	.symptom-card__body p,
	.section-heading p{
		font-size:14px;
		line-height:1.9;
	}
}

@media screen and (max-width:480px){
	.section-heading h2{
		font-size:24px;
	}

	.section-heading__sub{
		font-size:11px;
	}

	.symptom-card__body h3{
		font-size:20px;
	}

	.symptoms-note p{
		width:100%;
		padding:12px 14px;
	}
}




.ttl02{

	margin:0 auto !important;
	margin-top:2em !important;
	width:80%;
	display:block;
	padding:12px 22px;
	font-size:28px;
	letter-spacing:.1em;
	color:#fffdf8;
	background:linear-gradient(to right,#5f4b32,#8a6a43,#5f4b32);
	border:1px solid #4a3926;
	box-shadow:0 0 0 3px rgba(138,106,67,.18);

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
	text-align:center;
}
@media screen and (max-width: 568px) { 

	.ttl02{
		font-size:18px;
	}
}
.ttl02 small{
	display:block;
	margin-top:6px;
	font-size:13px;
	letter-spacing:.18em;
	color:#f1e7d5;

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
}



/*======= コンテンツ ======*/




/*======= Service,サービス案内 ======*/
.secS {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.secS::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0;right:0;bottom:0;left:0 */
	background-color: rgba(255, 255, 255, 0.6); /* 白を60%透過 */
	z-index: -1; /* 背景の下に置く */
}



/*カード*/
.secS-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}

@media only screen and (max-width: 968px) {
	.secS-card__item{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secS-card__item{
		grid-template-columns: repeat(1, 1fr);
	}
}
.secS-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	box-sizing: border-box;

	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .06);
}




.secS-card__item H3{

	padding: 10px;
	display: inline-flex;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 3px double #a40000; /* 朱色の二重線 */
	font-size: 1.4rem;
	color: #1a1a1a;
	margin: 0;

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
	text-align:center;
}

.secS-card__item H3::before {

	content: "匠"; 
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background-color: #a40000;
	color: #fff;
	font-size: 0.9rem;
	margin-right: 12px;
	border-radius: 3px;
	box-shadow: 2px 2px 0px rgba(0,0,0,0.1);

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

	font-weight:500;
}



.secS-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;

	padding: 10px;
}

/* カード（4件用） */
.secS-card__item--4{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}

@media only screen and (max-width: 568px) {
	.secS-card__item--4{
		grid-template-columns: repeat(1, 1fr);
	}
}

.secS-card__item--4 > div{
	/* 子要素のそれぞれのdivの高さを揃える記述 */
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/* ここまで */

	box-sizing: border-box;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .06);
}

.secS-card__item--4 h3{
	padding: 10px;
	display: inline-flex;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 3px double #a40000; /* 朱色の二重線 */
	font-size: 1.4rem;
	color: #1a1a1a;
	margin: 0;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 500;
	text-align: center;
}

.secS-card__item--4 h3::before{
	content: "匠";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background-color: #a40000;
	color: #fff;
	font-size: 0.9rem;
	margin-right: 12px;
	border-radius: 3px;
	box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 500;
}

.secS-card__item--4 p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
	padding: 10px;
}

/*======= Merit,弊社が選ばれる理由 ======*/

.secM {
	padding: var(--v-space) 0;
	background-color: #9878a010;
}

/* フルワイド2カラム */
.bg-secM {
	padding: 0;
}

.secM-container {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.secM-container.reverse {
	flex-direction: row-reverse;
}

.secM-image {
	width: 50%;
	min-height: 500px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	flex-shrink: 0;
}

.secM-text {
	width: 50%;
	padding: clamp(45px, 7vw, 60px) 50px;
	box-sizing: border-box;
	z-index: 0;
}


@media only screen and (max-width: 1100px) {
	.secM-container {
		flex-direction: column;
	}

	.secM-container.reverse {
		flex-direction: column;
	}

	.secM-image {
		width: 100%;
		height: 400px;
		min-height: auto;
	}

	.secM-text {
		width: 100%;
		padding: clamp(45px, 7vw, 60px) 40px;
	}
}

@media only screen and (max-width: 568px) {
	.secM-image {
		height: 300px;
	}

	.secM-text img {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
}

.secMtitle{
	margin-top:2em !important;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
}



/* =========================
背景画像
========================= */
.secM-bg01 {
	background-image: url(../img/merit_01.jpg);
}

.secM-bg02 {
	background-image: url(../img/merit_02.jpg);
}

.secM-bg03 {
	background-image: url(../img/merit_03.jpg);
}



/*======= Example,施工事例 ======*/
.secE {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_02.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.secE::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0;right:0;bottom:0;left:0 */
	background-color: rgba(255, 255, 255, 0.6); /* 白を60%透過 */
	z-index: -1; /* 背景の下に置く */
}

/*カード*/
.secE-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}


@media only screen and (max-width: 568px) {
	.secE-card__item{
		grid-template-columns: repeat(2, 1fr);
	}
}
.secE-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/

	border-radius: 10px;
	box-sizing: border-box;
}
.secE-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);

	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
	font-style: normal;
}
.secE-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}



/* 施工事例ギャラリー */
.contentsbg2 .secE-gallery3{
	display: grid;
	row-gap: 10px;
}

.contentsbg2 .secE-gallery3__row{
	display: grid;
	gap: 10px;
}

.contentsbg2 .secE-gallery3__row--2{
	grid-template-columns: repeat(2, 1fr);
}

.contentsbg2 .secE-gallery3__row--4{
	grid-template-columns: repeat(4, 1fr);
}

.contentsbg2 .secE-gallery3__row--3{
	grid-template-columns: repeat(3, 1fr);
}

.contentsbg2 .secE-gallery3 .img{
	margin: 0;
	overflow: hidden;
}

.contentsbg2 .secE-gallery3 img{
	display: block;
	width: 100%;
	height: auto;
}

/* スマホ */
@media only screen and (max-width: 568px){
	.contentsbg2 .secE-gallery3__row--2,
	.contentsbg2 .secE-gallery3__row--4,
	.contentsbg2 .secE-gallery3__row--3{
		grid-template-columns: repeat(2, 1fr);
	}
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 5.25em;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 400px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}


/*会社概要*/
.bg_b{
	background: rgba(255, 255, 255, 0.9);
	padding:40px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}



/*======= ACCESS アクセス ======*/

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 400px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #fff;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}






/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}
/*その他*/
strong{
	font-weight:normal;
}


