@charset "utf-8";

:root {
	/*-----------------------------
	common
	-----------------------------*/
	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 2.5rem;
	/* タブレット時はviewportを固定する */
	--tb-breakpoint: 1280px;
	--color-opacity: 1;
	--main-font-color: var(--black_01);
	--gray-color: #cec9c6;
	--main-color: var(--gold_03);
	--beige_bg: var(--beige_00);
	--default-letter-spacing: 0.12em;
	--default-line-height: 2;
	--white: #fff;
	--black_logo: #404040;
	--black_00: #807E78;
	--black_01: #585454;
	--black_02: #3A3731;
	--black_02_30per: #3A3731;
	--grayge_00: #ECEAE4;
	--grayge_0_5: #D8D3C9;
	--grayge_01: #D5D1C8;
	--grayge_03: #ACA694;
	--beige_00: #E9E1C7;
	--beige_02: #E8DCB5;
	--beige_03: #908362;
	--beige_04: #908362;
	--gold_01: #B9A463;
	--gold_02: #B08943;
	--gold_03: #82580B;
	--green-00: #619E3E;
	--green-01: #7FBE5B;
	--blue_01: #3682B5;
	--lightgeige: #F4F2EF;
	--lightbeige: var(--lightgeige);
	--lightbeige_02: #EBE6DC;
	--lightbeige-03: #E6DFD1;
	--font-main: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system, BlinkMacSystemFont, arial, helvetica, sans-serif;
	--font-main-yakuhan: YakuHanJP, "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system, BlinkMacSystemFont, arial, helvetica, sans-serif;
	--font-min: "Zen Old Mincho", serif;
	--font-en: "Marcellus", serif;
	--font-num: "Nanum Myeongjo", serif;
	--font-gothic: var(--font-main);
	--default-transition: 0.4s;
}

:where(#tinymce),
:where(.underpage) {
	/*++++++++++++++++++++++++++++
	under
	++++++++++++++++++++++++++++*/
	--under-box-mt: 3rem;
	--under-paragraph-mt: 1.5rem;
	--under-btn-mt: 5rem;

	main {
		padding-top: 3rem;
		background: #fff;
		position: relative;
		z-index: 10;
		border-radius: 3rem 3rem 0 0;
		margin-top: -3rem;
	}
}

.logged-in_only {
	display: none !important;
}

.logged-in .logged-in_only {
	display: block !important;
}

.inner {
	padding: var(--inner-padding-top, 0px) var(--inner-padding) var(--inner-padding-bottom, 0px);
	position: relative;
	z-index: 10;
}

.color01 {
	color: var(--main-color) !important;
}

.color02 {
	color: var(--main-color) !important;
}

.grecaptcha-badge {
	visibility: hidden;
}

.imgborder {
	border: 1px solid #ccc;
}

.imgborder_round {
	border-radius: 0.8rem;
	border: 1px solid #ccc;
}

.img_round {
	border-radius: 0.8rem;
}

.m_img_treatment {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.m_img_treatment figure {
	width: calc(50% - 1rem);
	max-width: 22.6rem;
}

.js_tabs_item {
	display: none !important;
}

.js_tabs_item.on {
	display: block !important;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
m_img
++++++++++++++++++++++++++++*/
.m_img {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

/*++++++++++++++++++++++++++++
m_btn01
++++++++++++++++++++++++++++*/
.m_btn01 {
	--icon-url: url(../images/icon_arrow.svg);
	--icon-color: #fff;
	--icon-size: 1.4rem;
	--circle-size: 2.2rem;
	--circle-color: #FFFFFF33;
	--icon-right: 1.2rem;
	position: relative;
	display: flex;
	align-items: center;
	text-align: left;
	justify-content: flex-start;
	text-decoration: none;
	width: 100%;
	color: #fff;
	background: var(--custom-btn-bg-color, var(--black_02));
	font-size: 1.5rem;
	line-height: 1.4;
	letter-spacing: 0.12em;
	padding: 1rem 5rem 1rem 1.2rem;
	max-width: 28.5rem;
	min-height: 5.4rem;
	margin: var(--under-btn-mt, 0px) auto 0;
	border-radius: 0.8rem;
	box-shadow: 0px 0.3rem 0.3rem 0px #0000001F;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: calc(0.4rem + var(--icon-right));
		width: var(--icon-size);
		aspect-ratio: 1/1;
		-webkit-mask: var(--icon-url) center / 100% no-repeat;
		mask: var(--icon-url) center / 100% no-repeat;
		background: var(--icon-color);
		z-index: 2;
		transform: translateY(-50%);
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: var(--icon-right);
		width: var(--circle-size);
		aspect-ratio: 1/1;
		z-index: 1;
		border-radius: 0.8rem;
		background: var(--circle-color);
		transform: translateY(-50%);
	}

	&.m_btn01_white {
		--icon-color: var(--gold_03);
		--circle-color: var(--grayge_00);
		color: var(--gold_03);
		background: #fff;
		border: 1px solid #90836280;
	}
}

.m_btn_wrap {
	margin-top: var(--under-btn-mt, 0px);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.m_btn_wrap :is(.m_btn01, .m_btn02, .m_btn03) {
	margin-top: 0;
}

:where(.l_under_content) .m_btn01 {
	margin-top: 3.4rem;
}

/*++++++++++++++++++++++++++++
m_hosoku
++++++++++++++++++++++++++++*/
.m_hosoku,
.hosoku {
	font-size: 1.4rem;
	color: var(--gold_03);
	line-height: 1.7;
}

/*++++++++++++++++++++++++++++
m_toc
++++++++++++++++++++++++++++*/
.m_toc {
	--icon-url: url(../images/icon_arrow.svg);
	--icon-color: var(--main-color);
	--icon-size: 1.2rem;
	--circle-size: 1.8rem;
	--circle-color: var(--lightgeige);
	--circle-top: 0.2rem;
	position: relative;
	isolation: isolate;
	margin-bottom: 2rem;
}

.m_toc:first-child {
	margin-top: 0;
}

.m_toc_list {
	--gap-col: 2.5rem;
	--gap-row: 1.6rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	isolation: isolate;
	padding: 3rem 0 4rem;
	border-bottom: 0.1rem dashed var(--beige_03);
	margin: 0;
}

.m_toc_list li {}

.m_toc_list a {
	line-height: 1.5;
	padding: 0 0 0 calc(var(--circle-size) + 0.5rem);
	font-size: 1.4rem;
	text-decoration: none;
	position: relative;
	width: 100%;
	display: block;
	color: var(--main-font-color);
}

.m_toc_list a:before {
	content: '';
	display: block;
	position: absolute;
	top: calc(0.3rem + var(--circle-top));
	left: 0.3rem;
	width: var(--icon-size);
	aspect-ratio: 1/1;
	-webkit-mask: var(--icon-url) center / 100% no-repeat;
	mask: var(--icon-url) center / 100% no-repeat;
	background: var(--icon-color);
	z-index: 2;
	rotate: 90deg;
}

.m_toc_list a:after {
	content: '';
	display: block;
	position: absolute;
	top: var(--circle-top);
	left: 0;
	width: var(--circle-size);
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 0.7rem;
	background: var(--circle-color);
	border: 1px solid #9083624D
}

/*++++++++++++++++++++++++++++
m_checklist
++++++++++++++++++++++++++++*/
.m_checklist {
	--gap-col: 1rem;
	--gap-row: 1rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: var(--under-paragraph-mt);
}

.m_checklist li {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	position: relative;
	font-size: 1.4rem;
	padding: 0 0 0 2.1rem;
	text-align: left;
	line-height: 1.6;
}

.m_checklist li:before {
	content: "";
	display: block;
	position: absolute;
	top: 0.3rem;
	left: 0;
	z-index: 5;
	width: 1.6rem;
	aspect-ratio: 1/1;
	background: url(../images/icon_check.svg) center / 100% no-repeat;
}

.m_checklist_long {
	--gap-col: 1rem;
	--gap-row: 2rem;
	--col: 1;

	li+li:after {
		content: "";
		display: block;
		position: absolute;
		top: calc(var(--gap-row) / 2 * -1);
		left: 0;
		width: 100%;
		height: 1px;
		z-index: 1;
		background: #9083624D;
	}
}

/*++++++++++++++++++++++++++++
m_catch
++++++++++++++++++++++++++++*/
.m_catch {
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-top: 3rem;
	font-weight: 500;
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable_wrap {}

.m_timetable {
	--col-size: 8.6%;
	--last-col-size: 14.7%;
	background: #fff;
	border: 1px solid rgba(144, 131, 98, 0.5);
}

.m_timetable :is(td, th) {
	letter-spacing: 0;
	text-align: center;
	padding: 0.6rem 0 0.6rem;
	vertical-align: middle;
	line-height: 1.5;
	color: var(--gold_03);
	font-weight: 500;
}

.m_timetable th {}

.m_timetable thead {
	background: var(--lightbeige_02);
}

.m_timetable thead th {
	width: var(--col-size);
	padding: 1.3rem 0 1.3rem;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

.m_timetable thead th:first-of-type {
	width: calc(100% - var(--col-size) * 6 - var(--last-col-size));
}

.m_timetable thead th:last-of-type {
	width: var(--last-col-size);
}

.m_timetable tbody tr {
	border-top: 1px solid rgba(144, 131, 98, 0.5);
}

.m_timetable tbody th {
	font-size: 1.6rem;
	text-align: center;
	letter-spacing: 0;
	font-family: var(--font-num);
	text-align: center;
	font-weight: 600;
	line-height: 1;
	padding: 1.4rem 0;
}

.m_timetable tbody td {
	font-weight: 500;
	font-size: 1.4rem;
	color: var(--gold_02);
}

.m_timetable_hosoku {
	font-size: 1.4rem;
	line-height: 1.7;
	margin-top: 1.4rem;
	color: var(--gold_03);
}

/*++++++++++++++++++++++++++++
m_col
++++++++++++++++++++++++++++*/
.m_col {
	--gap-col: 2rem;
	--gap-row: 3rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: var(--under-box-mt);
}

.m_col_no_gutter {
	--gap: 0px;
}

.m_col_item {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
}

.m_col_item *:first-child {
	margin-top: 0;
}

.m_col_item :is(h3):where(:not(.no_default)):nth-of-type(n + 2) {
	margin-top: 4rem;
}

.m_col_item :is(h4, h5):where(:not(.no_default)):nth-of-type(n + 2) {
	margin-top: 3rem;
}

.m_col_no_gutter img {
	margin: 0;
	border-radius: 0;
}

.m_col_reverse_sp {
	flex-direction: column-reverse;
}

.m_col_mtl_sp {
	--gap-col: 4rem;
	--gap-row: 4rem;
}

.m_col_item_ttl {
	margin-top: 1rem !important;
}

/*++++++++++++++++++++++++++++
m_faq
++++++++++++++++++++++++++++*/
.m_faq {
	margin-top: var(--under-box-mt);
	overflow: hidden;
	border: 1px solid var(--beige_03);
	border-radius: 1rem;
}

.m_faq+.m_faq {
	margin-top: 1.4rem;
}

.m_faq_head {
	position: relative;
	--icon-right: 1.4rem;
	--icon-width: 1.8rem;
	--icon-color: var(--gold_03);
}

.m_faq_head:before,
.m_faq_head:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--icon-right);
	width: var(--icon-width);
	height: 1px;
	z-index: 5;
	transition: 0.3s;
	background: var(--icon-color);
	transform: translateY(-50%);
}

.m_faq_head:before {
	transform: translateY(-50%) rotate(90deg);
}

.m_faq_ttl {
	--custom-under-paragraph-mt: 0px;
	z-index: 1;
	padding: 1.6rem 4.4rem 1.6rem 4.7rem;
	font-size: 1.5rem;
	line-height: 1.7;
	display: flex;
	cursor: pointer;
	background: #fff;
	align-items: center;
}

.m_faq_ttl:before {
	content: "Q";
	display: block;
	position: absolute;
	font-size: 2.8rem;
	font-family: var(--font-en);
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold_03);
	padding-bottom: 0;
	top: 1.2rem;
	left: 1.4rem;
}

.m_faq_ttl:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1.4rem;
	width: 3rem;
	aspect-ratio: 1/1;
	z-index: 1;
	border-left: 1px solid #9083624D;
}

.m_faq_body {
	padding: 2rem;
	display: none;
	background: var(--lightgeige);
}

.m_faq_body .m_btn01 {
	margin-top: 1rem;
}

.m_faq.on .m_faq_head:before {
	transform: translateY(-50%) rotate(0deg);
}

.m_faq_body>*:first-child {
	margin-top: 0;
}

/*++++++++++++++++++++++++++++
m_kakomi
++++++++++++++++++++++++++++*/
.m_kakomi {
	padding: 3rem 2rem;
	position: relative;
	z-index: 1;
	margin: 3.5rem 0 0;
	background: var(--custom-kakomi-bg-color, var(--lightbeige_02));
	border-radius: 1.2rem;
}
.m_kakomi:first-child {
	margin-top: 0;
}
.m_kakomi_col {
	margin: var(--under-box-mt) 0 0;
}

.m_kakomi:after {
	content: "";
	clear: both;
	display: block;
	height: 0;
	font-size: 0;
	visibility: hidden;
}

.m_kakomi>*:first-child {
	margin-top: 0;
}

.m_kakomi+.m_kakomi {
	margin-top: 2rem;
}

.m_kakomi_col .m_kakomi:first-child {
	margin-top: 0;
}

.m_kakomi :is(h4, h5) {
	margin-top: 3rem;
}

.m_kakomi *:has(+ h5) {}

/*++++++++++++++++++++++++++++
m_kakomi02
++++++++++++++++++++++++++++*/
.m_kakomi02 {
	padding: 3rem 2rem;
	margin: 3rem -0.5rem 0;
	background: #fff;
	position: relative;
	border: 5px solid #B9A46333;
	border-radius: 1.2rem;
	background: url(../images/dot.svg) 1.4rem 1.4rem / 0.6rem no-repeat,
		url(../images/dot.svg) right 1.4rem top 1.4rem / 0.6rem no-repeat,
		url(../images/dot.svg) left 1.4rem bottom 1.4rem / 0.6rem no-repeat,
		url(../images/dot.svg) right 1.4rem bottom 1.4rem / 0.6rem no-repeat;
}
.m_kakomi02:first-child {
	margin-top: 0;
}
.m_kakomi02 p {
	font-size: 1.4rem;
	line-height: 1.5;
}

.m_kakomi02>*:not(.m_kakomi02_ttl):first-child {
	margin-top: 0;
}

.m_kakomi02+.m_kakomi02 {}

.m_kakomi02 .m_kakomi02_ttl {
	border-bottom: 2px dashed var(--gold_01);
	color: var(--gold_02);
	font-size: 1.6rem;
	letter-spacing: 0.12em;
	line-height: 1.3;
	font-weight: 500;
	text-align: center;
	padding-bottom: 1.3rem;
	margin-bottom: 2.5rem;
	margin-top: 0;

	span {
		font-size: 1rem;
	}
}

/*++++++++++++++++++++++++++++
m_imgbox
++++++++++++++++++++++++++++*/
.m_imgbox {
	flex-direction: column;
	display: flex;
	gap: 3rem;
}

.m_imgbox_head img {
	max-width: 100%;
	width: auto;
	margin: 0 auto;
}

.m_imgbox_img {
	flex: 1;
}

.m_imgbox_head>*:first-child,
.m_imgbox_body>*:first-child {
	margin-top: 0;
}

.m_imgbox_img+.m_imgbox_img {
	margin-top: 1rem;
}

:where(.l_under_content) .m_imgbox:is(h3, h4, h5):where(:not(.no_default)):nth-of-type(n + 2) {
	margin-top: 3rem;
}

section>.m_imgbox {
	margin-top: 3rem;
}

section>.m_imgbox+.m_imgbox {
	margin-top: 2rem;
}

.color_section {
	position: relative;
	isolation: isolate;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: max(100vw, 100%);
		height: 100%;
		z-index: -1;
		background: var(--lightgeige);
	}
}

/*++++++++++++++++++++++++++++
m_flow
++++++++++++++++++++++++++++*/
.m_flow {
	--item-gap: 5.6rem;
	margin-top: 4rem;
	position: relative;
}

.m_flow_item {
	border-radius: 1.2rem;
	background: var(--lightgeige);
	padding: 3rem 2rem 3rem;
	counter-increment: flow_counter;
	display: flex;
	flex-direction: column;
	gap: 0rem;
	position: relative;
}

.m_flow_item:before {
	content: "";
	display: block;
	position: absolute;
	bottom: calc(var(--item-gap) / -2);
	left: 50%;
	width: 2.4rem;
	aspect-ratio: 26/19;
	z-index: 1;
	display: block;
	transform: translate(-50%, 50%);
	background: url(../images/flow_arrow.svg) center / 100% no-repeat;
}

.m_flow_item:nth-of-type(n + 2) {
	margin-top: var(--item-gap);
}

.m_flow_item:last-of-type:before {
	display: none;
}

.m_flow_content {
	width: 100%;
}

.m_flow_content :is(h3, h4, h5):first-child {
	margin-top: 0 !important;
}

.m_flow_content :is(h4, h5) {
	margin-top: 3rem;
}

.m_flow_ttl_wrap {
	display: flex;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--gold_02);
	margin-bottom: 1.8rem;
	align-items: center;
}

.m_flow_ttl {
	font-family: var(--font-min);
	color: var(--gold_03);
	font-size: 1.9rem;
	letter-spacing: 0.04em;
	line-height: 1.8;
	font-weight: 700;
	flex: 1;
}

.m_flow_step {
	position: relative;
	background: #fff;
	border-radius: 1rem;
	width: 6.4rem;
	aspect-ratio: 1/1;
	font-size: 1.6rem;
	color: var(--gold_02);
	font-family: var(--font-en);
	text-align: center;
	line-height: 1;
	border: 1px solid #90836280;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	letter-spacing: 0;
	gap: 0.3rem;
}

.m_flow_step:after {
	content: "0" counter(flow_counter);
	font-size: 3.2rem;
	line-height: 1;
	margin-bottom: 0;
	display: block;
	color: var(--gold_02);
	font-family: var(--font-en);
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
	text-align: center;
	letter-spacing: 0;
}

.m_flow_ttl_no_border {
	border: 0 !important;
	padding-bottom: 0 !important;
}

.m_flow_item:nth-of-type(n + 10) .m_flow_step:before {
	content: counter(flow_counter);
}

.m_flow_img {
	width: 100%;
}

.m_flow .m_kakomi {
	margin-left: 0;
	margin-right: 0;
	margin-top: 3rem;
}

.m_flow .m_imgbox {
	flex-direction: column-reverse;
	gap: 3rem;
}

.m_flow_content>.m_kakomi {
	margin-top: 2rem;
}

.m_flow_content .m_kakomi+.m_kakomi_col {
	margin-top: 2rem;
}

.m_flow :is(h3):where(:not(.no_default)):nth-of-type(n + 2) {
	margin-top: 5rem;
}

.m_flow :is(h4, h5):where(:not(.no_default)):nth-of-type(n + 2) {
	margin-top: 5rem;
}

/*++++++++++++++++++++++++++++
l_under_mv
++++++++++++++++++++++++++++*/
.l_under_mv {
	position: relative;
	padding: 0;
	margin-bottom: 0;
}

.l_under_mv_inner {
	margin-top: 0;
	min-height: 32rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	position: relative;
	padding-top: var(--header-height);
}

.l_under_mv_img {
	position: absolute;
	width: 100%;
	right: 0;
	top: 0;
	height: 100%;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 5;
		background: #342200;
		opacity: 0.3;
	}
}

.l_under_mv_img .oft {
	position: relative;
	height: 100%;
	z-index: 1;
	border-radius: 0;
}

.l_under_mv_img .oft {
	position: relative;
	overflow: hidden;
	aspect-ratio: auto;
	height: 100%;
}

.l_under_mv_img img {
	object-position: center center;
}

.l_under_mv_ttl {
	border-radius: 0;
	padding: 0 3rem;
	margin: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	text-shadow: 0px 0px 3.4rem #00000073;
	flex: 1;
}

.l_under_mv_ttl .ja {
	font-size: 2.2rem;
	letter-spacing: 0.12em;
	line-height: 1.6;
	font-family: var(--font-min);
	text-align: center;

	em {
		display: block;
		font-size: 1.7rem;
		letter-spacing: 0.12em;
	}
}

.l_under_mv_ttl .en {
	font-family: var(--font-en);
	letter-spacing: 0.04em;
	font-size: 1.6rem;
	line-height: 1.3;
	margin-top: 0.8rem;
}

/* l_under_content */
.l_under_content {
	--under-default-font-size: 1.5rem;

	.inner {
		padding: 0;
	}

	.oft,
	img {
		border-radius: 1rem;
	}

	.oft img {
		border-radius: 0;
	}
}

/* section */
:where(.l_under_content) {
	&>section {
		padding: 4rem 0;
		position: relative;
		isolation: isolate;
	}

	&>section>*:first-child,
	&>*:first-child {
		margin-top: 0;
	}

	&>section+section:before {
		opacity: 1;
	}
}

/* common */
:where(.l_under_content) {
	div.clearfix {
		margin-top: 0 !important;
	}

	p:where(:not(.no_default)) {
		font-size: var(--under-default-font-size);
	}

	p:where(:not(.no_default, .m_btn_wrap)),
	ul:where(:not(.m_toc_list, .no_default)),
	ol:where(:not(.no_default)) {
		margin-top: var(--custom-under-paragraph-mt, var(--under-paragraph-mt));
	}

	table {
		margin-top: var(--under-box-mt);
	}

	a {
		color: var(--main-color);
	}

	strong {
		font-weight: 700;
	}

	.alignnone {
		width: 100%;
		max-width: 100%;
	}

	.aligncenter,
	.alignleft,
	.alignright {
		margin: 0 auto 1em;
		width: 100%;
		max-width: 100%;
	}

	img {
		border-radius: 0;
	}
}

/* title */
:where(.l_under_content) .m_toc+h2 {
	margin-top: 3rem;
}

:where(.l_under_content) h2:where(:not(.no_default)) {
	color: var(--main-font-color);
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	padding: 3.3rem 0 0;
	margin: 8rem 0 4.7rem;
	text-align: center;
}

:where(.l_under_content) h3:where(:not(.no_default)) {
	font-family: var(--font-min);
	font-size: 2.2rem;
	font-weight: 500;
	line-height: calc(32/22);
	padding: 0 0 2.1rem;
	margin: 4rem 0 4rem;
	position: relative;
	text-align: center;
	background: url(../images/ttl_dots.svg) center bottom / 3.1rem no-repeat;
	color: var(--gold_03);
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	font-weight: 500;
	font-size: 1.7rem;
	line-height: 1.7;
	padding: 1.2rem 1rem;
	position: relative;
	color: #fff;
	background: var(--gold_03);
	border-radius: 0.5rem;
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	margin: 4rem 0 2.5rem;
}

.m_kakomi_ttl,
:where(.l_under_content) h5:where(:not(.no_default)) {
	line-height: 1.3;
	font-size: 1.6rem;
	padding: 0 0 1.5rem 2.7rem;
	margin: 3rem 0 1.5rem;
	position: relative;
	color: var(--gold_03);
	border-bottom: 2px dashed #B9A463;

	&:before {
		content: "";
		position: absolute;
		top: 0.2rem;
		left: 0;
		width: 1.7rem;
		aspect-ratio: 1/1;
		z-index: 1;
		border: 4px solid var(--gold_01);
		border-radius: 50%;
	}
}

:where(.l_under_content) :is(h2, h3, h4, h5, h6)+ :is(h2, h3, h4, h5, h6) {
	margin-top: 0;
}

:root :where(.l_under_content) section> :is(h2, h3, h4, h5, h6)+ :is(div, p, ul, ol) {
	margin-top: 0;
}

/* ul */
:where(.l_under_content) ul:where(:not(.no_default, .m_toc_list)) {
	--gap-col: 1rem;
	--gap-row: 1rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);

	li {
		width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
		position: relative;
		padding-left: 2.2rem;
		font-size: var(--under-default-font-size);
		text-align: left;
		line-height: 1.6;
	}

	li:before {
		content: "";
		display: block;
		position: absolute;
		left: 0.8rem;
		top: 0.9rem;
		width: 0.6rem;
		aspect-ratio: 1/1;
		background: var(--gold_01);
		border-radius: 50%;
	}

	li p:first-of-type {
		margin-top: 0;
	}

	&.p_ul_no_dots li {
		padding-left: 0 !important;
	}

	&.p_ul_no_dots li::before {
		display: none !important;
	}

	&.m_list_long {
		--gap-row: 2rem;
	}

	&.m_list_long li+li:after {
		content: "";
		display: block;
		position: absolute;
		top: calc(var(--gap-row) / 2 * -1);
		left: 0;
		width: 100%;
		height: 1px;
		z-index: 1;
		background: #9083624D;
	}
}

/* ol */
:where(.l_under_content) ol:where(:not(.no_default)) {
	--gap-col: 0rem;
	--gap-row: 0rem;
	--col: 1;
	display: flex;
	flex-direction: column;
	gap: var(--gap-row) var(--gap-col);
	color: var(--gold_03);

	li {
		counter-increment: counter;
		padding: 0.8rem 1rem 0.8rem 4rem;
		position: relative;
		font-size: var(--under-default-font-size);
		width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
		text-align: left;
		border-bottom: 1px solid #9083624D;
		line-height: 1.6;
	}

	li:before {
		/* content: "0"counter(counter) "."; */
		content: counter(counter) ".";
		display: block;
		position: absolute;
		top: 0.6rem;
		left: 1rem;
		z-index: 1;
		font-family: var(--font-en);
		color: var(--gold_01);
		line-height: 1.6;
		font-size: 2rem;
		letter-spacing: 0;
	}

	li:nth-of-type(n + 10):before {
		content: counter(counter) ".";
	}
}

/*++++++++++++++++++++++++++++
テーブル
++++++++++++++++++++++++++++*/
.m_table_scroll {
	margin-top: var(--under-box-mt);
}

:where(.m_table),
:where(.l_under_content) table:where(:not(.no_default)) {
	margin-top: var(--under-box-mt);

	thead th {
		width: 50%;
	}

	/* 基本のスタイル */
	:is(th, td) {
		font-size: var(--under-default-font-size);
		padding: 1.5rem 1rem;
		vertical-align: middle;
		text-align: center;
		border: 1px solid var(--beige_03);
		line-height: 1.7;
		font-weight: 500;
	}

	thead th {
		background: var(--gold_02);
		color: #fff;
		padding: 1.4rem 1rem;
		font-weight: 400;
	}

	thead th:first-of-type {
		background: var(--main-color);
		color: #fff;
	}

	tbody th {
		text-align: left;
		color: var(--gold_03);
	}

	tbody th[rowspan]+th,
	tbody th:first-of-type {
		background: var(--lightbeige_02);
	}

	tbody td {
		background: #fff;
	}

	tbody td p:first-child {
		margin-top: 0;
	}

	/* 値段部分 */
	tbody td em {
		font-size: 2.4rem;
		font-family: var(--font-num);
		color: var(--gold_03);
		font-weight: 600;
		position: relative;
		line-height: 1;
		top: -0.05em;
		margin: 0 0.1em;
		letter-spacing: 0;
	}

	tbody td+td {
		border-left: 1px solid var(--beige_03);
	}

	tbody tr {
		border-bottom: 1px solid var(--beige_03);
	}

	/* theadがない場合*/
	&:not(:has(thead)) :is(th, td) {
		width: 50%;
	}

	&:not(:has(thead)) tbody tr:first-of-type {
		border-top: 1px solid var(--beige_03);
	}

	/* &:not(:has(thead)) tbody td {
		text-align: left;
	} */

	&:not(:has(thead)) tbody th+th {
		border-right: 1px solid var(--beige_03);
	}

	/* table内要素のスタイル */
	table ol:first-of-type,
	table ul:first-of-type,
	table p:first-of-type {
		margin-top: 0;
	}

	table ul,
	table ol {
		--gap-row: 0.5rem;
	}
}

/* テーブル系ユーティリティ */
:where(.l_under_content) table:where(:not(.no_default)) {

	/* 先頭のthのサイズを強制する */
	&.th10 {
		--compulsion-size: 10%;
	}

	&.th20 {
		--compulsion-size: 20%;
	}

	&.th30 {
		--compulsion-size: 30%;
	}

	&.th40 {
		--compulsion-size: 40%;
	}

	&.th50 {
		--compulsion-size: 50%;
	}

	&.th60 {
		--compulsion-size: 60%;
	}

	&.th70 {
		--compulsion-size: 70%;
	}

	&.th80 {
		--compulsion-size: 80%;
	}

	&.th90 {
		--compulsion-size: 90%;
	}

	&:is(.th10, .th20, .th30, .th40, .th50, .th60, .th70, .th80, .th90) thead th:first-of-type,
	&:is(.th10, .th20, .th30, .th40, .th50, .th60, .th70, .th80, .th90) tbody th {
		width: var(--compulsion-size) !important;
	}

	&:is(.th10, .th20, .th30, .th40, .th50, .th60, .th70, .th80, .th90) tbody td,
	&:is(.th10, .th20, .th30, .th40, .th50, .th60, .th70, .th80, .th90) thead th:nth-of-type(n+2) {
		width: auto !important;
	}

	&.tdl td {
		text-align: left !important;
	}

	&.tdr td {
		text-align: right !important;
	}

	&.tdc td {
		text-align: center !important;
	}

	/* table */
	&.table20 td,
	&.table20 th {
		width: 20% !important;
	}

	&.table25 td,
	&.table25 th {
		width: 25% !important;
	}

	&.table50 td,
	&.table50 th {
		width: 50% !important;
	}

	&:is(.p_table_th20,
		.p_table_th30,
		.p_table_th40,
		.p_table_th50,
		.p_table_th20_sp,
		.p_table_th30_sp,
		.p_table_th40_sp,
		.p_table_th50_sp,
		.p_table_th20_pc,
		.p_table_th30_pc,
		.p_table_th40_pc,
		.p_table_th50_pc) {
		table-layout: fixed;
	}

	&:is(.p_table_th20,
		.p_table_th30,
		.p_table_th40,
		.p_table_th50,
		.p_table_th20_sp,
		.p_table_th30_sp,
		.p_table_th40_sp,
		.p_table_th50_sp,
		.p_table_th20_pc,
		.p_table_th30_pc,
		.p_table_th40_pc,
		.p_table_th50_pc) td {
		width: auto;
	}

	&.p_table_th20 th {
		width: 20% !important;
	}

	&.p_table_th30 th {
		width: 30% !important;
	}

	&.p_table_th40 th {
		width: 40% !important;
	}

	&.p_table_th50 th {
		width: 50% !important;
	}

	&.p_table_col02 :is(td, th) {
		width: 50%;
	}

	&.p_table_col04 :is(td, th) {
		width: 25%;
	}

	&.p_table_col05 :is(td, th) {
		width: 20%;
	}
}

/*++++++++++++++++++++++++++++
m_table02
++++++++++++++++++++++++++++*/
.m_table02 {
	background: #fff;
	overflow: hidden;

	thead th {
		text-align: center;
		padding: 1.4rem 1rem;
		background: var(--gold_02);
		color: #fff;
	}

	thead th:first-of-type {
		background: var(--main-color);
	}

	thead th:first-of-type,
	&:not(:has(thead)) tbody th {
		width: 11rem;
	}

	:is(td, th) {
		padding: 1.5rem;
		font-size: var(--under-default-font-size);
		border: 1px solid var(--beige_03);
	}

	th {
		line-height: 1.7;
	}
tbody td {
	vertical-align: top;
}
	tbody td > *:first-child {
		margin-top: 0;
	}
	tbody th {
		text-align: left;
		vertical-align: middle;
		padding: 1rem;
		font-weight: 500;
		background: var(--lightbeige_02);
		color: var(--gold_03);
	}

	.m_table02_box_ttl {
		--item-gap: 3rem;
		font-size: 1.5rem;
		line-height: 1.3;
		color: var(--gold_03);
		padding: 1rem 1.2rem;
		position: relative;
		margin-bottom: 1rem;
		background: var(--lightbeige_02);
		border-radius: 0.5rem;
	}

	.m_table02_box_ttl+* {
		margin: 0;
	}

	.m_table02_box_ttl:after {
		content: '';
		display: block;
		position: absolute;
		top: calc(-1 * var(--item-gap) / 2);
		left: 0;
		width: 100%;
		height: 1px;
		z-index: 1;
		background: #9083624D;
		display: none;
	}

	.m_table02_box_ttl:not(:first-child) {
		margin-top: var(--item-gap);

		&:after {
			display: block;
		}
	}
}

.m_table03 {
	width: 59rem;

	&:has(.big) {
		width: 68rem;
	}

	:is(td, th) {
		width: auto;
		font-size: 1.4rem;
		padding: 0.8rem 0.8rem;
		letter-spacing: 0.04em;
		line-height: 1.4;
	}

	thead th {
		background: var(--lightbeige-03) !important;
		color: var(--gold_03);
		padding: 1rem 0.8rem;
	}

	thead th:first-of-type {
		width: 10rem;
	}

	tbody th {
		font-weight: 400;
		text-align: center;
	}

	tbody th:has(span) {
		padding: 0;
	}

	tbody th span {
		min-height: 5.3rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.big {
		width: 17rem;
	}

	.close {
		background: var(--lightgeige);
	}

	.time {
		display: block;
		background: var(--lightgeige);
		border-radius: 0.5rem;
		padding: 0.8rem 1rem;
		text-align: left;
		color: var(--gold_03);
		margin-top: 0.5rem;
	}
}

.m_table03_hosoku {
	margin-top: 2.5rem;

	>*:first-child {
		margin-top: 0;
	}

	p {
		line-height: 1.7;
		font-size: 1.5rem;
	}

	.m_hosoku {
		margin-top: 1.4rem;
		font-size: 1.4rem;
	}
}

/*++++++++++++++++++++++++++++
l_under_breadcrumb
++++++++++++++++++++++++++++*/
.l_under_breadcrumb {
	margin: 0;
	width: 100%;
	padding: 0 2rem 4.5rem;
	position: relative;
	z-index: 10;
}

.breadcrumbs {
	padding: 0;
	margin-bottom: 0;
	flex-wrap: wrap;
	line-height: 1.2;
	width: fit-content;
	margin-left: auto;
}

.breadcrumbs br {
	display: none !important;
}

.breadcrumbs :is(span, a) {
	text-decoration: none;
	font-size: 1.3rem;
	letter-spacing: 0.08em;
	line-height: 1.4;

	em {
		display: none;
	}
}

.breadcrumbs a {
	display: inline;
	color: #fff;
}

.breadcrumbs>span {
	color: #fff;
	position: relative;
	padding-right: 1rem;
	display: inline;
}

.breadcrumbs>span:after {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.4rem;
	width: 0.7rem;
	height: auto;
	aspect-ratio: 7/11;
	margin-left: 1rem;
	background: url(../images/breadcrumbs_arrow.svg) center center / 100% no-repeat;
}

.breadcrumbs>span:last-of-type {
	padding-right: 0;
}

.breadcrumbs>span:last-of-type:after {
	display: none;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
wp-pagenavi
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.wp-pagenavi_wrap {
	display: flex;
	justify-content: center;
}

.wp-pagenavi {
	margin-top: 12vw;
	position: relative;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.wp-pagenavi .pages {
	display: none;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	position: relative;
	width: 8vw;
	height: 8vw;
	z-index: 10;
	background: var(--beige_bg);
	color: transparent;
}

.wp-pagenavi .previouspostslink {
	left: 0;
	top: 0;
	order: 1;
}

.wp-pagenavi .nextpostslink {
	right: 0;
	top: 0;
	order: 99;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.8vw;
	height: 1.8vw;
	z-index: 1;
	color: var(--main-font-color);
}

.wp-pagenavi .previouspostslink:before {
	content: "";
	border-left: 1px solid var(--main-color);
	border-top: 1px solid var(--main-color);
	-webkit-transform: translate(-25%, -50%) rotate(-45deg);
	transform: translate(-25%, -50%) rotate(-45deg);
}

.wp-pagenavi .nextpostslink:before {
	content: "";
	border-right: 1px solid var(--main-color);
	border-top: 1px solid var(--main-color);
	-webkit-transform: translate(-75%, -50%) rotate(45deg);
	transform: translate(-75%, -50%) rotate(45deg);
}

.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .first,
.wp-pagenavi .current,
.wp-pagenavi .page {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 8vw;
	height: 8vw;
	order: 2;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .last,
.wp-pagenavi .first,
.wp-pagenavi .current,
.wp-pagenavi .page {
	margin: 0 1vw;
}

.wp-pagenavi .extend {
	margin: 0 -2vw;
}

.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .page {
	color: var(--main-color);
	background: var(--beige_bg);
}

.wp-pagenavi .current {
	color: #fff;
	background: var(--main-color);
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
layout
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
l_archive_page
++++++++++++++++++++++++++++*/
.l_archive_page {
	padding: 2rem 0 7rem;
}

.l_single_ttl {
	margin-top: 4rem;
}

.l_side {
	margin-top: 8rem;
}

.l_side_ttl {
	border-radius: 0.4rem;
	background: var(--main-color);
	color: #fff;
	text-align: center;
	min-height: 4rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.l_side_list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.l_side_list li {}

.l_side_list li a {
	display: flex;
	background: var(--beige_bg);
	border-radius: 0.4rem;
	color: var(--main-color);
	padding: 0.5rem 1.8rem;
	min-height: 4rem;
	line-height: 1.44;
	font-weight: 500;
	align-items: center;
	text-decoration: none;
	letter-spacing: 0.08em;
}

.single .l_side {
	margin-top: 8rem;
	margin-bottom: 8rem;
}

/*++++++++++++++++++++++++++++
l_news
++++++++++++++++++++++++++++*/
.l_news_list {
	display: flex;
	flex-direction: column;
}

.l_news_item:first-of-type {
	border-top: #9083624D 1px solid;
}

.l_news_item {
	border-bottom: #9083624D 1px solid;
}

.l_news_item_inner {
	padding: 1.8rem 0.4rem 1.7rem 0.4rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.l_news_item_head {
	display: flex;
	align-items: center;
}

.l_news_item_date {
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-num);
	margin-right: 1.2rem;
	color: var(--gold_03);
}

.l_news_item_cat {
	line-height: 1;
	font-size: 1.4rem;
	border: 1px solid var(--gold_02);
	font-weight: 500;
	letter-spacing: 0;
	padding: 0.4rem 1.2rem 0.4rem;
	display: flex;
	align-items: center;
	color: var(--gold_02);
	border-radius: 4rem;
}

.l_news_item_body {
	overflow: hidden;
	width: 100%;
}

.l_news_item_ttl {
	--icon-url: url(../images/icon_arrow.svg);
	--icon-color: var(--gold_03);
	--icon-size: 1.4rem;
	--circle-size: 2.2rem;
	--circle-color: var(--grayge_00);
	--icon-right: 0rem;
	font-size: 1.4rem;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	padding-right: 2.8rem;
	position: relative;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: calc(0.4rem + var(--icon-right));
		width: var(--icon-size);
		aspect-ratio: 1/1;
		-webkit-mask: var(--icon-url) center / 100% no-repeat;
		mask: var(--icon-url) center / 100% no-repeat;
		background: var(--icon-color);
		z-index: 2;
		transform: translateY(-50%);
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: var(--icon-right);
		width: var(--circle-size);
		aspect-ratio: 1/1;
		z-index: 1;
		border-radius: 0.8rem;
		background: var(--circle-color);
		transform: translateY(-50%);
	}

	.l_news_no_posts & {

		&:before,
		&:after {
			display: none;
		}
	}
}

/*++++++++++++++++++++++++++++
l_header
++++++++++++++++++++++++++++*/
.l_header_logo a {
	display: block;
	width: 100%;
}

/*++++++++++++++++++++++++++++
l_notfound
++++++++++++++++++++++++++++*/
.l_notfound {
	padding: 4rem 0;
	background: rgba(188, 175, 133, 0.9) url(../images/notfound_bg_sp.jpg) center / cover no-repeat;
}

.l_notfound_ttl {
	color: #fff;
	font-family: var(--font-min);
	font-size: 2rem;
	letter-spacing: 0.14em;
	line-height: 1.5;
	font-weight: 500;
	text-shadow: 0px 0px 3rem rgba(0, 0, 0, 0.3);
	text-align: center;
}

.l_notfound_catch {
	margin-top: 1.5rem;
	color: #fff;
	font-size: 1.5rem;
	line-height: 2;
	text-shadow: 0px 0px 3rem rgba(0, 0, 0, 0.3);
	text-align: center;
}

.l_notfound_links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.9rem;
	margin-top: 2rem;
}

.l_notfound_link {
	--icon01-url: url(../images/icon_phonecall.svg);
	--icon01-color: var(--gold_01);
	--icon01-bg: var(--lightbeige_02);
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--gold_03);
	--arrow-bg: #fff;
	--arrow-border: rgba(144, 131, 98, 0.5);
	padding: 6.1rem 1.1rem 1.1rem;
	border-radius: 1.2rem;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	text-decoration: none;
	position: relative;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 1.1rem;
		right: 1.1rem;
		width: 4.2rem;
		aspect-ratio: 1/1;
		z-index: 1;
		border-radius: 1rem;
		background: var(--icon01-bg);
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 1.7rem;
		right: 1.7rem;
		width: 3rem;
		aspect-ratio: 1/1;
		z-index: 1;
		-webkit-mask: var(--icon01-url) center / 100% no-repeat;
		mask: var(--icon01-url) center / 100% no-repeat;
		background: var(--icon01-color);
	}

	span {
		font-family: var(--font-min);
		color: var(--black_logo);
		font-size: 1.6rem;
		letter-spacing: 0.12em;
		line-height: calc(23/16);
		font-weight: 500;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: 1.1rem;
			right: 1.1rem;
			width: 2.2rem;
			aspect-ratio: 1/1;
			z-index: 1;
			border-radius: 0.8rem;
			background: var(--arrow-bg);
			border: 1px solid var(--arrow-border);
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			bottom: 1.5rem;
			right: 1.5rem;
			width: 1.4rem;
			aspect-ratio: 1/1;
			z-index: 1;
			-webkit-mask: var(--arrow-url) center / 100% no-repeat;
			mask: var(--arrow-url) center / 100% no-repeat;
			background: var(--arrow-color);
		}
	}

	em {
		font-family: var(--font-en);
		color: var(--gold_01);
		font-size: 1.3rem;
		letter-spacing: 0.08em;
		line-height: 1;
		padding-bottom: 0.45rem;
	}

	&.reserve {
		--icon01-url: url(../images/icon_calendarcheck.svg);
	}

	&.access {
		--icon01-url: url(../images/icon_mappinarea.svg);
	}

	&.doctors {
		--icon01-url: url(../images/icon_stethoscope.svg);
	}

	&.schedule {
		--icon01-url: url(../images/icon_clock.svg);
	}

	&.recruit {
		--icon01-url: url(../images/icon_building.svg);
	}
}

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	background: #fff;
}

.l_footer_block {
	padding: 3.5rem 0;
}

.l_footer .inner {}

.l_footer_logo {
	width: 19.5rem;
	display: block;
}

.l_footer_map {
	display: block;
	border-radius: 0.6rem;
	overflow: hidden;
	border: 1px solid rgba(144, 131, 98, 0.5);
	margin-top: 4rem;
}

.l_footer_map_link {
	margin-top: 0.9rem;
	display: flex;
	justify-content: flex-end;
}

.m_map_link {
	--icon-url: url(../images/icon_map.svg);
	--icon-color: var(--gold_02);
	--icon-size: 1.8rem;
	position: relative;
	font-size: 1.4rem;
	padding-left: 1.8rem;
	font-family: var(--font-en);
	color: var(--gold_02);
	letter-spacing: 0;
	display: block;
	width: fit-content;
}

.m_map_link:before {
	content: '';
	display: block;
	position: absolute;
	top: 0.4rem;
	left: 0;
	width: var(--icon-size);
	aspect-ratio: 1/1;
	-webkit-mask: var(--icon-url) center / 100% no-repeat;
	mask: var(--icon-url) center / 100% no-repeat;
	background: var(--icon-color);
	z-index: 1;
}

.l_footer_data {
	margin-top: 2.5rem;

	dl {
		padding: 1.4rem 0 1.3rem;
		gap: 1.4rem;
		display: flex;
		border-top: 1px solid rgba(144, 131, 98, 0.3);
		align-items: flex-start;
	}

	dl:last-of-type {
		border-bottom: 1px solid rgba(144, 131, 98, 0.3);
	}

	dt {
		width: 7.2rem;
		border-radius: 0.5rem;
		background: var(--lightgeige);
		color: var(--gold_03);
		font-size: 1.4rem;
		line-height: 1.7;
		padding: 0.2rem 0;
		text-align: center;
	}

	dd {
		flex: 1;
		line-height: 1.7;
		font-size: 1.4rem;
	}
}

.l_footer_cta {
	margin-top: 2.8rem;
}

.l_footer_time {
	padding: 0;
	margin-top: 2.8rem;
}

.l_footer_middle {
	background: var(--grayge_00);
	padding: 2.5rem 0 3rem;
}

.l_footer_ttl01 {
	position: relative;
	padding-left: 2.1rem;
	color: var(--gold_03);
	font-size: 1.7rem;
	line-height: 1;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0.3rem;
		left: 0;
		width: 1.5rem;
		aspect-ratio: 1/1;
		border-radius: 50%;
		z-index: 1;
		border: 2px solid rgba(185, 164, 99, 1);
	}
}

.l_footer_bnrs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.9rem;
	margin-top: 2.4rem;
}

.l_footer_bottom {
	border-top: 1px solid rgba(89, 81, 61, 1);
	background: var(--black_logo);
	padding: 3rem 0 10.5rem;
}

.l_footer_bnr {
	width: 15.8rem;
	font-size: 1.2rem;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.06em;
	margin: 0 auto;
}

.l_footer_bnr a {
	text-decoration: none;
	display: block;
}

.l_footer_bnr span {
	background: #fff;
	display: block;
}

.l_footer_bnr em {
	display: block;
	margin-top: 0.7rem;
	color: #fff;
}

.l_footer small {
	position: relative;
	display: block;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
	margin-top: 3rem;
	opacity: 0.3;
	letter-spacing: 0.08em;
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	gap: 0.6rem;
	background: #fff;
	padding: 0.8rem;
}

.l_fixed_item {
	--icon01-url: url(../images/icon_phonecall.svg);
	--icon01-color: var(--gold_03);
	--icon01-bg: rgba(255, 255, 255, 0.8);
	padding: 4.1rem 0 0;
	height: 6.5rem;
	border: 1px solid rgba(144, 131, 98, 0.5);
	text-decoration: none;
	display: flex;
	justify-content: center;
	text-align: center;
	color: var(--gold_03);
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	line-height: 1;
	position: relative;
	border-radius: 0.4rem;
	background: var(--beige_00);

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0.8rem;
		left: 50%;
		transform: translateX(-50%);
		width: 2.8rem;
		aspect-ratio: 1/1;
		z-index: 1;
		border-radius: 0.8rem;
		background: var(--icon01-bg);
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 1.1rem;
		left: 50%;
		transform: translateX(-50%);
		width: 2.2rem;
		aspect-ratio: 1/1;
		z-index: 1;
		-webkit-mask: var(--icon01-url) center / 100% no-repeat;
		mask: var(--icon01-url) center / 100% no-repeat;
		background: var(--icon01-color);
	}

	&.l_fixed_web {
		--icon01-url: url(../images/icon_calendardots.svg);
		--icon01-color: #fff;
		--icon01-bg: var(--gold_02);
		color: #fff;
		border-color: var(--gold_03);
		background: var(--gold_03);
	}

	&.l_fixed_line {
		--icon01-url: url(../images/icon_chat.svg);
		--icon01-color: #fff;
		--icon01-bg: rgba(255, 255, 255, 0.3);
		color: #fff;
		border-color: var(--green-00);
		background: var(--green-00);
	}

	&.l_fixed_interview {
		--icon01-url: url(../images/icon_clipboad.svg);
		--icon01-color: var(--gold_03);
		--icon01-bg: var(--lightbeige_02);
		color: var(--gold_03);
		border-color: rgba(144, 131, 98, 0.5);
		background: #fff;
	}

	&.l_fixed_bus {
		--icon01-url: url(../images/icon_bus.svg);
		--icon01-color: var(--blue_01);
		--icon01-bg: rgba(54, 130, 181, 0.2);
		color: var(--blue_01);
		border-color: rgba(144, 131, 98, 0.5);
		background: #fff;
	}
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	bottom: 8.9rem;
	right: 0.8rem;
	width: 5rem;
	transition: var(--default-transition);
}

/*++++++++++++++++++++++++++++
m_slider
++++++++++++++++++++++++++++*/
.m_slider {
	--img-size: 32.5rem;
	--btn-position: -1rem;
	--btn-size: 6rem;
	--ratio-w: 315;
	--ratio-h: 236;
	--ratio: var(--ratio-w) / var(--ratio-h);
	padding: 0;
	margin: 3rem -1rem 0;
}

.m_slider .slick-list {
	z-index: 1;
}

.m_slider_main {
	margin: 0 auto;
	position: relative;
}

.m_slider_main .slick-list {
	overflow: visible;
}

.m_slider_main .m_slider_item {
	position: relative;
	margin: 0 0.5rem;
	border-radius: 1.2rem;
	overflow: hidden;
}

.m_slider_main figure {
	position: relative;
	z-index: 1;
	opacity: 1;
	transition: var(--default-transition);
}

.m_slider_main figure img {
	width: 100%;
	aspect-ratio: var(--ratio);
	object-fit: cover;
	font-family: "object-fit: cover;";
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	border-radius: 0;
}

.m_slider_desc {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 0;
	padding: 1rem 1.2rem;
	margin: 0;
	position: absolute;
	z-index: 10;
	transition: var(--default-transition);
	opacity: 0;
	bottom: 0;
	width: 100%;
}

.slick-slide.slick-current figure,
.slick-slide.is-active-next figure,
.slick-slide.slick-current .m_slider_desc,
.slick-slide.is-active-next .m_slider_desc {
	opacity: 1;
}

.m_slider_desc_ttl {
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: 500;
	color: #fff;
}

.m_slider .slick-arrow {
	position: absolute;
	top: calc(var(--ratio-h) / var(--ratio-w) * var(--img-size) / 2);
	transform: translateY(-50%);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	width: var(--btn-size);
	aspect-ratio: 1/1;
	z-index: 10;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	box-shadow: 0px 0px 3rem 0px #0000001A;
}

.m_slider .slick-arrow:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2.4rem;
	aspect-ratio: 1/1;
	z-index: 10;
	cursor: pointer;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	background: var(--gold_01);
}

.m_slider_main .slick-prev {
	left: var(--btn-position);
	transform: translateY(-50%) rotate(180deg);
}

.m_slider_main .slick-next {
	right: var(--btn-position);
}

.m_slider .slick-dots {
	display: flex !important;
	width: 100%;
	text-align: center;
	line-height: 1;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	z-index: 10;
	position: relative;
	margin-top: 2.5rem;
}

.m_slider .slick-dots li {
	position: relative;
	width: 0.5rem;
	aspect-ratio: 1/1;
}

.m_slider .slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}

.m_slider .slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: var(--gold_03);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	opacity: 0.2;
}

.m_slider li.slick-active button:before {
	opacity: 1;
}

/*++++++++++++++++++++++++++++
m_imgslider
++++++++++++++++++++++++++++*/
.m_imgslider {
	display: flex;
	width: 100vw;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 10;
	margin: 0 auto;
	--speed: 120s;
	--gap: 0rem;
}

.m_imgslider_item:first-child {
	-webkit-animation: loop var(--speed) calc(-1 * var(--speed) / 2) linear infinite;
	animation: loop var(--speed) calc(-1 * var(--speed) / 2) linear infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
}

.m_imgslider_item {
	-webkit-animation: loop2 var(--speed) linear infinite;
	animation: loop2 var(--speed) linear infinite;
	display: flex;
	width: auto;
	gap: var(--gap);
	padding: 0 calc(var(--gap) / 2);
}

.m_imgslider_item figure {
	width: 33rem;
	overflow: hidden;
	aspect-ratio: 33/22;
}

.m_imgslider_item figure img {
	display: block;
}

@-webkit-keyframes loop {
	0% {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes loop {
	0% {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}

@-webkit-keyframes loop2 {
	0% {
		transform: translateX(0);
	}

	to {
		transform: translateX(-200%);
	}
}

@keyframes loop2 {
	0% {
		transform: translateX(0);
	}

	to {
		transform: translateX(-200%);
	}
}

/*++++++++++++++++++++++++++++
下層固有系
++++++++++++++++++++++++++++*/
.lu_ttl01 {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;

	span {
		font-family: var(--font-en);
		color: var(--gold_02);
		font-size: 1.6rem;
		letter-spacing: 0.04em;
		line-height: 1;
	}

	em {
		margin-top: 0.8rem;
		font-family: var(--font-min);
		color: var(--gold_03);
		font-size: 2.2rem;
		letter-spacing: 0.12em;
		line-height: calc(32/22);
		font-weight: 500;
	}
}

.lu_ttl02 {
	position: relative;
	padding-left: 2.3rem;
	color: var(--gold_03);
	font-size: 1.6rem;
	line-height: 1.3;
	margin-top: 4rem;
	margin-bottom: 2rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0.2rem;
		left: 0;
		width: 1.7rem;
		aspect-ratio: 1/1;
		border-radius: 50%;
		z-index: 1;
		border: 4px solid rgba(185, 164, 99, 1);
	}
}

.lu_ttl03 {
	font-family: var(--font-min);
	color: var(--gold_02);
	font-size: 1.9rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
	font-weight: 500;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid var(--gold_02);
	margin-bottom: 3rem;
}

.lu_greeting {
	padding-top: 2rem;
	position: relative;
	isolation: isolate;

	&::before {
		content: '';
display: block;
position: absolute;
top:21rem;
left: -25rem;
width:106rem;
aspect-ratio: 1/1;
z-index: -1;
background: linear-gradient(170.47deg, #EBE6DC 8.62%, rgba(235, 230, 220, 0) 28.82%);
border-radius: 50%;
opacity: 0.4;
	}

	.lu_greeting_block {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}

	.lu_greeting_head {
		width: fit-content;
		margin: 0 auto;

		figure {
			display: block;
			width: 21rem;
			margin: 0 auto;

			img {
				border: 1px solid #90836280;
			}
		}

		.lu_greeting_name {
			display: flex;
			flex-direction: column;
			justify-content: center;
			gap: 0.6rem;
			margin-top: 2rem;
			align-items: center;

			.txt01 {
				color: var(--gold_03);
				font-size: 1.3rem;
				letter-spacing: 0.12em;
				line-height: 1.5;
			}

			.txt02 {
				display: flex;
				align-items: flex-start;
				gap: 1rem;

				span {
					color: var(--gold_03);
					font-size: 1.4rem;
					letter-spacing: 0.12em;
					line-height: 1.5;
					padding-top: 0.6rem;
				}

				em {
					color: var(--gold_03);
					font-size: 2rem;
					letter-spacing: 0.12em;
					line-height: 1.5;
				}
			}

			.txt03 {
				font-family: var(--font-en);
				color: var(--gold_01);
				font-size: 1.6rem;
				letter-spacing: 0.2em;
				line-height: 1;
			}
		}
	}

	.lu_greeting_body {
		p:first-of-type {
			margin-top: 0;
		}

		p {
			margin-top: 2.5rem;
		}
	}

	.lu_greeting_kakomi {
		padding: 1.5rem;
		background: var(--beige_00);
		border-radius: 1rem;
		margin-top: 2.5rem;

		ol {
			margin-top: 0;

			li {
				border: 0;
			}
		}
	}

	.lu_greeting_data {
		padding: 2rem 1.5rem;
		background: var(--lightbeige_02);
		border-radius: 1.2rem;
		margin-top: 3rem;
	}
}

.lu_data {
	display: flex;
	flex-direction: column;

	&+& {
		margin-top: 2rem;
	}

	.lu_data_ttl {
		color: var(--gold_03);
		font-size: 1.5rem;
		letter-spacing: 0.17em;
		line-height: 1.7;
		background: #fff;
		padding: 0.2rem 1.2rem;
		border-radius: 3.5rem;
		width: fit-content;
		margin-bottom: 1.2rem;
	}

	.lu_data_list {
		--gap-col: 1rem;
		--gap-row: 1rem;
		--col: 1;
		display: flex;
		flex-wrap: wrap;
		gap: var(--gap-row) var(--gap-col);

		li {
			width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
			position: relative;
			padding-left: 2.2rem;
			font-size: 1.4rem;
			text-align: left;
			line-height: 1.6;
			color: var(--gold_03);
		}

		li:before {
			content: "";
			display: block;
			position: absolute;
			left: 0.8rem;
			top: 0.8rem;
			width: 0.6rem;
			aspect-ratio: 1/1;
			background: var(--gold_01);
			border-radius: 50%;
		}
	}

	.lu_data_table {
		margin-top: 0;

		tr {
			border-top: 1px solid #9083624D;

			&:last-of-type {
				border-bottom: 1px solid #9083624D;
			}
		}

		:is(td, th) {
			padding: 1rem 0;
			color: var(--gold_03);
			font-size: 1.4rem;
			line-height: 1.6;
			vertical-align: middle;
		}

		th {
			width: 8rem;
			padding-right: 1rem;
		}
	}
}

.lu_profile {
	padding: 3rem 2rem;
	background: #fff;
	border-radius: 1.2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;

	&+& {
		margin-top: 3rem;
	}

	.lu_profile_head {
		figure {
			display: block;
			margin: 0 auto;
			width: 15rem;
		}
	}

	.lu_profile_ttl {
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
		border-bottom: 2px solid var(--gold_02);
		padding-bottom: 1.4rem;
		margin-bottom: 2.5rem;

		.txt01 {
			color: #fff;
			font-size: 1.5rem;
			letter-spacing: 0.12em;
			line-height: 1;
			background: var(--gold_02);
			padding: 0.4rem 0.6rem;
			border-radius: 0.5rem;
			width: fit-content;
		}

		.name {
			display: flex;
			gap: 1.2rem;
		}

		.txt02 {
			color: var(--black_logo);
			font-size: 1.9rem;
			letter-spacing: 0.12em;
			line-height: 1.5;
		}

		.txt03 {
			font-family: var(--font-en);
			color: var(--gold_01);
			font-size: 1.6rem;
			letter-spacing: 0.04em;
			line-height: 1;
			padding-top: 0.7rem;
		}
	}

	.lu_data_ttl {
		background: var(--lightbeige_02);
		color: var(--gold_03);
	}
}

.lu_philosophy {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	isolation: isolate;
	position: relative;
	z-index: 1;

	&::before {
		content: '';
		display: block;
		position: absolute;
		bottom: -16.2rem;
		left: -2.5rem;
		width: 100vw;
		aspect-ratio: 750/625;
		z-index: -1;
		background: url(../images/under/clinic_philosophy_bg_sp.png) center / 100% no-repeat;
	}

	.lu_philosophy_head {
		.oft {
			height: 25rem;
			margin-left: -2.5rem;
			border-radius: 0 2rem 2rem 0;
		}
	}

	.lu_philosophy_body {
		*:first-child {
			margin-top: 0;
		}

		ol {
			margin-top: 3rem;

			li {
				padding: 1rem 0.5rem 1rem 4.7rem;
			}

			li:before {
				content: "0" counter(counter);
				left: 0.5rem;
			}

			li:first-of-type {
				border-top: 1px solid #9083624D;
			}
		}
	}
}

.lu_feature {
	position: relative;
	z-index: 10;

	.lu_feature_block {
		display: grid;
		gap: 5rem;
	}

	.lu_feature_item {
		counter-increment: feature_counter;
		display: flex;
		flex-direction: column;
	}

	.lu_feature_item_head {
		.oft {
			height: 18rem;
		}
	}

	.lu_feature_item_body {
		--num-gutter: 1rem;
		padding-top: 2.5rem;
		position: relative;
		isolation: isolate;

		&:before {
			content: "0" counter(feature_counter);
			display: block;
			position: absolute;
			top: -0.5rem;
			right: calc(var(--num-gutter) * -1);
			z-index: -1;
			font-family: var(--font-en);
			color: var(--lightgeige);
			line-height: 1;
			font-size: 11rem;
			letter-spacing: 0;
		}

		.lu_feature_item:nth-of-type(2n) &:before {
			left: calc(var(--num-gutter) * -1);
			right: auto;
		}
	}

	.lu_feature_item_ttl {
		font-family: var(--font-min);
		color: var(--gold_02);
		font-size: 1.8rem;
		letter-spacing: 0.08em;
		line-height: 1.6;
		font-weight: 500;
		padding-bottom: 1.3rem;
		border-bottom: 1px solid var(--gold_02);
		margin-bottom: 1.4rem;
	}
}

.lu_info {
	.lu_info_img {
		height: 20rem;
		margin-bottom: 3rem;
	}

	table {
		td {}

		th {
			width: 9rem;
		}
	}

	.lu_info_item {
		background: #fff;
		padding: 1.4rem 0.5rem;

		&+& {
			margin-top: 1rem;
		}

		ul {
			margin-top: 0;
		}

		p {
			padding: 0 1.2rem 0 2.2rem;
			line-height: 1.7;
			font-size: 1.4rem;
			margin-top: 0.5rem;
		}
	}
}

.lu_time {
	.lu_time_box {}

	.lu_calendar {}

	.xo-event-calendar table.xo-month .month-dayname td div.today {
		color: var(--gold_03);
	}
}

.lu_outpatient {
	li {
		color: var(--gold_03);
	}

	.lu_outpatient_attention {
		margin-top: 3rem;
		padding: 2rem;
		border-radius: 1.2rem;
		background: var(--beige_00);
	}

	.lu_outpatient_attention_ttl {
		padding: 1.2rem 1rem;
		background: #fff;
		color: var(--gold_03);
		line-height: 1.3;
		font-size: 1.5rem;
		border-radius: 0.5rem;
	}

	.m_kakomi {
		padding: 1.5rem;
	}

	.lu_outpatient_imgbox {
		display: flex;
		flex-direction: column;
		gap: 2.5rem;
	}
}

.lu_access {
	.lu_access_mapimg {
		img {
			border: 1px solid #90836280;
		}
	}

	.lu_access_vehicle {
		display: flex;
		flex-direction: column;
	}

	.lu_access_vehicle_item {
		padding: 1.8rem 0;
		border-top: 1px solid #9083624D;
		display: flex;
		flex-direction: column;
		gap: 2rem;

		ul {
			margin-top: 0;
		}
	}

	.lu_access_vehicle_item:last-of-type {
		border-bottom: 1px solid #9083624D;
	}

	.lu_access_vehicle_head {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: var(--lightbeige-03);
		border-radius: 0.8rem;
		height: 14.9rem;
		gap: 0.8rem;

		img {
			width: 6rem;
		}

		span {
			color: var(--gold_03);
			font-size: 1.7rem;
			line-height: 1.8;
		}
	}

	.m_kakomi {
		padding: 1.5rem;
		background: #fff;
	}

	.lu_access_way {
		display: grid;
		gap: 3rem;

		p {
			color: var(--black_logo);
			line-height: 1.7;
		}
	}
}

.lu_medical {
	.lu_medical_item {
		border-radius: 1.2rem;
		background: var(--lightgeige);
		padding: 2.5rem;
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}

	.lu_medical_item+.lu_medical_item {
		margin-top: 3rem;
	}

	.lu_medical_item_ttl {
		color: var(--gold_03);
		font-size: 1.7rem;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-weight: 500;
		padding-bottom: 1.3rem;
		border-bottom: 1px solid var(--gold_02);
		margin-bottom: 2rem;
	}

	p:not(.no_default) {}

	.lu_medical_item_kakomi {
		padding: 1.5rem;
		background: var(--lightbeige-03);
		border-radius: 0.8rem;
		margin-top: 2rem;
	}

	.lu_medical_item_kakomi_ttl {
		color: var(--gold_03);
		font-size: 1.5rem;
		letter-spacing: 0.17em;
		line-height: 1.7;
		background: #fff;
		padding: 0.2rem 1.2rem;
		border-radius: 3.5rem;
		width: fit-content;
		margin-bottom: 2rem;
	}

	.lu_medical_item_kakomi_box {
		display: grid;
		gap: 1rem;

		ul {
			margin-top: 0;
		}

		li {
			color: var(--gold_03);
		}
	}

	.lu_medical_item_btn {
		margin-top: 2.5rem;

		.m_btn01 {
			margin-top: 0;
		}
	}
}

.lu_facility {
	.lu_facility_item {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.lu_facility_item+.lu_facility_item {
		margin-top: 3rem;
	}

	.lu_facility_item_head {
		.oft {
			height: 18rem;
		}
	}

	.lu_facility_item_body {
		p {
			margin-top: 0;
		}
	}

	.lu_facility_item_ttl {
		color: var(--gold_03);
		font-size: 1.7rem;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-weight: 500;
		padding: 0.8rem 0;
	}
}

.lu_photo {
	.lu_ttl01 {
		text-align: right;
	}
}

.lu_tax {
	.lu_tax_block {
		display: grid;
		gap: 1.9rem;
		grid-template-columns: repeat(2, 1fr);
		margin-top: 3rem;
	}

	.lu_tax_item {
		gap: 1.5rem;
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;

		.lu_tax_item_ttl {
			color: var(--black_logo);
			font-size: 1.4rem;
			line-height: 1.7;
		}

		.m_btn01 {
			margin-top: 0.5rem;
		}
	}
}

.lu_contact_bus {
	margin-top: 2.5rem;
}

.lu_fax {
	padding: 2rem;
	background: var(--beige_00);
	border-radius: 1.2rem;

	.lu_fax_txt {
		color: var(--gold_03);
		margin-top: 0;
	}

	.lu_fax_tel {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		justify-content: center;
		color: var(--gold_03);

		span {
			font-family: var(--font-en);
			font-size: 2rem;
			line-height: 1;
			letter-spacing: 0;
			padding-top: 0.3rem;
		}

		em {
			font-family: var(--font-num);
			font-size: 2.4rem;
			line-height: 1;
			letter-spacing: 0;
			font-weight: 600;
		}
	}

	.lu_fax_btn {
		--icon-url: url(../images/icon_downloadsimple.svg);
		--icon-color: var(--gold_03);
		--icon-size: 2.4rem;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		width: 100%;
		color: var(--gold_03);
		background: #fff;
		font-size: 1.5rem;
		line-height: 1.4;
		letter-spacing: 0.12em;
		padding: 1.2rem;
		min-height: 5.4rem;
		margin: 2rem auto 0;
		border-radius: 0.8rem;
		box-shadow: 0px 0.3rem 0.3rem 0px #0000001F;
		border: 1px solid #90836280;
		gap: 1rem;
	}

	.lu_fax_btn:before {
		content: '';
		display: block;
		position: relative;
		width: var(--icon-size);
		aspect-ratio: 1/1;
		-webkit-mask: var(--icon-url) center / 100% no-repeat;
		mask: var(--icon-url) center / 100% no-repeat;
		background: var(--icon-color);
		z-index: 2;
	}
}

.lu_book {
	display: grid;
	gap: 6rem;
	margin-top: 6rem;

	.lu_book_item {}

	.lu_book_ttl {
		margin-top: 0;
	}

	.lu_book_img {
		width: 14.6rem;
		margin: 0 auto;

		img {
			border-radius: 0;
		}
	}

	.lu_book_txt {
		flex: 1;
	}

	.lu_book_txt p {
		font-size: 1.5rem;
		line-height: 1.8;
	}

	.lu_book_txt p:first-of-type {
		margin-top: 0;
	}

	.lu_book_body {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.8rem;
	}

	.m_btn_wrap {
		margin-top: 3rem;
	}
}