@charset "utf-8";

:root {
	/*-----------------------------
	common
	-----------------------------*/
	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 2.5rem;
	/* タブレット時はviewportを固定する */
	--tb-breakpoint: 1280px;
	--color-opacity: 1;
	--black: #333;
	--main-font-color: var(--black);
	--gray-color: #cec9c6;
	--bgc-w: #fff;

	--brown_00: #B9A57E;
	--brown_01: #9F8A67;
	--brown_02: #896F44;
	--main-color: var(--brown_02);
	--orange: #EC9658;
	--line_green: #05C756;
	--gold_01: #C89633;
	--beige_bg: #FAF4EB;
	--lightbeige_01: #F7F6F1;
	--lightbeige_02: #F2F0E9;
	--lightbeige_03: #E5DCCB;

	--default-letter-spacing: 0.12em;
	--default-line-height: 2;

	--trim-noto-top: 0.6em;
	--trim-noto-bottom: 0.55em;
	--font-main: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system, BlinkMacSystemFont, arial, helvetica, sans-serif;
	--font-en: "Marcellus", serif;
	--font-num: var(--font-en);
	--font-maru: "fot-tsukuardgothic-std", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system, BlinkMacSystemFont, arial, helvetica, sans-serif;
	--font-min: "Shippori Mincho", serif;
	--font-gothic: "Zen Kaku Gothic New", sans-serif;
	--box-shadow: 0px 0px 0.8rem 0px rgba(0, 16, 51, 0.2);
	--btn-shadow: 0px 0.5rem 1rem 0px rgba(0, 0, 0, 0.125);
	--default-transition: 0.4s;
}

:where(#tinymce),
:where(.underpage) {
	/*++++++++++++++++++++++++++++
	under
	++++++++++++++++++++++++++++*/
	--under-default-font: 1.4rem;
	--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;
}

body {
	background: var(--bgc-w);
}

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

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

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

.grecaptcha-badge {
	visibility: hidden;
}

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

.imgborder_round {
	border-radius: 0.8rem;
	border: 1px solid #ccc;
}

.img_round {
	border-radius: 0.8rem;
}

.m_img_treatment {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.m_img_treatment figure {
	width: calc(50% - 1rem);
	max-width: 22.6rem;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
m_img
++++++++++++++++++++++++++++*/
.m_img {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

/*++++++++++++++++++++++++++++
m_btn01
++++++++++++++++++++++++++++*/
.m_btn01 {
	--icon-url: url(../images/icon_arrow.svg);
	--icon-color: #fff;
	--icon-size: 1.6rem;
	--circle-size: 2.4rem;
	--circle-color: transparent;
	--icon-right: 1.4rem;
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	width: 100%;
	color: #fff;
	background: var(--brown_00);
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 1rem 4.8rem 1rem 1.4rem;
	min-height: 6rem;
	border: 1px solid var(--brown_01);
	margin: var(--under-btn-mt, 0px) auto 0;
	border-radius: 0.6rem;
}

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

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

.m_btn01_white {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.15);
}

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

:where(.l_under_content) .m_btn01 {
	margin-top: 3.4rem;
}


/*++++++++++++++++++++++++++++
m_hosoku
++++++++++++++++++++++++++++*/
.m_hosoku {
	color: var(--main-color);
	margin-top: 1.6rem;
}

/*++++++++++++++++++++++++++++
m_toc
++++++++++++++++++++++++++++*/
.m_toc {
	--icon-url: url(../images/icon_arrow.svg);
	--icon-color: var(--main-color);
	--icon-size: 0.8rem;
	--circle-size: 2rem;
	--circle-color: var(--beige_bg);
	--circle-top: 0.1rem;
	position: relative;
	isolation: isolate;
	margin-bottom: 2rem;
}

.m_toc_list {
	--gap-col: 0px;
	--gap-row: 1.1rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	isolation: isolate;
	padding: 2.6rem;
	border: 0.4rem solid var(--beige_bg);
	border-radius: 2rem;
	margin: 0 -1rem;
}

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

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

.m_toc_list a {
	line-height: 1.5;
	padding: 0 0 0 calc(var(--circle-size) + 1rem);
	font-size: 1.4rem;
	text-decoration: none;
	position: relative;
	width: 100%;
	display: block;
	color: var(--main-font-color);
	font-weight: 500;
}

.m_toc_list a:before {
	content: '';
	display: block;
	position: absolute;
	top: calc(0.5rem + var(--circle-top));
	left: 0.6rem;
	width: var(--icon-size);
	aspect-ratio: 9/10;
	-webkit-mask: var(--icon-url) center / 100% no-repeat;
	mask: var(--icon-url) center / 100% no-repeat;
	background: var(--icon-color);
	z-index: 2;
	rotate: 90deg;
}

.m_toc_list a:after {
	content: '';
	display: block;
	position: absolute;
	top: var(--circle-top);
	left: 0;
	width: var(--circle-size);
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 50%;
	background: var(--circle-color);
}

/*++++++++++++++++++++++++++++
m_linklist
++++++++++++++++++++++++++++*/
.m_linklist {
	flex-direction: column;
	--gap-col: 1rem;
	--gap-row: 1rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: var(--under-box-mt);
}

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

.m_linklist li a {
	text-decoration: none;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	background: var(--main-color);
	display: flex;
	align-items: center;
	position: relative;
	padding: 1rem 1.5rem 1rem 3rem;
	min-height: 4rem;
	color: var(--main-font-color);
	border-radius: 0.2rem;
	font-weight: 500;
}

.m_linklist li a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 1.2rem;
	width: 0.7rem;
	aspect-ratio: 1 / 1;
	z-index: 1;
	background: #fff;
	transform: translateY(-39%);
}

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

.m_checklist li {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	position: relative;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
	background: var(--beige_bg);
	padding: 1rem 1rem 1rem 4rem;
	border-radius: 0.4rem;
	text-align: left;
}

.m_checklist li:before {
	content: "";
	display: block;
	position: absolute;
	top: 1.1rem;
	left: 1rem;
	z-index: 5;
	width: 2rem;
	aspect-ratio: 1/1;
	-webkit-mask: url(../images/icon_check.svg) center / 100% no-repeat;
	mask: url(../images/icon_check.svg) center / 100% no-repeat;
	background: var(--main-color);
}

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

.m_list_triangle li {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	position: relative;
	padding-left: 2.4rem;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
}

.m_list_triangle li:before {
	content: "";
	display: block;
	position: absolute;
	top: 0.6rem;
	left: 0.5rem;
	z-index: 1;
	width: 0.8rem;
	aspect-ratio: 10/15;
	background: var(--main-color);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*++++++++++++++++++++++++++++
m_list_anchor
++++++++++++++++++++++++++++*/
.m_list_anchor {
	--icon-size: 0.8rem;
	--icon-right: 0.8rem;
	--icon-left: 1rem;
	--btn-right-gutter: calc(var(--icon-size) + var(--icon-right) + var(--icon-left));
	--gap-col: 0px;
	--gap-row: 1.2rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	padding: 2rem;
	border-radius: 0.8rem;
	background: var(--gray-color);
	margin-top: var(--under-box-mt);
}

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

.m_list_anchor li a {
	line-height: 1.5;
	padding: 0.4rem var(--btn-right-gutter) 0.4rem 0.8rem;
	font-size: 1.4rem;
	text-decoration: none;
	position: relative;
	width: 100%;
	letter-spacing: 0;
	display: block;
	border-bottom: 1px solid var(--gray-color);
	color: var(--main-font-color);
}

.m_list_anchor li a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--icon-right);
	z-index: 1;
	transform: translateY(calc(-50% + 0.2rem));
	width: var(--icon-size);
	aspect-ratio: 8/4;
	background: var(--main-color);
	-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
	clip-path: polygon(50% 100%, 100% 0, 0 0);
}

/*++++++++++++++++++++++++++++
m_otherpage_link
++++++++++++++++++++++++++++*/
.m_otherpage_link {
	--gap-col: 0px;
	--gap-row: 2rem;
	--col: 1;
	--padding: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

.m_otherpage_link_box {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	background: var(--main-color);
	border-radius: 0.8rem;
	position: relative;
	padding: 1.4rem var(--padding) var(--padding);
}

.m_otherpage_link_ttl {
	position: relative;
	font-weight: 700;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	padding: 0.6rem 0;
	text-decoration: none;
	color: var(--main-color);
}

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

.m_otherpage_link_ttl:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: calc(var(--padding) * -1);
	width: 1rem;
	aspect-ratio: 16/8;
	background: var(--main-color);
	border-radius: 0 1rem 1rem 0;
	z-index: 1;
	transform: translateY(-50%);
}

.m_otherpage_link_ttl a {
	text-decoration: none;
}

.m_otherpage_link_list li a {
	font-size: 1.4rem;
	text-decoration: none;
	position: relative;
	font-weight: 500;
	background: url(../images/icon_arrow02.svg) 0.3rem 50% / 1.6rem no-repeat;
	padding: 1rem 0 1rem 2rem;
	min-height: 4.8rem;
	display: flex;
	align-items: center;
	line-height: 1.5;
	border-bottom: 1px solid var(--main-color);
	color: var(--main-color);
}

/*++++++++++++++++++++++++++++
m_catch
++++++++++++++++++++++++++++*/
.m_catch {
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-top: 3rem;
	font-weight: 500;
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable_wrap {}

.m_timetable {
	--col-size: 9%;
	--tr-color: var(--brown_00);
	background: #fff;
	border: 1px solid var(--brown_00);
}

.m_timetable :is(td, th) {
	font-size: 1.4rem;
	text-align: center;
	padding: 1.5rem 0;
	vertical-align: middle;
	line-height: 1.4;
}

.m_timetable th {}

.m_timetable thead {
	background: var(--brown_00);
}

.m_timetable thead th {
	width: var(--col-size);
	padding: 1rem 0;
	color: #fff;
}

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

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

.m_timetable tbody th {

	text-align: center;
}

.m_timetable tbody td {}

.m_timetable_hosoku {
	font-size: 1.4rem;
	margin-top: 1.5rem;
}

/*++++++++++++++++++++++++++++
m_col
++++++++++++++++++++++++++++*/
.m_col {
	--gap-col: 2rem;
	--gap-row: 3rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: var(--under-box-mt);
}

.m_col_no_gutter {
	--gap: 0px;
}

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

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

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

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

.m_col_no_gutter img {
	margin: 0;
	border-radius: 0;
}

.m_col_reverse_sp {
	flex-direction: column-reverse;
}

.m_col_mtl_sp {
	--gap-col: 4rem;
	--gap-row: 4rem;
}

.m_col_item_ttl {
	margin-top: 1rem !important;
}

/*++++++++++++++++++++++++++++
m_faq
++++++++++++++++++++++++++++*/
.m_faq {
	margin-top: var(--under-box-mt);
	overflow: hidden;
	border: 1px solid var(--gray-color);
	border-radius: 0.8rem;
	box-shadow: 0px 0px 2.4rem 0px rgba(45, 36, 28, 0.15);
	margin-left: -1rem;
	margin-right: -1rem;
}

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

.m_faq_head {
	position: relative;
	--icon-right: 1.4rem;
	--icon-width: 1.4rem;
	--icon-color: var(--main-font-color);
}

.m_faq_head:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--icon-right);
	width: var(--icon-width);
	height: 1px;
	z-index: 5;
	transition: 0.3s;
	transform: translateY(-50%) rotate(90deg);
	background: var(--icon-color);
}

.m_faq_head::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--icon-right);
	width: var(--icon-width);
	height: 1px;
	z-index: 1;
	background: var(--icon-color);
	transform: translateY(-50%);
}

.m_faq_ttl {
	--custom-under-paragraph-mt: 0px;
	position: relative;
	z-index: 1;
	padding: 1rem 3.3rem 1rem 1.5rem;
	font-size: 1.5rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	display: flex;
	cursor: pointer;
	background: #fff;
	align-items: center;
	font-weight: 500;
	font-family: var(--font-min);
}

.m_faq_ttl:before {
	content: "Q";
	display: block;
	position: relative;
	font-size: 2.4rem;
	font-family: var(--font-en);
	width: auto;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 0.9rem;
	color: var(--main-color);
	padding-bottom: 0;
	top: 0.15em;
}

.m_faq_body {
	padding: 2.8rem 2.2rem;
	display: none;
	background: var(--beige_bg);
}

.m_faq_body p {
	line-height: 1.9;
}

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

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

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

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

/*++++++++++++++++++++++++++++
m_kakomi
++++++++++++++++++++++++++++*/
.m_kakomi {
	padding: 3rem;
	position: relative;
	z-index: 1;
	margin: 6rem -2rem 0;
	background: var(--custom-kakomi-bg-color, var(--gray-color));
	border-radius: 0.8rem;
	border: 1px solid var(--gray-color);
}

.m_kakomi_col {
	margin: var(--under-box-mt) 0 0;
}

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

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

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

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

.m_kakomi :is(h4, h5) {
	margin-top: 3rem;
}

.m_kakomi *:has(+ h5) {
	position: relative;
	padding-bottom: 3rem;
}

.m_kakomi *:has(+ h5):before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: -1;
	background: var(--gray-color);
}

/*++++++++++++++++++++++++++++
m_kakomi02
++++++++++++++++++++++++++++*/
.m_kakomi02 {
	border-radius: 0.8rem;
	padding: 5.7rem 2rem 6rem;
	margin: 6rem -2rem 0;
	box-shadow: 0px 0px 2.4rem 0px rgba(45, 36, 28, 0.15);
	background: #fff;
	position: relative;
}


.m_kakomi02:has(p:not(.m_kakomi_ttl02)) {
	padding-bottom: 2.1rem;
}

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

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

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

.m_kakomi_ttl02 {
	--border-gutter: 0.6rem;
	font-family: var(--font-min);
	position: relative;
	top: 0;
	font-size: 1.6rem;
	letter-spacing: 0;
	color: #fff;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 28.9rem;
	min-height: 8.4rem;
	margin: -11rem auto 3rem;
	padding: 1.2rem 1.3rem;
	font-weight: 500;
	border-radius: 0.8rem;
	background: var(--main-color);
	text-align: center;
	isolation: isolate;
}

.m_kakomi_ttl02:before {
	content: '';
	display: block;
	position: absolute;
	top: var(--border-gutter);
	left: var(--border-gutter);
	width: calc(100% - var(--border-gutter) * 2);
	height: calc(100% - var(--border-gutter) * 2);
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.5rem;
}

.m_kakomi_ttl02:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, 88%);
	width: 1.2rem;
	aspect-ratio: 1/1;
	background: var(--main-color);
	-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
	clip-path: polygon(50% 100%, 100% 0, 0 0);
}

/*++++++++++++++++++++++++++++
m_imgbox
++++++++++++++++++++++++++++*/
.m_imgbox {
	flex-direction: column;
	display: flex;
	gap: 5rem;
}

.m_imgbox_head {}

.m_imgbox_head img {
	max-width: 100%;
	width: auto;
	margin: 0 auto;
}

.m_imgbox_img {
	flex: 1;
}

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

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

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

section>.m_imgbox {
	margin-top: 3rem;
}

section>.m_imgbox+.m_imgbox {
	margin-top: 2rem;
}

/*++++++++++++++++++++++++++++
m_box
++++++++++++++++++++++++++++*/
.m_box {
	--gap: 10vw;
	--child-gap: 3vw;
	flex-direction: column;
	display: flex;
	gap: var(--gap);
	margin-top: calc(var(--under-box-mt));
}

.m_box_item:has(.m_box_child) {
	display: flex;
	gap: var(--child-gap);
	justify-content: space-between;
}

.m_box_child {
	width: calc(50% - var(--child-gap) / 2);
}

.m_box_item>*:first-child,
.m_box_child>*:first-child {
	margin-top: 0;
}

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

.m_feature_item {
	padding: 3rem 3rem 3rem;
	counter-increment: feature_counter;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	background: var(--gray-color);
	position: relative;
}

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

.m_feature_content {
	width: 100%;
}

.m_feature_ttl {
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 1.6rem;
	position: relative;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #808080;
	padding-bottom: 1.2rem;
	font-weight: 500;
}

.m_feature_ttl:before {
	content: "0"counter(feature_counter);
	font-size: 3.1rem;
	line-height: 1;
	margin-bottom: 0.8rem;
	display: block;
	color: var(--main-color);
	font-family: var(--font-en);
	font-weight: 400;
}

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

.m_feature_img {
	width: 100%;
}

.m_feature .m_kakomi {
	--custom-kakomi-bg-color: #fff;
	padding: 2.5rem;
}

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

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

.m_feature :is(h4, h5) {
	margin-top: 3rem;
}

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

.m_flow_item {
	box-shadow: 0px 0px 2.4rem 0px #2D241C26;
	border-radius: 0.8rem;
	background: #fff;
	padding: 3rem 2rem 3rem;
	counter-increment: flow_counter;
	display: flex;
	flex-direction: column;
	gap: 0rem;
	position: relative;
	margin-left: -2rem;
	margin-right: -2rem;
}

.m_flow_item:before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2rem;
	left: 50%;
	width: 3rem;
	aspect-ratio: 2/1;
	z-index: 1;
	display: block;
	transform: translate(-50%, 99%);
	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:nth-of-type(n + 2) {
	margin-top: var(--item-gap);
}

.m_flow_item:last-of-type:before {
	display: none;
}

.m_flow_content {
	width: 100%;
}

.m_flow_content :is(h3, h4, h5):first-child {
	margin-top: 0 !important;
}

.m_flow_content :is(h4, h5) {
	margin-top: 3rem;
}

.m_flow_ttl {
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 2rem;
	position: relative;
	letter-spacing: 0.08em;
	position: relative;
	font-weight: 500;
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.m_flow_ttl span {
	border-bottom: 1px solid var(--main-color);
	flex: 1;
	font-family: var(--font-min);
	color: var(--main-color);
	line-height: 1.8;
	padding-bottom: 1.2rem;
	/* min-height: 7.6rem; */
}

.m_flow_step {
	position: relative;
	outline: 1px solid rgba(255, 255, 255, 0.2);
	outline-offset: -0.5rem;
	background: var(--main-color);
	border-radius: 50%;
	width: 7rem;
	aspect-ratio: 1/1;
	font-size: 1.5rem;
	color: #fff;
	font-family: var(--font-en);
	text-align: center;
	padding-top: 1.6rem;
	line-height: 1;
}

.m_flow_step:before {
	content: "0"counter(flow_counter);
	font-size: 3.6rem;
	line-height: 1;
	margin-bottom: 0;
	display: block;
	color: #fff;
	font-family: var(--font-en);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	text-align: center;
	padding-top: 2.3rem;
}

.m_flow_ttl_no_border {
	border: 0 !important;
	padding-bottom: 0 !important;
}

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

.m_flow_img {
	width: 100%;
}

.m_flow .m_kakomi {
	--custom-kakomi-bg-color: var(--gray-color);
	padding: 2.5rem;
	margin-left: 0;
	margin-right: 0;
	margin-top: 3rem;
}

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

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

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

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

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

/*++++++++++++++++++++++++++++
m_tableline
++++++++++++++++++++++++++++*/
.m_tableline {}

.m_tableline :is(td, th) {
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.1em;
	padding: 0.8rem 1rem;
	vertical-align: middle;
}

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

.m_tableline th {
	width: 37%;
	position: relative;
}

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

.m_tableline td {
	vertical-align: middle;
}

/*++++++++++++++++++++++++++++
m_table
++++++++++++++++++++++++++++*/
.m_table {
	margin-top: 3rem;
}

.m_table :is(td, th) {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	padding: 1rem 1.2rem;
	vertical-align: middle;
	text-align: center;
	border: 1px solid var(--brown_01);
	background: #fff;
}

.m_table thead {}

.m_table thead th {
	background: var(--brown_02);
	color: #fff;
	padding: 1rem 0 0.8rem;
	border-right: 1px solid #fff;
}

.m_table thead th:last-of-type {
	border-right: 1px solid var(--brown_01);
}

.m_table .hosoku {
	font-size: 1.3rem;
	line-height: 2;
	letter-spacing: 0.12em;
	color: var(--brown_01);
	display: block;
	margin-top: 0.5rem;
}

.m_table tr {}

.m_table tr:nth-of-type(2n + 1) {}

.m_table tr:last-of-type {}

.m_table th {
	background: var(--lightbeige_03);
}

.m_table td {}

.m_table_scroll .m_table02 {
	width: 68rem;
}

.m_table02 tbody th {
	text-align: left;
}

.m_table02 tbody tr:not(:has(th)) td:first-of-type,
.m_table02 tbody th+td {
	text-align: left;
}

.m_table02 thead th:nth-of-type(1) {
	width: calc(170/680 * 100%);
}

.m_table02 thead th:nth-of-type(2) {
	width: calc(330/680 * 100%);
}

.m_table02 thead th:nth-of-type(3) {
	width: calc(180/680 * 100%);
}

.m_table02 tbody td:first-of-type {
	background: var(--lightbeige_02);
}

.m_table_hosoku {
	margin-top: 2.5rem;
	font-size: 1.4rem;
}

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

.l_under_mv_inner {
	margin-top: 0;
	min-height: 30rem;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: var(--header-height);
}

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

.l_under_mv_img .oft {
	position: relative;
	height: 100%;
	z-index: 1;
	border-radius: 0;
}

.l_under_mv_img .oft {
	position: relative;
	overflow: hidden;
	aspect-ratio: auto;
	height: 100%;
}

.l_under_mv_img img {
	object-position: center center;
}

.l_under_mv_ttl {
	border-radius: 0;
	padding: 0 3rem;
	margin: 0;
	width: 100%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: var(--main-color);
	text-shadow: 0px 0px 1.1rem rgba(255, 255, 255, 0.55);
}

.l_under_mv_ttl .ja {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	line-height: 1.44;
	font-family: var(--font-min);
	text-align: center;
}

.l_under_mv_ttl .en {
	font-family: var(--font-en);
	letter-spacing: 0em;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-top: 0.8rem;
}

/* l_under_content */
.l_under_content {
	font-size: 1.4rem;
}

.l_under_content .inner {
	padding: 0;
}

:where(.l_under_content)>section {
	padding: 6rem 0;
	position: relative;
	isolation: isolate;
}

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

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

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

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

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

:where(.l_under_content) :is(p:where(:not(.no_default, .m_btn_wrap)),
	ul:where(:not(.m_toc_list, .no_default)),
	ol:where(:not(.no_default)),
) {
	margin-top: var(--custom-under-paragraph-mt, var(--under-paragraph-mt));
}

:where(.l_under_content) table {
	margin-top: var(--under-box-mt);
}

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

:where(.l_under_content) strong {
	font-weight: 700;
}

:where(.l_under_content) .alignnone {
	width: 100%;
	max-width: 100%;
}

: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) .m_btn01 {}

/* title */
:where(.l_under_content) .m_toc+h2 {
	margin-top: 3rem;
}

:where(.l_under_content) h2:where(:not(.no_default)) {
	color: var(--main-font-color);
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.08em;
	line-height: 1.5;
	padding: 3.3rem 0 0;
	margin: 8rem 0 4.7rem;
	text-align: center;
}

:where(.l_under_content) h3:where(:not(.no_default)) {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.7;
	padding: 2rem var(--inner-padding) 1.8rem;
	margin: 6rem calc(-1 * var(--inner-padding)) 5rem;
	display: flex;
	justify-content: center;
	position: relative;
	text-align: center;
}

.m_kakomi_ttl,
:where(.l_under_content) h4:where(:not(.no_default)) {
	font-weight: 500;
	font-size: 1.7rem;
	letter-spacing: 0.08em;
	line-height: 1.6;
	padding: 1.2rem 1.5rem;
	position: relative;
	color: #fff;
	background: var(--main-color);
	border-radius: 0.5rem;
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	margin: 5rem 0 4rem;
}

.m_kakomi_ttl {
	margin: 3rem 0 2rem;
}

.m_kakomi_ttl:before,
:where(.l_under_content) h4:where(:not(.no_default)):before {
	content: "";
	display: block;
	position: absolute;
	top: 0.6rem;
	left: 0.2rem;
	width: 1.2rem;
	aspect-ratio: 1/1;
	z-index: 1;
	background: var(--main-color);
}

:where(.l_under_content) h5:where(:not(.no_default)) {
	font-weight: 500;
	line-height: 1.7;
	font-size: 1.5rem;
	letter-spacing: 0.08em;
	padding: 0.3rem 1rem;
	margin: 3rem 0 2rem;
	position: relative;
	color: var(--main-color);
	background: #fff;
	border: 1px solid var(--main-color);
	width: fit-content;
}

:where(.l_under_content) h5:where(:not(.no_default)):before {
	content: "";
	display: none;
	position: absolute;
	top: 0.6rem;
	left: 0.8rem;
	width: 1.2rem;
	aspect-ratio: 1/1;
	z-index: 1;
	background: var(--main-color);
	border-radius: 50%;
}

:where(.l_under_content) :is(h2, h3, h4, h5, h6)+ :is(h2, h3, h4, h5, h6) {
	margin-top: 0;
}

:root :where(.l_under_content) section> :is(h2, h3, h4, h5, h6)+ :is(div, p, ul, ol) {
	margin-top: 0;
}

/* ul */
:where(.l_under_content) ul:where(:not(.no_default, .m_toc_list)) {
	--gap-col: 1rem;
	--gap-row: 1rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
}

:where(.l_under_content) ul:where(:not(.no_default, .m_toc_list)) li {
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	position: relative;
	padding-left: 0.8rem;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 1.7;
	text-align: left;
}

:where(.l_under_content) ul:where(:not(.no_default, .m_toc_list)) li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0rem;
	top: 0.95rem;
	width: 0.4rem;
	aspect-ratio: 1/1;
	background: var(--main-color);
	border-radius: 50%;
}

:where(.l_under_content) ul:where(:not(.no_default, .m_toc_list)) li p:first-of-type {
	margin-top: 0;
}

ul.p_ul_no_dots li {
	padding-left: 0 !important;
}

ul.p_ul_no_dots li::before {
	display: none !important;
}

.m_list_long {
	--gap-row: 4rem;
}

.m_list_long li+li:after {
	content: "";
	display: block;
	position: absolute;
	top: -2rem;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	background: var(--gray-color);
}

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

:where(.l_under_content) ol:where(:not(.no_default)) li {
	counter-increment: counter;
	padding: 0 0 0 3rem;
	position: relative;
	font-size: 1.4rem;
	width: calc(100% / var(--col) - var(--gap-col) * (var(--col) - 1) / var(--col));
	letter-spacing: 0.15em;
	width: fit-content;
	text-align: left;
}

:where(.l_under_content) ol:where(:not(.no_default)) li:before {
	/* content: "0"counter(counter) "."; */
	content: counter(counter) ".";
	display: block;
	position: absolute;
	top: 0.2em;
	left: 0;
	z-index: 1;
	font-family: var(--font-en);
	color: #866100;
	line-height: 1;
	font-size: 2rem;
	letter-spacing: 0;
}

:where(.l_under_content) ol:where(:not(.no_default)) li:nth-of-type(n + 10):before {
	content: counter(counter) ".";
}

/* table */
.table20 td,
.table20 th {
	width: 20% !important;
}

.table25 td,
.table25 th {
	width: 25% !important;
}

.table50 td,
.table50 th {
	width: 50% !important;
}

:is(.p_table_th20,
	.p_table_th30,
	.p_table_th40,
	.p_table_th50,
	.p_table_th20_sp,
	.p_table_th30_sp,
	.p_table_th40_sp,
	.p_table_th50_sp,
	.p_table_th20_pc,
	.p_table_th30_pc,
	.p_table_th40_pc,
	.p_table_th50_pc) {
	table-layout: fixed;
}

:is(.p_table_th20,
	.p_table_th30,
	.p_table_th40,
	.p_table_th50,
	.p_table_th20_sp,
	.p_table_th30_sp,
	.p_table_th40_sp,
	.p_table_th50_sp,
	.p_table_th20_pc,
	.p_table_th30_pc,
	.p_table_th40_pc,
	.p_table_th50_pc) td {
	width: auto;
}

.p_table_th20 th {
	width: 20% !important;
}

.p_table_th30 th {
	width: 30% !important;
}

.p_table_th40 th {
	width: 40% !important;
}

.p_table_th50 th {
	width: 50% !important;
}

.p_table_col02 :is(td, th) {
	width: 50%;
}

.p_table_col04 :is(td, th) {
	width: 25%;
}

.p_table_col05 :is(td, th) {
	width: 20%;
}

:where(.l_under_content) table:where(:not(.no_default)) {
	margin-top: var(--under-box-mt);
	margin-left: -1rem;
	margin-right: -1rem;
	width: calc(100% + 2rem);
}

.m_table_scroll {
	margin-top: var(--under-box-mt);
}

/* theadがある場合のカラムの大きさ基準 */
:where(.l_under_content) table:where(:not(.no_default)) thead th {
	width: 50%;
}

/* theadの最初の要素の幅を基準にする */
:where(.l_under_content) table:where(:not(.no_default)).th10 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th10 thead th:first-of-type {
	width: 10% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th20 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th20 thead th:first-of-type {
	width: 20% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th30 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th30 thead th:first-of-type {
	width: 30% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th40 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th40 thead th:first-of-type {
	width: 40% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th50 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th50 thead th:first-of-type {
	width: 50% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th60 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th60 thead th:first-of-type {
	width: 60% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th70 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th70 thead th:first-of-type {
	width: 70% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th80 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th80 thead th:first-of-type {
	width: 80% !important;
}

:where(.l_under_content) table:where(:not(.no_default)).th90 tbody th,
:where(.l_under_content) table:where(:not(.no_default)).th90 thead th:first-of-type {
	width: 90% !important;
}

:where(.l_under_content) table:where(:not(.no_default)):is(.th10, .th20, .th30, .th40, .th50, .th60, .th70, .th80, .th90) tbody td,
:where(.l_under_content) table:where(:not(.no_default)):is(.th10, .th20, .th30, .th40, .th50, .th60, .th70, .th80, .th90) thead th:nth-of-type(n+2) {
	width: auto !important;
}


/* theadがない場合のカラムの大きさ基準 */
:where(.l_under_content) table:where(:not(.no_default)):not(:has(thead)) :is(th, td) {
	width: 50%;
}

:where(.l_under_content) table:where(:not(.no_default)) :is(th, td) {
	font-size: 1.5rem;
	padding: 1.5rem 1rem;
	line-height: 1.5;
	vertical-align: middle;
	letter-spacing: 0.1em;
	text-align: center;
	border: 1px solid var(--gray-color);
}

:where(.l_under_content) table:where(:not(.no_default)) thead th {
	background: var(--gray-color);
	color: var(--main-color);
	padding: 1.4rem 1rem;
}

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

:where(.l_under_content) table:where(:not(.no_default)) thead th:empty {
	background: none;
}

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

:where(.l_under_content) table:where(:not(.no_default)) tbody th[rowspan]+th,
:where(.l_under_content) table:where(:not(.no_default)) tbody th:first-of-type {
	background: var(--beige_bg);
}

:where(.l_under_content) table:where(:not(.no_default)) tbody td {}

:where(.l_under_content) table:where(:not(.no_default)) tbody td em {
	font-size: 2rem;
	font-family: var(--font-en);
	color: var(--main-color);
	font-weight: 700;
	position: relative;
	line-height: 1.1;
	top: 0.05em;
	margin: 0 0.1em;
}

:where(.l_under_content) table:where(:not(.no_default)) tbody td+td {
	border-left: 1px solid var(--gray-color);
}

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

:where(.l_under_content) table:where(:not(.no_default):not(:has(thead))) tbody tr:first-of-type {
	border-top: 1px solid var(--gray-color);
}

:where(.l_under_content) table:where(:not(.no_default):not(:has(thead))) tbody td {
	text-align: left;
}

:where(.l_under_content) table ol:first-of-type,
:where(.l_under_content) table ul:first-of-type,
:where(.l_under_content) table p:first-of-type {
	margin-top: 0;
}

:where(.l_under_content) table ul,
:where(.l_under_content) table ol {
	--gap-row: 0.5rem;
}

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

.tdr td {
	text-align: right !important;
}

.tdc td {
	text-align: center !important;
}

:where(.l_under_content) table:where(:not(.no_default):not(:has(thead))) tbody th+th {
	border-right: 1px solid var(--main-color);
}

/*++++++++++++++++++++++++++++
l_under_breadcrumb
++++++++++++++++++++++++++++*/
.l_under_breadcrumb {
	margin: 0 calc(var(--inner-padding) * -1);
	width: calc(100% + var(--inner-padding) * 2);
	padding: 1.5rem var(--inner-padding) 3.4rem;
	position: relative;
}

.breadcrumbs {
	padding: 0;
	margin-bottom: 0;
	flex-wrap: wrap;
	line-height: 1.2;
	width: fit-content;
	margin-left: auto;
}

.breadcrumbs br {
	display: none !important;
}

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

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

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

.breadcrumbs>span:after {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.4rem;
	width: 0.5rem;
	height: auto;
	aspect-ratio: 500/895;
	margin-left: 1rem;
	background: url(../images/breadcrumbs_arrow.svg) center center / 100% no-repeat;
}

.breadcrumbs>span:last-of-type {
	padding-right: 0;
}

.breadcrumbs>span:last-of-type:after {
	display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.l_single_ttl {
	margin-top: 4rem;
}

.l_side {
	margin-top: 8rem;
}

.l_side_ttl {
	border-radius: 0.4rem;
	background: var(--main-color);
	color: var(--bgc-w);
	text-align: center;
	min-height: 4rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.l_side_list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.l_side_list li {}

.l_side_list li a {
	display: flex;
	background: var(--beige_bg);
	border-radius: 0.4rem;
	color: var(--main-color);
	padding: 0.5rem 1.8rem;
	min-height: 4rem;
	line-height: 1.44;
	font-weight: 500;
	align-items: center;
	text-decoration: none;
	letter-spacing: 0.08em;
}

.single .l_side {
	margin-top: 8rem;
	margin-bottom: 8rem;
}

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

.l_news_item:first-of-type {
	border-top: #CBCFC9 1px solid;
}

.l_news_item {
	border-bottom: #CBCFC9 1px solid;
}

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

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

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

.l_news_item_cat {
	line-height: 1.2;
	font-size: 1.2rem;
	border: 1px solid #646C60;
	font-weight: 500;
	letter-spacing: 0;
	padding: 0.1rem 1.1rem 0.1rem;
	min-height: 2rem;
	display: flex;
	align-items: center;
}

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

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

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

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	background: var(--brown_02);
	padding: 4rem 0 16.3rem;
}

.l_footer .inner {}

.l_footer_logo {
	display: flex;
	width: 28rem;
}

.l_footer_table {
	margin-top: 2rem;
}

.l_footer_table :is(th, td) {
	font-size: 1.4rem;
	padding: 1rem 0 0.9rem;
	vertical-align: middle;
}

.l_footer_table th {
	color: var(--brown_00);
	width: 7rem;
	padding-right: 1rem;
}

.l_footer_table td {
	color: #fff;
}

.l_footer_table tr {
	border-bottom: 1px solid var(--brown_00);
}

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

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

.l_footer .m_timetable_hosoku {
	color: #fff;
}

.l_footer_map {
	margin-top: 3rem;
}

.l_footer_youtube {
	margin-top: 3rem;
}

.l_footer_bnr {
	width: 15.6rem;
	font-size: 1.1rem;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.08em;
	margin: 3rem auto 0;
}

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

.l_footer_bnr span {
	background: #fff;
	display: block;
}

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

.l_footer small {
	position: relative;
	display: block;
	color: var(--brown_00);
	font-size: 1.2rem;
	line-height: 1.5;
	text-align: center;
	margin-top: 2rem;
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	--fixed-height: 7.4rem;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	background: rgba(137, 111, 68, 0.8);
	height: var(--fixed-height);
	padding: 1rem;
}

.l_fixed_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5.4rem;
	text-decoration: none;
}

.l_fixed_item img {
	position: absolute;
	top: -1.8rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	width: 15rem;
	filter: drop-shadow(0px 0px 0.4rem rgba(0, 0, 0, 0.25));
}

.l_fixed_web {
	background: url(../images/fixed_web.png) center / 100% no-repeat;
}

.l_fixed_line {
	background: url(../images/fixed_line.png) center / 100% no-repeat;
}

.l_fixed_item span {
	line-height: 1.4;
	font-size: 1.4rem;
	letter-spacing: 0.08rem;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-maru);
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	bottom: 9.4rem;
	right: 1rem;
	width: 6rem;
	transition: var(--default-transition);
	filter: drop-shadow(0px 0px 1.4rem rgba(0, 0, 0, 0.1));
}


/*++++++++++++++++++++++++++++
m_slider
++++++++++++++++++++++++++++*/
.m_slider {
	--img-size: 33.5rem;
	--btn-position: -1rem;
	--btn-size: 5rem;
	--ratio-w: 315;
	--ratio-h: 236;
	--ratio: var(--ratio-w) / var(--ratio-h);
	padding: 0;
	margin: 3rem -1rem 0;
}

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

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

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

.m_slider_main .m_slider_item {
	position: relative;
	margin: 0 0.5rem;
}

.m_slider_main figure {
	position: relative;
	z-index: 1;
	opacity: 0.5;
	transition: var(--default-transition);
}

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

.m_slider_desc {
	background: rgba(255, 255, 255, 0.6);
	border-radius: 0;
	padding: 0.8rem 1.4rem;
	margin: 0;
	position: absolute;
	z-index: 10;
	transition: var(--default-transition);
	opacity: 0;
	bottom: 0;
	width: 100%;
}

.slick-slide.slick-current figure,
.slick-slide.is-active-next figure,
.slick-slide.slick-current .m_slider_desc,
.slick-slide.is-active-next .m_slider_desc {
	opacity: 1;
}

.m_slider_desc_ttl {
	font-size: 1.4rem;
	line-height: 1.6;
	font-family: var(--font-min);
	letter-spacing: 0.08em;
	font-weight: 500;
	color: 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: rgba(172, 88, 10, 0.4);
	border-radius: 50%;
	box-shadow: 0px 0px 14.29px 0px rgba(0, 0, 0, 0.05);
}

.m_slider .slick-arrow:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 0.8rem;
	aspect-ratio: 1/1;
	z-index: 10;
	cursor: pointer;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.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 .slick-dots {
	display: flex !important;
	width: 100%;
	text-align: center;
	line-height: 1;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	z-index: 10;
	position: relative;
	margin-top: 5rem;
}

.m_slider .slick-dots li {
	position: relative;
	width: 0.6rem;
	aspect-ratio: 1/1;
}

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

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

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

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

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

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

.m_imgslider_item figure {
	width: 33rem;
	overflow: hidden;
	aspect-ratio: 33/22;
}

.m_imgslider_item figure img {
	display: block;
}

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

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

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

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

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

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

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

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