@charset "utf-8";

:root {
	/*-----------------------------
	common
	-----------------------------*/
	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 3rem;
	/* タブレット時はviewportを固定する */
	--tb-breakpoint: 1280px;
	--color-opacity: 1;
	--main_txt: #4C4948;
	--white: #fff;
	--blown_01: #40281D;
	--brown_01: var(--blown_01);
	--brown_02: #856D60;
	--brown_03: #D6D0C6;
	--brown_04: #63584C;
	--beiju_01: #CBB693;
	--beiju_02: #B08B4E;
	--beiju_03: #E6E4E1;
	--beige03: #877B68;
	--black_01: #484540;
	--black_02: #746F66;
	--bg_01: #F9F9F4;
	--gray-color: #cec9c6;
	--main-font-color: var(--main_txt);
	--main-color: var(--blown_01);
	--beige_bg: var(--bg_01);
	--default-letter-spacing: 0.08em;
	--default-line-height: 1.8;
	--font-main: 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: YakuHanMP, "Shippori Mincho", serif;
	--font-en-is: "Instrument Serif", serif;
	--font-en-cg: "Cormorant Garamond", serif;
	--font-num-lct: "Libre Caslon Text", serif;
	--font-num-pd: "Playfair Display", serif;
	--font-gothic: sans-serif;
	--default-transition: 0.3s ease-out;
	--default-font-size: 1.5rem;
	--under-default-font-size: var(--default-font-size);
}

p {
	font-size: var(--default-font-size);
}

: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;
}

.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: 0.8rem;
	--circle-size: 2.8rem;
	--circle-color: #565B66;
	--icon-right: 1.1rem;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: flex-start;
	text-decoration: none;
	width: fit-content;
	color: var(--blown_01);
	background: var(--custom-btn-bg-color, #FFFFFFCC);
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding: 1rem 5rem 1rem 2.3rem;
	min-width: 28rem;
	min-height: 5.2rem;
	margin: var(--under-btn-mt, 0px) auto 0;
	border-radius: 0.2rem;
	border: 1px solid var(--blown_01);
	font-family: var(--font-min);

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: var(--icon-right);
		width: var(--circle-size);
		aspect-ratio: 1/1;
		-webkit-mask: var(--icon-url) center / var(--icon-size) no-repeat;
		mask: var(--icon-url) center / var(--icon-size) 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.4rem;
		background: var(--circle-color);
		transform: translateY(-50%);
	}
}

.m_btn02 {
	/* 左のアイコン */
	--icon-url: url(../images/icon_web.svg);
	--icon-size: 2.2rem;
	--icon-color: var(--white);
	/* アロー */
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--white);
	--arrow-size: 1rem;
	--arrow-right: 1.6rem;
	background: var(--beige03);
	color: var(--white);
	height: 5.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-right: 1.8rem;
	border-radius: 0.5rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: var(--arrow-right);
		width: var(--arrow-size);
		height: var(--arrow-size);
		-webkit-mask: var(--arrow-url) center / 100% no-repeat;
		mask: var(--arrow-url) center / 100% no-repeat;
		background: var(--arrow-color);
		z-index: 2;
	}

	.txt01 {
		font-family: var(--font-min);
		letter-spacing: 0.08em;
		line-height: 1;
		font-size: 1.8rem;
		font-weight: 500;
		position: relative;
		padding-left: 4.4rem;
		color: #fff;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: 0;
			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: #59885F;
	}
}

.m_btn03 {
	/* 左のアイコン */
	--icon-url: url(../images/icon_tel.svg);
	--icon-size: 1.6rem;
	--icon-color: var(--white);
	/* アロー */
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--white);
	--arrow-size: 1rem;
	--arrow-right: 1.6rem;
	background: #484540;
	color: var(--white);
	height: 4.8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-right: 1.8rem;
	border-radius: 0.5rem;

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

	.txt01 {
		font-family: var(--font-num-lct);
		letter-spacing: 0.08em;
		line-height: 1;
		font-size: 2rem;
		font-weight: 500;
		position: relative;
		padding-left: 3.2rem;
		color: #fff;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: 0;
			width: var(--icon-size);
			aspect-ratio: 16/20;
			z-index: 1;
			-webkit-mask: var(--icon-url) center / 100% no-repeat;
			mask: var(--icon-url) center / 100% no-repeat;
			background: var(--icon-color);
		}
	}
}

.m_btn04 {
	/* 左のアイコン */
	--icon-url: url(../images/icon_web.svg);
	--icon-size: 2.2rem;
	--icon-color: var(--white);
	/* アロー */
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--white);
	--arrow-size: 0.8rem;
	--circle-right: 1.6rem;
	--circle-size: 2.6rem;
	--circle-color: #9B908C;
	background: #57524B;
	color: var(--white);
	height: 8.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-right: 1.8rem;
	border-radius: 0.5rem;
	border: 1px solid #fff;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: var(--circle-right);
		width: var(--circle-size);
		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;
		transform: translateY(-50%);
	}

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

	.txt01 {
		font-family: var(--font-min);
		letter-spacing: 0.08em;
		line-height: 1;
		font-size: 1.8rem;
		font-weight: 500;
		position: relative;
		padding-left: 4.2rem;
		color: #fff;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: 0;
			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: #59885F;
	}

	&.interview {
		--icon-url: url(../images/icon_interview.svg);

		.txt01 {
			&:before {
				aspect-ratio: 22/30;
			}
		}
	}
}

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

.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 {
	color: var(--main-color);
	margin-top: 1.6rem;
}

/*++++++++++++++++++++++++++++
m_toc
++++++++++++++++++++++++++++*/
.m_toc {
	position: relative;
	isolation: isolate;
	padding: 2.4rem 0 4rem;
}

.m_toc:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: calc(-1 * var(--inner-padding));
	width: calc(100% + var(--inner-padding) * 2);
	height: 100%;
	z-index: -1;
	background: #63574C;
}

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

.m_toc_list {
	--gap-col: 0px;
	--gap-row: 1.4rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	isolation: isolate;
	margin: 0;
}

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

.m_toc_list a {
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--brown_02);
	--arrow-size: 0.8rem;
	--circle-right: 1.2rem;
	--circle-size: 2rem;
	--circle-color: var(--brown_03);
	line-height: 1.4;
	padding: 0.8rem 4rem 0.7rem 0.8rem;
	font-size: 1.5rem;
	text-decoration: none;
	position: relative;
	width: 100%;
	display: block;
	color: var(--white);
	border-bottom: 1px solid var(--brown_03);

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: var(--circle-right);
		width: var(--circle-size);
		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;
		transform: translateY(-50%) rotate(90deg);
	}

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

/*++++++++++++++++++++++++++++
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: var(--under-default-font-size);
	padding: 0 0 0 2.8rem;
	text-align: left;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

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

/*++++++++++++++++++++++++++++
m_btn_list
++++++++++++++++++++++++++++*/
.m_btn_list {
	--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);

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

	li:before {
		content: "";
		display: block;
		position: absolute;
		top: 1.8rem;
		left: 1rem;
		z-index: 5;
		width: 0.8rem;
		aspect-ratio: 1/1;
		background: #A7958B;
		border-radius: 50%;
	}

	a {
		text-decoration: none;
		letter-spacing: 0.04em;
	}
}

/*++++++++++++++++++++++++++++
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_box+.m_timetable_box {
	margin-top: 2rem;
}

.m_timetable_ttl {
	font-family: var(--font-min);
	text-align: center;
	color: #fff;
	background: #856D60;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.8rem 0;
	margin-bottom: 0.6rem;
}

.m_timetable {
	--col-size: 10.3%;
}

.m_timetable :is(td, th) {
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	text-align: center;
	padding: 1.1rem 0 1rem;
	vertical-align: middle;
	line-height: 1;
}

.m_timetable th {}

.m_timetable thead th {
	width: var(--col-size);
	padding: 1.3rem 0 1.2rem;
}

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

.m_timetable tbody tr {
	border-top: 1px solid var(--brown_03);
}

.m_timetable tbody tr:last-of-type {
	border-bottom: 1px solid var(--brown_03);
}

.m_timetable tbody th {}

.m_timetable tbody td {}

.m_timetable_hosoku {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-top: 1.4rem;
	letter-spacing: 0.04em;
}

/*++++++++++++++++++++++++++++
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: 3rem;
	overflow: hidden;
}

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

.m_faq_head {
	position: relative;
	--icon-right: 1.8rem;
	--icon-width: 1.4rem;
	--icon-color: #fff;
	border-radius: 0.5rem;
	background: var(--brown_04);
}

.m_faq_head:before,
.m_faq_head:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--icon-right);
	width: var(--icon-width);
	height: 2px;
	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.3rem 6.7rem 1.5rem 5rem;
	font-size: 1.7rem;
	line-height: 1.6;
	display: flex;
	cursor: pointer;
	align-items: center;
	font-family: var(--font-min);
	font-weight: 500;
	color: #fff;
}

.m_faq_ttl:before {
	content: "Q";
	display: block;
	position: absolute;
	font-size: 2.6rem;
	font-family: var(--font-en-cg);
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0;
	top: 47%;
	transform: translateY(-50%);
	left: 1.6rem;
	font-weight: 600;
	color: #fff;
}

.m_faq_ttl:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0rem;
	width: 5rem;
	height: 3rem;
	z-index: 1;
	border-left: 1px solid #fff;
}

.m_faq_body {
	padding: 2.4rem 0 0 4.9rem;
	display: none;
	position: relative;

	&:before {
		content: "A";
		display: block;
		position: absolute;
		font-size: 2.6rem;
		font-family: var(--font-en-cg);
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--brown_02);
		padding-bottom: 0;
		top: 2.4rem;
		left: 1.6rem;
		font-weight: 600;
	}
}

.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: 2.4rem;
	position: relative;
	z-index: 1;
	margin: 6rem 0 0;
	background: var(--custom-kakomi-bg-color, #F5F2EE);


}

.m_kakomi .m_kakomi {
	padding: 2rem;
	background: #fff;
	margin-top: 3.6rem;
}

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

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

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

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

/*++++++++++++++++++++++++++++
m_waku
++++++++++++++++++++++++++++*/
.m_waku {
	padding: 2.4rem;
	position: relative;
	z-index: 1;
	margin: 6rem 0 0;
	background: #fff;
	border: 1px solid var(--brown_02);
}

.m_waku .m_kakomi {
	padding: 2rem;
	background: #F5F2EE;
	margin-top: 3.6rem;
}

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

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

.m_waku>*:first-child {
	margin-top: 0 !important;
}

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

/*++++++++++++++++++++++++++++
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;
}

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

	.m_flow_item {
		counter-increment: flow_counter;
		display: flex;
		flex-direction: column;
		gap: 0rem;
		position: relative;
	}

	.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 {}

	.m_flow_ttl {
		font-family: var(--font-min);
		color: var(--brown_02);
		font-size: 1.7rem;
		letter-spacing: 0.08em;
		line-height: 1.6;
		font-weight: 500;
		flex: 1;
		position: relative;
		min-height: 5rem;
		display: flex;
		align-items: center;
		padding-left: 6rem;
		margin-bottom: 1.2rem;

		&:before {
			content: "0" counter(flow_counter);
			font-size: 2rem;
			line-height: 1;
			margin-bottom: 0;
			display: block;
			font-family: var(--font-num-lct);
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: 0;
			z-index: 10;
			text-align: center;
			letter-spacing: 0;
			font-weight: 400;
			width: 5rem;
			aspect-ratio: 1/1;
			border-radius: 50%;
			border: 1px solid;
			display: flex;
			justify-content: center;
			align-items: center;
			letter-spacing: 0.04em;
		}
	}

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

	.m_flow_item_body {
		padding: 2.2rem;
		background: #F5F2EE;
		width: calc(100% - 6rem);
		margin-left: auto;
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: -3.7rem;
			width: 2px;
			height: 100%;
			z-index: 1;
			background: url(../images/flow_dots.png) center / 2px;
		}

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

	.m_flow_sub_ttl {
		font-weight: 500;
		font-size: 1.6rem;
		line-height: 1.6;
		letter-spacing: 0.08em;
		font-family: var(--font-min);
		margin-bottom: 1.2rem;

		+p {
			margin-top: 0;
		}
	}

	.m_kakomi {
		padding: 2rem;
		margin-top: 3rem;
		background: #fff;
	}

	.m_imgbox {
		gap: 2rem;
	}

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

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

/*++++++++++++++++++++++++++++
m_numbox
++++++++++++++++++++++++++++*/
.m_numbox {
	display: grid;
	gap: 2rem;

	.m_numbox_item {
		padding: 2.4rem;
		background: #F5F2EE;
		counter-increment: numbox_counter;
	}

	.m_numbox_ttl {
		font-family: var(--font-min);
		color: var(--brown_02);
		font-size: 1.7rem;
		letter-spacing: 0.08em;
		line-height: 1.6;
		font-weight: 500;
		flex: 1;
		position: relative;
		min-height: 5rem;
		display: flex;
		align-items: center;
		padding-left: 6.2rem;
		margin-bottom: 2.6rem;

		&:before {
			content: "0" counter(numbox_counter);
			font-size: 2rem;
			line-height: 1;
			margin-bottom: 0;
			display: block;
			font-family: var(--font-num-lct);
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			left: 0;
			z-index: 10;
			text-align: center;
			letter-spacing: 0;
			font-weight: 400;
			width: 5rem;
			aspect-ratio: 1/1;
			border-radius: 50%;
			border: 1px solid;
			display: flex;
			justify-content: center;
			align-items: center;
			letter-spacing: 0.04em;
		}
	}

	.m_numbox_item:nth-of-type(n + 10) .m_numbox_ttl:before {
		content: counter(numbox_counter);
	}

	.m_kakomi {
		padding: 2rem;
		margin-top: 3rem;
		background: #fff;
	}
}

/*++++++++++++++++++++++++++++
l_under_mv
++++++++++++++++++++++++++++*/
.l_under_mv {
	position: relative;
	padding: 0;
	margin-bottom: 0;
	padding-top: var(--header-height);

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 20;
		background: #fff;
		animation: opacityOff 1s linear 0.5s 1 both;
		pointer-events: none;
	}
}

.l_under_mv_inner {
	margin-top: 0;
	min-height: 23.8rem;
	display: flex;
	flex-direction: column;
	position: relative;
}

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

.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 {
	flex: 1;
	border-radius: 0;
	padding: 3.2rem 2.8rem 0;
	margin: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: var(--main-color);
	animation: fadeInUp 1s ease 1.5s 1 both;
}

.l_under_mv_ttl .ja {
	font-size: 2rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-family: var(--font-min);
	font-weight: 500;
	color: #fff;
}

.l_under_mv_ttl .en {
	font-family: var(--font-en-is);
	letter-spacing: 0.02em;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 0.6rem;
	color: #fff;
}

/* l_under_content */
.inner:has(.l_under_content) {
	padding: 0 2rem;
}

.l_under_content {
	.inner {
		padding: 0;
	}
}

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

	&>section:before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		width: calc(100 * var(--vw));
		height: 2px;
		z-index: -1;
		transform: translateX(-50%);
		opacity: 0;
		border-top: 1px solid var(--brown_03);
	}

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

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

	&>section:last-of-type {
		padding-bottom: 8rem;
	}
}

/* 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(--brown_04);
	}

	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(--brown_02);
	font-weight: 500;
	font-size: 2.1rem;
	letter-spacing: 0.08em;
	line-height: 1.8;
	padding: 6.1rem 0 0;
	margin: 5rem 0 5rem;
	text-align: center;
	background: url(../images/ttl_icon01.svg) center top / 2.4rem no-repeat;
	font-family: var(--font-min);
}

:where(.l_under_content) h3:where(:not(.no_default)) {
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.6;
	padding: 1.2rem 0;
	margin: 6rem 0 3rem;
	display: flex;
	justify-content: center;
	position: relative;
	text-align: center;
	font-family: var(--font-min);
	border-top: 1px solid var(--brown_02, #856D60);
	border-bottom: 1px solid var(--brown_02, #856D60);
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	line-height: 1.6;
	padding: 0 0 1.2rem;
	margin: 4rem 0 2.6rem;
	border-bottom: 1px solid var(--brown_02, #856D60);
	font-family: var(--font-min);
}

:where(.l_under_content) h5:where(:not(.no_default)) {
	font-weight: 500;
	line-height: 1.5;
	font-size: 1.7rem;
	letter-spacing: 0.04em;
	padding: 0.3rem 1.6rem 0.5rem;
	margin: 3.6rem 0 1.4rem;
	position: relative;
	color: var(--white);
	background: var(--black_01, #484540);
	font-family: var(--font-min);
}

:where(.l_under_content) .m_hosoku_ttl {
	position: relative;
	padding: 0 0 0 1.6rem;
	color: var(--brown_04, #63584C);
	font-family: var(--font-min);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin: 3rem 0 1rem;

	+p {
		margin: 0;
	}

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0.7rem;
		left: 0;
		width: 1rem;
		aspect-ratio: 1/1;
		border-radius: 50%;
		z-index: 1;
		background: var(--black_02);
	}
}

: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: 1.8rem;
		font-size: var(--under-default-font-size);
		text-align: left;
		line-height: 1.6;
		letter-spacing: 0.04em;
	}

	li:before {
		content: "";
		display: block;
		position: absolute;
		left: 0rem;
		top: 0.8rem;
		width: 0.8rem;
		aspect-ratio: 1/1;
		background: #B8ACA5;
		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: 4rem;
	}

	&.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(--gray-color);
	}
}

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

	li {
		counter-increment: counter;
		padding: 1rem 1rem 1rem 5rem;
		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;
		background: #F5F2EE;
		border-radius: 0.3rem;
		line-height: 1.6;
		letter-spacing: 0.04em;
	}

	li:before {
		content: "0" counter(counter);
		display: block;
		position: absolute;
		top: 1.5rem;
		left: 1rem;
		z-index: 1;
		font-family: var(--font-num-lct);
		color: var(--main-color);
		line-height: 1;
		font-size: 1.8rem;
		letter-spacing: 0;
		min-width: 3rem;
		text-align: center;
		color: var(--brown_02);
	}

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

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

	table {
		margin-top: 0 !important;
	}
}

:where(.m_table),
:where(.l_under_content) table:where(:not(.no_default)) {
	--table-out-border: var(--brown_02);
	--table-in-border: var(--brown_02);
	--thead-th-bg-first: var(--black_01);
	--thead-th-bg: var(--black_01);
	--tbody-th-bg: #F5F2EE;
	--tbody-td-bg: var(--white);
	margin-top: var(--under-box-mt);

	tbody tr:not(:has(*:nth-child(n + 3))) th,
	thead:not(:has(*:nth-child(n + 3))) th {
		&:first-of-type {
			width: 43%;
		}
	}

	&.m_table_price {

		tbody th,
		thead th {
			width: 67% !important;
		}

		tbody td {
			text-align: right;
		}
	}

	thead th {
		width: 50%;
	}

	/* 基本のスタイル */
	:is(th, td) {
		font-size: 1.5rem;
		padding: 1.2rem;
		vertical-align: middle;
		line-height: 1.6;
	}

	thead {
		th {
			background: var(--thead-th-bg);
			color: #fff;
			font-weight: 500;
			padding: 1rem 1.2rem;
		}

		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;
			font-weight: 500;
		}

		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);

			&:not(:last-of-type) {
				border-right: 1px solid var(--brown_02);
			}
		}

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

		/* 値段部分 */
		td em {
			font-size: 2rem;
			font-family: var(--font-num);
			color: var(--orange_00);
			position: relative;
			line-height: 1;
			top: -0.05em;
			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;
	}
}

/*++++++++++++++++++++++++++++
m_table02
++++++++++++++++++++++++++++*/
.m_table02 {
	background: #fff;
	overflow: hidden;
	--table-out-border: var(--brown_02);
	--table-in-border: var(--beige_04);
	--thead-th-bg-first: var(--brown_03);
	--thead-th-bg: var(--brown_02);
	--tbody-th-bg: var(--beige_02);
	--tbody-td-bg: var(--white);
	border: 1px solid var(--table-out-border);

	:is(th, td) {
		font-size: 1.4rem;
		padding: 1.5rem 1rem;
		vertical-align: middle;
		text-align: center;
		line-height: 1.6;
		font-family: var(--font-gothic);
	}

	thead {
		th {
			background: var(--thead-th-bg);
			color: #fff;
			font-weight: 400;
		}

		th:first-of-type {
			background: var(--thead-th-bg-first);
			color: #fff;
			width: 11rem
		}

		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);
		}

		: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;
		}
	}

	.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;

		+* {
			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: #9083624D;
			display: none;
		}

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

			&:after {
				display: block;
			}
		}
	}
}

/* テーブル系ユーティリティ */
: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 {
	position: relative;
	z-index: 10;
}

.breadcrumbs {
	padding: 0.6rem 2.8rem 1.2rem;
	margin-bottom: 0;
	flex-wrap: wrap;
	line-height: 1.2;
	width: fit-content;
}

.breadcrumbs br {
	display: none !important;
}

.breadcrumbs :is(span, a) {
	text-decoration: none;
	font-size: 1.2rem;
	letter-spacing: 0;
	line-height: 1.4;
}

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

.breadcrumbs>span {
	color: var(--white);
	position: relative;
	padding-right: 1rem;
	display: inline;
}

.breadcrumbs>span:after {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.2rem;
	width: 0.5rem;
	height: auto;
	aspect-ratio: 6/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 {
	.l_news_item_inner {
		padding-top: 1rem;
	}
}

.l_news_item {
	border-bottom: var(--brown_03) 1px solid;
}

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

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

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

.l_news_item_cat {
	line-height: 1.2;
	font-size: 1.2rem;
	background: var(--brown_02);
	font-weight: 500;
	letter-spacing: 0;
	padding: 0.4rem 1.6rem;
	min-height: 2rem;
	display: flex;
	align-items: center;
	border-radius: 2rem;
	color: #fff;
}

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

.l_news_item_ttl {
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

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

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	background: var(--bg_01);
}

.l_footer_top {
	padding: 4rem 0 9rem;
	background: url(../images/footer_bg_sp.png) center bottom / 100% no-repeat;
}

.l_footer .inner {}

.l_footer_logo {
	display: block;
	width: 32rem;
	margin: 0 auto;
}

.l_footer_address {
	margin-top: 2rem;

	.txt {
		line-height: 1.6;
		font-size: 1.5rem;
		letter-spacing: 0.08em;
		margin-top: 2rem;
	}

	p+p {
		margin-top: 0.6rem
	}
}

.m_map_link {
	position: relative;
}

.m_map_link {
	--icon-url: url(../images/icon_access.svg);
	--icon-color: var(--brown_02);
	--icon-size: 1.5rem;
	position: relative;
	font-size: 1.4rem;
	padding: 0.2rem 0 0.2rem 2rem;
	line-height: 1;
	color: var(--brown_02);
	text-decoration: none;
	letter-spacing: 0;
	display: block;
	width: fit-content;
}

.m_map_link:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: var(--icon-size);
	aspect-ratio: 15/20;
	-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_tel {
	margin-top: 0.9rem;
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	gap: 1rem;

	.tel_link a,
	.tel_link {
		line-height: 1.8;
		letter-spacing: 0.08em;
		font-size: 1.9rem;
		text-decoration: none;
	}
}

.l_footer_subject {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	margin-top: 1.6rem;

	dt {
		line-height: 1;
		padding: 0.4rem 0.6rem 0.4rem 0.8rem;
		color: #fff;
		font-size: 1.3rem;
		background: var(--brown_02);
		border-radius: 0.3rem;
	}

	dd {
		font-size: 1.5rem;
	}
}

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

.l_footer_map {
	margin: 3rem -0.5rem 0;
}

.l_footer_btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
	margin: 3.6rem -1rem 0;
}

.l_footer_bnrs02 {
	margin: 3rem -1rem 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.l_footer_bottom {
	background: #514744;
	padding: 4rem 2rem 11rem;
}

.l_footer_bnrs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.4rem;
	padding: 0 1.4rem;
}

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

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

.l_footer_bnr span {
	display: block;
}

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

.l_footer small {
	position: relative;
	display: block;
	color: var(--brown_03);
	font-size: 1.1rem;
	line-height: 1;
	text-align: center;
	margin-top: 1.8rem;
	padding: 1.6rem 0 1.7rem;
	border-top: 1px solid var(--brown_03);
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	--head-height: 6rem;
	--icon-color: #fff;
	--icon-transform: translateY(-50%) rotate(270deg);
	--icon-size: 1rem;
	--fixed-translate: translateY(calc(100% - var(--head-height) + 1px));
	--fixed-zindex: 99;
	position: fixed;
	bottom: 0;
	left: 1rem;
	width: calc(100% - 2rem);
	z-index: var(--fixed-zindex);
	transition: var(--default-transition);
	transform: var(--fixed-translate);
	box-shadow: 0px 4px 20px 0px #24252540;
}

.l_fixed.on {
	--icon-transform: translateY(-50%) rotate(90deg);
	--fixed-translate: translateY(0);
	--fixed-zindex: 1000;
}

.l_fixed_head {
	height: var(--head-height);
	border-radius: 0.4rem 0.4rem 0 0;
	background: linear-gradient(360deg, #958369 0%, #A49784 100%);
	color: #fff;
	transition: var(--default-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-bottom: 0;
	isolation: isolate;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 2.2rem;
		width: 28.6rem;
		height: 100%;
		z-index: -1;
		background: url(../images/fixed_nav_bg.png) center / 100% no-repeat;
	}
}

.l_fixed_head span {}

.l_fixed_head span {
	font-size: 1.7rem;
	font-family: var(--font-min);
	text-align: center;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0.07em;
}

.l_fixed_head span:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 2rem;
	width: var(--icon-size);
	aspect-ratio: 1/1;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	background: var(--icon-color);
	z-index: 2;
	transition: var(--default-transition);
	transform: var(--icon-transform);
}

.l_fixed_body {
	background: #E6E4E1;
	padding: 2rem 2.4rem;
}

.l_fixed_body_ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;

	.txt01 {
		font-size: 1.8rem;
		line-height: 1;
		letter-spacing: 0.04em;
		font-family: var(--font-min);
		font-weight: 500;
	}

	.txt02 {
		font-size: 1.4rem;
		line-height: 1;
		letter-spacing: 0.04em;
		font-family: var(--font-min);
		position: relative;
		font-weight: 500;
		margin-top: 0.9rem;
	}
}

.l_fixed_body_btns {
	margin-top: 1.6rem;
	display: grid;
	gap: 0.8rem;
}

.l_fixed_body_box {
	margin-top: 1.6rem;
	border: 1px solid var(--blown_01);
	background: #fff;
	padding: 1.9rem 1.9rem 1.3rem;
	border-radius: 0.5rem;

	>.txt01 {
		font-size: 1.7rem;
		text-align: center;
		line-height: 1;
		letter-spacing: 0.04em;
		font-family: var(--font-min);
		font-weight: 500;
		margin-bottom: 1.4rem;
	}

	>.txt02 {
		margin-top: 0.8rem;
		text-align: center;
		font-size: 1.4rem;
		letter-spacing: 0.04em;
		line-height: 1;
		padding: 0.4rem;
	}
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	bottom: 7.2rem;
	right: 1.2rem;
	width: 5.8rem;
	transition: var(--default-transition);
	filter: drop-shadow(0px 0px 19.03px #33302F33);
	opacity: 0;
}

.js_over_mv {
	.l_pagetop {
		opacity: 1;
	}
}

/*++++++++++++++++++++++++++++
m_slider
++++++++++++++++++++++++++++*/
.m_slider {
	--img-size: 34rem;
	--ratio-w: 340;
	--ratio-h: 255;
	--ratio: var(--ratio-w) / var(--ratio-h);
	padding: 0;
	margin: 3rem -0.5rem 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;
}

.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;
}

.m_slider_desc {
	background: var(--black_01);
	border-radius: 1rem 0 0 0;
	padding: 0.5rem 1rem;
	margin: 0;
	position: absolute;
	z-index: 10;
	transition: var(--default-transition);
	opacity: 1;
	bottom: 0;
	right: 0;
	width: fit-content;
}

.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.8;
	letter-spacing: 0.08em;
	color: var(--white);
}

.m_slider_navs {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 3rem;
	padding: 0 0.5rem;
	gap: 2rem;
}

.m_slider_arrows {
	position: relative;
	display: flex;
	gap: 1rem;
}

.m_slider .slick-arrow {
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--brown_02);
	--arrow-size: 1rem;
	--circle-right: 0;
	--circle-size: 5rem;
	--circle-color: #9B908C;
	position: relative;
	width: var(--circle-size);
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid var(--brown_02);
	inset: auto;
	margin: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: var(--circle-right);
		width: var(--circle-size);
		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;
		transform: translateY(-50%);
	}

	&:after {
		display: none;
	}

	&.slick-prev {
		&:before {
			transform: translateY(-50%) rotate(180deg);
		}
	}
}

.m_slider_dots {
	position: relative;
}

.m_slider .slick-dots {
	display: flex !important;
	width: 100%;
	line-height: 1;
	flex-wrap: wrap;
	gap: 1.2rem;
	z-index: 10;
	position: relative;
}

.m_slider .slick-dots li {
	position: relative;
	width: 0.8rem;
	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(--brown_02);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	opacity: 0.3;
}

.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%);
	}
}

/*++++++++++++++++++++++++++++
m_blog
++++++++++++++++++++++++++++*/
.m_blog {
	.m_blog_inner {
		text-decoration: none;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		border-radius: 0.5rem;
		height: 100%;
	}

	.m_blog_img {
		height: 17rem;
	}

	.m_blog_body {
		padding: 2rem 1.8rem 5.5rem;
		background: #fff;
		flex: 1;
	}

	.m_blog_date {
		line-height: 1;
		letter-spacing: 0.02em;
		color: var(--brown_02);
		font-size: 1.3rem;
		font-family: var(--font-num-lct);
	}

	.m_blog_ttl {
		margin-top: 1rem;
		font-size: 1.5rem;
		line-height: 1.6;
		font-family: var(--font-min);
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	.m_blog_btn {
		--icon-url: url(../images/icon_arrow.svg);
		--icon-color: #fff;
		--icon-size: 0.8rem;
		--circle-size: 2rem;
		--circle-color: #565B66;
		--icon-right: 0rem;
		position: absolute;
		bottom: 1.5rem;
		right: 1.8rem;
		width: fit-content;
		padding-right: 2.8rem;
		height: 2rem;
		font-size: 1.6rem;
		font-weight: 500;
		letter-spacing: 0.04em;
		font-family: var(--font-en-cg);
		line-height: 1;
		display: flex;
		align-items: center;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			right: var(--icon-right);
			width: var(--circle-size);
			aspect-ratio: 1/1;
			-webkit-mask: var(--icon-url) center / var(--icon-size) no-repeat;
			mask: var(--icon-url) center / var(--icon-size) 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: 50%;
			background: var(--circle-color);
			transform: translateY(-50%);
		}
	}
}

/*++++++++++++++++++++++++++++
ドクターページ
++++++++++++++++++++++++++++*/
.lu_greeting_section {
	padding: 0 0 10rem;
	position: relative;
	isolation: isolate;

	&:before {
		display: none;
	}

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

.lu_greeting {
	position: relative;
	isolation: isolate;
	padding: 7.4rem 0 0;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: -2rem;
		width: 15.8rem;
		aspect-ratio: 316/1162;
		z-index: -1;
		background: url(../images/under/greeting_bg01_sp.png) center / cover no-repeat;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		top: 56.6rem;
		right: -2rem;
		width: 23.2rem;
		aspect-ratio: 232/221;
		z-index: -1;
		background: url(../images/under/greeting_bg02_sp.png) center / cover no-repeat;
	}

	.lu_greeting_head {
		position: relative;
	}

	.lu_greeting_img01 {
		position: relative;
		z-index: 10;
		width: 25rem;
		margin: 0 auto;
		display: block;
	}

	.lu_greeting_img02 {
		height: 20.1rem;
		width: 27.9rem;
		position: absolute;
		bottom: -16.1rem;
		left: -2rem;
	}

	.lu_greeting_body {
		margin-top: 25.3rem;
		padding: 0 1rem;
	}

	.lu_greeting_ttl {
		position: absolute;
		top: 1.6rem;
		left: -1.2rem;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		color: var(--brown_03);
		font-size: 6.6rem;
		letter-spacing: 0.04em;
		line-height: 1;
		font-family: var(--font-en-is);
		z-index: 1;
	}

	.lu_greeting_catch {
		font-size: 1.95rem;
		line-height: 1.9;
		font-family: var(--font-min);
		letter-spacing: 0.08em;
		font-weight: 500;
	}

	.lu_greeting_txt {
		margin-top: 3rem;
		font-size: 1.4rem;
		line-height: 1.9;
		font-family: var(--font-min);
		letter-spacing: 0.08em;
	}

	.lu_greeting_name {
		display: flex;
		gap: 1.2rem;
		font-size: 1.5rem;
		line-height: 1;
		font-family: var(--font-min);
		letter-spacing: 0.08em;
		font-weight: 500;
		margin-top: 2.6rem;
		justify-content: flex-end;

		span {
			letter-spacing: 0.08em;
			font-size: 1.8rem;
			position: relative;
			top: -0.2rem;
		}
	}
}

.lu_profile {
	margin-top: 8rem;
}

.lu_profile_kakomi {
	padding: 3rem 2.4rem;
	background: #fff;
}

.lu_profile_ttl {
	font-size: 1.7rem;
	line-height: 1.4;
	font-family: var(--font-min);
	letter-spacing: 0.04em;
	font-weight: 500;
	padding-left: 1.3rem;
	border-left: 1px solid var(--brown_02);
	margin-bottom: 2rem;
}

.lu_profile_table {
	margin-top: 0;

	:is(td, th) {
		padding: 1.2rem 0;
		font-size: 1.5rem;
		letter-spacing: 0.04em;
		vertical-align: top;
		line-height: 1.5;
	}

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

	th {
		width: 7.1rem;
		text-align: center;
	}

	td {
		padding-left: 1.4rem;
		padding-right: 0.4rem;
	}
}

.lu_profile_box02 {
	margin-top: 5rem;
}

.lu_profile_sub_ttl {
	font-size: 1.7rem;
	line-height: 1.4;
	font-family: var(--font-min);
	letter-spacing: 0.04em;
	font-weight: 500;
	margin-top: 2.4rem;
	border-bottom: 1px solid var(--brown_02);
	padding: 0 0 0.9rem 0.4rem;
	margin-bottom: 1.6rem;
}

.lu_profile_list {
	display: grid;
	gap: 0.2rem;

	li {
		padding: 0.2rem 0 0.2rem 1.6rem;
		position: relative;
		line-height: 1.6;
		font-size: 1.5rem;
		letter-spacing: 0.04em;

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

.lu_doctor {
	.lu_doctor_head {
		.oft {
			height: 26rem;
		}
	}
	.lu_doctor_name {
		margin-top: 4rem;
		padding: 0 0 0.4rem 0.4rem;
		border-bottom: 1px solid var(--brown_03);
	}

	.lu_doctor_name .pos {
		font-family: var(--font-min);
		font-size: 1.3rem;
		line-height: 1.6;
		letter-spacing: 0.04em;
	}

	.lu_doctor_name .name {
		display: flex;
		margin-top: 0.8rem;
		gap: 2rem;
	}

	.lu_doctor_name .name span {
		font-size: 1.8rem;
		line-height: 1.6;
		font-family: var(--font-min);
		letter-spacing: 0.04em;
		font-weight: 500;
	}

	.lu_doctor_name .name em {
		font-family: var(--font-en-cg);
		font-weight: 300;
		font-size: 1.4rem;
		line-height: 1.6;
		padding-top: 0.4rem;
		color: var(--brown_02);
	}

	.lu_doctor_box {
		margin-top: 3rem;
	}


}

/*++++++++++++++++++++++++++++
医院紹介ページ
++++++++++++++++++++++++++++*/
.lu_about {
	.lu_about_body {
		margin-top: 3rem;
	}

	.lu_about_table {
		margin-top: 0;

		:is(td, th) {
			padding: 2rem 1rem;
			font-size: 1.5rem;
			letter-spacing: 0.04em;
			vertical-align: top;
			line-height: 1.6;
		}

		tr {
			border-bottom: 1px solid var(--brown_02);

			&:first-of-type {
				border-top: 1px solid var(--brown_02);
			}
		}

		th {
			width: 9.5rem;
			background: #F5F2EE;
			font-family: var(--font-min);
			color: var(--blown_01);
			line-height: 1.8;
			letter-spacing: 0.08em;
		}
	}
}

.lu_time {
	.lu_time_block {
		table {
			margin-top: 0;
		}
	}
}

.lu_access_block {
	margin-top: 3rem;
}

.lu_access_body {
	.m_kakomi {
		margin-top: 3rem;
	}

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