@charset "utf-8";

:root {
	/*-----------------------------
	common
	-----------------------------*/
	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 2rem;
	/* タブレット時はviewportを固定する */
	--tb-breakpoint: 1280px;
	--orange: #FF7A37;
	--orange_txt: #EE773B;
	--brown: #5D4B42;
	/* 山吹色 */
	--bright_yellow: #FFC062;
	--gray: #C7BCB6;
	--strong_txt: #FFD289;
	--brown_beta: #483329;
	--dark_brown: #453A2F;
	--light_orange: #FFEEE5;
	--main-font-color: #2C231F;
	--white: #fff;
	--main-color: #C29010;
	--font-main: YakuHanJPs, "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system, BlinkMacSystemFont, arial, helvetica, sans-serif;
	--font-min: YakuHanMPs, "Noto Serif JP", serif;
	--font-maru: YakuHanRPs, "Zen Maru Gothic", sans-serif;
	--font-en-crimson: "Crimson Text", serif;
	--font-en-cardo: "Cardo", serif;
	--font-num: '';
	--font-gothic: var(--font-main) sans-serif;
	--default-transition: 0.4s;
	--default-letter-spacing: 0.1em;
	--default-line-height: calc(26/15);
	--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: 5rem;
}

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

.color_orange {
	color: var(--orange) !important;
}

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

.grecaptcha-badge {
	visibility: hidden;
}

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

.js_tabs_item {
	display: none;

	&.on {
		display: block;
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
btn
++++++++++++++++++++++++++++*/
.m_btn01 {
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: #fff;
	--arrow-size: 1rem;
	--circle-bg-color: var(--main-color);
	--circle-border-color: var(--main-font-color);
	--circle-right: 1rem;
	--circle-size: 2.2rem;
	--circle-height: 1.6rem;
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	text-decoration: none;
	width: 100%;
	color: #fff;
	background: var(--custom-btn-bg-color, var(--main-color));
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding: 1rem 5rem;
	max-width: 26rem;
	min-height: 6rem;
	margin: var(--under-btn-mt, 0px) auto 0;
	border-radius: 3rem;

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

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

.m_btn02 {
	--icon-url: url(../images/icon_calendar.svg);
	--icon-size: 3rem;
	--icon-left: 1rem;
	--icon-color: var(--beige_02);
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: #fff;
	--arrow-size: 1rem;
	--circle-right: 1rem;
	--circle-size: 2.2rem;
	--circle-height: 1.6rem;
	--circle-bg-color: transparent;
	--circle-border-color: #fff;
	background: var(--orange_00);
	color: #fff;
	height: 7rem;
	border-radius: 0.4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-left: 1rem;

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

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

	.txt01 {
		letter-spacing: 0.08em;
		line-height: 1.8;
		font-size: 1.6rem;

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

	&.line {
		--icon-url: url(../images/icon_chat.svg);
		background: var(--green_line);
	}
}

.m_btn03 {
	--icon-url: url(../images/icon_tel.svg);
	--icon-size: 3rem;
	--icon-left: 1rem;
	--icon-color: var(--brown_02);
	--arrow-url: url(../images/icon_arrow.svg);
	--arrow-color: var(--brown_02);
	--arrow-size: 1rem;
	--circle-right: 1rem;
	--circle-size: 2.2rem;
	--circle-height: 1.6rem;
	--circle-bg-color: transparent;
	--circle-border-color: var(--brown_02);
	background: var(--white);
	height: 7rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	padding-left: 0.5rem;

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

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

	.txt01 {
		font-family: var(--font-num);
		letter-spacing: 0.08em;
		line-height: 1.2;
		font-size: 1.8rem;
		color: var(--brown_05);

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

	.txt02 {
		letter-spacing: 0.08em;
		line-height: 1.8;
		font-size: 1.2rem;
		font-weight: 500;
		color: var(--brown_02);
	}
}

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

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

/*++++++++++++++++++++++++++++
m_faq
++++++++++++++++++++++++++++*/
.m_faq {
	position: relative;

	.m_faq_head {
		position: relative;
		--icon-right: 1.7rem;
		--icon-width: 1.6rem;
		--icon-color: #fff;
		filter: drop-shadow(5px 5px 20px #33282433);

		&:before,
		&: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%);
			transition: var(--default-transition);
		}

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

	.m_faq_ttl {
		margin-top: 0;
		z-index: 1;
		padding: 1.1rem 4.5rem 0.9rem 1.2rem;
		font-size: 1.5rem;
		font-family: var(--font-maru);
		line-height: 1.7;
		display: flex;
		cursor: pointer;
		background: #fff;
		align-items: center;
		transition: var(--default-transition);
		border-radius: 1rem;
		font-weight: 500;
		letter-spacing: 0.05em;

		&:before {
			content: "Q";
			display: block;
			line-height: 1;
			font-size: 2.8rem;
			font-family: var(--font-en-cardo);
			color: var(--orange);
			transition: var(--default-transition);
			margin-right: 0.7rem;
			position: relative;
			top: -0.1rem;
			font-weight: 400;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			right: 1rem;
			width: 3rem;
			height: 3.2rem;
			z-index: 1;
			background: linear-gradient(180deg, #FF7A37 0%, #FFCB9E 100%);
			border-radius: 0.5rem;
		}
	}

	.m_faq_body {
		display: none;
		padding: 0 1rem 0 5.6rem;
		margin-top: 1.5rem;
		position: relative;

		&:before {
			content: 'A';
			display: block;
			position: absolute;
			top: 0;
			left: 3rem;
			z-index: 1;
			font-size: 2.8rem;
			line-height: 1;
			font-family: var(--font-en-cardo);
		}
	}

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

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

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

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

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

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

	figure {
		width: 26rem;
		overflow: hidden;
		aspect-ratio: 260/184;
	}

	figure img {
		display: block;
	}
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable {
	display: block;
	width: calc(100% - 1.2rem);
	margin: 2.2rem auto 0;

	thead,
	tbody {
		display: block;
	}

	tr {
		display: grid;
		grid-template-columns: 12rem repeat(7, 1fr);
		padding-right: 1.5rem;
	}

	:is(td, th) {
		font-size: 1.6rem;
		text-align: center;
		line-height: 1;
		letter-spacing: 0;
		font-family: var(--font-maru);
		font-weight: 500;
		color: var(--brown);
	}

	thead {
		position: relative;
		isolation: isolate;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: -0.6rem;
			width: calc(100% + 1.2rem);
			height: 100%;
			z-index: -1;
			border-radius: 3rem;
			background: var(--orange);
		}
	}

	thead th {
		padding: 1.3rem 0 1.7rem;
		color: #fff;
	}

	thead th:first-of-type {
		text-align: left;
		padding-left: 2rem;
		letter-spacing: 0.1em;
	}

	tbody tr {
		border-bottom: 1px solid var(--main-font-color);
	}

	tbody :is(th, td) {
		padding: 1.1rem 0 1.2rem;
	}

	tbody th {
		letter-spacing: 0.1em;
		color: var(--main-font-color);
	}
}

.l_footer_time_hosoku {
	margin-top: 1.3rem;
	padding-left: 1.2rem;
	color: var(--dark_brown);
}

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	background: url(../images/footer_bg_sp.jpg) center / cover no-repeat;
	padding: 2.5rem 0 0;

	.inner {}

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

		.txt01 {
			color: var(--orange);
			font-family: var(--font-maru);
			font-weight: 500;
			text-align: center;
			line-height: calc(28/22);
			font-size: 2.2rem;
			letter-spacing: 0;
		}

		.txt02 {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 1.3rem;
			font-family: var(--font-maru);
			font-weight: 500;
			font-size: 1.8rem;
			margin-top: 0.2rem;

			&:before,
			&:after {
				content: '';
				display: block;
				width: 2.3rem;
				height: 1px;
				background: var(--brown);
			}
		}
	}

	.l_footer_block {
		width: calc(100% - 1.4rem);
		margin: 1.5rem auto 0;
		border-top: var(--brown) 1px solid;
		padding: 0 1.5rem;
	}

	.l_footer_head {
		padding: 2.5rem 0.8rem 3.4rem;
	}

	.l_footer_table {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0.9rem 1.5rem;

		dl {
			display: grid;
			grid-template-columns: subgrid;
			grid-column: span 2;
		}

		dt {
			font-size: 1.6rem;
			line-height: calc(20/16);
			letter-spacing: 0.1em;
			font-weight: 500;
			font-family: var(--font-maru);

			span {
				background: #fff;
				border-radius: 2rem;
				min-width: 11rem;
				line-height: calc(20/16);
				padding: 0.6rem 2rem;
				display: inline-flex;
				text-align: center;
				justify-content: center;
			}
		}
	}

	.l_footer_body {}

	.l_footer_time {
		border-top: 1px solid var(--brown);
		padding-top: 3rem;
	}

	.l_footer_time_ttl {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;

		.txt01 {
			font-size: 1.9rem;
			line-height: 1;
			font-family: var(--font-maru);
			font-weight: 500;
			letter-spacing: 0.1em;
			color: var(--brown);
		}

		.txt02 {
			color: var(--orange);
			font-family: var(--font-en-cardo);
			font-weight: 700;
			font-size: 1.3rem;
			line-height: 1;
			letter-spacing: 0.1em;
			position: relative;
			top: 0.3rem;
		}
	}

	.l_footer_gmap {
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.7);
		border: 1px solid var(--brown);
		border-radius: 0.4rem;
		height: 5.2rem;
		text-decoration: none;
		margin-top: 2rem;

		span {
			font-family: var(--font-en-cardo);
			font-weight: 700;
			font-size: 1.6rem;
			line-height: 1;
			letter-spacing: 0.15em;
			padding-left: 2.6rem;
			position: relative;
			color: var(--brown);

			&:before {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				left: 0;
				width: 1.6rem;
				aspect-ratio: 21/32;
				z-index: 1;
				transform: translateY(-50%);
				background: url(../images/icon_pin.svg) center / 100% no-repeat;
			}
		}
	}

	.l_footer_middle {
		background: #D6C4B54D;
		padding: 3.5rem 3rem 4.5rem;
		margin-top: 4.2rem;
	}

	.l_footer_advisor {
		background: #fff;
		box-shadow: 3.1px 3.1px 12.4px 0px #33282433;
		border-radius: 3rem;
		position: relative;
		padding: 6.1rem 1rem 2.5rem;
		overflow: hidden;
	}

	.l_footer_advisor_ttl {
		position: absolute;
		isolation: isolate;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 1.4rem 0 1.5rem;
		gap: 1rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 36.8rem;
			aspect-ratio: 1/1;
			z-index: -1;
			background: #FAE0D3;
			border-radius: 50%;
		}

		.txt01 {
			font-family: var(--font-en-cardo);
			line-height: calc(16/13);
			letter-spacing: 0.2em;
			font-size: 1.3rem;
		}

		.txt02 {
			font-family: var(--font-maru);
			line-height: 1;
			letter-spacing: 0.1em;
			font-size: 1.8rem;
			font-weight: 500;
		}
	}

	.l_footer_advisor_name {
		display: flex;
		align-items: center;
		font-weight: 500;
		gap: 1rem;
		justify-content: center;
		background: #F3EEEB;
		border-radius: 3rem;
		padding: 0.3rem 0.5rem 0.3rem 0rem;

		.txt01 {
			font-family: var(--font-maru);
			font-size: 1.7rem;
			line-height: calc(25/17);
			letter-spacing: 0.15em;
			padding-left: 1.9rem;
			position: relative;

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

		.txt02 {
			letter-spacing: 0;
			line-height: calc(20/14);
			font-size: 1.4rem;
		}
	}

	.l_footer_advisor_box {
		padding: 1.2rem 1.5rem 0;
	}

	.l_footer_advisor_position {
		font-size: 1.7rem;
		line-height: 1;
		font-family: var(--font-maru);
	}

	.l_footer_advisor_list {
		font-family: var(--font-maru);
		margin-top: 0.8rem;

		li {
			position: relative;
			padding-left: 1.3rem;
			line-height: calc(20/15);
			letter-spacing: 0.05em;
			font-size: 1.5rem;

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

	.l_footer_bottom {
		background: var(--brown);
		padding: 2.2rem 0 10rem;
	}

	.l_footer_bnr {
		width: 22.8rem;
		font-size: 1rem;
		line-height: 1.3;
		text-align: center;
		text-decoration: none;
		letter-spacing: 0.02em;
		margin: 0 auto;

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

		span {
			display: block;
		}

		em {
			display: block;
			margin-top: 0.4rem;
			color: #fff;
		}
	}

	.l_footer_small {
		border-top: 1px solid #88746B;
		padding-top: 1.5rem;
		margin-top: 3rem;
	}

	small {
		position: relative;
		display: block;
		color: #fff;
		font-size: 1.3rem;
		line-height: calc(19/13);
		text-align: center;
		letter-spacing: 0.2em;
	}
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	padding: 0;
	display: block;
	height: 7rem;
}

.l_fixed_ai {
	--white-size: 1rem;
	position: absolute;
	isolation: isolate;
	left: 1.8rem;
	bottom: 0;
	display: flex;
	width: 10.5rem;
	height: 6.6rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 500;
	font-family: var(--font-maru);

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background: var(--orange);
		border-radius: 20rem 20rem 0 0;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: calc(var(--white-size) * -1);
		width: calc(100% + var(--white-size) * 2);
		height: calc(100% + var(--white-size));
		z-index: -2;
		background: #FFD09699;
		border-radius: 20rem 20rem 0 0;
	}

	.wrap {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		display: flex;
	}

	.txt {
		padding-top: 2.8rem;
		font-size: 1.6rem;
		letter-spacing: 0.1em;
		line-height: 1;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 1.1rem;
			left: 50%;
			width: 2.4rem;
			aspect-ratio: 1/1;
			transform: translateX(-50%);
			z-index: 1;
			-webkit-mask: url(../images/icon_ai.svg) center / 100% no-repeat;
			mask: url(../images/icon_ai.svg) center / 100% no-repeat;
			background: #fff;
		}

		span {
			font-size: 2.4rem;
			letter-spacing: 0.1em;
		}
	}
}

.l_fixed_in {
	display: flex;
	gap: 1rem;
	padding: 0.8rem 0 0 0.8rem;
	border-radius: 1.4rem 0 0 0;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 14.426px 0 rgba(51, 40, 36, 0.2);
	margin-left: auto;
	width: 24.5rem;
}

.l_fixed_web {
	width: 16rem;
}

.l_fixed_pagetop {
	flex: 1;
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	bottom: 1.6rem;
	right: 1.2rem;
	width: 1.1rem;
	transition: var(--default-transition);
	opacity: 0;
	pointer-events: none;
}

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

/*++++++++++++++++++++++++++++
l_mv
++++++++++++++++++++++++++++*/
.l_mv {
	position: relative;
}

.l_mv_slider_item {
	position: relative;
	z-index: 1;
}

.l_mv_img {
	width: 100%;
}

.l_mv_point {
	width: 17.7rem;
	aspect-ratio: 354/393;
	position: absolute;
	bottom: 4.2rem;
	left: 0.8rem;
	background: url(../images/mv_point_shape_sp.png) center / 100% no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* justify-content: center; */
	font-family: var(--font-min);
	font-weight: 700;
	padding-top: 5.7rem;

	.txt_wrap {
		padding: 0 0.25rem 0.8rem;
		border-bottom: 1px solid var(--brown);
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.txt01 {
		font-size: 1.55rem;
		letter-spacing: 0.1em;
		line-height: 1;
		text-align: center;
	}

	.txt02 {
		font-size: 3rem;
		letter-spacing: 0.05em;
		color: var(--orange_txt);
		line-height: 1;
		text-align: center;
		margin-top: 0.1rem;
		font-weight: 600;

		span {
			font-size: 1.9rem;
			letter-spacing: 0.05em;
		}
	}

	.txt03 {
		font-size: 1.55rem;
		letter-spacing: 0.1em;
		line-height: 1;
		text-align: center;
		margin-top: 0.4rem;
	}

	.txt04 {
		font-size: 1.3rem;
		letter-spacing: 0.1em;
		line-height: 1.2;
		margin-top: 0.7rem;
	}
}

/*++++++++++++++++++++++++++++
l_point
++++++++++++++++++++++++++++*/
.t_point {
	background: url(../images/point_bg_sp.jpg) center bottom / cover no-repeat;
	padding: 3.1rem 0 3.6rem;

	.t_point_ttl {
		font-family: var(--font-en-cardo);
		font-size: 1.8rem;
		color: var(--orange);
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1rem;

		&:before,
		&:after {
			content: '';
			display: block;
			width: 3.2rem;
			height: 1px;
			z-index: 1;
			background: var(--main-font-color);
		}
	}

	.t_point_list {
		width: 33rem;
		height: 33.5rem;
		position: relative;
		margin: 1.7rem auto 0;
	}

	.t_point_item {
		width: 16.4rem;
		aspect-ratio: 570/658;
		position: absolute;
		top: -0.2rem;
		background: url(../images/point_shape_sp.png) center / 100% no-repeat;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-family: var(--font-min);
		font-weight: 700;

		.txt_wrap {
			padding: 0 0.25rem 0.5rem;
			border-bottom: 1px solid var(--brown);
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.txt01 {
			font-size: 1.6rem;
			letter-spacing: 0.08em;
			line-height: 1;
			text-align: center;
		}

		.txt02 {
			font-size: 3rem;
			letter-spacing: 0;
			color: var(--orange_txt);
			line-height: 1;
			text-align: center;
			margin-top: 0.4rem;
			font-weight: 600;

			span {
				font-size: 1.9rem;
			}
		}

		.txt03 {
			font-size: 1.25rem;
			letter-spacing: 0.05em;
			line-height: calc(141/125);
			margin-top: 0.65rem;
			display: flex;
			flex-direction: column;
			gap: 0.2rem;

			span {
				text-indent: -1em;
				padding-left: 1em;
			}
		}
	}

	.t_point_item01 {
		left: -0.3rem;
		top: -0.2rem;
	}

	.t_point_item02 {
		right: -0.3rem;
	}

	.t_point_item03 {
		left: 50%;
		transform: translateX(-50%);
		bottom: -0.1rem;
		top: auto;
	}
}

/*++++++++++++++++++++++++++++
t_reason
++++++++++++++++++++++++++++*/
.t_reason {
	.t_reason_wrap01 {
		position: relative;
		isolation: isolate;
		padding: 1.2rem 0 3rem;
		background: #fff;
		z-index: 10;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			aspect-ratio: 780/908;
			z-index: -5;
			background: url(../images/feature_bg01_sp.png) center top / 100% no-repeat;
		}
	}

	.t_reason_wrap02 {
		background: #fff;
		position: relative;
		isolation: isolate;
		padding: 6.3rem 0 1.4rem;
		z-index: 10;
		margin-top: -0.1rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 3rem;
			left: 0;
			width: 100%;
			height: calc(100% - 3rem);
			z-index: -1;
			border-radius: 6rem;
			background: url(../images/feature_bg02_sp.jpg) center / cover no-repeat;
		}
	}

	.inner {
		padding: 0 1.7rem 0;
	}

	.t_reason_en {
		position: absolute;
		top: 1rem;
		left: 0.8rem;
		font-size: 7rem;
		line-height: 1;
		letter-spacing: 0.2em;
		background: linear-gradient(0deg, rgba(195, 157, 138, 0.8) 21.47%, #5D4B42 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		opacity: 0.1;
		z-index: -1;
		font-family: var(--font-en-cardo);
	}

	.t_reason_ttl {
		display: flex;
		justify-content: center;
		align-items: self-end;

		span {
			font-family: var(--font-maru);
			line-height: 1.2;
			letter-spacing: 0.15em;
			font-weight: 500;
			font-size: 2rem;
		}

		strong {
			background: linear-gradient(180deg, #FF7A37 0%, #FFCB9E 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			font-size: 10.1rem;
			letter-spacing: 0;
			line-height: 1;
			font-weight: 400;
			font-family: var(--font-en-cardo);
			position: relative;
			top: 0.25em;
		}
	}

	.t_reason_situation {
		margin: 2.5rem auto 0;
		padding: 1.5rem 1.7rem;
		border-radius: 3rem;
		background: #F4F0ED;
		max-width: calc(100% - 2rem);

		figure {
			overflow: hidden;
			border-radius: 2.5rem;
		}
	}
}

.m_reason {
	position: relative;
	margin-top: 3.7rem;

	.m_reason_shadow {
		filter: drop-shadow(3.35px 3.35px 13.4px #33282433);
		position: relative;
		z-index: 1;
	}

	.m_reason_body {
		--corner-width: 5.1rem;
		--corner-height: 4rem;
		-webkit-clip-path: polygon(var(--corner-width) 0%, calc(100% - var(--corner-width)) 0%, 100% var(--corner-height), 100% calc(100% - var(--corner-height)), calc(100% - var(--corner-width)) 100%, var(--corner-width) 100%, 0% calc(100% - var(--corner-height)), 0% var(--corner-height));
		clip-path: polygon(var(--corner-width) 0%, calc(100% - var(--corner-width)) 0%, 100% var(--corner-height), 100% calc(100% - var(--corner-height)), calc(100% - var(--corner-width)) 100%, var(--corner-width) 100%, 0% calc(100% - var(--corner-height)), 0% var(--corner-height));
		background: #fff;
		padding: 1.5rem 0 5rem 2.2rem;
	}

	.m_reason_ttl {
		padding: 0 2.5rem 0 4.9rem;
		position: relative;
		display: flex;
		align-items: flex-end;
		gap: 0.5rem;
		color: var(--brown);

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: -1.2rem;
			left: -1.2rem;
			width: 8.2rem;
			aspect-ratio: 82/68;
			z-index: 1;
			background: url(../images/reason_en.svg) center / 100% no-repeat;
		}

		&:after {
			content: '';
			display: block;
			position: relative;
			bottom: 1.9rem;
			height: 1px;
			z-index: 1;
			flex: 1;
			background: var(--brown);
		}

		.txt01 {
			font-family: var(--font-maru);
			font-weight: 500;
			font-size: 1.5rem;
			line-height: calc(21.7/15);
			padding-bottom: 0.6rem;
			letter-spacing: 0.03em;
		}

		.txt02 {
			line-height: calc(50/42);
			font-size: 4.2rem;
			font-family: var(--font-en-cardo);
			letter-spacing: 0.03em;
		}
	}

	.m_reason_content {
		padding: 0 1.5rem 2rem 1.8rem;
		border-left: 1px solid var(--brown);
		margin-top: 1.7rem;
	}

	.m_reason_catch {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		position: relative;
		z-index: 10;

		.line {
			padding: 0 0.5rem;
			line-height: calc(25/20);
			font-size: 2rem;
			letter-spacing: 0.03em;
			font-weight: 500;
			font-family: var(--font-maru);

			&:has(strong) {
				padding: 0;
			}
		}

		strong {
			position: relative;
			isolation: isolate;
			padding: 0 0.5rem 0.5rem;
			letter-spacing: 0.03em;
			display: inline-block;
			font-weight: 500;

			&:before {
				content: '';
				display: block;
				position: absolute;
				bottom: 0;
				left: 0;
				width: 100%;
				height: 1.2rem;
				z-index: -1;
				background: #FFC0624D;
				border-radius: 0.5rem;
			}
		}
	}

	.m_reason_txt {
		margin-top: 2rem;

		p+p {
			margin-top: 2.8rem;
		}

		strong {
			font-weight: 500;
			color: var(--orange);
		}
	}

	.m_reason_point {
		width: 12.6rem;
		height: 14.5rem;
		position: relative;
		isolation: isolate;
		padding-top: 0.7rem;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 20;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			aspect-ratio: 253/290;
			z-index: -1;
			background: url(../images/hexagon_sp.png) center / 100% no-repeat;
		}
	}

	.m_reason_point_txt {
		padding: 0 0.3rem 0.6rem;
		border-bottom: 1px solid #fff;
		font-weight: 700;
		font-family: var(--font-min);
		line-height: calc(18/15);
		font-size: 1.5rem;
		letter-spacing: 0.05em;
		color: #fff;
		text-align: center;
	}

	.m_reason_img {
		--radius: 1rem;
		overflow: hidden;
		z-index: 10;
	}

	&.m_reason01 {
		margin-top: 4rem;
		padding-bottom: 17.2rem;

		.m_reason_img01 {
			position: absolute;
			width: 30rem;
			bottom: 2.2rem;
			right: -1.7rem;
			z-index: 9;
			border-radius: var(--radius) 0 0 var(--radius);
		}

		.m_reason_img02 {
			position: absolute;
			width: 14rem;
			bottom: 0;
			left: -1.7rem;
			border-radius: 0 var(--radius) var(--radius) 0;
		}
	}

	&.m_reason02 {
		padding-bottom: 18.5rem;
		margin-top: 0;

		.m_reason_img01 {
			position: absolute;
			width: 30rem;
			bottom: 4rem;
			right: -1.7rem;
			border-radius: var(--radius) 0 0 var(--radius);
		}

		.m_reason_point {
			left: -0.4rem;
			bottom: 9.2rem;
			position: absolute;
		}

		.m_reason_point02 {
			bottom: -4.7rem;
			left: 2.1rem;

			.m_reason_point_txt {
				font-size: 1.3rem;
			}
		}
	}

	&.m_reason03 {
		padding-bottom: 19rem;
		margin-top: 7.1rem;

		.m_reason_img01 {
			position: absolute;
			width: 30rem;
			bottom: 4rem;
			left: -1.7rem;
			border-radius: 0 var(--radius) var(--radius) 0;
		}

		.m_reason_point {
			right: 0.1rem;
			bottom: 0;
			position: absolute;
		}
	}

	&.m_reason04 {
		padding-bottom: 15.1rem;
		margin-top: 1.4rem;

		.m_reason_img01 {
			position: absolute;
			width: 30rem;
			bottom: 0;
			left: -1.7rem;
			border-radius: 0 var(--radius) var(--radius) 0;
		}

		.m_reason_point {
			right: 0rem;
			bottom: 4.2rem;
			position: absolute;
		}

		.m_reason_point02 {
			bottom: -9rem;
			right: 2.7rem;

			.m_reason_point_txt {
				font-size: 1.3rem;

				strong {
					font-size: 1.5rem;
				}

				span {
					font-size: 1.1rem;
				}
			}
		}
	}

	&.m_reason05 {
		padding-bottom: 18.5rem;
		margin-top: 10.9rem;

		.m_reason_img01 {
			position: absolute;
			width: 30rem;
			bottom: 4.4rem;
			left: 7.4rem;
			border-radius: var(--radius) 0 0 var(--radius);
		}

		.m_reason_point {
			left: 2.8rem;
			bottom: 9.1rem;
			position: absolute;
		}
	}

	&.m_reason06 {
		padding-bottom: 14.8rem;
		margin-top: -0.8rem;

		.m_reason_img01 {
			position: absolute;
			width: 18.5rem;
			bottom: -3.5rem;
			right: 6rem;
			border-radius: var(--radius);
		}

		.m_reason_point {
			left: 2.8rem;
			bottom: 5.4rem;
			position: absolute;
		}
	}

	&.m_reason07 {
		padding-bottom: 18.9rem;
		margin-top: 7.6rem;

		.m_reason_img01 {
			position: absolute;
			width: 30rem;
			bottom: 4.1rem;
			left: -1.7rem;
			border-radius: 0 var(--radius) var(--radius) 0;
		}

		.m_reason_point {
			right: -0.1rem;
			bottom: 0;
			position: absolute;
		}
	}
}

.t_consult {
	padding: 6.9rem 1.5rem 5.9rem;
	position: relative;
	margin-top: 0;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	z-index: 1;
	margin-top: -0.1rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0rem;
		left: 0;
		width: 100%;
		aspect-ratio: 780/70;
		z-index: 1;
		background: url(../images/half_cricle_sp.png) center top / 100% no-repeat;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0rem;
		left: 0;
		width: 100%;
		aspect-ratio: 780/70;
		z-index: 1;
		background: url(../images/half_cricle_sp.png) center top / 100% no-repeat;
		rotate: 180deg;
	}

	.t_consult_bg {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		height: 100lvh;
		z-index: -1;

		.oft {
			width: 100%;
			height: 100%;
		}
	}

	.t_consult_block {
		position: relative;
		padding-bottom: 16.6rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			left: 2.7rem;
			width: 12rem;
			aspect-ratio: 1/1;
			z-index: 1;
			border-radius: 50%;
			background: url(../images/consult_img02_sp.jpg) center / 100% no-repeat;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			right: 3.8rem;
			width: 14.9rem;
			aspect-ratio: 1/1;
			z-index: 1;
			border-radius: 50%;
			background: url(../images/consult_img01_sp.jpg) center / 100% no-repeat;
		}
	}

	.t_consult_ttl {
		background: var(--orange);
		border-radius: 5rem;
		display: grid;
		justify-content: center;
		padding: 0.7rem 0 0.4rem 1rem;
		font-weight: 500;
		font-family: var(--font-maru);
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 99.99%;
			left: 50%;
			width: 1.5rem;
			height: 0.7rem;
			z-index: 1;
			transform: translateX(-50%);
			background: var(--orange);
			-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
			clip-path: polygon(50% 100%, 100% 0, 0 0);
		}

		.txt01 {
			font-size: 1.8rem;
			letter-spacing: 0.03em;
			line-height: calc(26.8/18);
		}

		.txt02 {
			line-height: calc(26.8/18);
			letter-spacing: 0.03em;
			font-size: 2.3rem;
			color: #fff;
			margin-top: -0.7rem;
		}
	}

	.t_consult_list {
		display: grid;
		gap: 1.4rem;
		margin-top: 2.6rem;

		li {
			padding-left: 3.5rem;
			font-size: 2rem;
			line-height: calc(25/20);
			font-family: var(--font-maru);
			font-weight: 500;
			color: #fff;
			position: relative;

			&:before {
				content: '';
				display: block;
				position: absolute;
				top: 50%;
				left: 0;
				width: 3rem;
				aspect-ratio: 1/1;
				transform: translateY(-50%);
				z-index: 1;
				background: url(../images/icon_check_sp.svg) center / 100% no-repeat;
			}

			span {
				border-bottom: 1px solid #fff;
				padding: 0 0 0.6rem 0.6rem;
				display: block;
				letter-spacing: 0.025em;
			}
		}
	}
}

.t_doctor {
	position: relative;
	isolation: isolate;
	padding: 3.3rem 0 7rem;
	background: #000;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	z-index: 1;
	margin-top: -0.1rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		aspect-ratio: 390/337;
		z-index: -1;
		background: url(../images/doctor_wave01_sp.svg) center top / 100% no-repeat;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		aspect-ratio: 390/70;
		z-index: -1;
		background: url(../images/doctor_wave02_sp.svg) center top / 100% no-repeat;
	}

	.inner {
		position: static;
		padding: 0 3rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: -2;
			background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 83.29%);
		}

		&:after {
			content: '';
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			height: 100lvh;
			z-index: -10;
			background: url(../images/fixed_bg02_sp.jpg) center / cover no-repeat;
		}
	}

	.t_doctor_en {
		background: linear-gradient(0deg, rgba(195, 157, 138, 0.8) 21.47%, #5D4B42 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		font-family: var(--font-en-cardo);
		font-size: 3.6rem;
		line-height: calc(35/36);
		letter-spacing: 0.03em;
		opacity: 0.5;
		width: fit-content;
		margin: 0 auto;
	}

	.t_doctor_block {
		margin-top: 2rem;
	}

	.t_doctor_head {}

	.t_doctor_ttl {
		line-height: 1;
		font-size: 2.3rem;
		font-weight: 500;
		font-family: var(--font-maru);
	}

	.t_doctor_txt {
		margin-top: 1.5rem;
	}

	.t_doctor_slider01 {
		margin: 11.3rem 0 0 13.5rem;
		width: 11.5rem;
		overflow: visible;

		.t_doctor_img {
			height: 19.5rem;
			width: 11.5rem;
			position: relative;
		}

		.oft {
			position: absolute;
			bottom: 0;
			right: 0;
			height: 100%;
			width: 100%;
			transition: var(--default-transition);
		}

		.swiper-slide {
			transition: var(--default-transition);
		}

		.swiper-slide-active .oft {
			height: 28.5rem;
			width: 25rem;
		}

		.swiper-slide:not(.swiper-slide-active ~ .swiper-slide):not(.swiper-slide-active) {
			opacity: 0;
		}

		img {
			border-radius: 0.4rem;
		}
	}

	.t_doctor_slider02 {
		margin-top: 2.3rem;
		overflow: visible;
	}

	.t_doctor_nav {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 2.5rem;
		width: 35rem;
		margin: 2.3rem 0 0 -1rem;
		background: var(--orange);
		padding: 0.8rem 0;
		border-radius: 10rem;
	}

	.t_doctor_arrow {
		width: 2.6rem;
		aspect-ratio: 1/1;
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 1;
			-webkit-mask: url(../images/icon_arrow01.svg) center / 100% no-repeat;
			mask: url(../images/icon_arrow01.svg) center / 100% no-repeat;
			background: #fff;
		}

		&.t_doctor_arrow_next:before {
			rotate: 180deg;
		}
	}

	.t_doctor_pagination {
		width: auto;
		display: flex;
		gap: 0.7rem;
	}

	.swiper-button-disabled {
		opacity: 0.3;
	}

	.swiper-pagination-bullet {
		width: 4rem;
		aspect-ratio: 1/1;
		height: auto;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		position: relative;
		isolation: isolate;
		line-height: 1;
		font-size: 2rem;
		font-family: var(--font-en-cardo);
		letter-spacing: 0.03em;
		transition: var(--default-transition);
		margin: 0 !important;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 4.7rem;
			aspect-ratio: 1/1;
			background: rgba(255, 255, 255, 0.3);
			z-index: -1;
			opacity: 0;
			transition: var(--default-transition);
			border-radius: 50%;
		}
	}

	.swiper-pagination-bullet-active {
		color: #fff;
		font-size: 2.6rem;

		&:before {
			opacity: 1;
		}
	}

	.t_doctor_desc {
		color: #fff;
	}

	.t_doctor_name {
		display: flex;
		flex-direction: column;
		position: relative;
		padding-bottom: 1rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: 0;
			width: 100vw;
			height: 1px;
			z-index: 1;
			left: -0.3rem;
			background: var(--main-font-color);
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			bottom: -0.25rem;
			width: 0.5rem;
			aspect-ratio: 1/1;
			z-index: 1;
			left: -1.3rem;
			border-radius: 50%;
			background: var(--main-font-color);
		}

		.en {
			font-family: var(--font-en-cardo);
			font-size: 1.8rem;
			line-height: calc(20/18);
			letter-spacing: 0.05em;
		}

		.ja {
			margin-top: 0.7rem;
			display: flex;
			align-items: center;
			font-family: var(--font-maru);
			font-weight: 500;

			.txt01 {
				margin-right: 2rem;
				font-size: 1.8rem;
				line-height: calc(27/18);
				letter-spacing: 0.2em;
			}

			.txt02 {
				font-size: 2.2rem;
				line-height: calc(27/22);
				letter-spacing: 0.2em;
			}
		}
	}

	.t_doctor_comment {
		margin-top: 0.9rem;
	}

	.t_doctor_links {
		display: flex;
		flex-wrap: wrap;
		gap: 1.5rem;
		margin-top: 1.2rem;

		a {
			min-width: 4.1rem;
			height: 4.1rem;
			background: #fff;
			border-radius: 30rem;
			display: flex;
			align-items: center;
			justify-content: center;
			color: var(--orange);
			line-height: calc(20/16);
			letter-spacing: 0.1em;
			font-weight: 500;
			font-size: 1.6;
			text-decoration: none;

			&.instagram {
				figure {
					width: 1.9rem;
				}
			}

			&.youtube {
				figure {
					width: 2.3rem;
				}
			}

			&.book {
				padding: 0 1.5rem 0 1.2rem;

				figure {
					width: 2.2rem;
					margin-right: 0.3rem;
				}
			}
		}
	}
}

.t_reserve {
	background: #fff;
	padding: 2.5rem 3rem 6.6rem;
	margin-top: -0.1rem;
	position: relative;
	z-index: 10;

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

		.txt01 {
			font-family: var(--font-en-cardo);
			color: var(--orange);
			letter-spacing: 0.1em;
			font-size: 2rem;
			line-height: 1;
			display: flex;
			align-items: center;
			gap: 1rem;

			&:before,
			&:after {
				content: '';
				display: block;
				flex: 1;
				height: 1px;
				z-index: 1;
				background: var(--main-font-color);
			}
		}

		.txt02 {
			margin-top: 2rem;
			font-family: var(--font-maru);
			line-height: 1;
			letter-spacing: 0.1em;
			font-weight: 500;
			font-size: 2.2rem;
		}
	}

	.t_reserve_txt {
		margin-top: 1.7rem;
	}

	.t_reserve_btns {
		margin-top: 2.1rem;
		display: grid;
		gap: 2.8rem;
		padding-right: 1.1rem;
	}

	.t_reserve_btn {
		text-decoration: none;
		display: flex;
		flex-direction: column;
		position: relative;
		isolation: isolate;
		justify-content: center;
		align-items: center;
		height: 8rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: -3;
			border-radius: 0.6rem;
			border: 1px solid var(--orange);
			background: #fff;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 1.1rem;
			left: 1.2rem;
			width: 100%;
			height: 100%;
			z-index: -4;
			border-radius: 0.6rem;
			background: linear-gradient(275.13deg, #AE9D94 0.47%, #E3DBD6 100%);
		}

		&.web {
			--url: url(../images/icon_smartphone.svg);
			--size: 2.7rem;
			padding-left: 2rem;

			&:before {
				border-color: #70A343;
			}

			.txt01:before {
				background: #70A343;
			}

			.txt02:before {
				background: #70A343;
			}
		}

		&.tel {
			--url: url(../images/icon_phone.svg);
			--size: 2.6rem;
			padding-left: 2.3rem;
		}

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

			span {
				font-size: 1.9rem;
				letter-spacing: 0.12em;
			}

			&:before {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 4.6rem;
				height: 5.7rem;
				z-index: -2;
				background: var(--orange);
				border-radius: 0.6rem 0 2.9rem 0;
			}

			&:after {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 4.6rem;
				height: 5.7rem;
				z-index: -1;
				-webkit-mask: var(--url) center / var(--size) no-repeat;
				mask: var(--url) center / var(--size) no-repeat;
				background: #fff;
			}
		}

		.txt02 {
			margin-top: 0.4rem;
			font-size: 1.4rem;
			line-height: calc(26/14);
			letter-spacing: 0.1em;

			&:before {
				content: '';
				display: block;
				position: absolute;
				right: 0.6rem;
				bottom: 0.7rem;
				width: 0.9rem;
				aspect-ratio: 1/1;
				z-index: 1;
				-webkit-mask: url(../images/icon_triangle.svg) center / 100% no-repeat;
				mask: url(../images/icon_triangle.svg) center / 100% no-repeat;
				background: #FF7A37;
			}
		}
	}

	&.t_reserve02 {
		padding-top: 3rem;
		padding-bottom: 5.6rem;

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

.t_trouble {
	background: url(../images/trouble_bg_sp.jpg) center top / cover no-repeat;
	position: relative;
	z-index: 10;
	background: #fff;

	.t_trouble_head {
		position: relative;
		z-index: 1;

		.oft {
			height: 21rem;
		}
	}
}

.t_caution {
	position: relative;
	margin: -16.1rem auto 0;
	z-index: 10;
	max-width: 34rem;

	.t_caution_ttl {
		background: #fff;
		border-radius: 20rem;
		filter: drop-shadow(2.9px 2.9px 11.59px #33282433);
		font-family: var(--font-maru);
		text-align: center;
		line-height: calc(25/20);
		padding: 1rem 0 1.1rem 0.9rem;
		font-size: 2rem;
		font-weight: 500;
		letter-spacing: 0.03em;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 99.19%;
			left: 50%;
			width: 1.5rem;
			height: 0.7rem;
			z-index: 1;
			transform: translateX(-50%);
			background: #fff;
			-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
			clip-path: polygon(50% 100%, 100% 0, 0 0);
		}

		strong {
			font-weight: 500;
			color: var(--orange);
			line-height: 1;
			font-size: 2.5rem;
			letter-spacing: 0.03em;
		}
	}

	.t_caution_en {
		font-family: var(--font-en-cardo);
		font-size: 5.5rem;
		line-height: calc(60/55);
		letter-spacing: 0.12em;
		opacity: 0.9;
		text-align: center;
		position: relative;
		z-index: 10;
		color: #fff;
		margin-top: 2rem;
	}

	.t_caution_list {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 30.47%);
		border-radius: 7rem 1rem 7rem 1rem;
		box-shadow: 5px 5px 20px 0px #33282433;
		padding: 6rem 2rem 3.4rem 2.5rem;
		position: relative;
		z-index: 1;
		margin-top: -3.1rem;
		display: flex;
		gap: 1.3rem 3rem;
		flex-wrap: wrap;

		li {
			padding-left: 3.3rem;
			background: url(../images/icon_check_color_sp.svg) left top 0.3rem / 2.8rem no-repeat;
		}

		span {
			padding: 0 0.8rem 0.4rem;
			border-bottom: 1px solid var(--gray);
			letter-spacing: 0.05em;
			font-family: var(--font-maru);
			font-weight: 500;
			font-size: 1.9rem;
			line-height: calc(28/19);
			display: block;
		}
	}
}

.t_control {
	position: relative;
	border: 1px solid var(--brown);
	border-radius: 4rem;
	background: #F4F0ED;
	padding: 6rem 1.6rem 2.7rem;
	max-width: 36rem;
	margin: 8.8rem 0 0 1.7rem;

	.t_control_ttl {
		position: absolute;
		top: -3.8rem;
		left: 0;
		isolation: isolate;
		font-family: var(--font-maru);
		font-weight: 500;
		width: calc(100% - 4.7rem);
		font-size: 2rem;
		line-height: 1.5;
		padding: 1.3rem 0 1.1rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			right: 0;
			width: calc(100% + 1.8rem);
			height: 100%;
			z-index: -1;
			background: var(--orange);
			border-radius: 0 0.5rem 0.5rem 0;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			right: 0;
			width: 4.6rem;
			aspect-ratio: 95/77;
			z-index: 1;
			background: url(../images/icon_control_sp.png) center / 100% no-repeat;
		}

		strong {
			color: #fff;
			font-weight: 500;
		}
	}

	.t_control_about {
		background: #fff;
		border-radius: 50%;
		width: 12.7rem;
		aspect-ratio: 1/1;
		display: flex;
		align-items: center;
		/* justify-content: center; */
		text-align: center;
		flex-direction: column;
		position: absolute;
		top: 6rem;
		left: 1.6rem;
		padding-top: 0.5rem;
	}

	.t_control_about_q {
		position: relative;
		line-height: 1;
		font-size: 2.1rem;
		font-family: var(--font-en-cardo);
		line-height: calc(25/21);
		color: var(--orange);
	}

	.t_control_about_en {
		color: #C5B4AB;
		font-size: 0.9rem;
		line-height: 1;
		font-family: var(--font-en-cardo);
		letter-spacing: 0.15em;
	}

	.t_control_about_txt {
		margin-top: 0.5rem;
		font-family: var(--font-maru);
		font-weight: 500;
		font-size: 1.8rem;
		line-height: calc(21/18);
		letter-spacing: 0.03em;
	}

	.t_control_txt {
		margin-left: 13.7rem;
		margin-top: 1rem;
		font-family: var(--font-maru);
		font-weight: 500;

		strong {
			font-weight: 500;
			color: var(--orange);
		}
	}

	.t_control_img {
		display: block;
		margin-top: 2.9rem;
		background: rgba(255, 255, 255, 0.7);
		border-radius: 3rem;
		box-shadow: 3.77px 3.77px 15.09px 0px #33282433;
		padding: 0.5rem 0.7rem 1.5rem;
	}
}

.t_guideline {
	background: #fff;
	padding: 14rem 0 3.3rem;
	margin-top: -11rem;

	.t_guideline_head {
		margin: 0 auto;
		width: 33rem;
	}

	.t_guideline_ttl {
		position: relative;
		background: url(../images/icon_guideline.svg) center top / 5.5rem no-repeat;
		padding-top: 6rem;

		span {
			font-family: var(--font-maru);
			font-weight: 500;
			font-size: 2.3rem;
			line-height: calc(28/23);
			color: var(--brown);
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 2rem;

			&:before,
			&:after {
				content: '';
				background: var(--brown);
				height: 1px;
				flex: 1;
			}
		}
	}

	.t_guideline_txt {
		text-align: center;
		margin-top: 1.1rem;
	}
}

.t_aba1c {
	margin: 3rem auto 0;
	max-width: 35rem;
	position: relative;
	isolation: isolate;
	padding: 3rem 2.5rem 4rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		border-radius: 20rem;
		background: url(../images/aba1c_bg_sp.jpg) center / cover no-repeat;
	}

	.t_aba1c_ttl {
		background: var(--orange);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 0.8rem 0 0.7rem;
		width: 28.2rem;
		margin: 0 auto;
		font-family: var(--font-maru);
		border-radius: 4rem;
		color: #fff;
		font-weight: 500;
		text-align: center;
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: -1.5rem;
			left: 50%;
			transform: translateX(-50%);
			aspect-ratio: 19 / 8;
			width: 1.9rem;
			background: var(--main-font-color);
			-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
			clip-path: polygon(50% 100%, 100% 0, 0 0);
			z-index: 1;
		}

		.txt01 {
			font-size: 2.7rem;
			line-height: 1;
			letter-spacing: 0.2em;
		}

		.txt02 {
			line-height: calc(22/15);
			letter-spacing: 0;
		}
	}

	.t_aba1c_block {
		filter: drop-shadow(2.38px 2.38px 9.51px #33282433);
		--gap-col: 1rem;
		--gap-row: 1.7rem;
		--col: 2;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--gap-row) var(--gap-col);
		width: 30rem;
		margin: 3.2rem auto 0;
	}

	.t_aba1c_box {
		--corner-width: 2rem;
		--corner-height: 2rem;
		-webkit-clip-path: polygon(var(--corner-width) 0%, calc(100% - var(--corner-width)) 0%, 100% var(--corner-height), 100% calc(100% - var(--corner-height)), calc(100% - var(--corner-width)) 100%, var(--corner-width) 100%, 0% calc(100% - var(--corner-height)), 0% var(--corner-height));
		clip-path: polygon(var(--corner-width) 0%, calc(100% - var(--corner-width)) 0%, 100% var(--corner-height), 100% calc(100% - var(--corner-height)), calc(100% - var(--corner-width)) 100%, var(--corner-width) 100%, 0% calc(100% - var(--corner-height)), 0% var(--corner-height));
		background: #fff;
		padding: 2rem 1rem 2.2rem;
		width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	}

	.t_aba1c_sugar {
		display: flex;
		gap: 0.3rem;
		justify-content: center;

		img {
			width: 2rem;
		}
	}

	.t_aba1c_box_ttl {
		font-family: var(--font-maru);
		font-weight: 500;
		font-size: 1.6rem;
		line-height: calc(22/16);
		letter-spacing: 0.03em;
		text-align: center;
		border-bottom: 1px solid var(--main-font-color);
		padding-bottom: 1rem;
		margin-top: 0.6rem;
	}

	.t_aba1c_percent {
		font-weight: 500;
		font-family: var(--font-maru);
		color: var(--orange);
		text-align: center;
		margin-top: 0.3rem;
		display: flex;
		align-items: baseline;
		justify-content: center;

		.txt01 {
			line-height: 1;
			font-size: 2.6rem;
			letter-spacing: 0.1em;
		}

		.txt02 {
			letter-spacing: 0.1em;
			font-size: 1.6rem;
			line-height: calc(21/16);
		}
	}
}

.t_treatment {
	padding: 3.7rem 0 6.4rem;
	background: #000;
	position: relative;
	z-index: 1;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	margin-top: -0.1rem;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0rem;
		left: 0;
		width: 100%;
		aspect-ratio: 780/70;
		z-index: 1;
		background: url(../images/half_cricle_sp.png) center top / 100% no-repeat;
	}

	&:after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0rem;
		left: 0;
		width: 100%;
		aspect-ratio: 780/70;
		z-index: 1;
		background: url(../images/half_cricle_sp.png) center top / 100% no-repeat;
		rotate: 180deg;
	}

	.inner {
		position: static;
		padding: 0 1.4rem;

		&:after {
			content: '';
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			height: 100lvh;
			z-index: -10;
			background: url(../images/fixed_bg03_sp.jpg) center / cover no-repeat;
		}
	}

	.t_treatment_head {
		position: relative;
		padding-top: 3.8rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0.6rem;
			width: 5.7rem;
			aspect-ratio: 106/205;
			z-index: 1;
			background: url(../images/treatment_illust01.svg) center / 100% no-repeat;
		}

		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			right: 0.7rem;
			width: 6.1rem;
			aspect-ratio: 114/197;
			z-index: 1;
			background: url(../images/treatment_illust02.svg) center / 100% no-repeat;
		}
	}

	.t_treatment_catch {
		font-size: 2rem;
		letter-spacing: 0.05em;
		line-height: calc(28/20);
		font-family: var(--font-maru);
		font-weight: 500;
		color: #fff;
		text-align: center;
	}

	.t_treatment_ttl {
		background: #fff;
		text-align: center;
		padding: 0.9rem 0 1.2rem;
		font-family: var(--font-maru);
		font-weight: 500;
		font-size: 2.3rem;
		line-height: calc(28/23);
		position: relative;
		border-radius: 0.5rem;
		margin-top: 2.3rem;

		&:before,
		&:after {
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			left: 1.2rem;
			width: 0.7rem;
			aspect-ratio: 1/1;
			z-index: 1;
			background: var(--brown);
			border-radius: 0.2rem;
			translate: 0 -50%;
			rotate: 45deg;
		}

		&:after {
			left: auto;
			right: 1.2rem;
		}
	}

	.t_treatment_block {
		display: grid;
		gap: 1.2rem;
		width: 30rem;
		margin: 2.7rem auto 0;
	}

	.t_treatment_box {
		position: relative;
		isolation: isolate;
		background: #fff;
		box-shadow: 3.49px 3.49px 13.96px 0px #33282433;
		border-radius: 3.5rem;
		padding: 1.5rem 1.7rem 1.6rem 1.8rem;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		align-items: center;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 3.8rem;
			left: 50%;
			translate: -50% 0%;
			width: 54.7rem;
			aspect-ratio: 1/1;
			z-index: -1;
			border-radius: 50%;
			border: 1px solid var(--orange);
		}
	}

	.t_treatment_box_icon {
		background: #fff;
		border-radius: 1rem;
		box-shadow: 2.39px 2.39px 9.56px 0px #33282433;
		position: relative;
		rotate: 45deg;
		width: 4.2rem;
		aspect-ratio: 1/1;
		display: block;

		img {
			width: 1.8rem;
			position: absolute;
			top: 50%;
			left: 50%;
			translate: -50% -50%;
			rotate: -45deg;

			.nutritional & {
				width: 2.6rem;
			}

			.pharmacotherapy & {
				width: 2.4rem;
			}
		}
	}

	.t_treatment_box_ttl {
		margin: 1.2rem 0 0;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;

		.txt01 {
			font-size: 2.1rem;
			line-height: calc(22/21);
			font-family: var(--font-maru);
			font-weight: 500;
			letter-spacing: 0.1em;
			display: flex;
			flex-direction: column;
			align-items: center;

			span {
				letter-spacing: 0.1em;
				font-size: 1.5rem;
				line-height: 1;
				font-weight: 700;
				margin-top: 0.2rem;
			}
		}

		.txt02 {
			opacity: 0.5;
			font-family: var(--font-en-cardo);
			line-height: 1;
			font-size: 1.3rem;
			letter-spacing: 0.15em;
			margin-top: 0.7rem;
		}
	}

	.t_treatment_box_txt {
		margin-top: 0.7rem;
	}
}

.t_faq {
	padding: 0 0 6.3rem;
	position: relative;
	isolation: isolate;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	z-index: 1;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: calc(100% - 3.4rem);
		height: 100%;
		z-index: -5;
		background: url(../images/faq_bg_sp.jpg) center / cover no-repeat;
	}

	&:after {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		height: 100lvh;
		z-index: -10;
		background: url(../images/fixed_bg03_sp.jpg) center / cover no-repeat;
	}

	.inner {
		padding: 0 1.5rem;
		position: static;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: -1;
			box-shadow: 0px 4px 20px 0px #33282440 inset;
		}
	}

	.t_faq_head {
		position: relative;
		z-index: -4;
		isolation: isolate;
		padding: 2.6rem 0 1.7rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			right: 2rem;
			width: 100%;
			height: 100%;
			background: #FFFAF8;
			border-radius: 0 0 25rem 0;
			z-index: -1;
		}
	}

	.t_faq_en {
		font-family: var(--font-en-cardo);
		background: linear-gradient(0deg, rgba(195, 157, 138, 0.8) 21.47%, #5D4B42 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		font-size: 6.7rem;
		line-height: 1.2;
		letter-spacing: 0.2em;
		opacity: 0.6;
		padding-left: 1rem;
	}

	.t_faq_ttl {
		display: flex;
		padding-left: 3.7rem;
		font-size: 2rem;
		font-weight: 500;
		font-family: var(--font-maru);
		display: flex;
		align-items: center;
		gap: 1.3rem;
		margin-right: -1.5rem;
		margin-top: -0.8rem;
		letter-spacing: 0.1em;

		&:after {
			content: '';
			display: block;
			height: 1px;
			flex: 1;
			background: var(--brown);
			z-index: 1;
		}
	}

	.t_faq_block {
		display: grid;
		margin-top: 3.7rem;
		gap: 1.7rem;
	}
}

.t_facility {
	padding: 3.8rem 0 3rem;
	position: relative;
	z-index: 10;
	background: #fff;
	margin-top: -0.1rem;

	.t_facility_ttl {
		padding-left: 2rem;
		gap: 1.2rem;
		align-items: center;
		margin-bottom: 1.2rem;
		display: flex;

		.txt01 {
			background: linear-gradient(0deg, rgba(195, 157, 138, 0.8) 21.47%, #5D4B42 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			font-family: var(--font-en-cardo);
			font-size: 3.6rem;
			line-height: 1.2;
			letter-spacing: 0.1em;
			opacity: 0.6;
		}

		.txt02 {
			font-size: 2rem;
			line-height: 1;
			font-family: var(--font-maru);
			font-weight: 500;
			letter-spacing: 0.1em;
		}
	}
}

.t_mi {
	position: relative;
	z-index: 11;
	margin-top: -0.1rem;
	background: #fff;
	padding: 1.5rem 0 3.5rem;

	.t_mi_head {
		position: relative;
		z-index: -1;
		padding-bottom: 4.5rem;
	}

	.t_mi_ttl {
		background: linear-gradient(0deg, rgba(195, 157, 138, 0.8) 21.47%, #5D4B42 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		font-family: var(--font-en-cardo);
		font-size: 5.5rem;
		line-height: 1;
		letter-spacing: 0.03em;
		position: absolute;
		left: 50%;
		white-space: nowrap;
		transform: translateX(-50%);
		bottom: -1rem;
		opacity: 0.1;
	}

	.t_mi_catch {
		display: flex;
		flex-direction: column;
		gap: 0.8rem;
		align-items: flex-start;

		.line {
			background: var(--orange);
			overflow: hidden;
			font-family: var(--font-maru);
			border-radius: 0.3rem;
			box-shadow: 0px 1.82px 1.82px 0px #00000040;
			font-size: 1.9rem;
			font-weight: 500;
			color: var(--white);
			letter-spacing: 0.1em;
			line-height: 1;
			padding: 0.7rem 1rem 0.8rem 1.8rem;
			position: relative;

			&:before {
				content: '';
				display: block;
				position: absolute;
				top: 0;
				left: 0;
				width: 1rem;
				height: 100%;
				z-index: 1;
				background: #FFA365;
			}

			span {
				letter-spacing: 0.1em;
				display: block;
				padding: 0 2.1rem;
				position: relative;

				&:before,
				&:after {
					content: '';
					display: block;
					position: absolute;
					top: 50%;
					transform: translateY(-50%);
					left: 0;
					width: 1.8rem;
					aspect-ratio: 1/1;
					z-index: 1;
					background: url(../images/icon_slash_left_sp.svg) center / 100% no-repeat;
				}

				&:after {
					left: auto;
					right: 0;
					background-image: url(../images/icon_slash_right_sp.svg);
				}
			}
		}
	}

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

	.t_mi_slider_item {}

	.t_mi_box {
		position: relative;
		isolation: isolate;
		overflow: hidden;
		border-radius: 0.2rem;
		box-shadow: 1.98px 1.98px 3.97px 0px #3328241A;
		padding: 1.5rem 1.5rem 2.5rem;

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: -1;
			opacity: 0.2;
			background: url(../images/media_bg.jpg) center / cover no-repeat;
		}

		.t_mi_box_head {
			display: flex;
			gap: 0.8rem;
			align-items: center;

			.icon {
				border-radius: 50%;
				overflow: hidden;
				width: 5.8rem;
			}

			.wrap {
				flex: 1;
			}

			.ttl {
				font-family: var(--font-en-cardo);
				line-height: 1;
				letter-spacing: 0.1em;
				font-size: 1.6rem;
				color: var(--brown);
				display: flex;
				align-items: center;
				gap: 0.8rem;

				&:after {
					content: '';
					display: block;
					height: 1px;
					z-index: 1;
					flex: 1;
					background: #C7BCB6;
				}
			}

			.account {
				color: #fff;
				font-family: var(--font-en-cardo);
				letter-spacing: 0.1em;
				font-size: 1.4rem;
				line-height: 1;
				padding: 0.7rem 1.5rem 0.5rem 1.2rem;
				border-radius: 5rem;
				margin-top: 0.5rem;
				background: var(--brown);
				width: fit-content;
			}
		}

		.t_mi_box_body {
			margin-top: 1.5rem;

			.thumb {
				display: block;
				border-radius: 0.4rem;
				overflow: hidden;
			}
		}

		.t_mi_box_books {
			margin-top: 1.2rem;
			background: rgb(255 255 255 / 0.8);
			padding: 1.5rem 0;
			border-radius: 0.2rem;
		}

		.t_mi_box_list {
			--gap-col: 0.8rem;
			--gap-row: 1rem;
			--col: 4;
			justify-content: center;
			display: flex;
			flex-wrap: wrap;
			gap: var(--gap-row) var(--gap-col);
			margin: 0 auto;
			width: 24rem;
		}

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

.t_line {
	padding: 4.5rem 0 5rem;
	background: url(../images/line_bg_sp.png) center top / 100% no-repeat;

	.t_line_ttl {
		padding-top: 6rem;
		background: url(../images/icon_line02.svg) center top / 5.5rem no-repeat;
		display: flex;
		align-items: center;
		gap: 2rem;
		font-weight: 500;
		font-family: var(--font-maru);
		font-size: 2.3rem;
		line-height: calc(28/23);
		letter-spacing: 0.1em;
		color: var(--brown);
		justify-content: center;

		&:before,
		&:after {
			content: '';
			display: block;
			height: 1px;
			background: var(--brown);
			z-index: 1;
			flex: 1;
		}
	}

	.t_line_catch {
		margin-top: 2.5rem;
		background: #fff;
		position: relative;
		filter: drop-shadow(5px 5px 20px #33282433);
		transform: translateZ(0);
		text-align: center;
		padding: 1rem 0;
		border-radius: 5rem;
		font-size: 1.8rem;
		letter-spacing: 0.03em;
		line-height: calc(23/18);
		font-weight: 500;
		font-family: var(--font-maru);

		&:before {
			content: '';
			display: block;
			position: absolute;
			top: calc(100% - 0.1rem);
			left: 50%;
			transform: translateX(-50%);
			width: 1.8rem;
			aspect-ratio: 18/9;
			z-index: 1;
			-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
			clip-path: polygon(50% 100%, 100% 0, 0 0);
			background: #fff;
		}

		strong {
			font-weight: 500;
			color: #70A343;
		}
	}

	.t_line_block {
		margin-top: 2.9rem;
		display: grid;
		gap: 4.5rem;
	}

	.t_line_item {
		border: 1px solid #C7BCB6;
		border-radius: 1rem;
		padding: 2rem;
		background: #fff;
		position: relative;

		&:before {
			content: '';
			display: block;
			position: absolute;
			bottom: -3rem;
			left: 50%;
			transform: translateX(-50%);
			width: 3rem;
			height: 1.1rem;
			z-index: 1;
			background: #5D4B42;
			-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
			clip-path: polygon(50% 100%, 100% 0, 0 0);
		}

		&:last-of-type:before {
			display: none;
		}
	}

	.t_line_item_img {
		border-radius: 0.5rem;
		display: block;
		overflow: hidden;
	}

	.t_line_item_step {
		background: #70A343;
		border-radius: 4.1rem;
		display: flex;
		justify-content: center;
		font-size: 1.5rem;
		font-family: var(--font-en-cardo);
		letter-spacing: 0.2em;
		color: #fff;
		margin-top: 1rem;
		align-items: baseline;
		line-height: 1;
		padding: 0.6rem 0 0.5rem;

		span {
			font-size: 2.7rem;
			letter-spacing: 0.15em;
			margin-left: 0.3em;
		}
	}

	.t_line_item_ttl {
		margin-top: 1rem;
		font-size: 2rem;
		line-height: 1.3;
		font-family: var(--font-maru);
		letter-spacing: 0.1em;
		font-weight: 500;
		text-align: center;
	}

	.t_line_item_txt {
		margin-top: 0.5rem;
		text-align: center;
	}
}