@charset "UTF-8";
/* =========================================================
   SK新宿歌舞伎町 — ヘッダー / フッター
========================================================= */


.ly_header *,
.ly_burger *,
.ly_footer * {
	box-sizing: border-box;
}

.ly_header ul,
.ly_header ol,
.ly_header li,
.ly_burger ul,
.ly_burger ol,
.ly_burger li,
.ly_footer ul,
.ly_footer ol,
.ly_footer li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ly_header a,
.ly_burger a,
.ly_footer a {
	color: inherit;
	text-decoration: none;
}

.ly_header img,
.ly_burger img,
.ly_footer img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ly_header,
.ly_burger,
.ly_footer {
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	color: #423D31;
	line-height: 1.8;
}


#body_wrap {
	padding-top: 130px;
}

.top #content {
	padding-top: 2em;
}

@media screen and (max-width: 1024px) {
	#body_wrap {
		padding-top: 100px;
	}
}

@media screen and (max-width: 767px) {
	#body_wrap {
		padding-top: 96px;
	}
}

/* =========================================================
   共通ボタン(.el_btnNormal)
========================================================= */
.ly_header .el_btnNormal,
.ly_burger .el_btnNormal,
.ly_footer .el_btnNormal {
	display: inline-block;
	padding: 12px 54px 12px 18px;
	border-radius: 100px;
	border: 1px solid #423D31;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.04em;
	position: relative;
}

.ly_header .el_btnNormal:before,
.ly_burger .el_btnNormal:before,
.ly_footer .el_btnNormal:before {
	content: "";
	background: url(../img/ico/ico_arrow_link.svg) no-repeat;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 10px;
	right: 18px;
}

@media (hover: hover) {

	.ly_header .el_btnNormal,
	.ly_burger .el_btnNormal,
	.ly_footer .el_btnNormal {
		transition: 0.5s;
	}

	.ly_header .el_btnNormal:hover,
	.ly_burger .el_btnNormal:hover,
	.ly_footer .el_btnNormal:hover {
		background: #423D31;
		color: #FFFFFF;
	}
}

/* =========================================================
   HEADER
========================================================= */
.ly_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9990;
	transition: 0.5s;
}

.ly_header::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}

.ly_header:has(.el_dropdown:hover)::before {
	opacity: 1;
}

.ly_header.is_active {
	background: #fff;
}

.ly_header_inner {
	display: flex;
	justify-content: space-between;
	padding: 24px 40px;
	position: relative;
	z-index: 100;
}

@media screen and (max-width: 1200px) {
	.ly_header_inner {
		padding: 24px 20px;
	}
}

@media screen and (max-width: 1024px) {
	.ly_header_inner {
		padding: 46px 20px 20px;
		align-items: center;
	}
}

.ly_header .el_head_logo {
	max-width: 348px;
}

@media screen and (max-width: 767px) {
	.ly_header .el_head_logo {
		max-width: 232px;
	}
}

.ly_header .el_head_logo a {
	display: block;
}

@media (hover: hover) {
	.ly_header .el_head_logo a {
		transition: 0.5s;
	}

	.ly_header .el_head_logo a:hover {
		opacity: 0.5;
	}
}

.home .ly_header .el_head_logo {
	max-width: 450px;
	transition: 0.5s;
}

@media screen and (max-width: 1200px) {
	.home .ly_header .el_head_logo {
		max-width: 300px;
	}
}

@media screen and (max-width: 767px) {
	.home .ly_header .el_head_logo {
		max-width: 232px;
	}
}

.home .ly_header.is_active .el_head_logo {
	max-width: 348px;
}

@media screen and (max-width: 767px) {
	.home .ly_header.is_active .el_head_logo {
		max-width: 232px;
	}
}

.el_headText {
	width: fit-content;
	margin: 0 0 0 auto;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	border-radius: 4px;
	letter-spacing: 0.04em;
	border: 1px solid rgba(66, 61, 49, 0.5);
	padding: 8px 12px;
	margin-bottom: 1.5vw;
}

@media screen and (max-width: 1024px) {
	.el_headText {
		border: none;
		border-bottom: 1px solid rgba(66, 61, 49, 0.5);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		border-radius: 0;
		text-align: center;
		font-size: 10px;
		overflow: auto;
		white-space: nowrap;
	}

	.el_headText::-webkit-scrollbar {
		display: none;
	}
}

.el_headNav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	margin-top: 24px;
	font-size: 16px;
	font-weight: 400;
}

@media screen and (max-width: 1200px) {
	.el_headNav {
		gap: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.el_headNav {
		display: none;
	}
}

.el_headNav a {
	display: block;
}

.el_headNav>li>a,
.el_headNav .el_dropdown>span {
	white-space: nowrap;
}

@media (hover: hover) {
	.el_headNav a {
		transition: 0.5s;
	}

	.el_headNav a:hover {
		opacity: 0.5;
	}

	.el_headNav a.el_btnNormal:hover {
		opacity: 1;
	}
}

/* ---- 診察一覧 ドロップダウン ---- */
.el_dropdown {
	position: relative;
}

.el_dropdown>span {
	cursor: pointer;
	position: relative;
}

.el_dropdown::before {
	content: "";
	width: 120px;
	height: 50px;
	position: absolute;
	top: 0;
	left: -20px;
}

.el_dropdown::after {
	content: "";
	width: 12px;
	height: 10px;
	margin-left: 6px;
	background: url(../img/ico/ico_select.svg) no-repeat center / contain;
	display: inline-block;
}

.el_dropdown_item {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 130px;
	left: 50%;
	width: calc(100% - 40px);
	max-width: 1260px;
	max-height: calc(90vh - 200px);
	padding: 50px;
	border-radius: 20px;
	background: #F1EFEA;
	overflow: auto;
	transform: translateX(-50%);
	transition: 0.3s;
	box-sizing: border-box;
	white-space: normal;
}

.el_dropdown:hover .el_dropdown_item {
	opacity: 1;
	visibility: visible;
	z-index: 10;
}

/* =========================================================
   診察メニュー(.el_menuNav) — ドロップダウン / バーガー / フッター 共通
========================================================= */
.el_menuNav {
	display: flex;
	gap: 60px;
}

@media screen and (max-width: 1024px) {
	.el_menuNav {
		flex-wrap: wrap;
		gap: 30px;
	}
}

.el_menuNav>li {
	width: calc((100% - 120px) / 3);
}

@media screen and (max-width: 1024px) {
	.el_menuNav>li {
		width: 100%;
	}
}

.el_menuNav_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.56px;
	gap: 12px;
}

.el_menuNav_list_footer {
	gap: 0;
}

.el_menuNav_list li {
	width: calc((100% - 12px) / 2);
}

.el_menuNav_list a {
	width: fit-content;
}

@media (hover: hover) {
	.el_menuNav_list a {
		transition: 0.5s;
	}

	.el_menuNav_list a:hover {
		opacity: 0.5;
	}
}

.el_menuNav_list_wrap {
	display: none;
	overflow: hidden;
}

.el_menuNav_ttl {
	padding: 18px;
	border-radius: 4px;
	background: #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.64px;
	cursor: pointer;
}

@media (hover: hover) {
	.el_menuNav_ttl {
		transition: 0.5s;
	}

	.el_menuNav_ttl:hover {
		opacity: 0.5;
	}
}

.el_menuNav_ttl::after {
	content: "";
	width: 12px;
	height: 10px;
	margin-left: 10px;
	background: url(../img/ico/ico_select.svg) no-repeat center / contain;
	display: inline-block;
	transition: 0.5s;
}

.el_menuNav_ttl.is_active::after {
	transform: rotate(180deg);
}

.el_menuNav .el_btnNormal {
	display: block;
	margin-top: 34px;
	text-align: center;
}

/* =========================================================
   バーガーボタン
========================================================= */
.el_burger_btn {
	width: 20px;
	height: 20px;
	z-index: 10000;
	transition: 0.5s;
	cursor: pointer;
	display: none;
	position: relative;
	flex: none;
}

@media screen and (max-width: 1024px) {
	.el_burger_btn {
		display: block;
	}
}

@media (hover: hover) {
	.el_burger_btn:hover {
		opacity: 0.5;
	}
}

.el_burger_btn span {
	display: block;
	width: 100%;
	height: 1px;
	background: #423D31;
	position: absolute;
	left: 0;
	transition: 0.5s;
}

.el_burger_btn .un_line01 {
	top: 3px;
}

.el_burger_btn .un_line02 {
	top: 9px;
}

.el_burger_btn .un_line03 {
	bottom: 4px;
}

body.is_menu_active .el_burger_btn .un_line01 {
	transform: rotate(45deg);
	top: 50%;
}

body.is_menu_active .el_burger_btn .un_line02 {
	opacity: 0;
}

body.is_menu_active .el_burger_btn .un_line03 {
	transform: rotate(-45deg);
	bottom: 50%;
}

/* =========================================================
   バーガーメニュー本体
========================================================= */
.ly_burger {
	display: none;
	opacity: 0;
	z-index: 9980;
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #F1EFEA;
	overflow: auto;
	transition: opacity 0.3s;
}

.ly_burger.is_open {
	display: block;
}

.ly_burger.is_visible {
	opacity: 1;
}

body.is_menu_active {
	overflow: hidden;
}


body.is_menu_active .ly_header.is_active {
	background: transparent;
}

.ly_burger_wrap {
	display: block;
	width: 100%;
	min-height: 100%;
	background: #F1EFEA;
}

.bl_burger_inner {
	padding: 120px 20px calc(160px + env(safe-area-inset-bottom));
}

.el_burgerList .el_acc_item {
	display: none;
	overflow: hidden;
}

.el_burgerList .el_acc>.js_acc_ttl::after {
	content: "";
	width: 12px;
	height: 10px;
	margin-left: 10px;
	background: url(../img/ico/ico_select.svg) no-repeat center / contain;
	display: inline-block;
	transition: 0.5s;
}

.el_burgerList .el_acc>.js_acc_ttl.is_active::after {
	transform: rotate(180deg);
}

.el_burgerList .el_acc .el_menuNav {
	margin-top: 20px;
	margin-bottom: 40px;
}

.el_burgerList .el_acc .el_menuNav_list li {
	width: 100%;
	padding: 3vw 0;
	border-bottom: 1px solid #E2DDCC;
}

.el_burgerList>li>a,
.el_burgerList>li>.js_acc_ttl {
	border-bottom: 1px solid #E2DDCC;
	padding: 3px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.64px;
	display: block;
	padding: 20px 0px;
}

/* =========================================================
   FOOTER(フッターメニュー + フッターリンクのみ)
========================================================= */
.ly_footer {
	background: #F1EFEA;
}

.ly_footer .ly_inner {
	box-sizing: content-box;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---- フッターメニュー ---- */
.el_footMenu {
	padding-top: 80px;
}

.el_footMenu .ly_inner {
	display: flex;
	max-width: 1280px;
}


#footer>div>div.el_footMenu>div>div.el_footMenu_right>ul.el_footLink_list>li>div>ul {
	gap: 0;
}

#footer>div>div.el_footMenu>div>div.el_footMenu_right>ul.el_footLink_list>li>div>ul>li {
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 0;
}


@media screen and (min-width: 1024px) {
	.el_footMenu_right .el_menuNav_list li {
		padding: 0px 20px 0px 0 !important;
		border-bottom: 0 !important;
	}
}


@media screen and (max-width: 1024px) {
	.el_footMenu .ly_inner {
		display: block;
	}
}

.el_footMenu_left {
	width: 350px;
}

@media screen and (max-width: 1024px) {
	.el_footMenu_left {
		width: 100%;
	}
}

.el_footMenu_right {
	width: calc(100% - 350px);
	padding-left: 134px;
	max-width: 850px;
}

@media screen and (max-width: 1400px) {
	.el_footMenu_right {
		padding-left: 20px;
		padding-right: 100px;
		max-width: none;
	}

	.el_footMenu_right .el_menuNav {
		gap: 20px;
	}

	.el_footMenu_right .el_menuNav>li {
		width: calc((100% - 40px) / 3);
	}
}

@media screen and (max-width: 1024px) {
	.el_footMenu_right {
		width: 100%;
		margin-top: 30px;
		padding: 0;
	}


	.el_menuNav_list a::before {
		content: "";
		width: 13px;
		height: 8px;
		background: url(../img/ico/ico_arrow.svg) no-repeat;
		background-size: contain;
		position: absolute;
		right: 20px;
		margin-top: 5px;
	}
}


@media screen and (max-width: 767px) {
	.el_footMenu_right .el_menuNav {
		gap: 30px;
	}

	.el_footMenu_right .el_menuNav>li {
		width: 100%;
	}
}

.el_footMenu_right .el_menuNav_ttl {
	font-size: 14px;
	padding: 10px 12px;
}

@media screen and (max-width: 767px) {
	.el_footMenu_right .el_menuNav_ttl {
		font-size: 16px;
		padding: 20px 20px;
	}
}

.el_footMenu_right .el_menuNav .el_btnNormal {
	display: block;
	margin-top: 26px;
	text-align: left;
	font-size: 14px;
	padding: 8px 50px 8px 18px;
}

@media screen and (max-width: 767px) {
	.el_footMenu_right .el_menuNav .el_btnNormal {
		text-align: center;
		padding: 12px 54px 12px 18px;
	}
}

.el_footMenu_right .el_menuNav .el_btnNormal:before {
	top: 8px;
}

@media screen and (max-width: 767px) {
	.el_footMenu_right .el_menuNav .el_btnNormal:before {
		top: 10px;
	}
}

.el_footMenu_right .el_menuNav_list li {
	width: 100%;
	border-bottom: 1px solid #E2DDCC;
	padding: 16px 20px 16px 0;
}

.el_footMenu_logo a {
	display: block;
	max-width: 348px;
}

@media (hover: hover) {
	.el_footMenu_logo a {
		transition: 0.5s;
	}

	.el_footMenu_logo a:hover {
		opacity: 0.5;
	}
}

.el_footMenu_sns {
	display: flex;
	gap: 12px;
	margin-top: 24px !important;
}

.el_footMenu_sns a {
	display: block;
	width: 100%;
	padding: 9px;
	border-radius: 4px;
	border: 1px solid #E2DDCC;
}

.el_footMenu_sns .el_sns_list_ico {
	display: block;
}

.el_footMenu_sns .el_sns_list_ico img {
	width: 20px;
	height: 20px;
	display: block;
}

@media (hover: hover) {
	.el_footMenu_sns a {
		transition: 0.5s;
	}

	.el_footMenu_sns a:hover {
		opacity: 0.5;
	}
}

/* ---- フッターリンク ---- */
.el_footLink {
	margin-top: 80px;
	border-top: 1px solid #E2DDCC;
	padding: 40px 0;
}

@media screen and (max-width: 1024px) {
	.el_footLink {
		padding-bottom: 40px;
	}
}

@media screen and (max-width: 767px) {
	.el_footLink {
		margin-top: 60px;
		width: calc(100% - 40px);
		margin-left: 20px;
	}
}

.el_footLink .ly_inner {
	display: flex;
	justify-content: space-between;
	max-width: 1280px;
}

@media screen and (max-width: 1024px) {
	.el_footLink .ly_inner {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.el_footLink .ly_inner {
		padding: 0;
	}
}

.el_footLink_list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.56px;
}

@media screen and (max-width: 767px) {
	.el_footLink_list {
		gap: 14px;
	}

	.el_footLink_list li {
		width: 100%;
	}
}

.el_footLink_list a {
	display: inline-block;
}

@media (hover: hover) {
	.el_footLink_list a {
		transition: 0.5s;
	}

	.el_footLink_list a:hover {
		opacity: 0.5;
	}
}

.el_footLink_right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-right: 80px;
}

@media screen and (max-width: 1024px) {
	.el_footLink_right {
		margin-right: 0;
		justify-content: flex-end;
		margin-top: 34px;
	}
}

@media screen and (max-width: 767px) {
	.el_footLink_right {
		display: block;
	}
}

.el_footLink_right a {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.48px;
	display: inline-block;
	margin-right: 12px;
	text-decoration: underline;
}

@media (hover: hover) {
	.el_footLink_right a {
		transition: 0.5s;
	}

	.el_footLink_right a:hover {
		opacity: 0.5;
	}
}

.el_footLink_right .el_copy {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.el_footLink_right .el_copy {
		margin-top: 10px;
	}
}