@charset "utf-8";

:root {
	/* common */
	--vw: 1vw;
	--inner-padding: 7rem;
	--max-width01: 105rem;
	--max-width02: 112rem;
	--max-width03: 134rem;
	--max-width04: 130rem;
	--max-width05: 142rem;
	--inner-width01: calc(var(--max-width01) + var(--inner-padding) * 2);
	--inner-width02: calc(var(--max-width02) + var(--inner-padding) * 2);
	--inner-width03: calc(var(--max-width03) + var(--inner-padding) * 2);
	--inner-width04: calc(var(--max-width04) + var(--inner-padding) * 2);
	--inner-width05: calc(var(--max-width05) + var(--inner-padding) * 2);
	--over-margin01: min(calc((-1 * var(--vw) * 100 + var(--max-width01)) / 2),
			calc(-1 * var(--inner-padding)));
	--over-margin02: min(calc((-1 * var(--vw) * 100 + var(--max-width02)) / 2),
			calc(-1 * var(--inner-padding)));
	--over-margin03: min(calc((-1 * var(--vw) * 100 + var(--max-width03)) / 2),
			calc(-1 * var(--inner-padding)));
	--over-margin04: min(calc((-1 * var(--vw) * 100 + var(--max-width04)) / 2),
			calc(-1 * var(--inner-padding)));
	--over-margin05: min(calc((-1 * var(--vw) * 100 + var(--max-width05)) / 2),
			calc(-1 * var(--inner-padding)));
	--hover-opacity: 0.5;
	/* under */
	--under-table-first-width: 33rem;
}

.sp {
	display: none !important;
}

:where(#tinymce),
:where(.underpage) {
	--under-box-mt: 3rem;
	--under-paragraph-mt: 2rem;
	--under-btn-mt: 3.4rem;
}

body {
	min-width: var(--tb-breakpoint);
	overflow-x: clip;
}

a {
	transition: opacity var(--default-transition);
}

a:where(:hover) {
	opacity: var(--hover-opacity);
}

a *,
a *:before,
a *:after {
	transition: var(--default-transition);
}

.pointer_none_pc {
	pointer-events: none;
}

#wrapper {
	overflow: clip;
}

.inner {
	max-width: var(--inner-width01);
	margin-left: auto;
	margin-right: auto;
}

:where(.l_under_content) img {
	display: inline;
}

.p_pointer_none_pctb {
	pointer-events: none !important;
}

.img_round_big_pc {
	border-radius: 1.6rem;
}

.l_fixed_pc {
	position: fixed;
	z-index: 50;
	right: 0;
	bottom: 0;
	border: 1px solid #9083624D;
	border-right: 0;
	border-bottom: 0;
	border-radius: 1rem 0 0 0;
	transition: var(--default-transition);

	&.on {
		transform: translateY(100%);
	}

	.l_fixed_pc_toggle {
		position: absolute;
		right: 0;
		top: 0;
		transform: translateY(-99.99%);
		--arrow-url: url(../images/icon_arrow02.svg);
		--arrow-color: var(--gold_03);
		--arrow-size: 1.3rem;
		--circle-size: 2.6rem;
		--circle-height: var(--circle-size);
		--circle-bg-color: #fff;
		--circle-border-color: transparent;
		--circle-border-width: 0px;
		width: 26rem;
		height: 6rem;
		background: var(--grayge_00);
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		border-radius: 1rem 0 0 0;
		cursor: pointer;
				transition: var(--default-transition);

		span {
			position: relative;
			color: var(--gold_03);
			font-size: 1.9rem;
			letter-spacing: 0.08em;
			line-height: 1.3;
			padding-right: 3.6rem;
				transition: var(--default-transition);

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

			&:after {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				right: 0;
				width: var(--circle-size);
				height: var(--circle-height);
				z-index: 1;
				border: var(--circle-border-width) solid var(--circle-border-color);
				border-radius: 1rem;
				background: var(--circle-bg-color);
				transition: var(--default-transition) background;
			}
		}

		&:hover {
			--circle-bg-color: var(--gold_03);
			--arrow-color: #fff;
		}

		.on & {
			--circle-bg-color: #FFFFFF4D;
			--arrow-color: #fff;
			background: var(--gold_01);

			span {
				color: #fff;

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

			&:hover {
				--circle-bg-color: #fff;
				--arrow-color: var(--gold_03);
			}
		}
	}

	.l_fixed_pc_top {
		background: #fff;
		border-radius: 1rem 0 0 0;
		display: flex;
		justify-content: space-between;
		padding: 1.6rem;
		gap: 1.8rem;
		box-shadow: 0px 0px 34px 0px #00000033;
	}

	.l_fixed_pc_tel {
		--txt01-bg: var(--beige_00);
		--txt01-color: var(--gold_03);
		--txt02-color: var(--black_logo);
		--txt03-color: var(--gold_03);
		--txt04-color: var(--gold_03);
		--icon01-url: url(../images/icon_phonecall.svg);
		--icon01-color: var(--gold_03);
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 0.5rem 0 0 0.5rem;
		flex: 1;

		.txt01 {
			font-size: 1.8rem;
			color: var(--txt01-color);
			background: var(--txt01-bg);
			line-height: 1;
			padding: 0.8rem 1.4rem;
			border-radius: 3rem;
		}

		.txt02 {
			position: relative;
			font-size: 3rem;
			letter-spacing: 0;
			color: var(--txt02-color);
			font-family: var(--font-num);
			line-height: 1;
			margin-top: 1.4rem;
			font-weight: 600;
			padding: 0.1rem 0 0.1rem 3.7rem;

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

		.txt03 {
			font-size: 1.7rem;
			letter-spacing: 0.08em;
			color: var(--txt03-color);
			line-height: 1;
			margin-top: 1.5rem;
			border-top: 1px solid #9083624D;
			padding-top: 1.2rem;
			width: 100%;
			text-align: center;
		}
	}

	.l_fixed_pc_btns {
		width: 34rem;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.l_fixed_pc_btn {
		--txt01-color: var(--white);
		--txt02-color: var(--beige_02);
		--icon01-url: url(../images/icon_calendardots.svg);
		--icon01-color: #fff;
		--icon01-bg: var(--gold_02);
		background: var(--gold_03);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 8.4rem;
		text-decoration: none;
		position: relative;
		border-radius: 0.8rem;
		box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.12);
		padding-top: 0.5rem;

		.txt01 {
			font-size: 1.9rem;
			letter-spacing: 0.08em;
			color: var(--txt01-color);
			line-height: 1.3;
			position: relative;
			padding-left: 4.4rem;

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

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

		.txt02 {
			font-size: 1.5rem;
			letter-spacing: 0.08em;
			color: var(--txt02-color);
			line-height: 1.3;
			margin-top: 1rem;
		}

		&:hover {
			opacity: 1;
		}

		&.l_fixed_pc_web {
			&:hover {
				background: var(--gold_02);
				--icon01-bg: rgba(255, 255, 255, 0.3);
			}
		}

		&.l_fixed_pc_line {
			--icon01-url: url(../images/icon_chat.svg);
			--icon01-bg: rgba(255, 255, 255, 0.3);
			background: var(--green-00);

			&:hover {
				background: #7FBE5B;
			}
		}
	}

	.l_fixed_pc_item {
		--icon01-url: url(../images/icon_clipboad.svg);
		--icon01-color: var(--gold_02);
		--icon01-bg: var(--lightbeige_02);
		padding: 0 0 0 3.2rem;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 5.2rem;
		border: 1px solid #90836280;
		background: #fff;
		border-radius: 0.8rem;
		color: var(--gold_03);
		font-size: 1.9rem;
		letter-spacing: 0.08em;
		line-height: 1.3;
		text-decoration: none;
		position: relative;
		margin-top: 1rem;

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

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

		&:hover {
			opacity: 1;
		}

		&.l_fixed_pc_interview {
			&:hover {
				background: var(--beige_03);
				color: #fff;
				--icon01-color: #fff;
				--icon01-bg: #FFFFFF4D;
			}
		}

		&.l_fixed_pc_bus {
			color: var(--blue_01);
			--icon01-url: url(../images/icon_bus.svg);
			--icon01-color: var(--blue_01);
			--icon01-bg: #3682B533;

			&:hover {
				background: var(--blue_01);
				color: #fff;
				--icon01-color: #fff;
				--icon01-bg: #FFFFFF4D;
			}
		}
	}
}

/*++++++++++++++++++++++++++++
m_img
++++++++++++++++++++++++++++*/
.m_img500 {
	max-width: 500px;
}

.m_img600 {
	max-width: 600px;
}

.m_img700 {
	max-width: 700px;
}

.m_img800 {
	max-width: 800px;
}

.m_img900 {
	max-width: 900px;
}

.m_img1000 {
	max-width: 1000px;
}

.m_img_center {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	width: fit-content;
}

/*++++++++++++++++++++++++++++
m_btn01
++++++++++++++++++++++++++++*/
.m_btn01 {
	--icon-size: 1.8rem;
	--circle-size: 2.8rem;
	--icon-right: 1.6rem;
	width: fit-content;
	font-size: 2rem;
	line-height: 1.4;
	padding: 1rem 6rem 1rem 1.6rem;
	min-width: 30rem;
	max-width: none;
	min-height: 6.4rem;

	&:before {
		right: calc(0.5rem + var(--icon-right));
	}

	&:after {
		border-radius: 1rem;
		aspect-ratio: auto;
		height: 2.8rem;
	}

	&:hover {
		--circle-color: #fff;
		--icon-color: var(--black_02);
		opacity: 1;

		&:before {
			right: calc(0.8rem + var(--icon-right));
		}

		&:after {
			--circle-size: 3.4rem;
			border-radius: 2rem;
		}
	}

	&.m_btn01_white {
		&:hover {
			--circle-color: var(--gold_03);
			--icon-color: #fff;
		}
	}
}

/*++++++++++++++++++++++++++++
p_table
++++++++++++++++++++++++++++*/
:where(.l_under_content) table:where(:not(.no_default)) {
	&.p_table_th20_pc thead th:first-of-type {
		width: 20% !important;
	}

	&.p_table_th30_pc thead th:first-of-type {
		width: 30% !important;
	}

	&.p_table_th40_pc thead th:first-of-type {
		width: 40% !important;
	}

	&.p_table_th50_pc thead th:first-of-type {
		width: 50% !important;
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.m_hosoku,
.hosoku {
	font-size: 1.9rem;
}

.m_map {
	margin-top: 6rem;
}

/*++++++++++++++++++++++++++++
m_toc
++++++++++++++++++++++++++++*/
.m_toc {
	padding: 0;
	--icon-size: 1.8rem;
	--circle-size: 2.8rem;
	--circle-color: var(--lightgeige);
	--circle-top: 0rem;
	margin-top: 5rem;
	margin-bottom: 0;
}

.m_toc_list {
	--gap-col: 4rem;
	--gap-row: 2rem;
	--col: 2;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: var(--gap-row) var(--gap-col);
	padding: 5rem 0rem;
	margin: 0;
}

.m_toc_list li {
	width: auto;
}

.m_toc_list a {
	padding: 0.25rem 0 0.25rem 3.8rem;
	font-size: 1.9rem;
	line-height: calc(23/19);

	&:before {
		top: 0.5rem;
		left: 0.5rem;
	}

	&:after {
		border-radius: 1rem;
	}

	&:hover {
		opacity: 1;
		color: var(--gold_03);
		--circle-color: var(--gold_03);
		--icon-color: #fff;

		&:after {
			border: 1px solid var(--gold_03);
		}
	}
}

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

.m_checklist li {
	padding: 0 0 0 3.8rem;
	font-size: 2rem;
}

.m_checklist li:before {
	top: 0.2rem;
	left: 0rem;
	width: 2.8rem;
}

.m_checklist_long {
	--gap-col: 1rem;
	--gap-row: 3rem;
	--col: 1;
}

/*++++++++++++++++++++++++++++
m_catch
++++++++++++++++++++++++++++*/
.m_catch {
	margin-top: 3rem;
	font-size: 2rem;
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable {
	--col-size: 9.6%;
	--last-col-size: 11.8%;
}

.m_timetable :is(td, th) {
	font-size: 1.9rem;
	padding: 0.8rem 0 1rem 0;
	line-height: 1.45;
}

.m_timetable tbody td {
	font-size: 1.7rem;
}

.m_timetable thead th {
	padding: 1.4rem 0;
	font-size: 1.9rem;
}

.m_timetable tbody th {
	font-size: 2.2rem;
	padding: 0.9rem 0 0.9rem 0;
	line-height: 1.6;
}

.m_timetable_hosoku {
	font-size: 1.9rem;
	margin-top: 1.6rem;
}

/*++++++++++++++++++++++++++++
m_col
++++++++++++++++++++++++++++*/
.m_col_mtl_sp,
.m_col {
	--gap-col: 4.8rem;
	--gap-row: 4.8rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	flex-direction: row;
	margin-top: 5rem;
}

.m_col_narrow_pc {
	--gap-col: 2.8rem;
	--gap-row: 2.8rem;
}

.m_col02 {
	--col: 2;
}

.m_col03 {
	--col: 3;
}

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

.m_col_no_gutter {
	--gap-col: 0px;
	--gap-row: 0px;
}

:where(.l_under_content) .m_col h3:where(:not(.no_default)) {
	margin-bottom: 3.5rem;
}

.m_col_reverse_sp {
	flex-direction: row;
}

/*++++++++++++++++++++++++++++
m_faq
++++++++++++++++++++++++++++*/
.m_faq {
	margin-top: var(--under-box-mt);
}

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

.m_faq_head {
	--icon-right: 2.2rem;
	--icon-width: 2.6rem;
}

.m_faq_ttl {
	--custom-under-paragraph-mt: 0px;
	z-index: 1;
	padding: 2rem 6.7rem 2rem 6.8rem;
	font-size: 2.2rem;
}

.m_faq_ttl:before {
	font-size: 3.6rem;
	top: 2rem;
	left: 2.2rem;
}

.m_faq_ttl:after {
	right: 2.2rem;
	width: 4.6rem;
	aspect-ratio: 46/45;
}

.m_faq_body {
	padding: 3rem;
}

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

/*++++++++++++++++++++++++++++
m_kakomi
++++++++++++++++++++++++++++*/
.m_kakomi {
	padding: 3rem;
	margin: 5rem 0 0;
}

:is(.m_kakomi, .m_kakomi_col)+ :is(.m_kakomi, .m_kakomi_col) {
	margin-top: 3rem;
}

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

.m_kakomi_col {
	display: flex;
}

.m_kakomi_col {
	--gap-col: 2.4rem;
	--gap-row: 2.4rem;
	--col: 2;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

.m_kakomi_col .m_kakomi {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	margin-top: 0;
}

.m_kakomi h5 {
	left: 0;
}

.m_kakomi *:has(+ h5) {}

.m_kakomi p+h5,
.m_kakomi h5:nth-of-type(n+2) {
	margin-top: 4rem;
}

/*++++++++++++++++++++++++++++
m_kakomi02
++++++++++++++++++++++++++++*/
.m_kakomi02 {
	border-radius: 0.8rem;
	padding: 3.7rem 5rem 3.7rem;
	margin: 5rem 0 0;
	position: relative;
	background: url(../images/dot.svg) 2rem 2rem / 0.7rem no-repeat, url(../images/dot.svg) right 2rem top 2rem / 0.7rem no-repeat, url(../images/dot.svg) left 2rem bottom 2rem / 0.7rem no-repeat, url(../images/dot.svg) right 2rem bottom 2rem / 0.7rem no-repeat;
}

.m_kakomi02:has(p:not(.m_kakomi02_ttl)) {
	padding-bottom: 3.3rem;
}

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

.m_kakomi02+.m_kakomi02 {
	margin-top: 5rem;
}

.m_kakomi02+.m_kakomi02:has(.m_kakomi02_ttl) {
	margin-top: 9rem;
}

.m_kakomi02 .m_kakomi02_ttl {
	font-size: 2.2rem;
	padding-bottom: 1.8rem;
	margin-bottom: 3rem;
	margin-top: 0;

	span {
		font-size: 1.8rem;
	}
}

.m_kakomi02 ul:first-of-type {
	margin-top: 0;
}

.m_kakomi02 p {
	font-size: 1.9rem;
	line-height: 1.5;
}

/*++++++++++++++++++++++++++++
m_imgbox
++++++++++++++++++++++++++++*/
.m_imgbox {
	display: flex;
	flex-direction: row-reverse;
	gap: 4rem;
}

.m_imgbox_reverse {
	flex-direction: row;
}

.m_imgbox_head {
	margin-bottom: 0;
	max-width: 36rem;
	width: 40%;
	margin-top: 0;
	position: relative;
	top: 0.6rem;
}

.m_imgbox_mini .m_imgbox_head {
	max-width: 33rem;
	width: 36%;
}

.m_imgbox_head img {
	margin-left: auto;
	margin-right: 0;
}

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

.m_flow_item .m_imgbox_head {
	margin-top: 0;
	max-width: 30rem;
}

.m_flow_item .m_imgbox_head img {
	margin-right: 0;
	margin-left: auto;
	display: block;
}

.m_imgbox_reverse .m_imgbox_head {
	margin-right: var(--gutter);
	margin-left: 0;
}

.m_imgbox_body {
	flex: 1;
	overflow: hidden;
}

.m_imgbox_body .m_btn01 {
	margin: 0;
}

.m_imgbox_around {
	display: block;
}

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

.m_imgbox_around .m_imgbox_head {
	float: right;
}

.m_imgbox_around.m_imgbox_reverse .m_imgbox_head {
	float: left;
}

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

/*++++++++++++++++++++++++++++
m_btn_wrap
++++++++++++++++++++++++++++*/
.m_btn_wrap {
	margin-top: 4rem;
}

.m_btn_wrap {
	--gap-col: 2rem;
	--gap-row: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	justify-content: center;
	flex-direction: row;
	justify-content: flex-start;
}

.m_btn_wrap.m_btn_wrap_c {
	justify-content: center;
}

.m_btn_wrap .m_btn01 {
	margin: 0;
	min-width: 26rem;
	--btn-height: 6rem;
}

/*++++++++++++++++++++++++++++
m_feature
++++++++++++++++++++++++++++*/
.m_feature {
	margin-top: 4rem;
}

.single .m_feature {
	margin-left: 0 !important;
	width: 100% !important;
}

.m_feature_item {
	--padding-side: 6.4rem;
	padding: 4.8rem var(--padding-side) 5.6rem;
	gap: 4.8rem;
	/* border-radius: 0.8rem; */
}

.m_feature_item:before,
.m_feature_item:after {
	width: 1.2rem;
}

.m_feature_item+.m_feature_item {
	margin-top: 12rem;
}

.m_feature_ttl {
	font-size: 2.4rem;
	margin-bottom: 2.7rem;
	padding-bottom: 1.7rem;
}

.m_feature_ttl:before {
	font-size: 4rem;
	margin-bottom: 1.6rem;
}

.m_feature_ttl:after {
	top: 1.8rem;
	left: calc(-1 * var(--padding-side));
	width: calc(var(--padding-side) - 2.4rem);
}

.m_feature_content>.m_kakomi {
	margin-top: 4.5rem;
}

.m_feature_item:has(.m_feature_img) {
	flex-direction: row;
}

.m_feature_item:has(.m_feature_img) .m_feature_img {
	max-width: 45.2rem;
	padding-top: 5.6rem;
	width: 45%;
}

.m_feature_item:has(.m_feature_img) .m_feature_content {
	flex: 1;
}

.m_feature_item .m_feature_content> :is(.m_kakomi, .m_kakomi_col)+ :is(.m_kakomi, .m_kakomi_col) {
	margin-top: 4.8rem;
}

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

.m_flow_item {
	border-radius: 1.2rem;
	padding: 4rem;
}

.m_flow_item:before {
	width: 2.4rem;
}

.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.8rem;
	padding-bottom: 2rem;
	margin-bottom: 3rem;

	&+* {
		margin-top: 0 !important;
	}
}

.m_flow_ttl {
	font-size: 2.4rem;
}

.m_flow_step {
	border-radius: 1rem;
	width: 9rem;
	font-size: 1.8rem;
	gap: 0.3rem;
}

.m_flow_step:after {
	font-size: 4.4rem;
}

.m_flow_img {
	width: 100%;
}

.m_flow .m_kakomi {
	margin-top: 5rem;
}

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

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

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

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

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

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

.l_single_ttl {
	margin-top: 9rem;
}

.l_single_block,
.l_archive_block {
	display: flex;
	gap: 6rem;
}

.l_single_block .l_under_content,
.l_archive_main {
	flex: 1;
	overflow: hidden;
}

.l_side {
	margin-top: 0;
	width: 25rem;
}

.single .l_side {
	padding-top: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.l_single_block {
	padding-bottom: 16rem;
}

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

.l_news_item_inner {
	padding: 1.7rem 0 1.7rem 1.8rem;
	flex-direction: row;
	gap: 2.5rem;
	align-items: center;
	min-height: 8.5rem;

	&:hover {
		opacity: 1;
		background: var(--lightgeige);

		.l_news_item_ttl {
			&:before {
				right: calc(0.8rem + var(--icon-right));
				background: var(--white);
			}

			&:after {
				width: 3.4rem;
				background: var(--gold_03);
				border-radius: 2rem;
			}
		}
	}
}

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

.l_news_item_date {
	font-size: 1.8rem;
	width: 9.3rem;
	margin-right: 4.2rem;
}

.l_news_item_cat {
	font-size: 1.9rem;
	padding: 0.2rem 0.5rem 0.2rem;
	min-height: 3.9rem;
	min-width: 18rem;
	text-align: center;
	justify-content: center;
}

.l_news_item_body {
	overflow: hidden;
	flex: 1;
}

.l_news_item_ttl {
	font-size: 1.9rem;
	--icon-color: var(--gold_03);
	--icon-size: 1.8rem;
	--circle-size: 2.8rem;
	--circle-color: var(--grayge_00);
	--icon-right: 1.8rem;
	padding-right: 5.9rem;

	&:before {
		right: calc(0.5rem + var(--icon-right));
	}

	&:after {
		border-radius: 1rem;
		aspect-ratio: auto;
		height: 2.8rem;
	}
}

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

.l_under_mv_inner {
	min-height: 50rem;
	padding: 0 5rem;
	max-width: none;
	margin: 0 auto;
	position: relative;
}

.l_under_mv_img {
	width: max(100%, 100vw);
	right: auto;
	left: 50%;
	transform: translateX(-50%);
}

.l_under_mv_img img {
	object-position: center;
}

.l_under_mv_ttl {
	border-radius: 0;
	padding: 21rem 0 4rem;
	margin: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.l_under_mv_ttl .ja {
	font-size: 3.6rem;

	em {
		font-size: 2.4rem;
	}
}

.l_under_mv_ttl .en {
	font-size: 2.4rem;
	margin-top: 0.8rem;
}

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

.l_footer_block {
	padding: 7rem 0;
	justify-content: space-between;
	display: flex;
	gap: 5rem;
}

.l_footer .inner {
	max-width: var(--inner-width03);
}

.l_footer_head {
	width: 48rem;
}

.l_footer_logo {
	width: 31.4rem;
}

.l_footer_body {
	width: 65rem;
}

.l_footer_map {
	border-radius: 1rem;
	margin-top: 0;
	margin: 0 -1px;
}

.l_footer_map_link {
	margin-top: 0.8rem;
}

.m_map_link {
	--icon-size: 2.4rem;
	font-size: 2rem;
	padding-left: 2.4rem;
}

.m_map_link:before {
	top: 0.8rem;
}

.l_footer_data {
	margin-top: 5rem;

	dl {
		padding: 1.4rem 0 1.4rem;
		gap: 2rem;
	}

	dt {
		width: 10rem;
		font-size: 1.9rem;
	}

	dd {
		font-size: 1.9rem;
	}
}

.l_footer_cta {
	margin-top: 2.2rem;
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(2, 1fr);

	.m_cta_btn {
		margin-top: 0;
	}
}

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

.l_footer_middle {
	padding: 3.5rem 0 4rem;
}

.l_footer_ttl01 {
	padding-left: 2.6rem;
	font-size: 2.2rem;

	&:before {
		top: 0.5rem;
		left: 0;
		width: 1.6rem;
		border: 3px solid rgba(185, 164, 99, 1);
	}
}

.l_footer_bnrs {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;

	a {
		width: 26rem;
	}
}

.l_footer_bottom {
	padding: 4rem 0;
}

.l_footer_bnr {
	width: 19.2rem;
	font-size: 1.4rem;
	margin: 0;
}

.l_footer_bnr em {
	margin-top: 0.7rem;
}

.l_footer small {
	font-size: 1.6rem;
	text-align: left;
	margin-top: 4rem;
}

/* underpage */
/* l_under_content */
.l_under_content {
	--under-default-font-size: 2rem;
}

:where(.l_under_content) {
	table+table {
		margin-top: 5rem;
	}

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

	.alignright {
		margin: 1.6rem 0 1rem 5rem;
		float: right;
		height: auto;
		width: auto;
		max-width: 36rem;
		display: block;
	}

	.alignleft {
		margin: 1.6rem 5rem 1rem 0;
		float: left;
		height: auto;
		width: auto;
		max-width: 36rem;
		display: block;
	}

	.aligncenter {
		margin: 0 auto 1em;
		width: auto;
		max-width: 100%;
		display: block;
	}

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

	&>section:where(:not(.no_default)) {
		padding: 7rem 0 7rem;

		&.big_section {
			padding: 8rem 0 10rem;
		}

		&.big_section02 {
			padding: 0 0 10rem;
		}
	}

	&>section:where(:not(.no_default)) {
		left: 0;
		width: 100%;
	}

	&>section:before {
		width: max(var(--tb-breakpoint), calc(100* var(--vw)));
	}
}

.u_bnr {
	max-width: 47.7rem;
	margin: 3rem auto;
	display: block;
}

/* title */
:where(.l_under_content) h2:where(:not(.no_default)) {
	font-size: 3.2rem;
	padding: 4.1rem 0 0;
	margin: 16rem 0 12rem;
}

:where(.l_under_content) h3:where(:not(.no_default)) {
	font-size: 3rem;
	margin-bottom: 6rem;
	margin-top: 7rem;
	background-size: 3.4rem;
	padding: 0 0 2.2rem;
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	margin-top: 6rem;
	margin-bottom: 3rem;
	font-size: 2.2rem;
	padding: 1.6rem 1.8rem;
}

.m_kakomi_ttl,
:where(.l_under_content) h5:where(:not(.no_default)) {
	font-size: 2.2rem;
	padding-bottom: 0;
	margin-bottom: 2rem;
	margin-top: 7rem;
	padding: 0 0 1.5rem 3rem;

	&:before {
		width: 2rem;
		left: 0;
		top: 0.45rem;
	}
}

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

	li {
		padding-left: 2.6rem;
	}

	li:before {
		width: 0.6rem;
		left: 1rem;
		top: 1.3rem;
	}

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

.p_list_col02_pc {
	--col: 2;
}

.p_list_col03_pc {
	--col: 3;
}

.p_list_col04_pc {
	--col: 4;
}

/* ol */
:where(.l_under_content) ol:where(:not(.no_default)) {
	--gap-col: 3rem;
	--gap-row: 0rem;

	li {
		padding: 1.5rem 1rem 1.5rem 4.9rem;
		font-size: 2.1rem;
	}

	li:before {
		top: 1rem;
		left: 1rem;
		font-size: 2.8rem;
		padding-left: 0;
	}
}

/* table */
:where(.l_under_content) table:where(:not(.no_default)) {
	margin-top: 3rem;
	table-layout: fixed;
	margin-left: auto;
	margin-right: auto;
	width: 100%;

	:is(th, td) {
		padding: 1.3rem 2rem 1.3rem;
		width: 33.33333%;
	}

	thead th {
		padding: 1.3rem 1rem;
	}

	tbody :is(th, td) {
		padding: 1.8rem 2.4rem 1.6rem;
	}

	tbody th {
		padding-left: 2.2rem;
		padding-right: 2.2rem;
	}

	tbody td em {
		font-size: 3.2rem;
		top: -0.1em;
	}
}

:where(.l_under_content) .m_img_center+p {
	margin-top: 3rem;
}

/*++++++++++++++++++++++++++++
m_table02
++++++++++++++++++++++++++++*/
.m_table02 {
	thead th {
		padding: 1.3rem 1rem;
	}

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

	:is(td, th) {
		padding: 1.5rem;
	}

	th {
		line-height: 1.7;
	}

	td {
		padding: 2rem;
	}

	&:not(:has(thead)) tbody th,
	:not(:has(thead)) tbody th {
		width: 30rem;
	}

	tbody th {
		padding: 1.5rem;
	}

	.m_table02_box_ttl {
		--item-gap: 4rem;
		font-size: 2rem;
		padding: 1.2rem 1.5rem;
		margin-bottom: 1.2rem;
	}
}

.m_table03 {
	width: 100%;

	&:has(.big) {
		width: 100%;
	}

	:is(td, th) {
		font-size: 2rem;
		padding: 0.95rem 0.8rem;
	}

	td {
		font-size: 1.9rem;
	}

	thead th {
		padding: 1.3rem 0.8rem;
		width: 18rem;
	}

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

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

	tbody th span {
		min-height: 7.4rem;
	}

	.big {
		width: 25rem;
	}

	.close {}

	.time {
		padding: 1.2rem 1.4rem;
		margin-top: 0.5rem;
	}
}

.m_table03_hosoku {
	margin-top: 3rem;

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

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

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

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

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
wp-pagenavi
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.wp-pagenavi {
	margin-top: 8rem;
	font-size: 1.8rem;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	width: 4rem;
	height: 4rem;
}

.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
	width: 0.8rem;
	height: 0.8rem;
}

.wp-pagenavi :is(.extend, .last, .first, .current, .page) {
	width: 4rem;
	height: 4rem;
}

.wp-pagenavi :is(.previouspostslink, .nextpostslink, .last, .first, .current, .page) {
	margin: 0 0.5rem;
	padding-top: 0em;
}

.wp-pagenavi .extend {
	margin: 0 -0.7rem;
}

/* breadcrumbs */
.l_under_breadcrumb {
	margin-left: 0;
	width: 100%;
	padding: 2.4rem 0 7rem;
}

.breadcrumbs {
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.breadcrumbs :is(span, a) {
	text-decoration: none;
	font-size: 1.4rem;
	position: relative;
}

.breadcrumbs>span:after {
	top: -0.6rem;
}

.breadcrumbs>span {
	padding-right: 1rem;
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: absolute;
	z-index: 99;
	top: -14rem;
	bottom: auto;
	right: 2rem;
	width: 6rem;
	transition: var(--default-transition);
	background: url(../images/pagetop.svg) center / 100% no-repeat;

	&:hover {
		background-image: url(../images/pagetop_on.svg);
	}
}

.l_pagetop {
	opacity: 0;
	pointer-events: none;
}

.js_header_move .l_pagetop {
	opacity: 1;
	pointer-events: auto;
}

/*++++++++++++++++++++++++++++
m_slider
++++++++++++++++++++++++++++*/
.m_slider {
	--img-size: 100rem;
	--btn-position: -4.5rem;
	--btn-size: 9rem;
	--ratio-w: 1000;
	--ratio-h: 550;
	padding: 0;
	margin: 3rem auto 0;
	width: min(100rem, 100%);
}

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

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

.m_slider_main .m_slider_item {
	margin: 0 1rem;
}

.m_slider .slick-arrow:before {
	width: 3rem;
}

.m_slider_desc {
	padding: 2rem;
	margin: 0;
}

.m_slider_desc_ttl {
	font-size: 2rem;
}

.m_slider_desc_txt {
	font-size: 1.6rem;
	margin-top: 1rem;
}

.m_slider .slick-dots {
	gap: 1rem;
	margin-top: 2.5rem;
}

.m_slider .slick-dots li {
	width: 0.8rem;
}

/*++++++++++++++++++++++++++++
m_imgslider
++++++++++++++++++++++++++++*/
.m_imgslider {
	width: max(100vw, var(--tb-breakpoint));
}

.m_imgslider figure {
	width: 54rem;
}

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

	.inner {
		max-width: var(--inner-width03);
	}
}

.l_notfound_ttl {
	font-size: 2.8rem;
}

.l_notfound_catch {
	margin-top: 1.5rem;
	font-size: 2rem;
}

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

.l_notfound_link {
	--icon01-color: var(--gold_01);
	--icon01-bg: var(--lightbeige_02);
	--arrow-color: var(--gold_03);
	--arrow-bg: #fff;
	--arrow-border: rgba(144, 131, 98, 0.5);
	padding: 2.5rem 8.5rem 2.5rem 2.5rem;
	gap: 1rem;
	justify-content: flex-end;
	min-height: 17rem;

	&:before {
		top: 2.5rem;
		right: 2.5rem;
		width: 6rem;
	}

	&:after {
		top: 3.4rem;
		right: 3.4rem;
		width: 4.2rem;
	}

	span {
		font-size: 2.4rem;

		&:before {
			bottom: 2.5rem;
			right: 2.5rem;
			width: 2.8rem;
			border-radius: 1rem;
			aspect-ratio: auto;
			height: 2.8rem;
		}

		&:after {
			bottom: 3rem;
			right: 3rem;
			width: 1.8rem;
		}
	}

	em {
		color: var(--gold_01);
		font-size: 1.7rem;
		padding-bottom: 0;
	}

	&:hover {
		opacity: 1;

		span {
			color: var(--gold_02);

			&:before {
				width: 3.4rem;
				background: var(--gold_03);
				border-radius: 2rem;
			}

			&:after {
				right: 3.3rem;
				background: var(--white);
			}
		}
	}
}

/*++++++++++++++++++++++++++++
下層固有系
++++++++++++++++++++++++++++*/
.lu_ttl01 {
	margin-bottom: 5rem;

	span {
		font-size: 2.2rem;
	}

	em {
		margin-top: 1.2rem;
		font-size: 3rem;
	}
}

.lu_ttl02 {
	padding-left: 3rem;
	font-size: 2.2rem;
	margin-top: 6rem;
	margin-bottom: 2rem;

	&:before {
		top: 0.45rem;
		width: 2rem;
	}
}

.lu_ttl03 {
	font-size: 2.6rem;
	padding-bottom: 1.3rem;
	margin-bottom: 4rem;
}

.lu_greeting {
	padding-top: 2rem;

	&::before {
		width: 212rem;
		left: 9rem;
		top: 31rem;
	}

	.lu_greeting_block {
		flex-direction: row-reverse;
		gap: 5rem;
	}

	.lu_greeting_head {
		width: 30rem;
		margin: 0;

		figure {
			width: 100%;
		}

		.lu_greeting_name {
			gap: 0.8rem;
			margin-top: 2.5rem;

			.txt01 {
				font-size: 1.8rem;
			}

			.txt02 {
				gap: 1rem;

				span {
					font-size: 1.9rem;
					padding-top: 0.7rem;
				}

				em {
					font-size: 2.6rem;
				}
			}

			.txt03 {
				font-size: 1.8rem;
			}
		}
	}

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

		p {
			margin-top: 4rem;
		}

		;
		flex: 1;
	}

	.lu_greeting_kakomi {
		padding: 2.4rem;
		margin-top: 4rem;

		ol {
			margin-top: 0;

			li {
				border: 0;
				padding: 0.5rem 1rem 0.5rem 4.9rem;

				&:before {
					top: 0.15rem;
				}
			}
		}
	}

	.lu_greeting_data {
		padding: 4rem;
		margin-top: 5rem;
	}
}

.lu_data {
	&+& {
		margin-top: 4rem;
	}

	.lu_data_ttl {
		font-size: 1.9rem;
		padding: 0.2rem 2rem;
		margin-bottom: 1.5rem;
	}

	.lu_data_list {
		--gap-col: 4rem;
		--gap-row: 0.8rem;
		--col: 1;

		.lu_greeting_data & {
			--col: 2;
		}

		li {
			padding-left: 2.6rem;
			font-size: 1.8rem;
		}

		li:before {
			left: 1rem;
			top: 1.2rem;
			width: 0.6rem;
		}
	}

	.lu_data_table {
		margin-top: 0;

		:is(td, th) {
			padding: 1rem 0;
			font-size: 1.8rem;
		}

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

.lu_profile {
	padding: 4rem;
	flex-direction: row-reverse;
	gap: 3rem;

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

	.lu_profile_head {
		figure {
			margin: 0;
			width: 22rem;
		}
	}

	.lu_profile_body {
		flex: 1;
	}

	.lu_profile_ttl {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
		padding-bottom: 2.5rem;
		margin-bottom: 2.5rem;

		.txt01 {
			font-size: 2rem;
			padding: 1rem;
		}

		.name {
			gap: 1.5rem;
		}

		.txt02 {
			font-size: 2.7rem;
		}

		.txt03 {
			font-size: 1.8rem;
			padding-top: 1.2rem;
		}
	}
}

.lu_philosophy {
	flex-direction: row;
	gap: 10rem;

	&::before {
		bottom: auto;
		left: auto;
		top: 24rem;
		right: var(--over-margin01);
		width: 96rem;
		aspect-ratio: 960/800;
		background: url(../images/under/clinic_philosophy_bg.png) center / 100% no-repeat;
	}

	.lu_ttl01 {
		position: absolute;
		top: 0;
		right: 0;
		text-align: right;
	}

	.lu_philosophy_head {
		flex: 1;

		.oft {
			height: 65rem;
			margin-left: var(--over-margin01);
		}
	}

	.lu_philosophy_body {
		width: 60rem;
		padding-top: 14.3rem;

		ol {
			margin-top: 4rem;

			li {
				padding: 2.5rem 1rem 2.5rem 6.8rem;
			}

			li:before {
				left: 1rem;
				top: 2rem;
			}
		}
	}
}

.lu_feature {
	.lu_feature_block {
		gap: 6rem;
	}

	.lu_feature_item {
		flex-direction: row;
		gap: 4rem;
	}

	.lu_feature_item:nth-of-type(2n) {
		flex-direction: row-reverse;
	}

	.lu_feature_item_head {
		width: 36rem;

		.oft {
			height: 27rem;
		}
	}

	.lu_feature_item_body {
		--num-gutter: 6rem;
		flex: 1;
		padding-top: 0;

		&:before {
			top: -5rem;
			right: calc(var(--num-gutter) * -1);
			font-size: 20rem;
		}

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

	.lu_feature_item_ttl {
		font-size: 2.6rem;
		padding: 1rem 0 1.3rem;
		margin-bottom: 1.4rem;
	}
}

.lu_info {
	.lu_info_img {
		height: 32rem;
		margin-bottom: 6rem;
	}

	table {
		td {
			width: auto;
		}

		th {
			width: 18rem;
		}
	}

	.lu_info_item {
		padding: 2rem 1rem;

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

		ul {
			margin-top: 0;
		}

		p {
			padding: 0 1.5rem 0 2.6rem;
			font-size: 1.9rem;
			margin-top: 0.8rem;
		}
	}
}

.lu_time {
	.lu_time_box {
		.m_timetable {
			--col-size: 11.5%;
			--last-col-size: 12%;

			tbody td {
				font-size: 2rem;
			}
		}
	}

	.lu_calendar {}

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

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

	.lu_outpatient_attention {
		margin-top: 6rem;
		padding: 3rem;
	}

	.lu_outpatient_attention_ttl {
		padding: 1.2rem 1.4rem;
		font-size: 2rem;
	}

	ul {
		--gap-row: 0.8rem;
	}

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

	.lu_outpatient_imgbox {
		display: flex;
		flex-direction: row;
		gap: 4rem;
	}

	.lu_outpatient_imgbox_head {
		width: 30rem;
	}

	.lu_outpatient_imgbox_body {
		flex: 1;
	}

	.m_table03 {
		margin-top: 0;

		thead th {
			padding: 1.3rem 0.8rem;
			width: 12.4rem;
		}

		.big {
			width: 20rem;
		}
	}
}

.lu_access {
	.lu_access_mapimg {
		max-width: 80rem;
		margin: 0 auto;

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

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

	.lu_access_vehicle_item {
		padding: 1.8rem 0;
		flex-direction: row;
		gap: 2rem;
		align-items: center;

		ul {
			margin-top: 0;
			gap: 0.8rem;
		}
	}

	.lu_access_vehicle_head {
		height: 16.8rem;
		gap: 0.8rem;
		width: 26rem;

		img {
			width: 6.4rem;
		}

		span {
			font-size: 2rem;
		}
	}

	.lu_access_vehicle_body {
		flex: 1;
	}

	.lu_ttl02 {
		margin-top: 3rem;
	}

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

	.lu_access_way {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;

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

.lu_medical {
	.lu_medical_item {
		padding: 4rem;
		flex-direction: row-reverse;
		gap: 4rem;
	}

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

	.lu_medical_item_head {
		width: 28rem;
	}

	.lu_medical_item_body {
		flex: 1;
	}

	.lu_medical_item_ttl {
		font-size: 2.4rem;
	}

	p:not(.no_default) {}

	.lu_medical_item_kakomi {
		padding: 2rem;
	}

	.lu_medical_item_kakomi_ttl {
		font-size: 1.9rem;
		padding: 0.2rem 1.5rem;
		border-radius: 3.5rem;
		margin-bottom: 1.5rem;
	}

	.lu_medical_item_kakomi_box {
		display: flex;
		gap: 4rem;
		width: fit-content;

		ul {
			margin-top: 0;
			width: fit-content;
			gap: 0.8rem;
		}

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

	.lu_medical_item_btn {
		margin-top: 2.5rem;

		.m_btn01 {
			margin: 0;
		}
	}
}

.lu_facility {
	.lu_facility_item {
		display: flex;
		flex-direction: row;
		gap: 4rem;
	}

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

	.lu_facility_item_head {
		width: 28rem;

		.oft {
			height: 21rem;
		}
	}

	.lu_facility_item_body {
		flex: 1;

		p {
			margin-top: 0;
		}
	}

	.lu_facility_item_ttl {
		font-size: 2.2rem;
		padding: 1rem 0;
	}
}

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

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

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

		.lu_tax_item_ttl {
			font-size: 2rem;
		}

		.m_btn01 {
			margin-top: 1rem;
			width: 100%;
		}
	}
}

.lu_contact_bus {
	margin-top: 3rem;
}

.lu_fax {
	padding: 3rem;

	.lu_fax_txt {
		text-align: center;
	}

	.lu_fax_tel {
		gap: 0.5rem;
		margin-top: 2.5rem;

		span {
			font-size: 3rem;
			padding-top: 0.5rem;
		}

		em {
			font-size: 3.6rem;
			line-height: 1;
			letter-spacing: 0;
			font-weight: 600;
		}
	}

	.lu_fax_btn {
		--icon-size: 3.2rem;
		width: 40rem;
		font-size: 2rem;
		padding: 1.2rem;
		min-height: 6.4rem;
		margin: 3rem auto 0;
		gap: 1rem;

		&:hover {
			opacity: 1;
			--icon-color: #fff;
			background: var(--gold_03);
			color: #fff;
		}
	}
}

.lu_book {
	gap: 7rem 5rem;
	margin-top: 6rem;
	grid-template-columns: repeat(2, 1fr);

	.lu_book_item {
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;
		gap: 0;
	}

	.lu_book_ttl {
		margin-top: 0;
		display: flex;
		align-items: center;
	}

	.lu_book_img {
		width: 16rem;
		margin: 0;

		img {
			border-radius: 0;
		}
	}

	.lu_book_txt {
		flex: 1;
	}

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

	.lu_book_body {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		gap: 3.5rem;
	}

	.m_btn_wrap {
		margin-top: 3rem;

		.m_btn01 {
			margin: 0 auto;
		}
	}
}