@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}


/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px,6vw,70px);
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;
	color:#2d2d2d;
}
.spot-heading01::first-letter {
	color: var(--main-color)
}




/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*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);
	}
}

/*======= コンテンツ ======*/


/*======= Service,サービス案内 ======*/
.secS {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_05.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.8); 
	z-index: -1; /* 背景の下に置く */
}

img.icon{
	margin:0 auto;
	width:70px;	
	margin-bottom:-2em;
}
@media screen and (max-width: 568px) { 
	img.icon{
		margin-top:2em;
	}
}


/*カード*/
.secS-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}

@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 2;
	/*ここまで*/
	box-sizing: border-box;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .1);
	background-color:#effae3;
	border:1px solid #eee;
}
.secS-card__item H3{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	line-height: 1.3;
	text-align: center;

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 500;
	font-style: normal;
	margin-top:-0.1em;
}
.secS-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}

/*======= Type,取扱商品 ======*/

.secT {
	padding: var(--v-space) 0;
	background-color: #fff;

}
.waku2{
	border-bottom:1px solid var(--accent-color1);
	padding:10px;
	text-align:center;

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
	font-size:1.2em;
	margin:0 auto;
	width:80%;
	padding:10px;
	margin-top:2em;	
}

@media screen and (max-width: 568px) { 
	.waku2{
		width:initial;
		text-align:left;
	}
}


/*======= Recommend,おすすめの畳 ======*/
.secR {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_03.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.secR::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; /* 背景の下に置く */
}

/*======= Price,価格 ======*/
.secP {
	padding: var(--v-space) 0;
	background-color: #fff;
}


/* セクション構造 */
.price-section {
	margin-bottom: 80px;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 40px;
}

.vertical-title {
	writing-mode: vertical-rl;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main-color);
	border-left: 1px solid var(--accent-color3);
	padding-right: 20px;
	height: fit-content;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* カードデザイン */
.content-area {
	background: #fff;
	padding: 40px;
	border-radius: 2px;
	box-shadow: 10px 10px 0px var(--accent-color3);
	border: 1px solid #eee;
	position: relative;
}

.section-desc {
	font-size: 1rem;
	color: var(--text-light);
	margin-bottom: 30px;
	border-bottom: 1px solid var(--accent-color3);
	padding-bottom: 15px;
}

.grid-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.price-group h3 {
	font-size: 1.2rem;
	border-left: 4px solid var(--main-color);
	padding-left: 12px;
	margin-bottom: 20px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.price-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 15px;
}

.label-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.grade {
	font-size: 0.75rem;
	border: 1px solid var(--accent-color2);
	color: var(--accent-color2);
	padding: 1px 6px;
	border-radius: 2px;
}

.unit {
	font-size: 0.9rem;
	color: var(--text-light);
}

.price-val {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--text-dark);
}

.tax {
	font-size: 0.7rem;
	color: #999;
	margin-left: 4px;
}

/* 魂特化品 特別演出 */
.special-box {
	background-color: #fffaf0;
	box-shadow: 10px 10px 0px var(--accent-color2);
	border-color: var(--accent-color2);
}

.soul-stamp {
	position: absolute;
	top: -50px;
	right: 40px;
	width: 80px;
	height: 80px;
	background: #d3381c; /* 茜色 */
	color: #fff;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	line-height: 1.1;
	transform: rotate(-10deg);
	box-shadow: 0 0 0 3px #d3381c, 0 0 0 5px #fff inset;
	z-index: 10;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (max-width: 568px) { 
	.soul-stamp {
		top: -70px;
	}
}

.soul-stamp span:first-child { font-size: 1.8rem; }
.soul-stamp span:last-child { font-size: 0.7rem; letter-spacing: 0.1em; }

.range-sep {
	margin: 0 8px;
	font-size: 1.2rem;
	color: var(--accent-color1);
}



/* レスポンシブ */
@media (max-width: 768px) {


	.range-sep2{
		margin: 0 20px;
		font-size: 1.2rem;
		color: var(--accent-color1);
	}
	.price-val2{
		margin-right:-10px;
	}

	.price-section {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.vertical-title {
		writing-mode: horizontal-tb;
		border-left: 10px solid var(--main-color);
		border-bottom: none;
		padding: 0 0 0 15px;
		font-size: clamp(22px, 3vw, 26px);
	}
	.content-area {
		padding: 25px;
	}
	.header h1 { font-size: 2rem; }
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #f7faf8;

	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;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.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; /* 背景画像より上に表示 */ 
}

.info_sec1::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0;right:0;bottom:0;left:0 */
	background-color: rgba(255, 255, 255, 0.3); /* 白を60%透過 */
	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;
	border-radius: 20px;
}
@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%;
	}
}






/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

/*その他*/
strong{
	font-weight:normal;
}



/*共通*/

.waku{
	border-bottom:1px solid var(--accent-color1);
	padding:10px;
	text-align:center;

	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight:500;
	font-size:1.2em;
	margin:0 auto;
	width:80%;
	padding:10px;
	margin-top:2em;	
}
@media screen and (max-width: 568px) { 
	.waku{
		width:initial;
		text-align:left;
	}
}
.wakuA{
	text-align:left;
}
