@charset "utf-8";
:root {
	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 8vw;

	--main-font-color: #1e2026;
	--black-color: #423e3e;
	--main-color: #213166;
	--gray-color: #cec9c6;
	--gray-color02: #6a6a6a;
	--sub-color: #887943;
	--sub-color-light: #a09469;

	--line-height-wide: 2.3;
	--line-height-narrow: 2;

	--trim-noto-top: 0.6em;
	--trim-noto-bottom: 0.55em;

	--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-en-cg: "Cormorant Garamond", serif;
	--font-en-nm: "Nanum Myeongjo", serif;
	--font-en-cinzel: "Cinzel", serif;
	--font-en-qg: "Qwitcher Grypen", cursive;
	--font-min: YakuHanMPs, "Noto Serif JP", serif;

	--box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.05);
}

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

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

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

/*++++++++++++++++++++++++++++
p_img
++++++++++++++++++++++++++++*/
.p_img {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

/*++++++++++++++++++++++++++++
v_col01
++++++++++++++++++++++++++++*/
:root .v_col01 {
	--col: 1;
}
:root .v_col02 {
	--col: 2;
}
:root .v_col03 {
	--col: 3;
}
:root .v_col04 {
	--col: 4;
}

/*++++++++++++++++++++++++++++
p_btn01
++++++++++++++++++++++++++++*/
.p_btn01 {
	--arrow-size: 2.846vw;
	--arrow-right: 2.046vw;
	--arrow-color: #fff;
	position: relative;
	padding: 1vw 5vw 1vw 5.034vw;
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	font-family: var(--font-min);
	line-height: 1.3;
	text-decoration: none;
	width: 48vw;
	min-height: 11.734vw;
	background: var(--main-color);
	color: #fff;
	border-radius: 0.5rem;
	border: 1px solid var(--main-color);
}

.p_btn01::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--arrow-right);
	width: var(--arrow-size);
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	transform: translateY(-50%);
	background: var(--arrow-color);
}

.p_btn01 span {
	letter-spacing: inherit;
}

.p_btn_en {
	font-family: var(--font-en-cg);
	padding-top: 0.5em;
}

.p_btn02 {
	--arrow-size: 2.134vw;
	--arrow-right: 2.667vw;
	height: 10.667vw;
	padding-left: 3.2vw;
}

.p_btn_white {
	--arrow-color: var(--main-color);
	color: var(--main-color);
	background: #fff;
	border-color: #fff;
}

.p_btn_border {
	border-color: var(--main-color);
}

/*++++++++++++++++++++++++++++
p_table_line
++++++++++++++++++++++++++++*/
.p_table_line {
	--ptpb: 4.267vw;
	--prpl: 2vw;
	--font-size: var(--under-default-font);
}

.p_table_line :is(td, th) {
	font-size: var(--font-size);
	line-height: 1.8;
	letter-spacing: 0.15em;
	padding: var(--ptpb) var(--prpl);
	vertical-align: middle;
}

.p_table_line th {
	width: 6em;
	vertical-align: middle;
	padding-right: 0 !important;
	font-family: var(--font-min);
}

.p_table_line tr:first-of-type {
	border-top: 1px solid var(--gray-color);
}

.p_table_line tr {
	border-bottom: 1px solid var(--gray-color);
}

.p_table_line_mini {
	--font-size: 1.2rem;
}

/*++++++++++++++++++++++++++++
p_map
++++++++++++++++++++++++++++*/
.p_map {
	position: relative;
	overflow: hidden;
	height: 100vw;
	margin-top: var(--under-default-mt);
}

.p_map iframe,
.p_map object,
.p_map embed {
	width: 100%;
	height: 100%;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*++++++++++++++++++++++++++++
m_cat
++++++++++++++++++++++++++++*/
.m_cat {
	display: flex;
	gap: 2vw;
	flex-wrap: wrap;
}

.m_cat_item {
	color: #fff;
	background: var(--sub-color);
	padding: 0.2em 0.73em 0.3em 0.93em;
	line-height: 1.33;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable {
	--col-size: 8.167vw;
}

.m_timetable :is(td, th) {
	font-size: 1.3rem;
	--letter-spacing: 0.2em;
	letter-spacing: var(--letter-spacing);
	text-align: center;

	border-right: 1px solid var(--main-color);
	padding: 0.6em 0 0.45em var(--letter-spacing);
	background: #fff;
	vertical-align: middle;
}

.m_timetable td {
	padding: 0.45em 0 0.45em var(--letter-spacing);
}

.m_timetable td:last-of-type,
.m_timetable thead th:last-of-type {
	border-right: 0;
}

.m_timetable thead th {
	width: var(--col-size);
	padding: 0.3em 0 0.3em var(--letter-spacing);
	background: var(--sub-color);
	font-family: var(--font-min);
	color: #fff;
}

.m_timetable thead th:first-of-type {
	width: calc(100% - var(--col-size) * 7);
	border-right: 1px solid var(--main-color);
}

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

.m_timetable tbody th {
	font-family: var(--font-en-nm);
	letter-spacing: 0.05em;
	padding-left: 0.1em;
	color: var(--main-color);
}

.m_timetable_hosoku {
	--color: #fff;

	color: var(--color);
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	margin-top: 3vw;
}
.m_timetable.m_timetable02 {
	--col-size: 11%;
}
.m_timetable02 thead th {
	color: #fff;
}
.m_timetable02 :is(td, th) {
	line-height: 1.5;
}
.m_timetable02 td {
	font-size: 1.3rem;
}
.m_timetable02 tbody :is(td, th) {
	background: #e9eaf0;
}

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

/*++++++++++++++++++++++++++++
m_name
++++++++++++++++++++++++++++*/
.m_name {
	display: flex;
	font-size: 0.8rem;
	border-bottom: 1px solid var(--main-font-color);
	padding: 0 2vw 3vw;
	position: relative;
	gap: 4vw;
	align-items: flex-end;
}

.m_name_pos {
	font-size: 1.7em;
	letter-spacing: 0.15em;
	line-height: 1.4;
	flex-shrink: 0;
	position: relative;
}

.m_name_ja {
	font-size: 2.4em;
	letter-spacing: 0.15em;
	line-height: 1.4;
	flex-shrink: 0;
	position: relative;
	top: 0.095em;
}

.m_name_en {
	font-size: 1.5em;
	letter-spacing: 0.1em;
	line-height: 1.4;
	font-family: var(--font-en-cg);
	color: var(--main-color);
	flex-shrink: 0;
}

/* toc */
.m_toc {
	background: #e9eaf0;

	padding: 3.667vw 5vw 6.667vw;
	border-radius: 0.5rem;
}

.m_toc_list {
	--gap-col: 4vw;
	--gap-row: 0;
	--col: 1;

	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

.m_toc_list li {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	padding-left: 0;
	font-family: var(--font-main);
}

.m_toc_list li:before {
	opacity: 0;
}

.m_toc_list li a {
	width: 100%;
	position: relative;
	min-height: 11.73vw;
	letter-spacing: 0.2em;
	font-size: 1.3rem;
	padding: 2vw 8vw 2vw 1.33vw;
	border-bottom: 1px solid rgba(33, 49, 102, 0.1);
	text-decoration: none;
	line-height: 1.4;
	display: flex;
	align-items: center;
	color: var(--main-color);
	height: 100%;
}

.m_toc_list li a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 1.6vw;
	width: 2.133vw;
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	background: var(--main-color);
	transform: translateY(-50%);
}

/*++++++++++++++++++++++++++++
m_col
++++++++++++++++++++++++++++*/
.m_col {
	display: flex;
	flex-direction: column;
	gap: 5vw;
	margin-top: var(--under-default-mt);
}

.m_col_item {
	width: 100%;
}

/*++++++++++++++++++++++++++++
m_faq
++++++++++++++++++++++++++++*/
.m_faq {
	margin-top: var(--under-default-mt);
	border: 1px solid rgba(33, 49, 102, 0.3);
	border-radius: 1rem;
	overflow: hidden;
}

.m_faq + .m_faq {
	margin-top: 3vw;
}

.m_faq_head {
	position: relative;
}

.m_faq_head:before,
.m_faq_head:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 4.3vw;
	width: 2.4vw;
	height: 1px;
	z-index: 10;
	background: var(--main-color);
	transform: translateY(-50%);
	transition: 0.5s;
	opacity: 0.8;
}

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

.m_faq_ttl {
	position: relative;
	z-index: 1;
	padding: 3.5vw 11vw 3.3vw 4vw;
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	line-height: 1.5;
	display: flex;
	cursor: pointer;
	font-family: var(--font-min);
	color: var(--main-color);
}

.m_faq_ttl:before {
	content: "Q";
	font-size: 1.8rem;
	font-family: var(--font-en-cg);
	margin-right: 0.3em;
	line-height: 1.13;
}

.m_faq_body {
	padding: 4vw 4vw;
	display: none;
	background: #e9eaf0;
}

.m_faq_txt {
	line-height: var(--line-height-narrow);
}

.on .m_faq_head:after {
	transform: translateY(-50%);
}

/*++++++++++++++++++++++++++++
m_kakomi
++++++++++++++++++++++++++++*/
.m_kakomi {
	background: #f1f1f1;

	padding: 6vw;
	position: relative;
	z-index: 1;

	margin-top: calc(var(--under-default-mt));
}

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

.m_kakomi_has_ttl {
}

.m_kakomi + .m_kakomi {
}

.m_kakomi_ttl {
	position: relative;
	width: 100%;
	color: var(--main-color);
	padding: 0 0 3vw;
	line-height: 1.4;
	letter-spacing: 0.15em;
	font-size: 1.4rem;
	z-index: 10;
	font-family: var(--font-min);
	text-align: center;
	border-bottom: 1px solid rgba(33, 49, 102, 0.3);
	margin-bottom: 4vw;
}

.m_kakomi_ttl:before {
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 20vw;
	height: 1px;
	z-index: 1;
	transform: translateX(-50%);
	background: var(--main-color);
}

.m_kakomi .m_kakomi_ttl + * {
	margin-top: 0;
}

.m_kakomi02 {
	background: #f1f1f1;
	padding: 8vw 6vw;
	position: relative;
	z-index: 1;

	margin-top: var(--under-default-mt);
}

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

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

.m_kakomi02 p:not(.p_h5_style) {
	line-height: var(--line-height-narrow);
}

.m_kakomi02_box + .m_kakomi02_box {
	margin-top: 8vw;
	padding-top: 8vw;
	border-top: 1px solid rgba(33, 49, 102, 0.3);
}

.m_kakomi03 {
	padding: 5vw;
	border: 2px solid var(--gray-color);
	border-radius: 2rem;
	margin-top: var(--under-default-mt);
	background: #fff;
}

.m_kakomi03_box + .m_kakomi03_box {
	margin-top: 8vw;
}

/*++++++++++++++++++++++++++++
m_imgbox
++++++++++++++++++++++++++++*/
.m_imgbox_head {
	margin-bottom: 5vw;
}

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

/*++++++++++++++++++++++++++++
m_btn_wrap
++++++++++++++++++++++++++++*/
.m_btn_wrap {
	margin-top: 3vw;
	display: flex;
	flex-direction: column;
	gap: 3vw;
}

.m_btn_wrap .p_btn01 {
	width: 100%;
}

/*++++++++++++++++++++++++++++
m_flow
++++++++++++++++++++++++++++*/
.m_flow {
	--add-mt: 7vw;
	margin-top: calc(var(--under-default-mt) + var(--add-mt));
}

.m_flow :is(.m_kakomi, .m_kakomi02) {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 0.5rem;
}

.m_flow_item {
	padding: 8vw 6vw 6vw;
	position: relative;
	counter-increment: flow_counter;
	color: #fff;
	background: var(--main-color);
}

.m_flow_item + .m_flow_item {
	--mt: 18vw;
	margin-top: var(--mt);
}

.m_flow_item + .m_flow_item:after {
	content: "";
	display: block;
	position: absolute;
	top: calc(-1 * var(--mt) / 2);
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	width: 5vw;
	opacity: 0.3;
	aspect-ratio: 20/15;
	background: var(--main-color);
	-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
	clip-path: polygon(50% 100%, 100% 0, 0 0);
}

.m_flow_item p {
	line-height: var(--line-height-narrow);
}

.m_flow_item .m_flow_ttl {
	font-size: 1.45rem;
	letter-spacing: 0.15em;
	position: relative;
	line-height: 1.45;
	margin-bottom: 6vw;
	font-family: var(--font-min);
	display: flex;
	align-items: center;
}

.m_flow_item .m_flow_ttl span {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding: 2.4vw 0 2.4vw 2vw;
	flex: 1;
}

.m_flow_step {
	width: 12vw;
	aspect-ratio: 1/1;
	background: url(../images/icon_point.svg) center center / 100% no-repeat;
	font-family: var(--font-en-cg);
	position: relative;
	z-index: 1;
	top: 0;
	left: 0;
	padding-top: 0.1rem;
	font-size: 0.9rem;
	font-family: var(--font-en-cg);
	color: var(--main-color);
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	line-height: 1;
	flex-shrink: 0;
	margin-right: 0.8rem;
}

.m_flow_step:after {
	content: "0" counter(flow_counter);
	font-size: 2.085em;
	font-family: var(--font-en-nm);
	line-height: 1;
	margin-top: 0.1em;
}

/*++++++++++++++++++++++++++++
m_slider
++++++++++++++++++++++++++++*/
.m_slider {
	--img-size: 73vw;
	--gutter: 1.5vw;
	--btn-position: -5vw;
	--btn-size: 10vw;
	--ratio-w: 750;
	--ratio-h: 500;
	--ratio: var(--ratio-w) / var(--ratio-h);
}

.m_slider .slick-list {
	z-index: 1;
}
.m_slider_main {
	max-width: calc(var(--img-size) + var(--gutter) * 2);
	margin: 0 auto;
	position: relative;
}

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

.m_slider_main .m_slider_item {
	margin: 0 var(--gutter);
	width: var(--img-size);
	counter-increment: counter;
	position: relative;
}

.m_slider_main .m_slider_num {
	position: absolute;
	padding: 0 2vw;
	z-index: 10;
	color: #fff;
	background: var(--main-color);
	font-family: var(--font-min);
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	line-height: 2;
}

.m_slider_main .m_slider_num span {
	order: 1;
}

.m_slider_main .m_slider_num:before {
	order: 2;
	content: "";
	display: block;
	position: relative;
	width: 2vw;
	height: 1px;
	z-index: 1;
	opacity: 0.5;
	background: #fff;
	margin: 0 1vw;
}
.m_slider_main .m_slider_num em {
	content: "0" counter(counter);
	display: block;
	position: relative;
	font-family: var(--font-en-nm);
	order: 3;
}

.m_slider_main figure {
	position: relative;
	z-index: 1;
}

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

.m_slider_main figcaption {
	--line-width: 5vw;
	display: block;
	line-height: 1.5;
	font-size: 1.3rem;
	position: relative;
	margin-top: 3vw;
	padding-left: 3vw;
	color: var(--main-color);
	font-family: var(--font-min);
	padding-left: calc(var(--line-width) + 2vw);
}

.m_slider_main figcaption:before {
	content: "";
	display: block;
	position: absolute;
	top: 2.4vw;
	left: 0;
	width: var(--line-width);
	height: 1px;
	z-index: 1;
	background: var(--main-color);
}

.m_slider .slick-arrow {
	position: absolute;
	top: calc(var(--ratio-h) / var(--ratio-w) * var(--img-size) / 2);
	transform: translateY(-50%);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	width: var(--btn-size);
	aspect-ratio: 1/1;
	z-index: 10;
	cursor: pointer;
	background: url(../images/btn_arrow.svg) center center / 100% no-repeat;
}

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

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

.m_slider_thumb {
	display: flex;
	flex-wrap: wrap;
}

.m_slider_thumb .slick-track {
	--gap-col: 1.5vw;
	--gap-row: 1.5vw;
	--col: 3;
	width: 100% !important;
	transform: unset !important;

	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);

	margin-top: 5vw;
}

.m_slider_thumb_item {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	) !important;
	display: block !important;
	float: none !important;
	position: relative;
	cursor: pointer;
}

.slick-current.m_slider_thumb_item:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	border: 1px solid var(--main-color);
}

.m_slider_thumb img {
	position: relative;
	z-index: 1;
	border-radius: 0;
	aspect-ratio: var(--ratio);
	object-fit: cover;
	font-family: "object-fit: cover;";
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}

.m_slider_thumb .slick-track:before {
	display: none;
}
.m_slider_thumb .slick-track:after {
	display: none;
}
/*++++++++++++++++++++++++++++
m_clinic
++++++++++++++++++++++++++++*/
.m_clinic {
}

.m_clinic_head {
}

.m_clinic_logo {
	width: 71.2vw;
	margin-bottom: 6.4vw;
}

.m_clinic_ttl {
	color: var(--sub-color);
	font-size: 1.8rem;
	line-height: 1;
	display: flex;
	align-items: center;
	font-family: var(--font-en-cg);
	margin-bottom: 5.3vw;
	letter-spacing: 0;
}

.m_clinic_ttl:after {
	content: "";
	display: block;
	height: 1px;
	z-index: 1;
	background: var(--sub-color);
	flex: 1;
	margin-left: 5.334vw;
	position: relative;
	top: 0.6vw;
}

.m_clinic_address {
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	line-height: 1.8;
}

.m_clinic_address a {
	font-family: var(--font-en-cg);
	color: var(--sub-color);
	display: block;
}

.m_clinic_btn {
	margin-top: 5.334vw;
}

.m_clinic_tel {
	margin-top: 3.034vw;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	font-family: var(--font-en-cg);
	line-height: 1.6;
}

.m_clinic_tel .tel_link {
	margin-left: 2.367vw;
}

.m_clinic_tel .tel_link a,
.m_clinic_tel .tel_link {
	letter-spacing: 0.1em;
	font-size: 2rem;
	line-height: 1.6;
	font-family: var(--font-en-cinzel);
	text-decoration: none;
	position: relative;
	top: 0.12em;
}

.m_clinic_target {
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	margin-top: 3.334vw;
}

.m_clinic_body {
	margin-top: 8.2vw;
}

.m_clinic_access02 {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	padding: 1.867vw 3.2vw;
	position: relative;
	color: #fff;
	border-radius: 0.5rem;
	text-decoration: none;
	margin-top: 6vw;
}

.m_clinic_access02:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 2.667vw;
	width: 2.134vw;
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	transform: translateY(-50%);
	background: #fff;
}

.m_clinic_access02_icon {
	width: 8vw;
	background: var(--sub-color-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	margin-right: 2.667vw;
}

.m_clinic_access02_icon figure {
	width: 4.267vw;
}

.m_clinic_access02_icon_txt01 {
	display: flex;
	flex-direction: column;
	font-family: var(--font-min);
	margin-right: 5.334vw;
}

.m_clinic_access02_icon_txt01 span {
	font-size: 1.2rem;
	letter-spacing: 0.25em;
	line-height: 1.3;
}

.m_clinic_access02_icon_txt01 em {
	font-size: 1.3rem;
	letter-spacing: 0.25em;
	line-height: 1.3;
	margin-top: 0.5vw;
}

.m_clinic_access02_icon_txt02 {
	font-family: var(--font-en-cg);
	font-size: 1.3rem;
}

.m_clinic_sns {
	margin-top: 8vw;
	display: flex;

	font-family: var(--font-en-cg);
	padding-bottom: 2.4vw;
}

.m_clinic_sns dt {
	font-size: 1.4rem;
	line-height: 1.3;
}

.m_clinic_sns dd {
	font-size: 1.3rem;
	line-height: 1.3;
	position: relative;
	padding-left: 6.667vw;
}

.m_clinic_sns dd:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 3.334vw;
	width: 1px;
	height: 5.334vw;
	z-index: 1;
	transform: translateY(-50%) rotate(15deg);
	background: var(--gray-color02);
}

.m_clinic_sns dd a {
	text-decoration: none;
	position: relative;
	display: block;
	padding-left: 2.134vw;
}

.m_clinic_sns dd a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.067vw;
	aspect-ratio: 1/1;
	z-index: 1;
	background: var(--sub-color);
	border-radius: 50%;
	transform: translateY(-50%);
}

/*++++++++++++++++++++++++++++
m_blog
++++++++++++++++++++++++++++*/
.m_blog_inner {
	text-decoration: none;
	display: block;
}

.m_blog_img {
	aspect-ratio: 180/120;
	margin-bottom: 5vw;
}

.m_blog_date {
	font-size: 1.2rem;
	line-height: 1;
	font-family: var(--font-en-nm);
	margin-bottom: 2.4vw;
	color: var(--main-color);
}

.m_blog_ttl {
	line-height: 1.6;
	font-size: 1.3rem;
}

.m_blog_ttl span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.m_blog_btn {
	margin-top: 5vw;
}

/*++++++++++++++++++++++++++++
m_profile
++++++++++++++++++++++++++++*/
.m_profile {
	position: relative;
	padding: 10vw 0;
	color: var(--main-color);
	margin-top: var(--under-default-mt);
}

.m_profile:before {
	--gutter: 2.667vw;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(-1 * var(--inner-padding) + var(--gutter));
	width: calc(100vw - var(--gutter) * 2);
	height: 100%;
	z-index: 1;
	background: #f1f1f1;
}

.m_profile_ttl {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 5vw;
	z-index: 10;
}

.m_profile_ttl:before {
	content: "";
	display: block;
	position: absolute;
	top: 4.4vw;
	right: 103%;
	width: 100vw;
	height: 1px;
	z-index: 1;
	background: var(--main-color);
}

.m_profile_ttl span {
	font-family: var(--font-min);
	font-size: 1.7rem;
	margin-right: 3vw;
	letter-spacing: 0.2em;
}

.m_profile_ttl em {
	font-family: var(--font-en-cg);
	color: var(--sub-color);
	font-size: 1.6rem;
	letter-spacing: 0;
}

.m_profile_block {
	position: relative;
	z-index: 10;
	gap: 7vw;
	display: flex;
	flex-direction: column;
}

/*++++++++++++++++++++++++++++
m_data
++++++++++++++++++++++++++++*/
.m_data {
}

.m_data + .m_data {
	margin-top: 7vw;
}

.m_data_ttl {
	background: rgba(33, 49, 102, 0.12);
	width: fit-content;
	padding: 0.3vw 2.3vw;
	line-height: 1.4;
	font-family: var(--font-min);
	margin-bottom: 4vw;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
}

.m_data_list_col02 {
	flex-direction: column;
	display: flex;
	gap: 1.8vw;
}

.m_data_list {
	flex-direction: column;
	display: flex;
	gap: 1.8vw;
}

.m_data_list li {
	display: flex;
	font-size: var(--under-default-font);
	line-height: 1.6;
}

.m_data_list li span {
	flex-shrink: 0;
	font-family: var(--font-en-nm);
	color: var(--sub-color);
	margin-right: 5vw;
	position: relative;
	top: 0.1em;
}

.m_data_list + .m_data_list {
	margin-top: 0;
}

/*++++++++++++++++++++++++++++
lu_clinic
++++++++++++++++++++++++++++*/
.lu_clinic {
	position: relative;
	padding: 10vw 0;
	margin-top: var(--under-default-mt);
}

.lu_clinic:before {
	--gutter: 2.667vw;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(-1 * var(--inner-padding) + var(--gutter));
	width: calc(100vw - var(--gutter) * 2);
	height: 100%;
	z-index: 1;
	background: var(--main-color);
}

.lu_clinic_head {
	position: relative;
	z-index: 10;
}

.lu_clinic_head .oft {
	aspect-ratio: 800/530;
}

.lu_clinic_body {
	position: relative;
	z-index: 10;
	margin-top: 8vw;
}

.lu_clinic .p_table_line {
	color: rgba(255, 255, 255, 0.8);
}

.lu_clinic .m_timetable thead th {
	color: rgba(255, 255, 255, 0.8);
}

.lu_clinic .m_timetable_hosoku {
	color: rgba(255, 255, 255, 0.8);
}

/*++++++++++++++++++++++++++++
lu_greeting
++++++++++++++++++++++++++++*/
.lu_greeting {
	position: relative;
	padding: 10vw 0;
	color: rgba(255, 255, 255, 0.8);
	margin-top: var(--under-default-mt);
}

.lu_greeting:before {
	--gutter: 2.667vw;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(-1 * var(--inner-padding) + var(--gutter));
	width: calc(100vw - var(--gutter) * 2);
	height: 100%;
	z-index: 1;
	background: var(--main-color);
}

.lu_greeting:after {
	content: "Greeting";
	display: block;
	position: absolute;
	bottom: 0.2em;
	right: 0;
	z-index: 1;
	font-size: 8rem;
	letter-spacing: 0;
	font-family: var(--font-en-cg);
	opacity: 0.08;
	color: #fff;
	line-height: 1;
}

.lu_greeting_img {
	position: relative;
	z-index: 10;
	max-width: 65vw;
	margin: 0 auto;
}

.lu_greeting_body {
	position: relative;
	z-index: 10;
	margin-top: 8vw;
}

.lu_greeting_ttl {
	position: relative;
	color: var(--sub-color);
	font-family: var(--font-en-cg);
	font-size: 1.8rem;
	margin-bottom: 3vw;
	line-height: 1;
	letter-spacing: 0;
}

.lu_greeting_ttl:before {
	content: "";
	display: block;
	position: absolute;
	top: 2vw;
	left: -2vw;
	width: 6vw;
	height: 1px;
	z-index: 1;
	background: var(--sub-color);
	transform: translateX(-100%);
}

.lu_greeting_name {
	display: flex;
	font-size: 1.7rem;
	align-items: center;
	font-family: var(--font-min);
	justify-content: flex-end;
}

.lu_greeting_name em {
	font-size: 1.4rem;
	margin-right: 3vw;
	position: relative;
	top: 0.11em;
}

/*++++++++++++++++++++++++++++
lu_doctor
++++++++++++++++++++++++++++*/
.lu_doctor {
	color: var(--main-color);
}

.lu_doctor + .lu_doctor {
	margin-top: 8vw;
	padding-top: 8vw;
	border-top: 1px solid #e9eaf0;
}
/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
layout
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
l_header
++++++++++++++++++++++++++++*/
.l_header_logo a {
	display: block;
	width: 100%;
}
.nav_special .nav_depth01_ttl:before {
	background-position: center;
	background-repeat: no-repeat;
}

.nav_general .nav_depth01_ttl:before {
	background-image: url(../images/nav_img01.jpg);
}

.nav_gastro .nav_depth01_ttl:before {
	background-image: url(../images/nav_img02.jpg);
}

.nav_checkup .nav_depth01_ttl:before {
	background-image: url(../images/nav_img03.jpg);
}

.nav_company .nav_depth01_ttl:before {
	background-image: url(../images/nav_img04.jpg);
}

/*++++++++++++++++++++++++++++
l_mv
++++++++++++++++++++++++++++*/
.l_mv {
	margin-top: var(--header-inner-height);
	background: #f2f6f9;
	position: relative;
}

.l_mv_inner {
	position: relative;
	z-index: 5;
}

.l_mv_slider_item:where(:nth-of-type(n + 2)) {
	display: none;
}

.l_mv .slick-dots {
	position: absolute;
	left: 4vw;
	bottom: 16.1vw;
	display: flex;
	text-align: center;
	line-height: 1;
	gap: 2.134vw;
}

.l_mv .slick-dots li {
	position: relative;
	display: inline-block;
	width: 5.334vw;
	aspect-ratio: 1/1;
	font-size: 1rem;
	font-family: var(--font-min);
	border-radius: 50%;
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.l_mv .slick-dots li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	width: 0;
	height: 1px;
	border: 0;
	background: var(--main-color);
	opacity: 0;
	transition: width 5000ms;
}

.l_mv .slick-dots span {
	opacity: 0.5;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.l_mv .slick-dots li svg {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-90deg);
}

.l_mv .slick-dots li svg .circle-animation {
	stroke-dasharray: 314;
	stroke-dashoffset: 314;
}

.slick-active .circle-animation {
	animation: dash var(--mv-slider-dots-speed) linear forwards;
	/* animation-play-state: paused; */
}
.js_end_first_slide .slick-active .circle-animation {
	animation: dash var(--mv-slider-dots-speed02) linear forwards;
}
/* .slick-dots.initialized .slick-active .circle-animation {
	animation-play-state: running;
} */

@keyframes dash {
	100% {
		stroke-dashoffset: 0;
	}
}

.l_mv .slick-dots .slick-active span {
	opacity: 1;
}

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

.l_mv .slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	width: 100%;
	height: 100%;
	border: 0;
	background: var(--main-font-color);
	opacity: 0.3;
}

.l_mv li.slick-active button:before {
	opacity: 1;
	width: 100%;
}

.l_mv_head {
	position: absolute;
	z-index: 10;
	top: 24.367vw;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 5.334vw;
}

.l_mv_en {
	position: relative;
	z-index: 10;
	line-height: 1.1;
	font-family: var(--font-en-cg);
	font-size: 3.6rem;
	letter-spacing: 0.1em;
	color: var(--main-color);
}

.l_mv_catch {
	position: relative;
	font-size: 2.2rem;
	letter-spacing: 0.3em;
	margin-top: 5.167vw;
	font-family: var(--font-min);
	z-index: 10;
	display: flex;
	flex-direction: column;
	color: var(--main-color);
	min-height: 39.267vw;
}

.l_mv_catch span {
	line-height: 1.6;
	font-size: 1.3rem;
	letter-spacing: 0.2em;
}

.l_mv_catch em {
	line-height: 1.6;
	font-size: 2.2rem;
	letter-spacing: 0.23em;
	/* display: block; */
	margin-top: 1vw;
}

.l_mv_badge {
	position: absolute;
	right: -4vw;
	top: 6vw;
	width: 49.067vw;
	z-index: 5;
}

.l_mv_point {
	z-index: 1;
	position: relative;
	background: #fff;
	box-shadow: var(--box-shadow);
	margin-top: 0;
	margin-left: auto;
	width: 72vw;
}

.l_mv_point_ttl {
	background: var(--main-color);
	color: #fff;
	font-family: var(--font-en-cg);
	width: fit-content;
	padding: 0.8vw 1.6vw;
	line-height: 1.1;
	letter-spacing: 0.1em;
	font-size: 1.3rem;
}

.l_mv_point_txt {
	display: flex;
	flex-direction: column;
	padding: 1.367vw 5.334vw 2.267vw;
}

.l_mv_point_txt span {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: 0.2em;
	font-family: var(--font-min);
	color: var(--main-color);
}

.l_mv_point_txt span:before {
	content: "";
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: 8vw;
	height: 1px;
	background: var(--main-color);
	z-index: 1;
	opacity: 0.3;
	margin-right: 2.667vw;
}

.l_mv_point_txt span:nth-of-type(2):before {
	width: 13.334vw;
}

.l_mv_body {
	padding: 0;

	position: relative;
	z-index: 1;
}

.l_mv_img {
	overflow: hidden;
	display: block;
	aspect-ratio: 375/520;
	--scale: scale(1.15);
}

.js_animation_slider .l_mv_img img {
	animation: zoomUp var(--mv-slider-img-speed) linear 0s normal both;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: var(--scale);
	}
}

.l_mv_bnr {
	padding: 0 2.667vw;
	margin-top: -8.4vw;
	position: relative;
	bottom: 0;
	left: 0;
	z-index: 15;
}

.l_mv_scroll {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	margin-top: 3.5vw;
	pointer-events: none;
	--height: 5.334vw;
}

.l_mv_scroll_txt {
	text-decoration: none;
	position: relative;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	font-family: var(--font-min);
	height: 10.134vw;
	display: flex;
	align-items: flex-start;
	line-height: 0.9;
	pointer-events: auto;
	color: var(--main-color);
}

.l_mv_scroll_txt:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: var(--height);
	z-index: 1;
	background: var(--gray-color);
}

.l_mv_scroll_txt:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 0px;
	z-index: 2;
	background: var(--main-font-color);
	animation: lineAnimationBottom 2.4s ease infinite 0.5s normal;
}

@keyframes lineAnimationBottom {
	0% {
		height: 0;
		bottom: var(--height);
	}

	35% {
		height: var(--height);
		bottom: 0;
	}
	65% {
		height: var(--height);
		bottom: 0;
	}

	100% {
		height: 0;
		bottom: 0;
	}
}

@keyframes lineAnimationTop {
	0% {
		height: 0;
		top: 0;
	}

	35% {
		height: var(--height);
		top: 0;
	}
	65% {
		height: var(--height);
		top: 0;
	}

	100% {
		height: 0;
		top: var(--height);
	}
}
/*++++++++++++++++++++++++++++
l_bnr_new
++++++++++++++++++++++++++++*/
.l_bnr_new {
	margin: 5.4vw calc(-1 * var(--inner-padding) + 2.667vw) 0;
}

/*++++++++++++++++++++++++++++
l_news
++++++++++++++++++++++++++++*/
.l_news {
	margin-top: 11.8vw;
}

.l_news_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 9.167vw;
}

.l_news_ttl {
	display: flex;
	flex-direction: column;
	color: var(--main-color);
	position: relative;
	top: 0;
}

.l_news_ttl span {
	font-size: 3.6rem;
	letter-spacing: 0;
	font-family: var(--font-en-cg);
	line-height: 1;
}

.l_news_ttl em {
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.25em;
	margin-top: 2.7vw;
	font-family: var(--font-min);
}

.l_news_btn {
	padding-left: 5.334vw;
	width: 37.334vw;
	min-height: 11.734vw;
	position: relative;
	top: 1.4vw;
}

.l_news_list {
	display: flex;
	flex-direction: column;
	gap: 3.63vw;
}

.l_news_item {
	border-bottom: rgba(33, 49, 102, 0.3) 1px solid;
	padding: 0 0 5.134vw;
}

.l_news_item_inner {
	text-decoration: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.l_news_item_date {
	font-size: 1.2rem;
	font-family: var(--font-en-nm);
	color: var(--main-color);
	line-height: 1;
	margin-right: 5.334vw;
	letter-spacing: 0.05em;
}

.l_news_item_txt {
	width: 100%;
	line-height: 1.333;
	position: relative;
	padding-right: 5.267vw;
	margin-top: 3.6vw;
	font-size: 1.3rem;
	letter-spacing: 0.15em;
}

.l_news_item_txt:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 2.846vw;
	aspect-ratio: 1/1;
	z-index: 1;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	background: var(--main-color);
	transform: translateY(-50%);
}

/*++++++++++++++++++++++++++++
l_news02
++++++++++++++++++++++++++++*/
.l_news02 {
	margin-top: 10vw;
}

.l_news02_block {
	border: 2px solid var(--main-color);
	border-radius: 0;
	background: #fff;
}

.l_news02_head {
	padding: 6.5vw 5vw 7vw;
}

.l_news02_head_ttl {
	color: var(--main-color);
	font-size: 1.8rem;
	letter-spacing: 0.25em;
	line-height: 1.5;
	margin-bottom: 6vw;
	text-align: center;
	font-family: var(--font-min);
}

.l_news02_head_ttl_en {
	color: var(--sub-color);
	font-family: var(--font-en-cg);
	font-size: 1.5rem;
}

.l_news02_head_list {
	display: flex;
	flex-direction: column;
	gap: 5vw;
}

.l_news02_head_item {
	text-decoration: none;
}

.l_news02_head_item_ttl {
	color: var(--main-color);
	border-bottom: 1px solid var(--main-color);
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	line-height: 1.5;
	padding-bottom: 2vw;
	margin-bottom: 3vw;
	font-family: var(--font-min);
}

.l_news02_head_item_txt {
	line-height: var(--line-height-wide);
	font-size: 1.3rem;
	letter-spacing: 0.15em;
}

.l_news02_head_item_txt strong {
	background: #e1d29a;
	color: var(--main-color);
	font-weight: 400;
	padding: 0 0.15em;
	letter-spacing: inherit;
}

.l_news02_body {
	border-top: 1px solid var(--gray-color);
	padding: 6vw 5vw 7vw;
}

.l_news02_body_col {
	display: flex;
	flex-direction: column;
	gap: 3vw;
}

.l_news02_body_item {
	background: rgba(206, 201, 198, 0.2);
	border-radius: 1rem;
	padding: 4vw;
}

.l_news02_body_item_ttl {
	background: var(--sub-color);
	color: #fff;
	font-size: 1.5rem;
	letter-spacing: 0.25em;
	line-height: 1.5;
	padding: 0.6vw 3vw 0.7vw;
	margin-bottom: 5vw;
	text-align: center;
	font-family: var(--font-min);
}

.l_news02_body_item_list {
	--gap-col: 4vw;
	--gap-row: 3vw;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

.l_news02_body_item_list li {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	position: relative;
	padding-left: 4.2vw;
	font-size: 1.3rem;
	letter-spacing: 0.15em;
}

.l_news02_body_item_list li:before {
	content: "";
	display: block;
	position: absolute;
	top: 2.8vw;
	left: 0;
	width: 1.5vw;
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 50%;
	background: var(--main-color);
}

.l_news02_body_item_table {
	--ptpb: 4.267vw;
	--prpl: 2vw;
	--font-size: 1.3rem;
}

.l_news02_body_item_table :is(td, th) {
	font-size: var(--font-size);
	line-height: 1.8;
	letter-spacing: 0.15em;
	padding: var(--ptpb) var(--prpl);
	vertical-align: middle;
}

.l_news02_body_item_table tr {
	border-bottom: 1px solid var(--gray-color);
}

.l_news02_body_item_table tr:first-of-type :is(td, th) {
	padding-top: 0;
}

.l_news02_body_item_table th {
	width: 5.1em;
	vertical-align: middle;
	padding-right: 0;
	padding-left: 0;
	color: var(--main-color);
	font-family: var(--font-min);
}

/*++++++++++++++++++++++++++++
l_blog
++++++++++++++++++++++++++++*/
.l_blog {
	margin-top: 12vw;
}

.l_blog_ttl {
	color: var(--main-color);
	display: flex;
	align-items: center;
	margin-bottom: 6.2vw;
}

.l_blog_ttl span {
	font-size: 3.6rem;
	letter-spacing: 0;
	line-height: 1;
	font-family: var(--font-en-cg);
	margin-right: 4.1vw;
}

.l_blog_ttl em {
	font-family: var(--font-min);
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.22em;
}

.l_blog_list {
	display: flex;
	overflow-x: auto;
	gap: 8vw;
}
.l_blog_btn {
	margin: 8vw auto 0;
}

.l_blog_list .m_blog {
	width: 48vw;
}

/*++++++++++++++++++++++++++++
l_clinic
++++++++++++++++++++++++++++*/
.l_clinic {
	color: #fff;
	background: var(--main-color) url(../images/top_clinic_bg_sp.png?01) center
		bottom / 100% no-repeat;
	margin-top: 10.3vw;
	padding-top: 12vw;
	padding-bottom: 11.7vw;
}
/*++++++++++++++++++++++++++++
l_greeting
++++++++++++++++++++++++++++*/
.l_greeting {
	margin-top: 5vw;
	color: #fff;
	padding: 0 2.667vw;
}

.l_greeting_block {
	position: relative;
	padding-bottom: 18.9vw;
}

.l_greeting_block:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(-1 * var(--inner-padding));
	width: calc(100vw - 2 * 2.667vw);
	height: 100%;
	z-index: 1;
	background: var(--main-color);
}

.l_greeting_body {
	position: relative;
	z-index: 10;
}

.l_greeting_ttl {
	font-family: var(--font-en-cg);
	padding-top: 18vw;
	margin-bottom: 5vw;
}

.l_greeting_ttl span {
	line-height: 1;
	letter-spacing: 0;
	color: var(--sub-color);
	position: relative;
	display: flex;
	align-items: center;
	z-index: 10;
	padding-left: 5.3vw;
}

.l_greeting_ttl span:before {
	content: "";
	display: block;
	position: absolute;
	width: 5.334vw;
	height: 1px;
	z-index: 1;
	background: var(--sub-color);
	margin-right: 2.667vw;
	left: -2.4vw;
	top: 2vw;
}

.l_greeting_ttl em {
	line-height: 1;
	font-size: 9.6rem;
	letter-spacing: 0;
	opacity: 0.08;
	color: #f1f1f1;
	position: absolute;
	right: -8vw;
	top: 3.1vw;
	z-index: 1;
}

.l_greeting_txt {
}

.l_greeting_txt p {
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	line-height: 2.1;
}

.l_greeting_txt p + p {
	margin-top: 1.5em;
}

.l_greeting_name {
	text-align: right;
	font-size: 1.6rem;
	letter-spacing: 0.25em;
	line-height: 1;
	font-family: var(--font-min);
	margin-top: 5vw;
}

.l_greeting_name span {
	font-size: 1.3rem;
	letter-spacing: 0.25em;
	line-height: 1;
	margin-right: 0.7em;
}

.l_greeting_btn {
	--gap-col: 2.667vw;
	--gap-row: 2.667vw;
	--col: 2;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: 12.334vw;
}

.l_greeting_btn .p_btn01 {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	padding-left: 3.2vw;
}

.l_greeting_head {
	position: relative;
	z-index: 10;
	margin-bottom: 19vw;
}

.l_greeting_img {
	position: relative;
	margin: 10.6vw auto 0;
	width: 48vw;
}

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

.l_greeting_img02 {
	position: absolute;
	z-index: 5;
	bottom: -10.667vw;
	right: -13.334vw;
	width: 29.334vw;
}

/*++++++++++++++++++++++++++++
l_reason
++++++++++++++++++++++++++++*/
.l_reason {
}

.l_reason_block {
}

.l_reason_head {
	padding: 0 var(--inner-padding);
}

.l_reason_slider02,
.l_reason_slider {
	margin: 0 calc(-1 * var(--inner-padding));
}

.l_reason_ttl {
	position: relative;
	padding-top: 16vw;
	padding-bottom: 4.6vw;
	margin-bottom: 4.2vw;
}

.l_reason_ttl:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: calc(-1 * var(--inner-padding));
	width: calc(100vw - var(--inner-padding));
	height: 1px;
	z-index: 1;
	background: var(--main-color);
}

.l_reason_ttl_txt01 {
	opacity: 0.08;
	font-family: var(--font-en-cg);
	font-size: 9.6rem;
	line-height: 1;
	position: relative;
	right: -7.8vw;
	top: 1vw;
	z-index: 1;
	letter-spacing: 0;
	text-align: right;
}

.l_reason_ttl_txt02 {
	font-family: var(--font-en-cg);
	letter-spacing: 0;
	line-height: 1;
	color: var(--sub-color);
	font-size: 1.6rem;
	display: flex;
	align-items: center;
}

.l_reason_ttl_txt02:before {
	content: "";
	display: block;
	position: relative;
	width: 5.334vw;
	height: 1px;
	z-index: 1;
	background: var(--sub-color);
	opacity: 0.3;
	order: 2;
	margin: 0 2.667vw;
}

.l_reason_ttl_txt02 span {
	order: 1;
	letter-spacing: 0;
}

.l_reason_ttl_txt02 em {
	order: 3;
	font-family: var(--font-en-nm);
}

.l_reason_ttl_txt03 {
	color: var(--main-color);
	font-size: 2rem;
	letter-spacing: 0.2em;
	line-height: 1.6;
	font-family: var(--font-min);
	margin-top: 2.5vw;
	display: block;
}

.l_reason_txt {
	line-height: 2.1;
	font-size: 1.3rem;
	letter-spacing: 0.15em;
}

.l_reason_body {
	margin-top: 5.3vw;
}

.l_reason_img {
	display: block;
	margin: 0;
	aspect-ratio: 375/200;
}

.l_reason_slider02 {
	margin-top: 4vw;
}
.l_reason_slider02 .l_reason_block {
	padding: 0 0 0 var(--inner-padding);
	display: flex;
	flex-direction: column-reverse;
}
.l_reason_slider02 .l_reason_head,
.l_reason_slider02 .l_reason_body {
	padding: 0;
}

.l_reason_slider02 .l_reason_body {
	margin-top: 0;
}

.l_reason_slider02 .l_reason_img {
	aspect-ratio: 295/150;
}

.l_reason_slider02 .slick-list {
  padding: 0 13.3% 0 0!important;
}

.l_reason_slider02 .l_reason_ttl {
	padding-top: 5vw;
	padding-bottom: 4.1vw;
}

.l_reason_slider02 .l_reason_ttl:before  {
	width: 100%;
	left: 0;
}

.l_reason_slider02 .l_reason_ttl_txt03 {
	font-size: 1.8rem;
}

.l_reason_thumb_block {
	margin-left: calc(-1 * var(--inner-padding));
	width: 100vw;
}

.l_reason_thumb {
	margin-top: 1px;
}

.l_reason_thumb_item {
	position: relative;
	cursor: pointer;
}

.l_reason_thumb_img {
	width: 45.334vw;
	aspect-ratio: 170/70;
	position: relative;
	z-index: 1;
}

.l_reason_thumb_ttl {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	background: rgba(33, 49, 102, 0.4);
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	line-height: 1.4;
	z-index: 10;
}

.l_reason_arrows {
	margin: 0 calc(-1 * var(--inner-padding));
	--arrow-url: url(../images/icon_arrow.svg);
	gap: 6.9vw;
	display: flex;
	padding: 2.9vw 4.4vw;
}

.l_reason_arrows button {
	width: 2.846vw;
	-webkit-mask: var(--arrow-url) center / 100% no-repeat;
	mask: var(--arrow-url) center / 100% no-repeat;
	background: var(--main-color);
	cursor: pointer;
}

.l_reason_arrows .slick-prev {
	transform: rotate(180deg);
}

.l_reason_arrows .slick-next {
}

.l_reason_dots .slick-dots {
	margin-top: 9.334vw;
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	line-height: 1;
	gap: 2.134vw;
	padding-bottom: 12vw;
}

.l_reason_dots .slick-dots li {
	position: relative;
	display: inline-block;
	width: 1.6vw;
	aspect-ratio: 1/1;
}

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

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

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

/*++++++++++++++++++++++++++++
l_emenu
++++++++++++++++++++++++++++*/
.l_emenu {
	padding: 10.7vw 0 15.8vw;
	background: var(--main-color) url(../images/top_emenu_bg_sp.png?01) center top /
		100% no-repeat;
}

.l_emenu_ttl {
	position: relative;
	padding-bottom: 2.5vw;
	color: #fff;
	margin-bottom: 13.4vw;
}

.l_emenu_ttl:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100vw;
	height: 1px;
	z-index: 1;
	background: #fff;
	opacity: 0.4;
}

.l_emenu_ttl span {
	font-size: 1.6rem;
	letter-spacing: 0.25em;
	font-family: var(--font-min);
}

.l_emenu_ttl em {
	position: absolute;
	right: 16.3vw;
	bottom: -5vw;
	font-size: 6.4rem;
	letter-spacing: 0;
	line-height: 1;
	font-family: var(--font-en-qg);
	transform: rotate(-9.21deg);
	color: var(--sub-color);
}

.l_emenu_item + .l_emenu_item {
	margin-top: 21.3vw;
}

.l_emenu_item_img {
	display: block;
}

.l_emenu_item_body {
	margin-top: 5.5vw;
}

.l_emenu_item_ttl {
	display: flex;
	align-items: center;
	position: relative;
	padding-bottom: 3.5vw;
	margin-bottom: 5.2vw;
}

.l_emenu_item_ttl:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 1px;
	z-index: 1;
	background: #fff;
}

.l_emenu_item_ttl span {
	margin-right: 5.334vw;
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	line-height: 1.6;
	font-family: var(--font-min);
}

.l_emenu_item_ttl em {
	line-height: 1;
	font-family: var(--font-en-cg);
	font-size: 1.4rem;
	color: var(--sub-color);
	position: relative;
	top: 0.1em;
	letter-spacing: 0;
}

.l_emenu_item_txt {
	font-size: 1.3rem;
	line-height: 1.9;
	color: #fff;
	letter-spacing: 0.15em;
}

.l_emenu_accordion {
	margin-top: 6.4vw;
}

.l_emenu_accordion + .l_emenu_accordion {
	margin-top: 4vw;
}

.l_emenu_accordion_ttl {
	--icon-right: 3.2vw;
	background: #fff;
	border-radius: 0.5rem;
	padding: 3.4vw 8.2vw 3.4vw 3.2vw;
	line-height: 1.4;
	font-size: 1.3rem;
	font-family: var(--font-min);
	color: var(--main-color);
	letter-spacing: 0.05em;
	position: relative;
	transition: 0.5s;
	cursor: pointer;
}

.l_emenu_accordion_ttl::before,
.l_emenu_accordion_ttl::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--icon-right);
	width: 2.934vw;
	height: 1px;
	z-index: 1;
	background: var(--main-color);
	transition: 0.5s;
}

.l_emenu_accordion_ttl::after {
	transform: rotate(90deg);
}

.l_emenu_accordion.on .l_emenu_accordion_ttl {
	border-radius: 0.5rem 0.5rem 0 0;
}

.l_emenu_accordion.on .l_emenu_accordion_ttl::after {
	transform: rotate(0deg);
}

.l_emenu_accordion_body {
	background: #e9eaf0;
	padding: 2.667vw 4vw 5.334vw;
	display: none;
	border-radius: 0 0 0.5rem 0.5rem;
}

.l_emenu_accordion_body_list {
	flex-direction: column;
	width: 100%;
	display: flex;
}

.l_emenu_accordion_body a {
	--arrow-right: 1.867vw;
	padding: 3vw 5.867vw 3vw 1.334vw;
	text-decoration: none;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0.15em;
	color: var(--main-color);
	position: relative;
	border-bottom: 1px solid rgba(33, 49, 102, 0.1);
	display: flex;
}

.l_emenu_accordion_body a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--arrow-right);
	width: 2.134vw;
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	transform: translateY(-50%);
	background: var(--main-color);
}

/*++++++++++++++++++++++++++++
l_menu
++++++++++++++++++++++++++++*/
.l_menu {
	padding: 9.7vw 0 8vw;
}

.l_menu_ttl {
	position: relative;
	color: var(--main-color);
	display: flex;
	align-items: center;
	margin-bottom: 2.9vw;
}

.l_menu_ttl_txt01 {
	font-family: var(--font-en-cg);
	font-size: 9.6rem;
	letter-spacing: 0;
	opacity: 0.08;
	position: absolute;
	right: -12vw;
	top: -6.4vw;
	margin-right: 4vw;
	line-height: 1;
}

.l_menu_ttl_txt02 {
	font-size: 4rem;
	font-family: var(--font-en-cg);
	letter-spacing: 0;
	margin-right: 4vw;
	line-height: 1.3;
}

.l_menu_ttl_txt03 {
	font-family: var(--font-min);
	font-size: 1.6rem;
	letter-spacing: 0.25em;
	line-height: 1.3;
	position: relative;
	top: 0.35em;
}

.l_menu_list {
}

.l_menu_list li:last-of-type a {
	/* border-bottom: 0; */
}

.l_menu_list a {
	text-decoration: none;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--gray-color);
	padding: 1.234vw 0 1.234vw 1.334vw;
}

.l_menu_list a span {
	font-size: 1.4rem;
	color: var(--sub-color);
	letter-spacing: 0.05em;
	font-family: var(--font-en-nm);
	margin-right: 3.2vw;
	line-height: 1.3;
}

.l_menu_list a em {
	font-size: 1.4rem;
	color: var(--main-color);
	letter-spacing: 0.15em;
	font-family: var(--font-min);
	line-height: 1.3;
	position: relative;
	top: -0.05em;
}

.l_menu_list a figure {
	margin-left: auto;
	width: 26.667vw;
}

/*++++++++++++++++++++++++++++
l_search
++++++++++++++++++++++++++++*/
.l_search {
	isolation: isolate;
	position: relative;
	margin-top: 6.7vw;
	padding: 7vw 0 10.5vw;
}

.l_search:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 2.667vw);
	height: 100%;
	z-index: -1;
	background: #f1f1f1;
}

.l_search_ttl {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-left: 2.667vw;
	margin-bottom: 6.8vw;
}

.l_search_ttl:before {
	content: "";
	display: block;
	position: absolute;
	top: 2.6vw;
	left: -8vw;
	width: 8vw;
	height: 1px;
	z-index: 1;
	background: var(--main-color);
}

.l_search_ttl span {
	font-size: 1.6rem;
	letter-spacing: 0.2em;
	color: var(--main-color);
	line-height: 1.3;
	font-family: var(--font-min);
}

.l_search_ttl em {
	font-size: 1.5rem;
	letter-spacing: 0;
	color: var(--sub-color);
	line-height: 1.3;
	font-family: var(--font-en-cg);
	margin-top: 1.9vw;
}

.l_search_block {
}

.l_search_btns {
	--gap-col: 2px;
	--gap-row: 2px;
	--col: 3;

	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-bottom: 5.334vw;
}

.l_search_btn {
	--color: var(--main-color);
	--bg-color: rgba(33, 49, 102, 0.15);
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	color: var(--color);
	position: relative;
	background: var(--bg-color);
	height: 16vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.3rem;
	letter-spacing: 0.25em;
	font-family: var(--font-min);
	line-height: 1.4;
	padding-left: 0.25em;
	transition: 0.5s;
	cursor: pointer;
}

.l_search_btn:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 2.667vw;
	z-index: 1;
	background: var(--color);
	opacity: 0;
	transition: 0.5s;
}

.on.l_search_btn {
	--color: #fff;
	--bg-color: var(--main-color);
}

.on.l_search_btn:before {
	opacity: 1;
}

.l_search_body {
}

.l_search_body_inner {
	position: relative;
}

.l_search_list {
	--gap-col: 2.4vw;
	--gap-row: 2.4vw;
	--col: 2;
	position: absolute;
	left: 0;
	top: 0;

	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	opacity: 0;
	pointer-events: none;
}

.l_search_list.on {
	opacity: 1;
	pointer-events: auto;
}

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

.l_search_list li a {
	--arrow-size: 2.134vw;
	--arrow-right: 2.934vw;
	--arrow-color: var(--main-color);
	position: relative;
	padding-left: 3.2vw;
	padding-right: 8vw;
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	letter-spacing: 0.2em;
	font-family: var(--font-min);
	line-height: 1.3;
	text-decoration: none;
	width: 100%;
	height: 13.867vw;
	background: #fff;
	color: var(--main-color);
	border-radius: 0.5rem;
	border: 1px solid rgba(33, 49, 102, 0.3);
}

.l_search_list li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--arrow-right);
	width: var(--arrow-size);
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	transform: translateY(-50%);
	background: var(--arrow-color);
}

/*++++++++++++++++++++++++++++
l_feature
++++++++++++++++++++++++++++*/
.l_feature {
}

.l_feature_ttl {
	background: #fff;
	width: 58.667vw;
	margin: -10.667vw calc(-1 * var(--inner-padding)) -6.1vw auto;
	padding: 8.5vw 8.4vw 0 8vw;
	color: var(--main-color);
	position: relative;
}

.l_feature_ttl_txt01 {
	font-family: var(--font-en-qg);
	letter-spacing: 0;
	font-size: 4.8rem;
	transform: rotate(-9.21deg);
	color: var(--sub-color);
	z-index: 10;
	position: absolute;
	display: block;
	line-height: 1;
	top: -2vw;
	left: 5.4vw;
}

.l_feature_ttl_txt01 span {
	font-size: 6.4rem;
	position: relative;
	top: 0.1em;
	left: 0.05em;
}

.l_feature_ttl_txt02 {
	position: relative;
	z-index: 1;
	font-family: var(--font-en-cg);
	font-size: 4rem;
	display: block;
	text-align: right;
	line-height: 1;
	letter-spacing: 0;
}

.l_feature_ttl_txt03 {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	font-family: var(--font-min);
	text-align: right;
	display: block;
	line-height: 1;
	margin-top: 2.5vw;
	letter-spacing: 0.2em;
}

.m_feature {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	padding: 7.367vw 0 10.667vw;
}

.m_feature + .m_feature {
	/* margin-top: 10.5vw; */
}

.m_feature_head {
	margin-top: 8vw;
	position: relative;
	z-index: 10;
}

.m_feature_links {
	margin-right: calc(-1 * var(--inner-padding));
}

.m_feature_link {
	position: relative;
	display: block;
	height: 26.667vw;
}

.m_feature_link:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0.2;
	background: #000;
}

.m_feature_link_img {
	aspect-ratio: auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.m_feature_link_ttl {
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	color: #fff;
	line-height: 1.5;
	position: absolute;
	bottom: 3vw;
	left: 0;
	padding: 0 10vw 0 4vw;
	z-index: 10;
	width: 100%;
	text-shadow: 0px 0px 9px rgba(0, 0, 0, 0.45);
}

.m_feature_link_ttl:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 1vw;
	right: 3.379vw;
	width: 2.846vw;
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	background: #fff;
}

.m_feature_body {
	position: relative;
	z-index: 10;
}

.m_feature_ttl {
	position: relative;
	padding-top: 3vw;
	margin-bottom: 5vw;
}

.m_feature_ttl_txt01 {
	opacity: 0.08;
	font-family: var(--font-en-cg);
	font-size: 6.4rem;
	line-height: 1;
	position: absolute;
	right: -8vw;
	top: 0;
	z-index: 1;
	letter-spacing: 0;
}

.m_feature_ttl_txt02 {
	font-family: var(--font-en-cg);
	letter-spacing: 0;
	line-height: 1;
	color: var(--sub-color);
	font-size: 1.6rem;
	display: flex;
	align-items: center;
}

.m_feature_ttl_txt02:before {
	content: "";
	display: block;
	position: relative;
	width: 2.667vw;
	height: 1px;
	z-index: 1;
	background: var(--sub-color);
	opacity: 0.3;
	order: 2;
	margin: 0 1.334vw;
}

.m_feature_ttl_txt02 span {
	order: 1;
	font-family: var(--font-en-nm);
	letter-spacing: 0;
}

.m_feature_ttl_txt02 em {
	order: 3;
	letter-spacing: 0;
}

.m_feature_ttl_txt03 {
	color: var(--main-color);
	font-size: 2rem;
	letter-spacing: 0.25em;
	line-height: 1.6;
	font-family: var(--font-min);
	margin-top: 3.5vw;
	display: block;
}

.m_feature_txt {
	font-size: 1.3rem;
	line-height: 2.1;
	letter-spacing: 0.15em;
}

.m_feature:nth-of-type(2n):before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: calc(-1 * var(--inner-padding));
	width: 100vw;
	height: 100%;
	z-index: 1;
	background: #f1f1f1;
}

.m_feature:nth-of-type(2n) .m_feature_links {
	margin-left: calc(-1 * var(--inner-padding));
	margin-right: 0;
}

/*++++++++++++++++++++++++++++
l_bnr
++++++++++++++++++++++++++++*/
.l_bnr {
	margin: 13.8vw calc(-1 * var(--inner-padding) + 2.667vw) 0;
}

.l_brn_slider_item a {
}

.l_bnr_slider .slick-dots {
	margin-top: 5.334vw;
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	line-height: 1;
	gap: 2.134vw;
}

.l_bnr_slider .slick-dots li {
	position: relative;
	display: inline-block;
	width: 1.6vw;
	aspect-ratio: 1/1;
}

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

.l_bnr_slider .slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	border-radius: 50%;
	width: 100%;
	height: 100%;
	border: 0;
	background: var(--main-font-color);
	opacity: 0.3;
}

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

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

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

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

.l_slider_item figure {
	width: 70.934vw;
	overflow: hidden;
	aspect-ratio: 400/300;
}

.l_slider_item figure img {
	display: block;
}

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

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

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

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

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

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

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

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

/*++++++++++++++++++++++++++++
l_endoscope
++++++++++++++++++++++++++++*/
.l_endoscope {
	background: url(../images/top_endoscopy_bg_sp.png?01) center bottom / 100%
		no-repeat;
	margin-top: 10.8vw;
}

.l_endoscope_block {
}

.l_endoscope_head {
}

.l_endoscope_img {
	margin-right: calc(-1 * var(--inner-padding));
	padding-top: 48vw;
	aspect-ratio: auto;
}

.l_endoscope_body {
	margin-top: 8.4vw;
}

.l_endoscope_ttl {
	position: relative;
	border-bottom: 1px solid var(--main-color);
	display: flex;
	flex-direction: column;
	color: var(--main-color);
	padding-bottom: 4.6vw;
	margin-right: calc(-1 * var(--inner-padding));
	margin-bottom: 6.3vw;
}

.l_endoscope_ttl_txt01 {
	font-family: var(--font-en-cg);
	font-size: 4rem;
	letter-spacing: 0;
	line-height: 1;
}

.l_endoscope_ttl_txt02 {
	font-size: 1.6rem;
	letter-spacing: 0.25em;
	line-height: 1;
	font-family: var(--font-min);
	margin-top: 3vw;
}

.l_endoscope_ttl_txt03 {
	position: absolute;
	right: 2.9vw;
	bottom: -6.7vw;
	font-size: 6.4rem;
	letter-spacing: 0;
	line-height: 1;
	font-family: var(--font-en-qg);
	transform: rotate(-9.21deg);
	color: var(--sub-color);
}

.l_endoscope_catch {
	font-size: 1.8rem;
	line-height: 1.9;
	font-family: var(--font-min);
	color: var(--main-color);
	letter-spacing: 0.25em;
}

.l_endoscope_catch_txt01 {
	font-family: var(--font-en-nm);
	font-size: 3.2rem;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-bottom: 0em;
	line-height: 1.2;
}

.l_endoscope_catch_txt02 {
	font-family: var(--font-en-nm);
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-bottom: -0.3em;
}

.l_endoscope_catch_txt03 {
	position: relative;
	font-size: 2rem;
	isolation: isolate;
	display: inline-block;
	line-height: 1.3;
	top: -0.2em;
	margin-top: 0.3em;
	margin-right: 0.3em;
}

.l_endoscope_catch_txt03:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	z-index: -1;
	background: rgba(225, 210, 154, 1);
	transition: 0.8s ease;
}

.l_endoscope_catch_txt03.show:before {
	width: 100%;
}

.l_endoscope_graph {
	margin-top: 5.7vw;
	display: block;
}

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	background: #1e2026;
	margin-top: 5.334vw;
}

.l_footer_img {
	aspect-ratio: auto;
	height: 66.667vw;
	position: relative;
	z-index: 1;
}

.l_footer_contact {
	background: var(--sub-color);
	border-radius: 0.5rem;
	width: calc(100% - 2 * 5.334vw);
	position: relative;
	z-index: 10;
	margin: -34.734vw auto 0;
	padding: 8vw 8vw 13.334vw;
}

.l_footer_contact_en {
	font-size: 9.6rem;
	letter-spacing: 0;
	font-family: var(--font-en-cg);
	line-height: 1;
	position: absolute;
	z-index: 1;
	top: -1.1vw;
	left: 2.8vw;
	opacity: 0.08;
	color: #fff;
}

.l_footer_contact_ttl {
	position: relative;
	padding-top: 4.5vw;
	margin-bottom: 0;
	z-index: 10;
}

.l_footer_contact_ttl span {
	font-size: 1.5rem;
	letter-spacing: 0.25em;
	font-family: var(--font-min);
	line-height: 1;
	display: block;
	text-align: center;
	color: #fff;
}

.l_footer_contact_tel {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2.6vw;
}

.l_footer_contact_tel span {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-family: var(--font-en-cg);
	color: #fff;
	margin-right: 2.667vw;
}

.l_footer_contact_tel .tel_link a,
.l_footer_contact_tel .tel_link {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	font-family: var(--font-en-nm);
	line-height: 1.6;
	text-decoration: none;
	color: #fff;
}

.l_footer_contact_time {
	margin-top: 2.234vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l_footer_contact_time span {
	color: var(--sub-color);
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	line-height: 1;
	background: #fff;
	padding: 1vw 1.334vw;
	margin-right: 3.2vw;
	font-family: var(--font-min);
}

.l_footer_contact_time em {
	font-family: var(--font-en-nm);
	line-height: 1;
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	color: #fff;
}

.l_footer_contact_links {
	margin-top: 10.367vw;
	display: flex;
	flex-direction: column;
	gap: 2.667vw;
}

.l_footer_contact_btn {
	text-decoration: none;
	position: relative;
	background: #fff;
	border-radius: 5px;
	padding: 3.234vw 4vw 2.1vw 4vw;
	display: flex;
	align-items: center;
}

.l_footer_contact_btn:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 4.534vw;
	width: 2.134vw;
	aspect-ratio: 1/1;
	z-index: 5;
	-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
	transform: translateY(-50%);
	background: var(--sub-color);
}

.l_footer_contact_btn_icon {
	width: 10.667vw;
	aspect-ratio: 1/1;
	margin-right: 5.334vw;
	border-radius: 50%;
	background: var(--sub-color-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.l_footer_contact_btn_icon figure {
	width: 5.334vw;
}

.l_footer_contact_btn_body {
	display: flex;
	flex-direction: column;
	color: var(--sub-color);
}

.l_footer_contact_btn_ttl {
	font-size: 1.5rem;
	letter-spacing: 0.25em;
	line-height: 1.3;
	font-family: var(--font-min);
	margin-bottom: 2vw;
}

.l_footer_contact_btn_txt {
	opacity: 0.6;
	font-size: 1.1rem;
	line-height: 1.5;
	letter-spacing: 0.15em;
}

.l_footer_content .m_timetable_hosoku,
.l_footer_content .m_clinic {
	color: #b2b2b2;
}

.l_footer_content {
	margin-top: 13.1vw;
	border-bottom: 1px solid var(--gray-color02);
}

.l_footer_content .m_clinic_tel {
	margin-top: 1.034vw;
	font-size: 1.4rem;
}

.l_footer_content .m_clinic_tel .tel_link a,
.l_footer_content .m_clinic_tel .tel_link {
	font-size: 1.6rem;
}

.l_footer_content .m_clinic_target {
	font-size: 1.2rem;
	margin-top: 2vw;
}

.l_footer_content .m_clinic_body {
	margin-top: 11.7vw; /* border-bottom: 1px solid var(--gray-color02); */
}

.l_footer_bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding: 3vw 0 20.6vw;
	color: rgba(255, 255, 255, 0.3);
	text-align: center;
	font-size: 1.1rem;
	letter-spacing: 0.15em;
}

.l_footer_relation {
	--gap-col: 3.467vw;
	--gap-row: 5.667vw;
	--col: 2;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: 8vw;
	padding-bottom: 9.1vw;
}

.l_footer_relation_item {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	text-decoration: none;
}

.l_footer_relation_item em {
	text-align: center;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	display: block;
	margin-top: 2.7vw;
	color: var(--gray-color02);
}

.l_footer_bottom {
	background: #f1f1f1;
	padding: 4.9vw 0 20vw;
}

.l_footer_bnr {
	--gap-col: 2.667vw;
	--gap-row: 2.667vw;
	--col: 2;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	width: 78.134vw;
	margin: 0 auto;
}

.l_footer_bnr_item {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	font-size: 0.9rem;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
}
.l_footer_bnr_item span {
	border: 1px solid #CEC9C6;
	display: block;
}
.l_footer_bnr_item em {
	display: block;
	margin-top: 2vw;
	color: var(--main-font-color);
}

.l_footer_bottom small {
	opacity: 0.4;
	font-size: 0.9rem;
	letter-spacing: 0.15em;
	text-align: center;
	display: block;
	margin-top: 6.9vw;
	color: var(--main-font-color);
}
.l_footer .m_timetable thead th:first-of-type,
.l_footer .m_timetable tbody tr,
.l_footer .m_timetable :is(td, th) {
	border-color: var(--main-font-color);
}
.l_footer .m_timetable tbody :is(td, th) {
	color: var(--main-font-color);
}

.l_footer .m_timetable tbody .color02 {
	--color: var(--main-font-color);
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	border-top: 1px solid rgba(33, 49, 102, 0.3);
}
.l_fixed a {
	height: 17.067vw;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.l_fixed_tel {
	flex: 1;
	background: #e9eaf0;
}

.l_fixed_tel span {
	font-size: 1.1rem;
	line-height: 1.4;
	color: var(--main-color);
	letter-spacing: 0.15em;
	font-family: var(--font-min);
}

.l_fixed_tel em {
	font-family: var(--font-en-nm);
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.1em;
	margin-top: 1vw;
	position: relative;
	padding-left: 5.867vw;
}

.l_fixed_tel em:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 5.334vw;
	height: 100%;
	z-index: 1;
	background: url(../images/icon_tel.svg) center center / 100% no-repeat;
}

.l_fixed_mini {
	--background: var(--sub-color);
	--icon: url("../images/icon_reserve.svg");
	width: 17.067vw;
	background: var(--background);
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.15em;
	line-height: 1;
	font-family: var(--font-min);
	display: flex;
	flex-direction: column;
}

.l_fixed_mini:before {
	content: "";
	display: block;
	position: relative;
	width: 5.334vw;
	aspect-ratio: 1/1;
	z-index: 1;
	background: var(--icon) center center / 100% no-repeat;
	margin-bottom: 2.134vw;
}

.l_fixed_mini span {
	font-size: 0.9rem;
}

.l_fixed_mini em {
	margin-top: 0.7vw;
}

.l_fixed_web {
	--background: var(--sub-color);
	--icon: url("../images/icon_reserve.svg");
}

.l_fixed_line {
	--background: #288542;
	--icon: url("../images/icon_phone.svg");
}

.l_fixed_web02 {
	--background: var(--main-color);
	--icon: url("../images/icon_pen.svg");
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	bottom: 20.267vw;
left: 2.667vw;
	width: 10.667vw;
	aspect-ratio: 1/1;
	filter: drop-shadow(0px 0px 5.334vw rgba(0, 0, 0, 0.05));
	background: rgba(30, 32, 38, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: rotate(-90deg);
	color: transparent;
}

.l_pagetop:before {
	content: "";
	display: block;
	position: absolute;
	top: -0.2vw;
	left: 0;
	width: calc(100% + 2px);
	aspect-ratio: 1/1;
	z-index: 1;
	background: url(../images/icon_arrow.svg) center center / 2.845vw no-repeat;
	pointer-events: none;
}

/*++++++++++++++++++++++++++++
l_under_mv
++++++++++++++++++++++++++++*/
.l_under_mv {
	position: relative;
	padding: 0;
	margin-top: var(--header-inner-height);
	min-height: 55vw;
	display: flex;
	align-items: center;
}

.l_under_mv:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	background: var(--main-color);
	opacity: 0.5;
}

.l_under_mv_img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	border-radius: 0;
}

.l_under_mv_ttl {
	border-radius: 0;
	padding: 5vw 5vw 5vw;
	margin: 0;
	width: auto;
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	text-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.25);
	width: 100%;
}

.l_under_mv_ttl span {
	font-family: var(--font-en-cg);
	line-height: 1.2;
	font-size: 3rem;
	letter-spacing: 0.1em;
	text-align: center;
}

.l_under_mv_ttl em {
	font-size: 1.3rem;
	letter-spacing: 0.2em;
	line-height: 1.5;
	margin-top: 0.6vw;
	font-family: var(--font-min);
}

/*++++++++++++++++++++++++++++
l_intro
++++++++++++++++++++++++++++*/
.l_intro {
	position: relative;
	padding-bottom: 3vw;
}

.l_intro_top {
	position: relative;
	z-index: 10;
}

.l_intro_head {
	position: relative;
	z-index: 10;
}

.l_intro_body {
	position: relative;
	z-index: 1;
	margin-top: 5vw;
}

.l_intro_body:before {
	content: "";
	display: block;
	position: absolute;
	top: -8.6667vw;
	left: -27vw;
	width: 66.3vw;
	aspect-ratio: 1/1;
	z-index: 1;
	background: url(../images/mv_icon.svg) center center / 100% no-repeat;
}

.l_intro_bottom {
	position: relative;
	z-index: 10;
}

.l_intro_name {
	margin-top: 3vw;
	display: flex;
	align-items: flex-end;
	font-family: var(--font-min);
	padding-bottom: 1vw;
	border-bottom: 1px solid var(--main-color);
	margin-bottom: 3vw;
}

.l_intro_name_ja {
	font-size: 1.7rem;
	margin-right: 3vw;
}

.l_intro_name_ja span {
	font-size: 1.3rem;
	margin-right: 3vw;
	position: relative;
	top: -0.1em;
}

.l_intro_name_en {
	font-size: 1.3rem;
	font-family: var(--font-en-cg);
	color: var(--sub-color);
}

.l_intro_ttl {
	position: relative;
	z-index: 10;
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: 0.3em;
	margin-bottom: 2vw;
}

.l_intro_txt {
	position: relative;
	z-index: 10;
}

.l_intro_en {
	opacity: 0.08;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	font-size: 4.6rem;
	font-weight: 500;
	font-family: var(--font-en-cg);
	line-height: 1;
	letter-spacing: 0.05em;
}

/*++++++++++++++++++++++++++++
l_under_breadcrumb
++++++++++++++++++++++++++++*/
.breadcrumbs {
	padding: 3vw 0 4vw;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.breadcrumbs :is(span, a) {
	text-decoration: none;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
}

.breadcrumbs a {
	color: var(--main-font-color);
}

.breadcrumbs > span {
	color: var(--main-color);
	position: relative;
	padding-right: 6vw;
}

.breadcrumbs > span:before {
	right: 2.8vw;
	top: 50%;
	width: 1.5vw;
	aspect-ratio: 1/1;
	transform: translateY(-47%) rotate(45deg);
	position: absolute;
	content: "";
	border-top: 1px solid var(--main-font-color);
	border-right: 1px solid var(--main-font-color);
}
.breadcrumbs > span:last-of-type {
	padding-right: 0;
}
.breadcrumbs > span:last-of-type:before {
	display: none;
}

/* underpage */
.underpage .l_footer {
	margin-top: 12vw;
}

/* l_under_content */
:where(.l_under_content) {
	--under-default-font: 1.3rem;
	--under-default-mt: 0vw;

	padding: 0 0 20vw;
}

:where(.l_under_content) .p_thumb_img {
	margin-bottom: 3.5rem;
}

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

:where(.l_under_content) > *:first-child {
	margin-top: 0;
}

:where(.l_under_content) > * {
	--under-default-mt: 5vw;
}

:where(.l_under_content) > .m_toc:first-child {
	margin-top: 0;
}

:where(.l_under_content) p:where(:not(.no_default)) {
	font-size: var(--under-default-font);
	line-height: var(--line-height-wide);
	letter-spacing: 0.15em;
}

:where(.l_under_content)
	:is(p, ul, ol, table, .m_kakomi, .m_kakomi02)
	+ :is(p, ul, ol, table) {
	margin-top: 1em;
}

:where(.l_under_content) a {
}

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

:where(.l_under_content) img {
	border-radius: 0;
}

:where(.l_under_content) > section {
	padding: 10vw 0 12vw;
	position: relative;

	counter-increment: h3-counter;
}

:where(.l_under_content) > section:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 1px;
	z-index: 1;
	background: #e9eaf0;
	transform: translateX(-50%);
	opacity: 0;
}

:where(.l_under_content) > section + section::before {
	opacity: 1;
}

:where(.l_under_content) > section:last-of-type {
	padding-bottom: 0;
}

:where(.l_under_content) > section > *:first-child {
	margin-top: 0;
}

/* title */

:where(.l_under_content) .m_toc + h2 {
	margin-top: 12vw;
}


:where(.l_under_content) h3:where(:not(.no_default)) {
	font-size: 2.2rem;
	letter-spacing: 0.15em;
	line-height: 1.45;
	text-align: center;
	/* font-weight: 500; */
	margin-bottom: 7vw;
	margin-top: 12vw;
	font-family: var(--font-min);
	color: var(--main-color);
}

:where(.l_under_content) h3:where(:not(.no_default)) span {
	display: flex;
	align-items: center;
	width: fit-content;
	font-family: var(--font-en-cg);
	font-size: 1.4rem;
	color: var(--sub-color);
	margin: 0 auto 0.7em;
	line-height: 1.3;
	font-weight: 400;
}

:where(.l_under_content) h3:where(:not(.no_default)) span:before {
	content: "";
	display: block;
	position: relative;
	width: 1em;
	height: 1px;
	z-index: 1;
	background: var(--sub-color);
	order: 2;
	margin-left: 0.4em;
	opacity: 0.3;
}

:where(.l_under_content) h3:where(:not(.no_default)) span:after {
	content: "0" counter(h3-counter);
	order: 3;
	margin-left: 0.4em;
	font-size: 1.4rem;
	position: relative;
	top: -0.1em;
	font-family: var(--font-en-nm);
}

:where(.l_under_content)
	> section:nth-of-type(n + 10)
	h3:where(:not(.no_default))
	span:after {
	content: counter(h3-counter);
}

:where(.l_under_content) h3:where(:not(.no_default)) em {
	padding-left: 1.6em;
	position: relative;
	margin-left: 0.4em;
}

:where(.l_under_content) h3:where(:not(.no_default)) em:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.3em;
	height: 1px;
	z-index: 1;
	background: var(--gray-color);
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	padding-left: 0;
	padding-bottom: 3vw;
	position: relative;
	line-height: 1.45;
	border-bottom: 1px solid rgba(33, 49, 102, 0.3);
	margin-bottom: 6vw;
	margin-top: 10vw;
	font-family: var(--font-min);
	color: var(--main-color);
}

:where(.l_under_content) h4:where(:not(.no_default)):before {
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 10vw;
	height: 1px;
	z-index: 1;
	background: var(--main-color);
}

:where(.l_under_content) .p_h5_style,
:where(.l_under_content) h5:where(:not(.no_default)) {
	color: #fff;
	width: fit-content;
	background: var(--sub-color);
	font-size: 1.45rem;
	letter-spacing: 0.15em;
	line-height: 1.45;
	padding: 0.2em 0.6em 0.3em 0.75em;
	margin-bottom: 4vw;
	margin-top: 7vw;
}

:where(.l_under_content) h6:where(:not(.no_default)) {
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	color: var(--main-color);
	padding-left: 4.5vw;
	line-height: 1.5;
	margin-top: 7vw;
	margin-bottom: 4vw;
}

:where(.l_under_content) h6:where(:not(.no_default)):before {
	content: "";
	display: block;
	position: absolute;
	top: 0.9vw;
	left: 0;
	width: 1px;
	height: 4.5vw;
	z-index: 1;
	background: var(--main-color);
}

/* ul */
:where(.l_under_content) ul:where(:not(.no_default)) {
	--gap-col: 4vw;
	--gap-row: 3vw;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

:where(.l_under_content) ul:where(:not(.no_default)) li {
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	position: relative;
	padding-left: 4.2vw;
	font-size: var(--under-default-font);
	letter-spacing: 0.15em;
	font-family: var(--font-min);
}

:where(.l_under_content) ul:where(:not(.no_default)) li:before {
	content: "";
	display: block;
	position: absolute;
	top: 2.8vw;
	left: 0;
	width: 1.5vw;
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 50%;
	background: var(--main-color);
}

:where(.l_under_content) .p_list_narrow {
	--gap-row: 0.5vw;
}

/* m_checklist */

:where(.l_under_content) .p_checklist li {
	padding-left: 7.4vw;
}

:where(.l_under_content) .p_checklist li:before {
	content: "";
	display: block;
	position: absolute;
	top: 1vw;
	left: 0;
	width: 4.8vw;
	height: auto;
	aspect-ratio: 1/1;
	z-index: 1;
	background: url(../images/icon_check.svg) center center / 100% no-repeat;
}

/* ol */
:where(.l_under_content) ol:where(:not(.no_default)) {
	--gap-col: 4vw;
	--gap-row: 3vw;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

:where(.l_under_content) ol:where(:not(.no_default)) li {
	counter-increment: counter;
	padding: 0 0 4vw 8.4vw;
	position: relative;
	font-size: var(--under-default-font);
	border-bottom: 1px solid var(--gray-color);
	width: calc(
		100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col)
	);
	letter-spacing: 0.1em;
	font-family: var(--font-min);
}

:where(.l_under_content) ol:where(:not(.no_default)) li:before {
	content: counter(counter);
	display: block;
	position: absolute;
	top: 1.2vw;
	left: 0;
	width: 5.5vw;
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 50%;
	background: var(--main-color);
	font-family: var(--font-en-nm);
	color: #fff;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 1.2rem;
	letter-spacing: 0;
}

/* :where(.l_under_content) ol:where(:not(.no_default)) li + li {
	margin-top: 3vw;
} */

/* table */
.table20 td,
.table20 th {
	width: 20% !important;
}
.table25 td,
.table25 th {
	width: 25% !important;
}
.table50 td,
.table50 th {
	width: 50% !important;
}
.p_table_col02 :is(td, th) {
	width: 50%;
}
.p_table_col04 :is(td, th) {
	width: 25%;
}
.p_table_col05 :is(td, th) {
	width: 20%;
}

:where(.l_under_content) table:where(:not(.no_default)) {
	border: 1px solid var(--main-color);
	margin-top: 5vw;
}

:where(.l_under_content) table:where(:not(.no_default)) :is(th, td) {
	border-right: 1px solid var(--main-color);
	font-size: var(--under-default-font);
	padding: 1.8vw;
	line-height: 1.5;
	vertical-align: middle;
	width: 33.3333%;
	letter-spacing: 0.15em;
	font-family: var(--font-min);
}

:where(.l_under_content) table:where(:not(.no_default)) th {
	text-align: left;
	background: #e9eaf0;
}

:where(.l_under_content) table:where(:not(.no_default)) td {
	text-align: center;
}

:where(.l_under_content) table:where(:not(.no_default)) td em {
	font-size: 1.2em;
	font-family: var(--font-en-nm);
	line-height: 1.3;
	position: relative;
	top: 0.04em;
	padding: 0 0.1em;
	letter-spacing: 0.05em;
	word-break: break-word;
}

:where(.l_under_content) table:where(:not(.no_default)) thead th {
	color: #fff;
	text-align: center;
	background: #394c8e;
	letter-spacing: 0.25em;
}

:where(.l_under_content) table:where(:not(.no_default)) thead th:first-of-type {
	background: var(--main-color);
}

:where(.l_under_content) table:where(:not(.no_default)) tbody tr + tr {
	border-top: 1px solid var(--main-color);
}

:where(.l_under_content) .m_timetable {
	--color: var(--main-font-color);
	border: 1px solid var(--main-color);
}

:where(.l_under_content) .m_timetable thead th {
	color: #fff;
}

:where(.l_under_content) .m_timetable_hosoku {
	--color: var(--main-font-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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