@charset "utf-8";

:root {
	/*-----------------------------
	common
	-----------------------------*/
	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 2.5rem;
	/* タブレット時はviewportを固定する */
	--tb-breakpoint: 1280px;
	--white: #fff;
	--logo_brown: #604738;
	--logo_gold: #B0A369;
	--gold: #887635;
	--yellow: #E3DDC2;
	--beige_00: #FCFAF6;
	--beige_01: #F1EEE2;
	--beige_02: #E2DBC6;
	--beige_line: #C5B49D;
	--brown: #977A52;
	--brown_01: #8B6C42;
	--green: #79A754;
	--brown_new: #977F52;
	--orange: #CAA766;
	--brown_logo: #594C4F;
	--brown_hover: #4D392D;
	--green_hover: #5F893E;
	--logo_gold_hover: #A09358;
	--main-font-color: var(--logo_brown);
	--gray-color: #cec9c6;
	--main-color: var(--logo_brown);
	--beige_bg: var(--beige_00);
	--font-min: "Zen Old Mincho", serif;
	--font-en: "Libre Caslon Display", serif;
	--font-num: "Prata", serif;
	--font-gothic: "Zen Kaku Gothic New", sans-serif;
	--font-main: var(--font-min);
	--default-transition: 0.4s;
	--default-letter-spacing: 0.08em;
	--default-line-height: 1.866667;
	--default-font-size: 1.5rem;
	--under-default-font-size: var(--default-font-size);
}

p {
	font-size: var(--default-font-size);
}

body {
	background: var(--beige_00);
}

:where(#tinymce),
:where(.underpage) {
	/*++++++++++++++++++++++++++++
	under
	++++++++++++++++++++++++++++*/
	--under-box-mt: 3rem;
	--under-paragraph-mt: 1.5rem;
	--under-btn-mt: 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;
}

.js_tabs_item {
	display: none;

	&.on {
		display: block;
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
btn
++++++++++++++++++++++++++++*/
.m_btn01 {
	--arrow-url: url(../images/icon_arrow02.svg);
	--arrow-color: var(--logo_brown);
	--arrow-size: 0.6rem;
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	text-align: left;
	width: 100%;
	color: var(--logo_brown);
	background: var(--custom-btn-bg-color, var(--beige_00));
	padding: 1rem 5.8rem 1rem 1.2rem;
	font-size: 1.5rem;
	min-height: 4.6rem;
	line-height: 1.6;
	margin: var(--under-btn-mt, 0px) auto 0;
	border-radius: 0.5rem;
	border: 1px solid var(--beige_line);

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 4.6rem;
		aspect-ratio: 1/1;
		-webkit-mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
		mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
		background: var(--arrow-color);
		z-index: 2;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 4.6rem;
		height: 100%;
		z-index: 1;
		border-left: 1px solid var(--beige_line);
	}

	&.brown {
		background: var(--logo_brown);
		--arrow-color: #fff;
		color: #fff;

		&:after {
			border-left: 1px solid #FFFFFF80;
		}
	}
}

.m_btn02 {
	--icon-url: url(../images/icon_calendar.svg);
	--icon-size: 3rem;
	--icon-left: 1rem;
	--icon-color: var(--beige_02);
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: #fff;
	--arrow-size: 1rem;
	--circle-right: 1rem;
	--circle-size: 2.2rem;
	--circle-height: 1.6rem;
	--circle-bg-color: transparent;
	--circle-border-color: #fff;
	background: var(--orange_00);
	color: #fff;
	height: 7rem;
	border-radius: 0.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-left: 1rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: var(--circle-right);
		width: var(--circle-size);
		height: var(--circle-height);
		-webkit-mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
		mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
		background: var(--arrow-color);
		z-index: 2;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: var(--circle-right);
		width: var(--circle-size);
		height: var(--circle-height);
		z-index: 1;
		border: 1px solid var(--circle-border-color);
		border-radius: 10rem;
		background: var(--circle-bg-color);
	}

	.txt01 {
		letter-spacing: 0.08em;
		line-height: 1.8;
		font-size: 1.6rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: var(--icon-left);
			width: var(--icon-size);
			aspect-ratio: 1/1;
			z-index: 1;
			-webkit-mask: var(--icon-url) center / 100% no-repeat;
			mask: var(--icon-url) center / 100% no-repeat;
			background: var(--icon-color);
		}
	}

	&.line {
		--icon-url: url(../images/icon_chat.svg);
		background: var(--green_line);
	}
}

.m_btn03 {
	--icon-url: url(../images/icon_tel.svg);
	--icon-size: 3rem;
	--icon-left: 1rem;
	--icon-color: var(--brown_02);
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--brown_02);
	--arrow-size: 1rem;
	--circle-right: 1rem;
	--circle-size: 2.2rem;
	--circle-height: 1.6rem;
	--circle-bg-color: transparent;
	--circle-border-color: var(--brown_02);
	background: var(--white);
	height: 7rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-left: 0.5rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: var(--circle-right);
		width: var(--circle-size);
		height: var(--circle-height);
		-webkit-mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
		mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
		background: var(--arrow-color);
		z-index: 2;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: var(--circle-right);
		width: var(--circle-size);
		height: var(--circle-height);
		z-index: 1;
		border: 1px solid var(--circle-border-color);
		border-radius: 10rem;
		background: var(--circle-bg-color);
	}

	.txt01 {
		font-family: var(--font-num);
		letter-spacing: 0.08em;
		line-height: 1.2;
		font-size: 1.8rem;
		color: var(--brown_05);

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: var(--icon-left);
			width: var(--icon-size);
			aspect-ratio: 1/1;
			z-index: 1;
			-webkit-mask: var(--icon-url) center / 100% no-repeat;
			mask: var(--icon-url) center / 100% no-repeat;
			background: var(--icon-color);
		}
	}

	.txt02 {
		letter-spacing: 0.08em;
		line-height: 1.8;
		font-size: 1.2rem;
		font-weight: 500;
		color: var(--brown_02);
	}
}

.m_btn_wrap {
	margin-top: var(--under-btn-mt, 0px);
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.m_btn_wrap :is(.m_btn01, .m_btn02, .m_btn03) {
	margin-top: 0;
}

/*++++++++++++++++++++++++++++
m_hosoku
++++++++++++++++++++++++++++*/
.m_hosoku {
	color: var(--main-color);
	margin-top: 1.6rem;
}

/*++++++++++++++++++++++++++++
m_toc
++++++++++++++++++++++++++++*/
.m_toc {
	position: relative;
	isolation: isolate;
	margin-bottom: 0rem;
	padding: 1.9rem 0;
	border-top: 1px solid var(--logo_brown);
	border-bottom: 1px solid var(--logo_brown);
	margin-top: 4rem !important;

	.m_toc_list {
		--gap-col: 3rem;
		--gap-row: 1.2rem;
		--col: 1;
		display: flex;
		flex-wrap: wrap;
		gap: var(--gap-row) var(--gap-col);
		isolation: isolate;

		a {
			--arrow-url: url(../images/icon_arrow02.svg);
			--arrow-color: var(--gold);
			--arrow-size: 0.5rem;
			--circle-size: 2rem;
			--circle-height: var(--circle-size);
			--circle-color: #B0A36933;
			line-height: 1.6;
			padding: 0 0 0 calc(var(--circle-size) + 0.8rem);
			font-size: 1.3rem;
			text-decoration: none;
			position: relative;
			width: 100%;
			display: block;
			color: var(--main-font-color);

			&:before {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				transform: translateY(-50%) rotate(90deg);
				left: 0;
				width: var(--circle-size);
				height: var(--circle-height);
				-webkit-mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
				mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
				background: var(--arrow-color);
				z-index: 2;
			}

			&:after {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				left: 0;
				width: var(--circle-size);
				height: var(--circle-height);
				z-index: 1;
				border-radius: 50%;
				background: var(--circle-color);
			}
		}
	}
}

/*++++++++++++++++++++++++++++
m_catch
++++++++++++++++++++++++++++*/
.m_catch {
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-top: 3rem;
	font-weight: 500;
}

/*++++++++++++++++++++++++++++
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-bottom: 1px solid var(--logo_brown);
	border-top: 1px solid var(--logo_brown);

	&+& {
		margin-top: 0;
		border-top: 0;
	}

	.m_faq_head {
		position: relative;
		--arrow-url: url(../images/icon_arrow.svg);
		--arrow-color: var(--gold);
		--arrow-size: 1rem;
		--circle-right: 1rem;
		--circle-size: 2.4rem;
		--circle-height: var(--circle-size);
		--circle-bg-color: #B0A36933;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%) rotate(0deg);
			right: var(--circle-right);
			width: var(--circle-size);
			height: var(--circle-height);
			-webkit-mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
			mask: var(--arrow-url) center / var(--arrow-size) no-repeat;
			background: var(--arrow-color);
			z-index: 2;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			right: var(--circle-right);
			width: var(--circle-size);
			height: var(--circle-height);
			z-index: 1;
			border: 1px solid var(--circle-border-color);
			border-radius: 50%;
			background: var(--circle-bg-color);
		}
	}

	.m_faq_ttl {
		margin-top: 0;
		z-index: 1;
		padding: 2rem 4.4rem 2.2rem 4.3rem;
		font-size: 1.6rem;
		line-height: 1.6;
		display: flex;
		cursor: pointer;
		align-items: center;
		transition: var(--default-transition);

		&:before {
			content: "Q";
			display: block;
			position: absolute;
			line-height: 1;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 3rem;
			font-family: var(--font-en);
			color: var(--main-color);
			padding-bottom: 0;
			top: 1.4rem;
			left: 1rem;
			transition: var(--default-transition);
		}
	}

	.m_faq_body {
		display: none;
		padding: 2rem;
		background: var(--beige_01);
		border-top: 1px solid var(--beige_line);
	}

	.m_faq_body .m_btn01 {
		margin-top: 1rem;
	}

	.m_faq_body>*:first-child {
		margin-top: 0;
	}

	&.on .m_faq_head:before {
		transform: translateY(-50%) rotate(180deg);
	}
}

/*++++++++++++++++++++++++++++
m_kakomi
++++++++++++++++++++++++++++*/
.m_kakomi {
	padding: 1.9rem;
	position: relative;
	z-index: 1;
	margin: 3rem 0 0;
	background: var(--custom-kakomi-bg-color, #B0A3694D);
	border: 1px solid var(--beige_line);
	border-radius: 0.5rem;

	&:after {
		content: "";
		clear: both;
		display: block;
		height: 0;
		font-size: 0;
		visibility: hidden;
	}

	>*:first-child {
		margin-top: 0 !important;
	}

	&+& {
		margin-top: 2rem;
	}

	/* :is(h4, .m_kakomi_ttl) {
		margin-top: 0;
	} */
	*:has(+ .m_kakomi_ttl),
	*:has(+ h4) {
		position: relative;
		padding-bottom: 2.8rem;
	}

	*:has(+ .m_kakomi_ttl):after,
	*:has(+ h4):after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		z-index: -1;
		border-top: 1px dashed var(--beige_line);
	}
}

/*++++++++++++++++++++++++++++
m_kakomi02
++++++++++++++++++++++++++++*/
.m_kakomi02 {
	padding: 2rem;
	margin: 3rem 0 0;
	background: #fff;
	position: relative;
	box-shadow: 0px 0px 2.4rem 0px #0000001A;
	border-radius: 1rem;

	>*:first-child {
		margin-top: 0;
	}

	&+& {
		margin-top: 4rem;
	}

	.m_kakomi02_ttl {
		font-size: 1.6rem;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-weight: 600;
		display: flex;
		align-items: center;
		gap: 1rem;
		text-align: center;
		margin-bottom: 2.5rem;

		&:before,
		&:after {
			content: '';
			display: block;
			height: 0.5rem;
			z-index: 1;
			flex: 1;
			border-top: 1px solid var(--logo_gold);
			border-bottom: 1px solid var(--logo_gold);
			min-width: 3rem;
		}
	}
}

/*++++++++++++++++++++++++++++
m_imgbox
++++++++++++++++++++++++++++*/
.m_imgbox {
	flex-direction: column;
	display: flex;
	gap: 4rem;

	.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;
	}

	section>& {
		margin-top: 3rem;
	}

	section>&+& {
		margin-top: 2rem;
	}
}

/*++++++++++++++++++++++++++++
m_flow
++++++++++++++++++++++++++++*/
.m_flow {
	--item-gap: 5.6rem;
	margin-top: 4rem;
	position: relative;

	.m_flow_item {
		border-radius: 1.2rem;
		background: var(--white);
		padding: 2rem;
		counter-increment: flow_counter;
		display: flex;
		flex-direction: column;
		gap: 0rem;
		position: relative;
		box-shadow: 0px 0px 2.4rem 0px #0000001A;
		border-radius: 1rem;
	}

	.m_flow_item:before {
		content: "";
		display: block;
		position: absolute;
		bottom: calc(var(--item-gap) / -2);
		left: 50%;
		width: 1.5rem;
		aspect-ratio: 15/10;
		z-index: 1;
		display: block;
		transform: translate(-50%, 50%);
		-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
		clip-path: polygon(50% 100%, 100% 0, 0 0);
		background: var(--logo_brown);
	}

	.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: 1.5rem;
		padding: 1.3rem 0;
		border-bottom: 1px solid var(--logo_brown);
		border-top: 1px solid var(--logo_brown);
		margin-bottom: 3rem;
		align-items: center;

		+* {
			margin-top: 0;
		}
	}

	.m_flow_ttl {
		color: var(--logo_brown);
		font-size: 1.8rem;
		letter-spacing: 0.08em;
		line-height: 1.6;
		flex: 1;
		font-weight: 600;
	}

	.m_flow_step {
		position: relative;
		width: 5.5rem;
		height: 5.4rem;
		border-right: 1px solid var(--beige_line);
		font-size: 1.4rem;
		color: var(--logo_brown);
		font-family: var(--font-en);
		text-align: center;
		line-height: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		letter-spacing: 0;
		gap: 1rem;
	}

	.m_flow_step:after {
		content: "0" counter(flow_counter);
		font-size: 3rem;
		line-height: 1;
		margin-bottom: 0;
		display: block;
		color: var(--logo_brown);
		font-family: var(--font-num);
		position: relative;
		z-index: 10;
		text-align: center;
		letter-spacing: 0.08em;
	}

	.m_flow_item:nth-of-type(n + 10) .m_flow_step:after {
		content: counter(flow_counter);
	}

	.m_flow_ttl_no_border {
		border: 0 !important;
		padding-bottom: 0 !important;
	}

	.m_flow_img {
		width: 100%;
	}

	.m_kakomi {
		margin-left: 0;
		margin-right: 0;
		margin-top: 3rem;
	}

	.m_imgbox {
		gap: 3rem;
	}

	.m_flow_content>.m_kakomi {
		margin-top: 2rem;
	}

	.m_flow_content .m_kakomi+.m_kakomi_col {
		margin-top: 2rem;
	}
}

/*++++++++++++++++++++++++++++
m_checklist
++++++++++++++++++++++++++++*/
.m_checklist {
	--gap-col: 1.5rem;
	--gap-row: 1rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: var(--under-paragraph-mt);

	li {
		position: relative;
		font-size: var(--under-default-font-size);
		padding: 0 0 0 2.9rem;
		text-align: left;
		line-height: 1.6;
		font-weight: 400;
	}

	li:before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 5;
		width: 2.4rem;
		aspect-ratio: 1/1;
		background: url(../images/icon_check.svg) center / 100% no-repeat;
	}

	&.m_checklist_long {
		--gap-row: 2rem;

		li {
			width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
		}

		li+li:after {
			content: "";
			display: block;
			position: absolute;
			top: calc(var(--gap-row) / 2 * -1);
			left: 0;
			width: 100%;
			height: 1px;
			z-index: 1;
			border-bottom: var(--beige_line) solid 1px;
		}

		li:last-of-type {
			padding-bottom: calc(var(--gap-row) / 2);
			border-bottom: var(--beige_line) solid 1px;
		}
	}
}

/*++++++++++++++++++++++++++++
m_slider
++++++++++++++++++++++++++++*/
.m_slider {
	--img-size: 31.5rem;
	--btn-position: -1rem;
	--btn-size: 4.5rem;
	--ratio-w: 315;
	--ratio-h: 230;
	--ratio: var(--ratio-w) / var(--ratio-h);
	padding: 0;
	margin: 3rem 0 0;

	.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.75rem;
	}

	.m_slider_main .m_slider_item_in {
		position: relative;
	}

	.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;
		-webkit-backface-visibility: visible;
		backface-visibility: visible;
	}

	.m_slider_desc {
		background: rgba(255, 255, 255, 1);
		border-radius: 0.5rem;
		padding: 0.2rem 0.6rem;
		margin: 0;
		position: relative;
		z-index: 10;
		transition: var(--default-transition);
		opacity: 0;
		bottom: 0;
		width: fit-content;
		margin-top: 1rem;
	}

	.slick-slide.slick-current .m_slider_txt,
	.slick-slide.is-active-next .m_slider_txt,
	.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.6rem;
		line-height: 1.6;
		letter-spacing: 0.08em;
		font-weight: 600;
	}

	.m_slider_txt {
		margin-top: 1rem;
		transition: var(--default-transition);
		opacity: 0;
	}

	.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: #fff;
		border-radius: 50%;
		box-shadow: 0px 0px 14.29px 0px rgba(0, 0, 0, 0.05);
	}

	.slick-arrow:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: var(--btn-size);
		aspect-ratio: 1/1;
		z-index: 10;
		cursor: pointer;
		-webkit-mask: url(../images/icon_arrow02.svg) center / 0.6rem no-repeat;
		mask: url(../images/icon_arrow02.svg) center / 0.6rem no-repeat;
		background: var(--logo_brown);
	}

	.slick-prev {
		left: var(--btn-position);
		transform: translateY(-50%) rotate(180deg);
	}

	.slick-next {
		right: var(--btn-position);
	}

	.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;
	}

	.slick-dots li {
		position: relative;
		width: 0.6rem;
		aspect-ratio: 1/1;
	}

	.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;
	}

	.slick-dots li button:before {
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		background: var(--main-color);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		opacity: 0.3;
	}

	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: 2rem;

	.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);
	}

	figure {
		width: 29.3rem;
		overflow: hidden;
		aspect-ratio: 293/220;
	}

	figure img {
		display: block;
		border-radius: 1rem;
	}
}

/*++++++++++++++++++++++++++++
m_map_link
++++++++++++++++++++++++++++*/
.m_map_link {
	--icon-url: url(../images/icon_map.svg);
	--icon-color: #fff;
	--icon-size: 1.8rem;
	position: relative;
	font-size: 1.3rem;
	font-weight: 500;
	padding-left: 2.1rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0.2rem;
		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;
	}
}

/*++++++++++++++++++++++++++++
テーブル
++++++++++++++++++++++++++++*/
.m_table_scroll {
	margin-top: var(--under-box-mt);

	table {
		margin-top: 0 !important;
	}

	/* SimpleBarのピクセル欠け防止 */
	.m_table_scroll_in {
		padding-bottom: 1px;
	}
}

.m_table02 {
	background: #fff;
	overflow: hidden;
	--table-out-border: var(--logo_brown);
	--table-in-border: var(--table-out-border);
	--thead-th-bg-first: var(--logo_brown);
	--thead-th-bg: var(--logo_gold);
	--tbody-th-bg: var(--beige_01);
	--tbody-td-bg: var(--white);
	border: 1px solid var(--table-out-border);
	table-layout: fixed;

	:is(th, td) {
		font-size: 1.5rem;
		padding: 1.3rem 1rem;
		vertical-align: baseline;
		text-align: center;
		line-height: 1.6;
		font-weight: 500;
	}

	thead {
		th {
			background: var(--thead-th-bg);
			color: #fff;
		}

		th:first-of-type {
			background: var(--thead-th-bg-first);
			color: #fff;
			width: 15rem;
		}

		th:not(:last-of-type) {
			border-right: 1px solid var(--table-in-border);
		}
	}

	tbody {
		th {
			text-align: left;
			color: var(--gold_03);
			vertical-align: middle;
		}

		tr {
			border-top: 1px solid var(--table-in-border);
		}

		:is(td, th):not(:last-child) {
			border-right: 1px solid var(--table-in-border);
		}

		th[rowspan]+th,
		th:first-of-type {
			background: var(--tbody-th-bg);
		}

		td {
			text-align: left;
			background: var(--tbody-td-bg);
			padding: 1.5rem 2rem;
		}

		td *:first-child {
			margin-top: 0;
		}

		p {
			line-height: 1.9;
		}
	}

	h5:where(:not(.no_default)) {
		--item-gap: 4rem;
		position: relative;

		+* {
			margin: 0;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: calc(-1 * var(--item-gap) / 2);
			left: 0;
			width: 100%;
			height: 1px;
			z-index: 1;
			background: var(--beige_line);
			display: none;
		}

		&:not(:first-child) {
			margin-top: var(--item-gap);

			&:after {
				display: block;
			}
		}
	}
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable {
	--border-color: #504B48;
	--table-font-color: #fff;
	--color: var(--logo_gold);
	table-layout: fixed;
	border-radius: 0.5rem;
	overflow: hidden;
	border-collapse: separate;

	:is(td, th) {
		font-size: 1.4rem;
		text-align: center;
		padding: 1rem 0;
		vertical-align: middle;
		color: var(--table-font-color);
		border-right: 1px solid var(--border-color);
		line-height: 1.6;
		font-weight: 500;
		border-bottom: 1px solid var(--border-color);
	}

	th {}

	thead {
		background: #423C38;
	}

	thead th {
		padding: 1rem 0;

		&:first-of-type {
			width: 11.5rem;
		}

		&:last-of-type {
			border-right: 0;
		}
	}

	tbody {
		background: rgba(255, 255, 255, 0.1);
	}

	tbody tr {
		border-top: 1px solid var(--border-color);

		&:nth-of-type(2) {
			--color: #fff;

			th span {
				color: var(--logo_brown);
				background: #fff;
			}
		}

		&:nth-of-type(3) {
			--color: var(--brown);
		}
	}

	tbody th {
		font-size: 1.4rem;
		font-family: var(--font-num);
		text-align: center;
		line-height: 1.6;
		letter-spacing: 0.1em;
		padding: 0.7rem 1rem 0.8rem;
		font-weight: 400;

		span {
			font-size: 1.3rem;
			padding: 0;
			display: block;
			line-height: 1.6;
			background: var(--color);
			color: #fff;
			border-radius: 0.3rem;
			margin-bottom: 0.5rem;
			font-family: var(--font-main);
			font-weight: 500;
		}
	}

	tbody td {
		color: var(--color);

		&:last-of-type {
			border-right: 0;
			color: #fff;
		}
	}
}

.m_timetable_hosoku {
	font-size: 1.4rem;
	line-height: 1.56;
	margin-top: 1rem;
	color: #fff;
}

/* l_under_content */
:where(.l_under_content) {
	.inner {
		padding: 0 !important;
	}

	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)) {
		margin-top: var(--custom-under-paragraph-mt, var(--under-paragraph-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: 1rem;
	}

	/* ボタン */
	.m_btn01 {
		margin-top: 3.4rem;
	}

	/* section */
	&>section {
		padding: 5rem 0 0;
		position: relative;
		isolation: isolate;
	}

	&>section>*:first-child,
	&>*:first-child {
		margin-top: 0;
	}

	&>section+section:before {
		opacity: 1;
	}

	&>section:last-of-type {
		padding-bottom: 5rem;
	}

	/* title */
	.m_toc+h2 {
		margin-top: 3rem;
	}

	h2:where(:not(.no_default)) {
		color: var(--main-font-color);
		font-weight: 600;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-size: 2.1rem;
		padding: 0 0 2rem;
		margin: 5rem 0 4rem;
		text-align: center;
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 5rem;
			height: 0.5rem;
			z-index: 1;
			border-top: 1px solid var(--logo_gold);
			border-bottom: 1px solid var(--logo_gold);
		}
	}

	h3:where(:not(.no_default)) {
		color: var(--main-font-color);
		font-weight: 600;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-size: 1.7rem;
		padding: 0.9rem 0.5rem 0.9rem 3.4rem;
		background: var(--beige_01) url(../images/icon_logo.svg) left 0.5rem center / 2.4rem no-repeat;
		margin: 4rem 0 3rem;
		border-top: 1px solid var(--logo_brown);
		border-bottom: 1px solid var(--logo_brown);
	}

	.m_kakomi_ttl,
	h4:where(:not(.no_default)) {
		color: var(--main-font-color);
		font-weight: 600;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-size: 1.7rem;
		margin: 1.9rem 0 1.8rem;
		position: relative;
		padding-bottom: 1.5rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 0.5rem;
			z-index: 1;
			border-top: 1px solid var(--logo_gold);
			border-bottom: 1px solid var(--logo_gold);
		}
	}

	h5:where(:not(.no_default)) {
		margin-bottom: 1rem;
		margin-top: 2rem;

		em {
			font-size: 1.5rem;
			line-height: 1.6;
			color: var(--white);
			background: var(--logo_gold);
			padding: 0.3rem 0.8rem;
			position: relative;
			border-radius: 0.3rem;
			width: fit-content;
			display: block;
		}
	}

	:is(h2, h3, h4, h5, h6)+ :is(h2, h3, h4, h5, h6) {
		margin-top: 0;
	}

	section> :is(h2, h3, h4, h5, h6)+ :is(div, p, ul, ol, table) {
		margin-top: 0 !important;
	}

	/* ul */
	ul:where(:not(.no_default, .m_toc_list)) {
		--gap-col: 1.5rem;
		--gap-row: 1rem;
		--col: 1;
		display: flex;
		flex-wrap: wrap;
		gap: var(--gap-row) var(--gap-col);
		margin-top: var(--under-paragraph-mt);

		li {
			position: relative;
			padding-left: 2.4rem;
			font-size: var(--under-default-font-size);
			text-align: left;
			font-weight: 400;
			line-height: 1.6;
		}

		li:before {
			content: "";
			display: block;
			position: absolute;
			left: 1rem;
			top: 1rem;
			width: 0.4rem;
			aspect-ratio: 1/1;
			background: var(--logo_gold);
			border-radius: 50%;
		}

		li p:first-of-type {
			margin-top: 0;
		}

		&.v_col01_sp {
			li {
				width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
			}
		}

		&.m_list_long {
			--gap-row: 2rem;

			li {
				width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
			}

			li:before {
				background: var(--logo_brown);
			}

			li:last-of-type {
				padding-bottom: calc(var(--gap-row) / 2);
				border-bottom: var(--beige_line) solid 1px;
			}
		}

		&.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: var(--beige_line);
		}
	}

	/* ol */
	ol:where(:not(.no_default)) {
		--gap-col: 1rem;
		--gap-row: 0rem;
		--col: 1;
		display: flex;
		flex-direction: column;
		gap: var(--gap-row) var(--gap-col);
		margin-top: var(--under-paragraph-mt);

		li {
			counter-increment: counter;
			padding: 1rem 0 1.3rem 3rem;
			position: relative;
			font-size: var(--under-default-font-size);
			width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
			/* width: fit-content; */
			text-align: left;
			border-bottom: 1px solid var(--beige_line);
		}

		li:before {
			/* content: "0"counter(counter) "."; */
			content: counter(counter) ".";
			display: block;
			position: absolute;
			top: 1.6rem;
			left: 0;
			z-index: 1;
			font-family: var(--font-num);
			color: var(--logo_gold);
			line-height: 1;
			font-size: 2rem;
			letter-spacing: 0.08em;
		}

		li:nth-of-type(n + 10):before {
			content: counter(counter) ".";
		}
	}

	/* table */
	table:where(:not(.no_default)) {
		--table-out-border: var(--logo_brown);
		--table-in-border: var(--table-out-border);
		--thead-th-bg-first: var(--logo_brown);
		--thead-th-bg: var(--logo_gold);
		--tbody-th-bg: var(--beige_01);
		--tbody-td-bg: var(--white);
		margin-top: var(--under-box-mt);
		border: 1px solid var(--table-out-border);
		table-layout: fixed;

		thead th {
			/* width: 50%; */
		}

		/* 基本のスタイル */
		:is(th, td) {
			font-size: 1.5rem;
			padding: 1.3rem 1rem;
			vertical-align: middle;
			text-align: center;
			line-height: 1.6;
			font-weight: 500;
		}

		thead {
			th {
				background: var(--thead-th-bg);
				color: #fff;
				font-weight: 400;
			}

			th:first-of-type {
				background: var(--thead-th-bg-first);
				color: #fff;
			}

			th:not(:last-of-type) {
				border-right: 1px solid var(--table-in-border);
			}
		}

		tbody {
			th {
				text-align: left;
				color: var(--gold_03);
			}

			tr {
				border-top: 1px solid var(--table-in-border);

				&:last-of-type {
					/* border-bottom: 1px solid var(--table-in-border); */
				}
			}

			:is(td, th):not(:last-child) {
				border-right: 1px solid var(--table-in-border);
			}

			th[rowspan]+th,
			th:first-of-type {
				background: var(--tbody-th-bg);
			}

			td {
				background: var(--tbody-td-bg);
			}

			td p:first-child {
				margin-top: 0;
			}

			/* 値段部分 */
			td em {
				font-size: 1.7rem;
				font-family: var(--font-num);
				position: relative;
				line-height: 1;
				margin: 0 0.1em;
				letter-spacing: 0.08em;
			}
		}

		/* theadがない場合*/
		&:not(:has(thead)) :is(th, td) {
			/* width: 50%; */
		}

		/* 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%;
	}
}

/*++++++++++++++++++++++++++++
l_under_breadcrumb
++++++++++++++++++++++++++++*/
.l_under_breadcrumb {
	margin: 0 calc(var(--inner-padding) * -1);
	width: calc(100% + var(--inner-padding) * 2);
	padding: 2rem var(--inner-padding) 1rem;
	position: relative;
}

.breadcrumbs {
	padding: 0;
	margin-bottom: 0;
	flex-wrap: wrap;
	line-height: 1.2;
	width: fit-content;
	margin-left: auto;

	br {
		display: none !important;
	}

	:is(span, a) {
		font-size: 1.1rem;
		letter-spacing: 0.08em;
		line-height: 1.4;
	}

	a {
		display: inline;
		color: var(--main-font-color);
	}

	>span {
		color: var(--main-color);
		position: relative;
		padding-right: 0.7rem;
		display: inline;

		&:after {
			content: "";
			display: inline-block;
			position: relative;
			top: 0.1rem;
			width: 0.7rem;
			height: auto;
			aspect-ratio: 7/11;
			margin-left: 1rem;
			background: url(../images/breadcrumbs_arrow.svg) center center / 100% no-repeat;
		}

		&:last-of-type {
			padding-right: 0;
		}

		&: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;

	.pages {
		display: none;
	}

	.previouspostslink,
	.nextpostslink {
		position: relative;
		width: 8vw;
		height: 8vw;
		z-index: 10;
		background: var(--beige_bg);
		color: transparent;

		&:before {
			content: "";
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			width: 1.8vw;
			height: 1.8vw;
			z-index: 1;
			color: var(--main-font-color);
		}
	}

	.previouspostslink {
		left: 0;
		top: 0;
		order: 1;

		&: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);
		}
	}

	.nextpostslink {
		right: 0;
		top: 0;
		order: 99;

		&: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);
		}
	}

	:is(.extend, .last, .first, .current, .page) {
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		width: 8vw;
		height: 8vw;
		order: 2;
	}

	:is(.previouspostslink, .nextpostslink, .last, .first, .current, .page) {
		margin: 0 1vw;
	}

	.extend {
		margin: 0 -2vw;
	}

	.first,
	.last,
	.page {
		color: var(--main-color);
		background: var(--beige_bg);
	}

	.current {
		color: #fff;
		background: var(--main-color);
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
layout
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
l_under_mv
++++++++++++++++++++++++++++*/
.l_under_mv {
	position: relative;
	padding: 0;
	margin-bottom: 0;
	margin-top: 0;

	.l_under_mv_inner {
		margin-top: 0;
		min-height: 26rem;
		display: flex;
		align-items: center;
		position: relative;
		padding-top: var(--header-height);
	}

	.l_under_mv_img {
		position: absolute;
		width: 94.7%;
		left: 0;
		top: 0;
		height: 100%;
	}

	.l_under_mv_img .oft {
		height: 100%;
		z-index: 1;
		border-radius: 0;

		img {
			border-radius: 1rem;
		}
	}
}

.l_under_mv_ttl {
	display: flex;
	flex-direction: column;
	margin-top: 0rem;
	padding-bottom: 0rem;

	.ja {
		font-size: 2.1rem;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-weight: 600;
	}

	.en {
		font-family: var(--font-en);
		font-weight: 400;
		font-size: 1.7rem;
		line-height: 1;
		margin-top: 2rem;
		letter-spacing: 0.04em;
		padding-left: 1.4rem;
		border-left: 1px solid var(--beige_line);
	}

	#wrapper:not(:has(main :is(.m_toc, .page-list))) & {}
}

/*++++++++++++++++++++++++++++
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 {
	--border-color: #ccc;
	display: flex;
	flex-direction: column;
}

.l_news_item:first-of-type {
	border-top: var(--border-color) 1px solid;
}

.l_news_item {
	border-bottom: var(--border-color) 1px solid;
}

.l_news_item_inner {
	padding: 2.1rem 0.4rem 2.1rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.l_news_item_head {
	display: flex;
	align-items: center;
}

.l_news_item_date {
	font-size: 1.6rem;
	line-height: 1.3;
	letter-spacing: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-en);
	margin-right: 1.2rem;
}

.l_news_item_cat {
	line-height: 1.2;
	font-size: 1.2rem;
	border: 1px solid #ccc;
	padding: 0.1rem 1.1rem 0.1rem;
	min-height: 2rem;
	display: flex;
	align-items: center;
}

.l_news_item_body {
	overflow: hidden;
	width: 100%;
}

.l_news_item_ttl {
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	color: #fff;
	background: #514B47;
	padding: 3rem 0 0;

	.inner {
		padding: 0 2rem;
	}

	.l_footer_logo {
		display: block;
		width: 28rem;
		margin: 0 auto;
	}

	.l_footer_data {
		margin-top: 3rem;

		p {
			font-size: 1.4rem;
		}
	}

	.l_footer_data_address {
		p+p {
			margin-top: 1rem;
		}

		a {
			font-size: 1.5rem;
			display: block;
			color: var(--logo_gold);
		}
	}

	.l_footer_data_other {
		margin-top: 1.2rem;

		p+p {
			margin-top: 1rem;
		}
	}

	.l_footer_body {
		margin-top: 3rem;
	}

	.l_footer_bottom {
		border-top: 1px solid #FFFFFF33;
		padding: 2rem 2rem 10.4rem;
		margin-top: 3rem;
	}

	.l_footer_bnrs02 {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1.5rem 1rem;
	}

	.l_footer_bnr02_col {
		width: 16rem;

		&.mini {
			width: 16.2rem;
		}

		&.mini02 {
			width: 15.6rem;
		}
	}

	.l_footer_bnr_slider {
		.swiper-pagination {
			position: relative;
			margin: 0;
			inset: 0;
			display: flex;
			justify-content: center;
			gap: 0.5rem;
			margin-top: 1rem;
		}

		.swiper-pagination-bullet {
			border: 0;
			background: #fff;
			width: 0.5rem;
			height: auto;
			aspect-ratio: 1/1;
			margin: 0;
			opacity: 0.2;

			&.swiper-pagination-bullet-active {
				opacity: 1;
			}
		}
	}

	.l_footer_bnrs {
		display: flex;
		justify-content: center;
		gap: 1rem;
		margin-top: 4rem;
	}

	.l_footer_bnr {
		width: 16rem;
		font-size: 1.1rem;
		line-height: 1.6;
		text-align: center;
		text-decoration: none;

		a {
			text-decoration: none;
			display: block;
		}

		span {
			display: block;
		}

		em {
			display: block;
			margin-top: 0.5rem;
			color: #fff;
		}
	}

	small {
		position: relative;
		display: block;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.6;
		text-align: center;
		margin-top: 4rem;
		opacity: 0.5;
	}
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	--head-height: 5.5rem;
	--icon-color: var(--brown_logo);
	--icon-transform: translateY(-50%) rotate(180deg);
	--icon-size: 1rem;
	--fixed-translate: translateY(calc(100% - var(--head-height) + 1px));
	--fixed-zindex: 99;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: var(--fixed-zindex);
	transition: var(--default-transition);
	transform: var(--fixed-translate);
	box-shadow: 0px 0px 24px 0px #0000001A;

	&.on {
		--icon-transform: translateY(-50%) rotate(180deg);
		--fixed-translate: translateY(0);
		--fixed-zindex: 1000;
	}

	.l_fixed_head {
		height: var(--head-height);
		color: #fff;
		transition: var(--default-transition);
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		isolation: isolate;
		background: var(--logo_brown);
		border-radius: 1rem 1rem 0 0;
	}

	.l_fixed_head span {
		font-size: 1.5rem;
		line-height: 1.3;
		letter-spacing: 0.12em;
		padding-right: 2.6rem;
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			right: 0;
			width: 1.6rem;
			aspect-ratio: 1/1;
			-webkit-mask: url(../images/icon_arrow.svg) center / var(--icon-size) no-repeat;
			mask: url(../images/icon_arrow.svg) center / var(--icon-size) no-repeat;
			background: var(--icon-color);
			z-index: 2;
			transition: var(--default-transition);
			transform: var(--icon-transform);
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			right: 0;
			transform: translateY(-50%);
			width: 1.6rem;
			aspect-ratio: 1/1;
			border-radius: 50%;
			z-index: 1;
			background: #fff;
		}
	}

	.l_fixed_body {}

	.l_fixed_cta {
		margin-top: 0;
	}
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	--arrow-url: url(../images/icon_arrow02.svg);
	--arrow-color: var(--logo_brown);
	--arrow-size: 0.6rem;
	position: fixed;
	z-index: 99;
	bottom: 6.5rem;
	right: 0;
	width: 4rem;
	aspect-ratio: 1/1;
	transition: var(--default-transition);
	/* opacity: 0;
	pointer-events: none; */
	border: 1px solid #B0A36980;
	background: var(--beige_00);
	border-radius: 0.5rem 0 0 0.5rem;
	color: transparent;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: -0.1rem;
		left: 0.1rem;
		width: 100%;
		height: 100%;
		background: var(--arrow-url) center / var(--arrow-size) no-repeat;
		z-index: 1;
		rotate: -90deg;
		pointer-events: none;
	}
}

.js_header_move .l_pagetop {
	/* opacity: 1;
	pointer-events: auto; */
}

/*++++++++++++++++++++++++++++
l_cta
++++++++++++++++++++++++++++*/
.l_cta {
	background: var(--beige_01);
	padding: 2rem;
	margin-top: 3rem;

	.l_cta_tel {}

	.l_cta_tel_ttl {
		font-size: 1.3rem;
		text-align: center;
		color: var(--logo_brown);
		margin-bottom: 0.6rem;
	}

	.l_cta_tel_btn {
		border: 1px solid #B0A36980;
		background: #fff;
		border-radius: 0.4rem;
		height: 5rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		text-decoration: none;

		.txt01 {
			--icon-url: url(../images/icon_tel.svg);
			--icon-size: 2.4rem;
			--icon-color: var(--logo_brown);
			padding-left: 3rem;
			font-size: 1.7rem;
			            padding-top: 0.4rem;
		}

		.txt02 {
			color: var(--gold);
			font-size: 1.1rem;
		}
	}

	.l_cta_btns {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		margin-top: 1.5rem;
		gap: 1rem;
	}

	.l_cta_btn {
		--icon-url: url(../images/icon_reserve.svg);
		--icon-size: 3.2rem;
		--icon-color: #fff;
		display: flex;
		padding-top: 4.2rem;
		text-decoration: none;
		text-align: center;
		justify-content: center;
		color: #fff;
		font-size: 1.4rem;
		background: var(--logo_brown);
		height: 7.4rem;
		border-radius: 0.3rem;

		&:before {
			top: 1rem;
			left: 50%;
			transform: translateX(-50%);
		}

		&.line {
			--icon-url: url(../images/icon_line.svg);
			background: var(--green);
		}

		&.recruit {
			--icon-url: url(../images/icon_man.svg);
			background: var(--logo_gold);
		}
	}

	.l_cta_proctology {
		--icon-url: url(../images/icon_hospital.svg);
		--icon-size: 2.4rem;
		--icon-color: var(--logo_gold);
		border: 1px solid #B0A36980;
		text-decoration: none;
		padding: 0 1rem 0 3.4rem;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		font-size: 1.4rem;
		height: 4rem;
		margin-top: 1.5rem;
		border-radius: 0.3rem;

		&:before {
			left: 1rem;
		}
	}

	.l_cta_sns {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1.2rem;
		padding-top: 1.5rem;
		border-top: 1px solid var(--beige_line);
		margin-top: 1.5rem;
	}

	.l_cta_sns_ttl {
		color: var(--gold);
	}

	.l_cta_sns_list {
		display: flex;
		gap: 1rem;

		li {
			width: 5.2rem;

			a {
				text-decoration: none;
				border-radius: 50%;
				display: flex;
				justify-content: center;
				align-items: center;
				border: 1px solid #B0A36980;
				background: #fff;
				aspect-ratio: 1/1;
			}

			img {
				width: 3rem;
			}
		}
	}
}

/*++++++++++++++++++++++++++++
lu_ttl
++++++++++++++++++++++++++++*/
.lu_ttl01 {
	padding: 0.7rem 0 0.7rem 4rem;
	background: url(../images/icon_logo.svg) left top / 3rem no-repeat;
	line-height: 1;
	letter-spacing: 0.04em;
	font-family: var(--font-en);
	font-size: 1.6rem;
	font-weight: 400;
}

.lu_ttl02 {
	font-size: 1.6rem;
	letter-spacing: 0.12em;
	line-height: 1.6;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 1rem;
	text-align: center;
	margin-bottom: 2rem;

	&:before,
	&:after {
		content: '';
		display: block;
		height: 0.5rem;
		z-index: 1;
		flex: 1;
		border-top: 1px solid var(--logo_gold);
		border-bottom: 1px solid var(--logo_gold);
		min-width: 3rem;
	}
}

.lu_ttl03 {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 3rem;

	.txt01 {
		font-size: 3.6rem;
		font-family: var(--font-en);
		line-height: 1;
		letter-spacing: 0.04em;
		font-weight: 400;
	}

	.txt02 {
		padding: 0 2rem;
		position: relative;
		font-weight: 600;
		font-size: 1.7rem;
		line-height: 1.6;
		letter-spacing: 0.12em;

		&:before,
		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 0.5rem;
			height: 100%;
			z-index: 1;
			border-left: 1px solid var(--logo_gold);
			border-right: 1px solid var(--logo_gold);
		}

		&:after {
			left: auto;
			right: 0;
		}
	}
}

/*++++++++++++++++++++++++++++
lu_doctor
++++++++++++++++++++++++++++*/
.lu_doctor {
	position: relative;
	isolation: isolate;

	&:before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: max(100vw, 100%);
		height: calc(100% - 80rem);
		z-index: -2;
		background: linear-gradient(180deg, rgba(191, 179, 126, 0) 0%, #BFB37E 59.57%);
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 29rem;
		left: -19.5rem;
		width: 138.2rem;
		aspect-ratio: 1/1;
		z-index: -1;
		background: linear-gradient(155.42deg, rgba(191, 179, 126, 0) 12.59%, rgba(191, 179, 126, 0.7) 79.86%);
		border-radius: 50%;
	}

	.lu_ttl01 {
		margin-bottom: 3rem;
	}

	.lu_doctor_imgs {
		width: 24.5rem;
		margin: 0 auto;
		position: relative;
	}

	.lu_doctor_img {
		position: relative;
		z-index: 1;
	}

	.lu_doctor_en {
		position: absolute;
		top: -3rem;
		right: -4.8rem;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		z-index: 10;
		font-family: var(--font-en);
		color: var(--beige_01);
		font-size: 8rem;
		letter-spacing: 0.04em;
		line-height: 1;
		font-weight: 400;
	}

	.lu_doctor_badge {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 15rem;
		aspect-ratio: 1/1;
		text-align: center;
		z-index: 10;
		position: absolute;
		bottom: 2rem;
		left: -4rem;
		padding-top: 2.7rem;

		&::after,
		&::before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			aspect-ratio: 1/1;
			z-index: -1;
			border-radius: 50%;
			border: 1px solid var(--orange);
		}

		&::after {
			width: calc(100% - 1rem);
			left: 0.5rem;
			top: 0.5rem;
			background: var(--orange);
			border: 0;
		}

		.txt01 {
			font-weight: 600;
			letter-spacing: 0.12em;
			font-size: 1.4rem;
			color: #fff;
			line-height: 1.6;
		}

		.txt02 {
			font-weight: 600;
			letter-spacing: 0.12em;
			font-size: 2.2rem;
			color: #fff;
			margin-top: 0.4rem;
			line-height: 1.6;
		}

		.txt03 {
			font-weight: 400;
			line-height: 1;
			letter-spacing: 0.04em;
			font-size: 1.2rem;
			font-family: var(--font-en);
			margin-top: 0.8rem;
		}
	}

	.lu_doctor_box+.lu_doctor_box {
		margin-top: 3rem;
	}

	.lu_doctor_catch {
		filter: drop-shadow(0px 0px 2.4rem #0000001A);
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
		margin-top: 3rem;
		margin-bottom: 3rem;

		span {
			padding: 0.4rem 0.8rem;
			background: #fff;
			border-radius: 0.5rem;
			font-size: 2rem;
			line-height: 1.6;
			font-weight: 600;
			letter-spacing: 0.12em;
		}
	}

	.lu_doctor_profile {
		margin-top: 6rem;
		display: grid;
		gap: 2rem;
	}
}

.lu_profile {
	padding: 2.5rem 2rem;
	background: var(--beige_00);
	border: 1px solid var(--beige_line);
	border-radius: 1rem;

	&:after {
		content: '';
		display: block;
		width: 100%;
		height: 0.5rem;
		z-index: 1;
		border-bottom: 1px solid var(--logo_gold);
		border-top: 1px solid var(--logo_gold);
		margin: 3rem 0 1rem;
	}

	.lu_profile_ttl {
		font-size: 1.6rem;
		letter-spacing: 0.12em;
		line-height: 1.6;
		font-weight: 600;
		display: flex;
		align-items: center;
		gap: 1.3rem;
		text-align: center;
		margin-bottom: 2rem;
		color: var(--gold);

		&:before,
		&:after {
			content: '';
			display: block;
			height: 0.5rem;
			z-index: 1;
			flex: 1;
			border-top: 1px solid var(--logo_gold);
			border-bottom: 1px solid var(--logo_gold);
			min-width: 3rem;
		}
	}

	.lu_profile_sub_ttl {
		font-size: 1.5rem;
		line-height: 1.6;
		color: var(--white);
		background: var(--logo_gold);
		padding: 0 0.5rem;
		position: relative;
		border-radius: 0.3rem;
		width: fit-content;
		display: block;
		margin-bottom: 0.8rem;
		margin-top: 2rem;
		font-weight: 600;
	}

	.lu_profile_table {
		:is(th, td) {
			padding: 0.8rem 0;
			font-size: 1.4rem;
			line-height: 1.6;
			vertical-align: middle;
			font-weight: 500;
		}

		th {
			width: 7rem;
			padding-right: 0.5rem;
		}

		tr {
			border-bottom: 1px solid var(--beige_line);
		}
	}

	ul {
		--gap-row: 0.5rem;

		li {
			font-size: 1.4rem;
			width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
		}
	}
}

.lu_intro {
	.lu_intro_block {
		background: var(--beige_01);
		padding: 2rem 1.5rem;
		border-radius: 1rem;
	}
}

.lu_info {
	position: relative;
	isolation: isolate;
	padding-bottom: 5rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: max(100vw, 100%);
		height: calc(100% - 75rem);
		z-index: -2;
		background: linear-gradient(180deg, rgba(191, 179, 126, 0) 0%, #BFB37E 59.57%);
	}

	.lu_info_block {}

	.lu_info_head {
		.oft {
			height: 25rem;
			margin-left: -2.5rem;

			img {
				border-radius: 0 1rem 1rem 0;
			}
		}
	}

	.lu_info_body {
		margin-top: 3rem;

		.lu_ttl01 {
			margin-bottom: 4rem;
			width: fit-content;
			margin-left: auto;
		}
	}

	.lu_info_table {
		:is(th, td) {
			padding: 1.4rem 1rem;
			font-size: 1.5rem;
			line-height: 1.6;
			vertical-align: middle;
			font-weight: 500;
		}

		th {
			width: 10rem;
			color: var(--gold);
		}

		tr {
			border-bottom: 1px solid var(--beige_line);

			&:first-of-type {
				border-top: 1px solid var(--beige_line);
			}
		}
	}

	.lu_info_time {
		margin-top: 4rem;

		table {
			border: 1px solid var(--beige_line);
			background: #fff;
			--table-font-color: var(--logo_brown);
			--color: var(--logo_gold);

			thead {
				background: var(--beige_01);

				th {
					border-color: var(--beige_line);
					color: var(--logo_brown);
				}
			}

			tbody {
				tr {
					&:nth-of-type(2) {
						--color: var(--logo_brown);

						th span {
							color: var(--white);
							background: var(--logo_brown);
						}
					}

					&:last-of-type {
						th {
							border-bottom: 0;
						}

						td {
							border-bottom: 0;
						}
					}
				}

				th {
					border-color: var(--beige_line);
				}

				td {
					border-color: var(--beige_line);

					&:last-of-type {
						color: var(--logo_brown);
					}
				}
			}
		}

		.m_timetable_hosoku {
			color: var(--logo_brown);
		}
	}

	.lu_info_map {
		margin-top: 4rem;
	}

	.lu_info_route {
		margin-top: 4rem;
		background: var(--white);
		padding: 2rem 1.5rem;
		border-radius: 1rem;
	}
}

.lu_facility {
	position: relative;
	isolation: isolate;
	padding-bottom: 5rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: max(100vw, 100%);
		height: 100%;
		z-index: -1;
		background: url(../images/under/facility_bg_sp.jpg) center / cover no-repeat;
	}
}