@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/

/**/
.tj2{
	text-align: center;
}
@media screen and (max-width: 668px) {
	.tj2 {
		text-align: justify;
	}
}
.lsp-05{
	letter-spacing: 0.5px;
}
/**/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0;
	background-image: url(../img/bg_04.png);
	background-position: bottom center;
	background-size: cover;
}
@media screen and (max-width: 768px) {
	.greeting {
		background-image: url(../img/bg_04tab.png);
		background-position: bottom center;
		background-size: cover;
	}
}
@media screen and (max-width: 568px) {
	.greeting {
		background-image: url(../img/bg_04sp.png);
		background-position: bottom center;
		background-size: cover;
	}
}
/*3つ*/
.gre-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px 10px;
}

@media (max-width: 568px) {
	.gre-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
.gre-item {
	box-sizing: border-box;
	margin-top: 10px;
}

/*TEL*/
div.habatel{
	margin: 0 7%;
}
@media (max-width: 768px)  {
	div.habatel{
		margin: 0;
	}
}
@media (max-width: 568px)  {
	div.habatel{
		margin: 0;
	}
}


/*salon-menu section1*/
.sec1 {
	/*padding: 20px 0 clamp(50px, 6vw, 90px) 0;*/
	padding: 50px 0 clamp(40px, 6vw, 90px) 0;
	background-image: url(../img/bg_01.png);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
	.sec1 {
		padding: 120px 0;
		background-image: url(../img/bg_01sp.png);
		background-position: top center;
		background-size: cover;
		background-repeat: no-repeat;
	}
}
/*テーブル価格入*/
table.ttypeA {
	margin: 5px 0;
	box-sizing: border-box;
	line-height: 1.2;
	font-family: Century Gothic, Arial, "Sawarabi Gothic", "M PLUS 1p", sans-serif;
background-color: #ffffffa3;
}
table.ttypeA tr th {
	text-align: left;
	width: 50%;
	font-weight: 600;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.4;
	padding: 17px 5px;
	border-bottom: 1px solid #8c7257;
	box-sizing: border-box;
}
table.ttypeA tr td {
	text-align: right;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.4;
	padding: 17px 5px;
	border-bottom: 1px solid #8c7257;
	box-sizing: border-box;
}
table.ttypeA tr td:nth-of-type(1) {
	font-weight: 600;
	font-size: clamp(20px, 1.9vw, 25px);/*数字*/
}
table.ttypeA tr td:nth-of-type(2) {
	width: 1em;
	font-size: clamp(20px, 1.9vw, 25px);/*～*/
}
/*線無し*/
table.ttypeA tr td.senas{
	/*border-bottom: 0;*/
	border-bottom: 1px solid #e1d7cc;	/*薄め*/
}

@media (max-width: 589px) {
	table.ttypeA tr th {
		display: block;
		width: 100%;
		background-color: #d9cb000f;
		box-sizing: border-box;
		padding: 10px 3px;
	}
	table.ttypeA tr td:nth-of-type(1) {
		display: inline-block;
		box-sizing: border-box;
		width: calc(100% - 2em);
		padding: 10px 3px;
	}
	table.ttypeA tr td:nth-of-type(2) {
		display: inline-block;
		box-sizing: border-box;
		width: 2em;
		padding: 10px 3px;
	}
}

/**/
.fuzoku{
	font-weight: 400;
	font-size: clamp(13px, 1.5vw, 18px);
}




/*＼　／でタイトルを囲む*/
.sec-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.4;
	text-align: center;
	border: 0;
	color: var(--main-color);
	margin: 10px;
}
.sec-heading::before,
.sec-heading::after {
	content: '';
	width: 1px;
	height: 40px;
	background-color: #bbb;
}
.sec-heading::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.sec-heading::after {
	margin-left: 30px;
	transform: rotate(35deg)
}

/**/
.kukuri {
	margin: 0 0 20px 0;
	padding: 15px 30px;
	background-color: rgba(255,255,255,0.85);
	border: 4px double #bbb;
}


/*セクションの間イメージ画像*/
.sec-adimg{
	padding: 0;
}
.sec-adimg-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.sec-adimg-container-item1 { grid-area: 1 / 1 / 2 / 2; }
.sec-adimg-container-item2 { grid-area: 1 / 2 / 2 / 3; }
.sec-adimg-container-item3 { grid-area: 1 / 3 / 2 / 4; }
.sec-adimg-container-item4 { grid-area: 1 / 4 / 2 / 5; }
.sec-adimg-container-item5 { grid-area: 1 / 5 / 2 / 6; }

@media (max-width: 568px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
}



/*クオレ化粧品 section2*/
.sec2 {
	padding: clamp(40px, 6vw, 90px) 0;
	background-color: #fbf8b0;
	background-image: url(../img/bg_03.png);
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
}
/*3つ*/
.top_sec2-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px 25px;
}
@media (max-width: 768px) {
	.top_sec2-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.top_sec2-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
.top_sec2-item {
	/*padding-bottom: 2vw;*/
	box-sizing: border-box;
	/*background-color: rgba(36, 36, 36, 0.2);*/
	/*border-radius: 5px;*/
	margin-top: 10px;
}
/*H4*/
h4{
	text-align: center;
	margin: 10px 0;
	font-size: clamp(18px, 2vw, 22px);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	border-bottom: 1px dashed #ccc;
	color: #0b5110;
}

/* FAQ */
.faq_sec1 {
	/*padding: clamp(50px, 4vw, 50px) 0;*/	/*ページ内カテゴリーの場合*/
	padding: var(--v-space) 0;
	/*padding: 0px 0 100px 0;*/	/*別ページの場合*/
	background-color: #fff;
}
/*通常デザイン*/
div.faq p.b {
	font-weight: 600;
	font-size: clamp(16px, 1.7vw, 17px);
	color: #000;
}
div.faq p.b::first-letter {
	color: var(--main-color);
	/*font-size: 110%;*/
	font-weight: 600;
}
div.faq p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
	font-size: clamp(16px, 1.7vw, 17px);
	color: #454545;
	letter-spacing: 0.3px;
}
div.faq p::first-letter {
	color: #fbc400;
	/*font-size: 110%;*/
	font-weight: 600;
}



/*======= info ======*/
/*案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-image: url(../img/bg_02.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: 600;
	border-bottom: 1px dashed #999;
	padding: 10px 5px;
	width: 7em;
	/*font-family: "Zen Old Mincho", serif;*/
	font-size: 105%;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 10px 5px;
	/*width: 400px;*/
	/*font-family: "Zen Old Mincho", serif;*/
	font-size: 105%;
	letter-spacing: 0.5px;
}
.info3 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 9em;
	color: #000;
	/*font-family: "Zen Old Mincho", serif;*/
}
.info4 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	/*font-family: "Zen Old Mincho", serif;*/
}
@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%;
		font-size: 95%;
	}
	.info3 {
		display: block;
		padding: 8px 2px 8px 2px;
		width: 100%;
		background-color: #0000000f;
	}
	.info4 {
		display: block;
		padding: 8px 2px;
		width: 99%;
	}
}
/*3つ*/
.info_sec1-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px 15px;
}
@media (max-width: 768px) {
	.info_sec1-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.info_sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
.info_sec1-item {
	/*padding-bottom: 2vw;*/
	box-sizing: border-box;
	/*background-color: rgba(36, 36, 36, 0.2);*/
	/*border-radius: 5px;*/
	margin-top: 10px;
}







/*アクセス*/
.access_sec1 {
	padding: var(--v-space) 0;
	/*background-color: #f5f5f5;*/
}

































/*アイコン画像*/
.i-icon01 {
	display: inline-block;
	width: 30px;
	vertical-align: middle;
	margin: 0 5px 1px 0;
}


/* タイトルとサブタイトル（短い線で装飾） */
.heading-decoration2 {
	font-size: clamp(25px, 2.3vw, 30px);
	min-height: 0vw;
	font-weight: 400;
	color: #fff;
	/*text-align: center;*/	/*下層ページがあって、真ん中寄せの場合*/
}
.heading-decoration2::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 2px var(--accent-color1);
	margin-top: 0.3em;
}
.heading-decoration2 + p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	color: #d5d5d5;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}
@media screen and (max-width: 568px) {
	.heading-decoration2 {
		text-align:center;
	}
	.heading-decoration2::after {
		margin-right:auto;
		margin-left:auto;
	}
	.heading-decoration2 + p {
		text-align:center;
	}
}












