@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}



/*======= TOP ======*/
/*ご挨拶*/


.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);

	background-color: #FFF;
	background-image: url(../img/bg_20.jpg);
	background-size:contain;
	background-repeat:no-repeat;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 


}

.greeting::before {
	content: attr(data-en);
	position: absolute;
	top: -5%;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(40px, 6vw, 70px);
	font-style: italic;
	z-index:-5;
}

span.gcl{
	color:var(--accent-color1);
}

p.cnt{
	text-align:center;

	font-family: 'Zen Old Mincho', serif !important;
	font-weight: 700 !important;
	font-style: normal;
	font-size:1.1em;
}

h3.title{
	margin:0 auto;
	text-align:center;
	font-size: clamp(25px, 3vw, 30px);
	min-height: 0vw;
	color: #444;
}

h3.title::after {
	margin:0 auto;
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	margin-top: 0.6em;
	margin-bottom: 0.8rem;
	border-bottom: 4px double var(--accent-color2);
	font-weight: bold;
	font-size: 26px;
}


.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

.waku{
	margin:0 auto;
	width:80%;
}

/*------ごあいさつ画像セットここから-----------*/

/* コンテナ設定 */
.gr-item-container {
	display: flex;
	flex-wrap: wrap; /* 折り返し可能に */
	gap: 16px;       /* アイテム間の余白 */
	justify-content: flex-start; /* PCは左寄せ */
}

/* アイテム */
.gr-item {
	flex: 1 1 calc(33.333% - 16px); /* 3列表示、gap分を差し引く */
	max-width: calc(33.333% - 16px);
	text-align: center; /* タイトル中央 */
}

.gr-item H4{
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700 !important;
	font-style: normal;
	margin-top:0.4em;
}

@media screen and (max-width: 568px) { 
	.gr-item H4{
		font-size:15px;
	}
}


/* 画像を丸く */
.gr-item figure {
	margin: 0;
	overflow: hidden;
	border-radius: 50%;
	width: 100%; /* 親幅に合わせる */
	aspect-ratio: 1 / 1; /* 正方形を保つ */
}

.gr-item figure img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 中央を維持しつつ切り抜き */
}

/* タブレット縦・スマホ */
@media (max-width: 1024px) {
	.gr-item {
		flex: 1 1 calc(50% - 16px); /* 2列に変更 */
		max-width: calc(50% - 16px);
	}
	.gr-item-container {
		justify-content: center; /* 最後の1個を中央に */
	}
}

@media (max-width: 600px) {
	.gr-item {
		flex: 1 1 calc(50% - 16px); /* 2列表示は維持 */
		max-width: calc(50% - 16px);
	}
	.gr-item-container {
		justify-content: center; /* 最後の1個を中央に */
	}
}

/*------ごあいさつ画像セットここまで-----------*/

/*電話バナー*/
.tel_bnr {
	display: grid
	;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 20px 0;
	margin-top:-4em;
}



@media (max-width: 568px) {
	.tel_bnr {
		grid-template-columns: repeat(1, 1fr);
		margin-top:-2em;
	}
}


/*======= コンテンツ ======*/

/*======= Service サービス案内 ======*/
.secS {
	padding: var(--v-space) 0;
	background-color: var(--base-color);
	background-image: url(../img/bg_03.jpg);
	background-size: 1000px;
	/*	
	background-size: clamp(50px,6vw,80px);
	 */
background-repeat: repeat;

position: relative; /* sectionの位置を相対的にする*/ 
z-index: 1; /* 背景画像より上に表示 */ 
}

.secS::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.8); /* 不透明度を高めて効果を強調 */
	z-index: 0; 
}


/*ul liのチェック*/
/* ベース */
.sv {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 各liは左にチェックボックス分の余白を確保 */
.sv li {
	position: relative;
	padding-left: 2.2em;    /* チェックボックス幅 + 隙間 */
	margin: 0 0 0.6em 0;
	line-height: 1.4;       /* 見た目調整 */
}

/* □（外枠＋背景）を ::before で作る */
.sv li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.6em;
	height: 1.6em;
	background: #fff;            /* ボックス内の背景色 */
	border: 1px solid #333;      /* □の線の色・太さ */
	border-radius: 3px;          /* 角丸にしたければ */
	box-sizing: border-box;
}

/* ✓（チェック）を ::after で作る（2辺の線を回転させてチェックに）*/
.sv li::after {
	content: "";
	position: absolute;
	/* チェックをボックス内に収める位置 */
	left: 0.42em;               /* 調整可 */
	top: 50%;
	transform: translateY(-60%) rotate(45deg);
	width: 0.7em;               /* チェックの横幅（調整可） */
	height: 0.95em;             /* チェックの縦幅（調整可） */
	border-right: 3px solid var(--accent-color1);   /* チェックの右上線 */
	border-bottom: 3px solid var(--accent-color1);  /* チェックの右下線 */
	box-sizing: border-box;
	/* 見た目をシャープにするには線の太さを調整 */
}

/* 小さい画面でサイズを縮めたい場合の例 */
@media (max-width:480px){
	.sv li { padding-left: 1.8em; }
	.sv li::before { width:1.2em; height:1.2em; }
	.sv li::after { left:0.32em; width:0.38em; height:0.7em; border-right:2px solid #333; border-bottom:2px solid #333; }
}


/*======= Tatami 取扱畳 ======*/

.secT {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_07.jpg);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.wakuS{
	display:inline-block;
	border:1px solid #666;
	margin-bottom:10px;
	padding:3px;
}

@media screen and (max-width: 768px) {
    .wakuS {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: block; /* ブロック要素にして中央揃え */
		width:40%;
    }
}
/*======= おすすめ  ======*/
.secR {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_06.jpg);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.secR::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.5); /* 不透明度を高めて効果を強調 */
	z-index: 0; 
}

/*======= History 当店の歴史  ======*/

.secH {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f7f7f7;
	background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px);
	background-size: 15px 15px;
}


/*テーブル*/
.pr{
	margin:0 auto;
	width:80%;
}


.pr, .pr td, .pr th {
	border-collapse: collapse;
	border-bottom: 1px solid #999; 
	text-align:center;

	font-family: 'Zen Old Mincho', serif;
}
table.pr td:first-child {
	/* 1列目全体に適用 */
	width:30%;
	font-size:18px;
}

table.pr td:nth-child(2) {
	/* 各行の2列目に適用 */
	text-align: right;
	font-size:18px;
}

@media screen and (max-width: 568px) { 
	table.pr td{
		font-size:16px !important;
	}
}
/*======= Area 営業エリア  ======*/

.secA {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_09.jpg);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.secA::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(190, 212, 197, 0.7); /* 不透明度を高めて効果を強調 */
	z-index: 0; 
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	/*
	background-color: #EAF5EC;
	 */
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(--accent-color3);
}

.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_10.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.contentsbgA {
	padding: 15px;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
	margin-bottom: 20px;
}

/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color1);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color1);
	padding: 5px;
	width: 400px;
}
@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_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*カード*/
.secI-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secI-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secI-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secI-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	padding: 10px;
	border-radius: 10px;
	box-sizing: border-box;

}
.secI-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 2px dotted var(--main-color);

}
.secI-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
	text-align:center;

	font-family: 'Zen Old Mincho', serif;
	font-weight: 500;
	font-style: normal;
}


/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

.spot-heading01 {
	font-size: clamp(40px, 6vw, 60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading02 {
	font-size: clamp(22px, 2.7vw, 30px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs', 'Noto Sans Japanese', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial, Helvetica, Verdana;
}


strong{
	font-weight:normal;
}


/*全h3*/
h3{
	font-family: 'Zen Old Mincho', serif;
	font-weight:700;
	font-style:normal;
}


h2 {
	font-family: 'Zen Old Mincho', serif;
	font-weight: 700 !important;
	font-style: normal;
}
