@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap_lg {
	width: 1200px;
	margin: auto;
}
.l_wrap {
	width: 1080px;
	margin: auto;
}
.l_wrap_sm {
	width: 900px;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap_lg {
		width: 95%;
	}
}
@media screen and (max-width: 1160px) {
	.l_wrap {
		width: 95%;
	}
}
@media screen and (max-width: 960px) {
	.l_wrap_sm {
		width: 95%;
	}
}
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
}
.l_header .l_wrap_lg {
	display: flex;
	justify-content: space-between;
}
.l_header_right {
	width: calc(100% - 200px);
}
.l_header_btns {
	display: flex;
	justify-content: flex-end;
}
.l_header_btns > * {
	margin-left: 10px;
}
.l_header_btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0.93;
	width: 128px;
	height: 114px;
	border-radius: 0 0 20px 20px;
	color: #fff !important;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	line-height: var(--lh-sm);
	transition: 0.3s;
}
.l_header_btn img {
	display: block;
	width: 44px;
	margin: 0 auto 10px;
}
/*  .l_logo
---------------------------------------------*/
.l_logo {
	width: 15%;
	max-width: 150px;
	margin-top: 20px;
	font-size: 0;
	line-height: 1;
}
.l_logo img {
	transition: 0.5s;
}
#top .l_logo {
	width: 25%;
	max-width: 250px;
}
#top .l_logo.scroll {
	animation: logoMove 0.5s forwards;
}

/*  .l_nav
---------------------------------------------*/
.menu-checkbox {
	display: none;
}
.l_nav {
	overflow-y: auto;
}
.l_nav_list {
	flex-direction: column;
}
.l_nav_list li {
	margin-top: 10px;
}
.l_nav_list a {
	position: relative;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid var(--border-color);
	color: var(--main-color);
	text-decoration: none;
	transition: 0.3s;
}
.l_nav_list a::before,
.l_nav_list a::after {
	position: absolute;
	right: 10px;
	bottom: 18px;
	content: "";
	height: 1px;
	margin: auto;
	background: var(--main-color);
	transition: 0.3s;
}
.l_nav_list a::before {
	width: 40px;
}
.l_nav_list a::after {
	bottom: 20px;
	width: 6px;
	transform: rotate(45deg);
}
.l_nav_list a:hover {
	opacity: 0.5;
}
.l_nav_list a:hover::before {
	width: 30px;
}
.l_nav_en {
	display: block;
	font-family: "Cinzel", serif;
	color: var(--gy-55-color);
	font-size: 0.75em;
}
.drawer-menu {
	position: fixed;
	top: 0;
	right: -360px;
	height: 100%;
	width: 360px;
	transition: all 0.5s ease-in-out 0s;
	padding: 0 40px 20px;
	background-color: rgba(255, 255, 255, 0.93);
	z-index: 20;
}
.drawer-menu-list {
	margin-top: 130px;
}
.menu-checkbox:checked ~ .drawer-menu {
	right: 0;
}
.drawer-icon {
	position: relative;
	cursor: pointer;
	z-index: 30;
	display: block;
	width: 100px;
	height: 114px;
	background-color: rgba(255, 255, 255, 0.93);
	opacity: 0.93;
}
.drawer-icon span::before,
.drawer-icon span::after {
	position: absolute;
	inset: 0;
	content: "";
	display: block;
	height: 2px;
	width: 40px;
	margin: auto;
	border-radius: 3px;
	background-color: var(--main-color);
	transition: all 0.5s ease-in-out 0s;
}
.drawer-icon span::before {
	top: initial;
	bottom: 48px;
	animation: menuTopMove 3s forwards infinite;
}
.drawer-icon span::after {
	top: 48px;
	bottom: initial;
	animation: menuBtmMove 3s forwards infinite;
}
.menu-checkbox:checked ~ .drawer-icon span::before {
	bottom: 56px;
	transform: rotate(-45deg) !important;
	animation: none;
}
.menu-checkbox:checked ~ .drawer-icon span::after {
	top: 56px;
	transform: rotate(45deg) !important;
	animation: none;
}
.menu-checkbox:checked ~ .menu-background {
	display: block;
	opacity: 0.3;
}
.l_nav_links {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.l_nav_btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(25% - 2px);
	padding: 6px 0;
	border-radius: 8px;
	color: #fff !important;
	font-size: 0.625em;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	line-height: var(--lh-sm);
	letter-spacing: 0;
	transition: 0.3s;
}
.l_nav_btn_icon img {
	width: 24px;
	max-width: 50%;
	margin-bottom: 5px;
}
.l_nav_schedule {
	font-size: 0.875em;
}
@media screen and (max-width: 1024px) {
	.l_header_btns > * {
		margin-left: 5px;
	}
	.l_header_btn {
		width: 100px;
		height: 90px;
		border-radius: 0 0 15px 15px;
	}
	/*  .l_nav
---------------------------------------------*/
	.drawer-icon {
		width: 90px;
		height: 90px;
	}
	.drawer-icon span::before {
		bottom: 38px;
	}
	.drawer-icon span::after {
		top: 38px;
	}
	.menu-checkbox:checked ~ .drawer-icon span::before {
		bottom: 44px;
	}
	.menu-checkbox:checked ~ .drawer-icon span::after {
		top: 44px;
	}
}
@media screen and (max-width: 640px) {
	.l_header .l_wrap_lg {
		width: 100%;
	}
	.l_header_right {
		width: 100%;
	}
	.l_header_btns > * {
		margin-left: 0;
	}
	.l_header_btn {
		width: 60px;
		height: 60px;
		border-radius: 0 0 10px 10px;
		font-size: 0.8rem;
	}
	.l_header_btn img {
		width: 24px;
		margin-bottom: 2px;
	}
	/*  .l_logo
---------------------------------------------*/
	.l_logo {
		width: 30%;
		max-width: 100px;
		margin: 20px 0 0 10px;
	}
	#top .l_logo {
		width: 45%;
		max-width: 115px;
	}
	#top .l_logo.scroll {
		animation: logoMoveSP 0.5s forwards;
	}
	/*  .l_nav
---------------------------------------------*/
	.drawer-icon {
		width: 60px;
		height: 60px;
	}
	.drawer-icon span::before {
		bottom: 35px;
	}
	.drawer-icon span::after {
		top: 35px;
	}
	.menu-checkbox:checked ~ .drawer-icon span::before {
		bottom: 29px;
	}
	.menu-checkbox:checked ~ .drawer-icon span::after {
		top: 29px;
	}
}
@media screen and (max-width: 460px) {
	.drawer-menu {
		right: -100%;
		width: 100%;
	}
}
/*----------------------------------------------
	.l_page
---------------------------------------------*/
.l_page_head {
	position: relative;
	height: 440px;
	background:
		url(../images/bg_wave_btm.png) no-repeat center bottom / 100% auto,
		linear-gradient(
			to right,
			#fff,
			rgba(255, 255, 255, 0) 10%,
			rgba(255, 255, 255, 0) 90%,
			#fff
		);
}
.l_page_head::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	z-index: -2;
	width: 100%;
	height: 100%;
	background: url(../images/about_mv.jpg) no-repeat center top -1px / cover;
}
.l_page_head_wrap {
	display: flex;
	align-items: center;
	height: 100%;
}
.l_page_title {
	display: inline-block;
	min-width: 280px;
	padding: 0.2em 1.3em 0.3em;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 100px;
	font-family: "Zen Old Mincho", serif;
	font-size: 2.125em;
	color: var(--main-color);
	font-weight: 400;
	text-align: center;
	transform: translateY(-0.5em);
}
@media screen and (max-width: 1024px) {
	.l_page_head {
		height: 370px;
	}
	.l_page_title {
		transform: none;
	}
}
@media screen and (max-width: 820px) {
	.l_page_head {
		height: 320px;
	}
	.l_page_title {
		min-width: auto;
	}
}
@media screen and (max-width: 768px) {
	.l_page_head {
		height: 270px;
	}
}
@media screen and (max-width: 640px) {
	.l_page_head_wrap {
		justify-content: center;
	}
	.l_page_head {
		height: 300px;
		padding-bottom: 70px;
		background:
			url(../images/bg_wave_btm.png) no-repeat center bottom / 1920px auto,
			linear-gradient(
				to right,
				#fff,
				rgba(255, 255, 255, 0) 10%,
				rgba(255, 255, 255, 0) 90%,
				#fff
			),
			none;
	}
	.l_page_head::before {
		background-size: 200% auto;
	}
	.l_page_title {
		font-size: 2em;
	}
}
/*----------------------------------------------
	.l_main
---------------------------------------------*/
.l_main {
	position: relative;
	padding-bottom: 240px;
	background: url(../images/bg_wave_btm.png) no-repeat center bottom -1px / 100%
		auto;
}
.l_main::before,
#top .l_main::after {
	position: absolute;
	content: "";
	z-index: -1;
	width: 100%;
	height: 100%;
}
.l_main::before {
	bottom: 0;
	left: 0;
	z-index: -5;
	height: 240px;
	background: linear-gradient(to bottom, #fff, #ddd 100%);
}
#top .l_main {
	margin-top: -100px;
	padding-bottom: 200px;
}
#top .l_main::before {
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(64, 89, 126, 0.62),
		rgba(124, 163, 204, 0.37) 20%,
		rgba(116, 156, 175, 0.5) 40%,
		rgba(14, 71, 101, 0.29) 60%,
		rgba(122, 144, 157, 0.27) 80%
	);
}
#goods .l_main::before {
	content: none;
}
#top .l_main::after {
	bottom: 0;
	left: 0;
	z-index: -4;
	opacity: 0.3;
	background: url(../images/bg_logo.png) no-repeat left -100px bottom 80px / 58%
		auto;
}
@media screen and (max-width: 1280px) {
	.l_main:has(.s_sec_treatments_links),
	#clinic .l_main,
	#anti-aging .l_main {
		padding-bottom: 200px;
	}
}
@media screen and (max-width: 1230px) {
	.l_main:has(.s_sec_treatments_links),
	#clinic .l_main,
	#anti-aging .l_main {
		padding-bottom: 160px;
	}
}
@media screen and (max-width: 820px) {
	.l_main {
		margin-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.l_main:has(.s_sec_treatments_links),
	#clinic .l_main,
	#anti-aging .l_main {
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 640px) {
	.l_main {
		margin-top: -50px;
		padding-bottom: 160px;
		background-size: 1920px auto;
	}
	.l_main::before {
		height: 200px;
	}
	.l_main::after,
	#top .l_main::after {
		content: none;
	}
	.l_main:has(.s_sec_treatments_links),
	#clinic .l_main,
	#anti-aging .l_main {
		padding-bottom: 160px;
	}
	.lp .l_main {
		font-size: 1.2rem;
	}
}
/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
/* .l_pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.l_pagetop a {
    display: block;
    background: #fff;
    padding: .7em .7em .5em;
    font-size: 1.4rem;
    color: var(--bk-color);
    text-align: center;
    line-height: var(--lh-sm);
    transition: all .2s ease;
}
.l_pagetop a:hover {
    color: var(--bk-color);
    opacity: .5;
}
@media screen and (max-width: 1280px) {
    .l_pagetop a  {
      font-size: calc(14px + ((1vw - 12.6px)*(16/10)));
    }
}
@media screen and (max-width: 768px) {
    .l_pagetop {
        position: static;
    }
    .l_pagetop a {
        background: var(--bk-color);
        border-bottom: 1px solid var(--bk-color);
        padding: 1em;
        font-size: 1.2rem;
        color: #fff;
    }
    .l_pagetop a:hover {
        color: #fff;
    }
} */
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	padding: 20px 0 60px;
	background: #fff url(../images/bg_footer.png) no-repeat 0 bottom / 20% auto;
}
.l_footer_wrap {
	width: 750px;
	margin-inline: auto;
}
.l_footer_info {
	text-align: center;
}
.l_footer_schedule_img {
	width: 603px;
	max-width: 100%;
	margin-inline: auto;
}
.l_footer_schedule {
	margin-top: 30px;
	font-size: 1.25em;
	line-height: var(--lh-sm);
}
.l_footer_links {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 30px;
}
.l_footer_btn {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	width: 120px;
	height: 120px;
	border-radius: 20px;
	color: #fff !important;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	line-height: var(--lh-sm);
	transition: 0.3s;
}
.l_footer_btn > * {
	width: 100%;
}
.l_footer_btn img {
	display: block;
	width: 44px;
	margin: 0 auto 10px;
}
.l_footer_note {
	font-size: 0.875em;
}
.l_footer_note a {
	color: var(--gn-color);
}
.l_footer_note a:hover {
	color: #c00;
	text-decoration: none;
}
/*  .l_footer_nav
---------------------------------------------*/
.l_footer_nav {
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0;
}
.l_footer_nav_list {
	width: calc(20% - 10px);
	margin: 7.5px 0;
	padding-left: 10px;
	border-left: 1px solid var(--border-color);
}
.l_footer_nav_list:nth-child(5n) {
	width: calc(20% + 40px);
}
.l_footer_nav_item {
	display: flex;
	flex-direction: column;
	font-size: 0.875em;
	color: var(--main-color) !important;
	text-decoration: none;
	transition: 0.3s;
}
.l_footer_nav_item:hover {
	opacity: 0.5;
}
.l_footer_en {
	font-family: "Cinzel", serif;
	color: var(--gy-55-color);
	font-size: 0.85em;
}
/*  .l_copyright
---------------------------------------------*/
.l_copyright {
	font-family: "Cinzel", serif;
	font-size: 0.75em;
	color: var(--gy-55-color);
	text-align: center;
}
@media screen and (max-width: 1460px) {
	.l_footer {
		background-position: left -80px bottom;
	}
}
@media screen and (max-width: 1280px) {
	.l_footer {
		background-size: 20% auto;
		background-position: left -140px bottom;
	}
}
@media screen and (max-width: 1024px) {
	.l_footer {
		background-position: left bottom 400px;
	}
}
@media screen and (max-width: 820px) {
	.l_footer {
		background-size: 21% auto;
		background-position: left -80px bottom 340px;
	}
}
@media screen and (max-width: 768px) {
	.l_footer {
		background-position: left -80px bottom 400px;
	}
	.l_footer_wrap {
		width: 95%;
	}
	.l_footer_schedule {
		font-size: 1em;
	}
}
@media screen and (max-width: 640px) {
	.l_footer {
		position: relative;
		margin-top: -40px;
		padding: 0 0 30px;
		background-position: left -140px bottom 450px;
		background-size: 33% auto;
	}
	.l_footer_schedule {
		line-height: 1.6;
	}
	.l_footer_links {
		margin-top: 30px;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.l_footer_btn {
		width: 80px;
		height: 80px;
		margin: 0;
		border-radius: 15px;
		font-size: 1rem;
	}
	.l_footer_btn img {
		margin-bottom: 2px;
	}
	.l_footer_note {
		font-size: 1.25rem;
	}
	.l_footer_nav {
		margin: 40px 0 35px;
	}
	.l_footer_nav_list:nth-child(odd) {
		width: calc(47% - 1px);
	}
	.l_footer_nav_list:nth-child(even) {
		width: calc(53% - 1px);
	}
	.l_footer_nav_item {
		font-size: 1.4rem;
	}
	.l_footer_en {
		font-size: 1rem;
	}
}
@media screen and (max-width: 460px) {
	.l_footer {
		background-position: left -80px bottom 590px;
	}
}
