/*---------- ---------- ---------- common */
body{
	color: #424242;
	font-size: 14px;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-weight: normal;
	line-height: 1.8;
	background: #fff;
	font-feature-settings: "palt";
}
html.fade-ready body {
	opacity: 0;
	transition: opacity 1s ease;
}
html.fade-ready.is-loaded body {
	opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
	html.fade-ready body {
		transition: none !important;
		opacity: 1 !important;
	}
}
#fv_logo{
	position: absolute;
	top: 4vw;
	left: 4vw;
	z-index: 2;
	max-width: 200px;
	width: 33vw !important;
}
.content{
	margin: 0 auto 30px;
	max-width: 1200px;
	width: 80vw;
}
.content_wrap{
	margin: 0 auto;
	padding: 0 4vw;
	max-width: 1200px;
}
.text-block{
	display: inline-block;
}
.fadeIn{
	opacity: 0;
	transform: translateY(50px);
	transition: 1.5s;
}
.fadeInFooter{
	opacity: 0;
	transition: 1.5s;
}
main{
	margin-bottom: 14vh;
}
@media screen and (max-width: 768px) {
	main{
		margin-bottom: 8vh;
	}
}
section{
	padding: 40px 0 0;
}
h2{
	margin: 0 auto 40px;
	padding: 0;
	width: 100%;
	font-size: 1.6rem;
	font-family: YakuHanJP, "Aboreto", "Zen Kaku Gothic New", system-ui;
	font-weight: 300;
}
h2 img{
	height: 24px;
}
h3{
	margin: 0 auto 30px;
	padding: 0;
	width: 100%;
	font-size: 1.2rem;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-weight: 300;
}
@media screen and (min-width: 768px) {
	h2{
		margin: 0 auto 40px;
		padding: 0;
		font-size: 1.6rem;
		font-family: YakuHanJP, "Aboreto","Zen Kaku Gothic New", system-ui;
		font-weight: 300;
	}
	h3{
		margin: 0 auto 30px;
		padding: 0;
		font-size: 1.3rem;
		font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
		font-weight: normal;
	}
}
p{
	margin: 1rem 0;
}
span.sub{
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	margin: 0 auto 10px;
	padding: 0;
	width: 100%;
}
span.sub::before{
	content: "";
	display: inline-block;
	margin: 0 0.5rem 0 0;
	width: 20px;
	height: 1px;
	background: #424242;
}
@media screen and (min-width: 768px) {
	span.sub{
		padding: 0;
	}
}
a{
	text-decoration: none;
}
a.btn{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0 0 1rem;
	padding: 6px 0;
	border: 1px solid #EF6263;
	height: 48px;
	color: #EF6263;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}
a.btn:hover{
	background: #EF6263;
	color: #fff;
}
a.btn::before{
	content: "";
	display: inline-block;
	border-radius: 50vw;
	width: 6px;
	height: 6px;
	background: #EF6263;
	transition: 0.3s;
}
a.btn:hover::before{
	background: #fff;
}
a.btn-w{
	border: 1px solid #fff;
	color: #fff;
	transition: 0.3s;
}
a.btn-w:hover{
	background: #fff;
	color: #EF6263;
}
a.btn-w::before{
	background: #fff;
	transition: 0.3s;
}
a.btn-w:hover::before{
	background: #EF6263;
}
a.btn-b{
	border: 1px solid #444;
	color: #444;
}
a.btn-b::before{
	background: #444;
}
a.btn-red{
	background: #EF6263;
	color: #fff;
}
a.btn-red:hover{
	background: #fff;
	color: #EF6263;
}
a.btn-red::before{
	background: #fff;
}
a.external-link::after{
	content: "\e89e";
	font-size: 1.1rem;
	font-family: 'Material Symbols Outlined';
}
header{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 4;
	width: 100%;
	height: auto;
	mix-blend-mode: exclusion;
}
#reserve_btn{
	position: fixed;
	bottom: 15%;
	right: 0;
	z-index: 3;
	padding: 0;
	border: none;
	max-width: 50px;
	width: 10vw;
	opacity: 0.9;
	cursor: pointer;
}
	.dialog-overlay {
		display: none;
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		justify-content: center;
		align-items: center;
		z-index: 1000;
	}
	.dialog-visible {
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 1;
	}
	.dialog-content {
		position: relative;
		background: #fff;
		padding: 40px 60px;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		z-index: 1001; /* オーバーレイより前面に配置 */
		max-width: 400px;
		width: 90vw;
	}
	.dialog-content h2{
		width: auto;
	}
	.dialog-content h2{
		width: auto;
	}
#close-btn{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 99999;
	width: 40px;
	height: 30px;
	cursor: pointer;
	mix-blend-mode: exclusion;
}
#close-btn::before,#close-btn::after{
	content: "";
	position: absolute;
	right: 0;
	width: 40px;
	height: 1px;
	background: #fff;
	transition: 0.5s;
	transform-origin: center;
}
#close-btn::before{
	top: 15px;
	rotate: 20deg
}
#close-btn::after{
	top: 15px;
	rotate: -20deg
}
.scroll_logo{
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	mix-blend-mode: exclusion;
}
.scroll_logo.is-visible{
	opacity: 1;
	visibility: visible;
}
.scroll_logo img{
	max-width: 210px;
	width: 33vw;
}
#nav-btn{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 99999;
	width: 40px;
	height: 30px;
	cursor: pointer;
	mix-blend-mode: exclusion;
}
#nav-btn::before,#nav-btn::after{
	content: "";
	position: absolute;
	right: 0;
	width: 40px;
	height: 1px;
	background: #fff;
	transition: 0.5s;
	transform-origin: center;
}
#nav-btn::before{
	top: 11px;
}
#nav-btn::after{
	top: 19px;
}
#nav-btn.open::before{
	translate: 0 4px;
	rotate: 20deg
}
#nav-btn.open::after{
	translate: 0 -4px;
	rotate: -20deg
}
nav{
	display: flex;
	justify-content: center;
	align-items: stretch;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	width: 100%;
	max-height: 100svh;
	height: 100svh;
	background: #fff;
	transition: 0.5s;
}
nav.open{
	opacity: 1;
	visibility: visible;
}
nav .nav_content{
	display: flex;
	justify-content: center;
	align-items: stretch;
	align-self: stretch;
	width: 100%;
	height: 100%;
}
nav .nav_left{
	padding: 140px 0 50px 10vw;
	width: 60%;
	height: auto;
	background: #fff;
	overflow-y: auto;
}
nav .nav_right{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-self: stretch;
	flex-grow: 1;
	padding: 140px 0 0;
	width: 40%;
	height: auto;
	background: #dad4c8;
	overflow-y: auto;
}
nav .nav_right .nav_right_content{
	width: 70%;
	color: #444;
	font-size: 1.1rem;
}
nav .nav_right .nav_right_content .tel{
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	gap: 8px;
	font-size: 1.8rem;
	font-family: YakuHanJP, "Aboreto", system-ui;
}
nav .nav_right .nav_right_content .tel::after{
	content: "\e89e";
	font-size: 1.1rem;
	font-family: 'Material Symbols Outlined';
}
nav .nav_right .nav_right_content a{
	color: #444;
}
nav .nav_right .nav_right_content a.btn{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 40px 0 0;
	color: #444;
}
nav .nav_right .nav_right_content .instagram{
	display: inline-block;
	margin: 0 8px 0 0;
	padding: 0 0 0 24px;
	background-image: url(../image/_common/instagram.png);
	background-size: 20px;
	background-position: left center;
	background-repeat: no-repeat;
}
nav .nav_right .nav_right_content .pp{
	margin: 0 0 20px;
}
nav .nav_right .nav_right_content .pp::before{
	content: "";
	display: inline-block;
	border-radius: 50vw;
	margin: 0 8px 0 0;
	width: 4px;
	height: 4px;
	background: #444;
}
nav .nav_right .nav_right_content table th{
	padding: 0 30px 0 0;
	text-align: left;
	font-weight: normal;
}
nav .nav_right .nav_right_content p{
	width: 100%;
}
nav > .nav_content .nav_left a{
	display: inline-block;
	margin: 0 0 1rem;
	font-size: 1.6rem;
	font-family: YakuHanJP, "Aboreto", system-ui;
}
nav > .nav_content .nav_left img{
	margin: 0 0 0 3px;
	height: 24px;
}
nav > .nav_content .acc_wrap{
	margin: 0 0 1.3rem;
	font-size: 1.6rem;
	font-family: YakuHanJP, "Aboreto", system-ui;
	cursor: pointer;
}
nav > .nav_content .acc_items a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	margin: 0 0 0.6rem;
	padding: 0 0 0 0.6rem;
	font-size: 1.2rem;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
nav .acc_items a::before{
	content: "";
	display: inline-block;
	border-radius: 50vw;
	width: 4px;
	height: 4px;
	background: #dad4c8;
}
@media screen and (max-width: 768px) {
	nav{
		display: block;
		position: fixed;
		opacity: 0;
		visibility: hidden;
		z-index: 3;
		width: 100%;
		max-height: 100svh;
		height: auto;
		overflow-y: auto;
	}
	nav .nav_content{
		flex-direction: column;
	}
	nav .nav_left{
		padding: 20vw 6vw;
		width: 100%;
		height: auto;
	}
	nav .nav_right{
		padding: 8vw 6vw;
		width: 100%;
	}
	nav > .nav_content .nav_left a{
		margin: 0 0 0.6rem;
		font-size: 1.5rem;
	}
	nav > .nav_content .nav_left img{
		margin: 0 0 0 3px;
		height: 20px;
	}
	nav > .nav_content .acc_wrap{
		margin: 0 0 0.6rem;
		font-size: 1.5rem;
	}
	nav > .nav_content .acc_items a{
		font-size: 1rem;
	}
	nav .nav_right .nav_right_content{
		width: 100%;
		font-size: 0.9rem;
	}
}
#fv{
	position: relative;
	width: 100%;
}
#fv img{
	width: 100%;
}
#fv h2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	font-size: 2.5rem;
	color: #fff;
}
footer{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 30px 6vw 10px;
	background: #dad4c8;
	color: #444;
}
footer div{
	margin: 0 0 10px 0;
}
footer .tel{
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	gap: 8px;
	font-size: 1.5rem;
	font-family: YakuHanJP, "Aboreto", system-ui;
}
footer .tel::after{
	content: "\e89e";
	font-size: 1.1rem;
	font-family: 'Material Symbols Outlined';
}
footer a{
	display: inline-block;
	color: #444;
}
footer .instagram{
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 0 0 0 24px;
	background-image: url(../image/_common/instagram.png);
	background-size: 20px;
	background-position: left center;
	background-repeat: no-repeat;
}
footer .pp,footer .online_store{
	margin: 8px 0 0;
}
footer .pp::before,footer .online_store::before{
	content: "";
	display: inline-block;
	border-radius: 50vw;
	margin: 0 8px 0 0;
	width: 4px;
	height: 4px;
	background: #444;
}
footer table th{
	padding: 0 30px 0 0;
	text-align: left;
	font-weight: normal;
}
footer .copyright{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 40px 0 0;
	padding: 0 0 30px;
	font-size: 13px;
}
footer .copyright p{
	margin: 0;
}
footer .copyright img{
	max-width: 100px;
	width: 25vw;
}
footer .online_store{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
footer .online_store::after{
	margin: 0 0 0 4px;
}
@media screen and (max-width: 768px) {
	footer{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 30px 6vw 10px;
		background: #dad4c8;
		color: #444;
	}
	footer div{
		width: 100%;
	}
	footer .copyright{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		width: 100%;
	}
	footer .copyright p{
		order: 0;
	}
	footer .copyright a{
		order: 1;
	}
	footer .online_store{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
		margin: 1rem 0 0.5rem;
		padding: 6px 0;
		width: 100%;
		text-align: center;
		text-decoration: none;
		border: 1px solid #444;
		color: #444;
	}
}


/*---------- ---------- ---------- home herbacie_labo */

/* fv_wrapのサイズを調整 */
.fv_wrap {
	width: 100%;
	height: 100vh; /* 例えば画面の高さに合わせる */
}
/* 画像がコンテナに収まるように調整 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 画像の比率を保ったままトリミング */
}

#home .two-image_wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px;
	padding: 50px 0;
	width: 100%;
}
#home .two-image_wrap img{
	display: block;
	width: 49%;
}
#home .two-image_wrap img:nth-of-type(1){
	display: block;
	position: relative;
	top: 25px;
	left: 0;
}
#home .two-image_wrap img:nth-of-type(2){
	display: block;
	position: relative;
	top: -25px;
	left: 0;
}
#home .c1{
	padding: 0 4vw;
	position: relative;
	top: 50px;
	left: 0;
}
#home .c2{
	padding: 0 4vw;
}
@media screen and (min-width: 768px) {
	#home .c1{
		position: relative;
		top: 50px;
		left: 0;
	}
	#home .two-image_wrap{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 0 50px;
		padding: 50px 0;
		width: 100%;
	}
	#home .two-image_wrap img{
		display: block;
		width: 49%;
	}
	#home .two-image_wrap img:nth-of-type(1){
		display: block;
		position: relative;
		top: 50px;
		left: 0;
	}
	#home .two-image_wrap img:nth-of-type(2){
		display: block;
		position: relative;
		top: -50px;
		left: 0;
	}
}



/*---------- ---------- ---------- home herbacie_labo */
#home #herbacie_labo{
	padding: 40px 0;
}
#home #herbacie_labo .content_wrap{
	position: relative;
	padding: 0 0 40px;
}
#home #herbacie_labo #bg{
	position: absolute;
	bottom: 0;
	right: 20px;
	max-width: 400px;
	width: 50vw;
}
@media screen and (min-width: 768px) {
	#home #herbacie_labo .content_wrap{
		padding: 0;
	}
}



/*---------- ---------- ---------- home floor_guide */
#home #floor_guide .content{
	padding: 0 0 30px;
}
#home #floor_guide h3{
	font-size: 1.2rem;
	font-weight: normal;
	padding: 0;
}
#home #floor_guide h3 span{
	display: inline-block;
	margin: 0 10px 0 0;
	font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
	#home #floor_guide .flex{
		display: flex;
		justify-content: center;
		align-items: stretch;
		gap: 30px;
		max-width: 1200px;
	}
	#home #floor_guide .flex .content{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	#home #floor_guide .flex .content > div{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	#home #floor_guide .flex .content h2{
		width: 100%;
	}
	#home #floor_guide .flex .content h3{
		width: 100%;
	}
	#home #floor_guide .flex .content a{
		width: 100%;
		height: 42px;
	}
}



/*---------- ---------- ---------- home reserve */
#home #reserve{
	padding: 40px 0;
	background: #EF6263;
	color: #fff !important;
}
#home #reserve span.sub::before{
	background: #fff;
}
@media screen and (min-width: 768px) {
	#home #reserve .content{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}
	#home #reserve .content a{
		width: 100%;
	}
	#home #reserve a.btn{
		padding: 12px 0;
	}
}



/*---------- ---------- ---------- home information */
#home #information table th{
	padding: 0 30px 0 0;
	text-align: left;
	font-weight: normal;
}
#home #information .information_image{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px -4vw;
	padding: 50px 0;
}
#home #information .information_image img{
	display: block;
	width: 49%;
}
#home #information .information_image img:nth-of-type(1){
	display: block;
	position: relative;
	top: 25px;
	left: 0;
}
#home #information .information_image img:nth-of-type(2){
	display: block;
	position: relative;
	top: 0;
	left: 0;
}
@media screen and (min-width: 768px) {
	#home #information .content_wrap{
		display: flex;
		justify-content: center;
		align-items: flex-start;
		gap: 50px;
	}
	#home #information .content_wrap .c1{
		width: 50%;
	}
	#home #information .content_wrap .c1 .content{
		width: auto;
	}
	#home #information .information_image{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 20px;
		margin: 0;
		width: 50%;
	}
	#home #information .information_image img{
		display: block;
		width: 100%;
	}
	#home #information .information_image img:nth-of-type(1){
		display: block;
		position: relative;
		top: auto;
		left: auto;
	}
	#home #information .information_image img:nth-of-type(2){
		display: block;
		position: relative;
		top: auto;
		left: auto;
	}
}


/*---------- ---------- ---------- home faq */
#home #faq {
	padding: 40px 0;
}
#home #faq ul{
	margin: 0;
	padding: 0;
}
#home #faq ul li{
	margin: 0;
}
#home #faq .accordion_header{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1rem;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}
#home #faq .accordion_header::before{
	content: "Q";
	display: inline-block;
	color: #EF6263;
}
#home #faq .accordion_content{
	display: none;
	background: #f5f5f5;
	list-style: none;
}
#home #faq .accordion_content .accordion_content_inner{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1rem;
	padding: 20px;
	background: #f5f5f5;
}
#home #faq .accordion_content .accordion_content_inner::before{
	content: "A";
	display: inline-block;
	color: #EF6263;
}

/*---------- ---------- ---------- service */
#service .content{
	padding: 20px 16px 0;
	border: 1px solid #D9D9D9;
}
#service h3{
	margin: 0;
	padding: 0;
	color: #EF6263;
	font-size: 1.4rem;
}
#service main img{
	margin: 0 0 20px;
}
#service .price{
	margin: 0 0 2px;
	color: #EF6263;
	font-size: 1rem;
	letter-spacing: 0.05rem;
}
#service .btn-red{
	margin: 1rem 0;
}
#service .option{
	margin: 0 0 10px;
	color: #e3a036;
	font-size: 1.1rem;
	font-family: YakuHanJP, "Aboreto", system-ui;
}
#service .option_wrap{
	margin: 0 0 16px;
	padding: 16px 10px;
	border: 1px solid #e3a036;
}
#service .option_wrap h4{
	margin: 0 0 6px;
	color: #e3a036;
	font-weight: normal;
	font-size: 1.1rem;
}
#service .option_wrap .price{
	margin: 0 0 1rem;
	color: #e3a036;
	font-size: 1rem;
}
#service .option_wrap .desc{
	margin: 0;
	font-size: 0.8rem;
}
#home #service .notion{
	margin: 0 0 20px;
	font-size: 0.7rem;
	color: #aaa;
}


/* スマートフォン表示 (デフォルト) */
article.content_inner {
    display: flex;
    flex-direction: column;
}
/* PC表示（ブレークポイントを設定） */
@media (min-width: 768px) {

	#service .content{
		padding: 4%;
	}
	article.content_inner {
	    flex-direction: row;
	    margin-bottom: 1%;
	}
	.service_left {
	    width: 48%;
	    margin-right: 2%!important;
	}
	.service_right{
	    width: 50%;
	}
	#service .option_wrap{
		padding: 1.5% 2%;
	}
	#service .option_wrap{
		margin: 0;
	}
}

/* PC表示（ブレークポイントを設定） */
@media (max-width: 768px) {

	#service h3{
		font-weight: 400;
		font-size: 1.2rem;
		line-height: 1.5rem;
	}
	#service .option_wrap h4{
		font-weight: 600;
		font-size: 1.0rem;
	}
	#service .price{
		font-weight: 500;
		font-size: 1rem;
	}

}

/*---------- ---------- ---------- overview */
#overview #our_company ul{
	padding: 0;
	list-style: none;
}
#overview #our_company ul li{
	padding: 10px 0;
	border-bottom: 1px solid #aaa;
}
#overview #our_company ul li p{
	margin: 4px 0;
}
#overview #site_map ul{
	margin: 4px 0;
	padding: 0;
	list-style: none;
}
#overview #site_map .content > a{
	display: inline-block;
	margin: 4px 0 12px;
}
#overview #site_map ul{
	margin: 0 0 30px;
}
#overview #site_map ul a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	margin: 4px 0 12px;
	padding: 0;
	list-style: none;
}
#overview #site_map ul a::before{
	content: "";
	display: inline-block;
	border-radius: 50vw;
	width: 6px;
	height: 6px;
	background: #EF6263;
}



/*---------- ---------- ---------- privacy policy */
#privacypolicy section{
	padding: 240px 0 0 0;
}
#privacypolicy .content p{
	margin: 0 0 1.5rem;
}
#privacypolicy .content b{
	display: inline-block;
	margin: 0 0 8px;
	font-weight: normal;
}
#privacypolicy .content ul{
	padding: 20px 20px 20px 2rem;
	border: 1px solid #aaa;
}