@charset "utf-8";

:root {
	/* spデザインの横幅 */
	--bw: 375;

	--vw: 1vw;
	--vh: 1vh;
	--inner-padding: 2rem;
	--inner-padding-top: 0px;
	--inner-padding-bottom: 0px;

	--color-opacity: 1;

	--blue10: #001033;
	--blue20: #002472;
	--blue40: #294fa3;
	--blue60: #708ac2;
	--blue80: #b8c4e0;
	--blue90: #d6e0f5;
	--blue-gray40: #425776;
	--blue-gray60: #84a8c2;
	--blue-gray90: #dee4ed;
	--sky10: #001b33;
	--sky40: #005bab;
	--sky60: #5c9dd6;
	--sky80: #adceeb;
	--sky90: #d6e6f5;
	--gray20: #313235;
	--gray40: #61656b;
	--gray60: #a6a9ae;
	--gray80: #cacbce;
	--gray90: #e4e5e7;
	--bgc-w: #f4f3f3;
	--txt-white: #fefefe;
	--txt-black: #333333;

	--main-font-color: var(--blue10);
	--main-color-dark: var(--blue10);

	--main-color: var(--blue20);

	--gray-color: #cec9c6;

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

	--trim-noto-top: 0.6em;
	--trim-noto-bottom: 0.55em;
	--font-main: YakuHanMPs, "游明朝体", "Yu Mincho", YuMincho,
		"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "Noto Serif JP", serif;
	--font-en: "Cormorant Garamond", serif;
	--font-en-ct: "Crimson Text", serif;
	--font-noto: YakuHanMPs, "Noto Serif JP", 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);
}

body {
	background: var(--txt-white);
}

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

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

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

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

/*++++++++++++++++++++++++++++
p_youtube
++++++++++++++++++++++++++++*/
.p_youtube {
	position: relative;
	width: 100%;
	aspect-ratio: 560/315;
	margin-top: 4rem;
}

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

/*++++++++++++++++++++++++++++
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: 0.8rem;
	--arrow-right: 1.7rem;
	--color: var(--sky40);
	position: relative;
	padding: 0.3rem 4.3rem 0.7rem 0.4rem;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1.5;
	text-decoration: none;
	width: fit-content;
	color: var(--color);
	min-width: 24rem;
	border-bottom: 1px solid var(--color);
}

.p_btn01::after {
	content: "";
	display: block;
	position: absolute;
	top: 1.4rem;
	right: var(--arrow-right);
	width: var(--arrow-size);
	aspect-ratio: 8/12;
	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(--color);
}

.p_btn01_mini {
	--arrow-size: 0.8rem;
	--arrow-right: 0.8rem;
	--color: var(--sky40);
	position: relative;
	padding: 0.2rem 2rem 0.2rem 0.8rem;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	line-height: 1.5;
	text-decoration: none;
	width: fit-content;
	color: var(--color);
	min-width: 12.7rem;
	border-bottom: 1px solid var(--color);
}

.p_btn01_mini::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: var(--arrow-right);
	width: var(--arrow-size);
	aspect-ratio: 8/12;
	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(--color);
}

.p_btn01_mini span {
	letter-spacing: inherit;
}

.p_btn01_mini_en {
	font-family: var(--font-en);
	line-height: 1.2;
	letter-spacing: 0;
	top: 0.1rem;
}

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

.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_btn02 {
	background: var(--main-color-dark);
	min-height: 11.734vw;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	box-shadow: var(--btn-shadow);
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	color: #fff;
	position: relative;
	text-decoration: none;
}

.p_btn02 + .p_btn02 {
	margin-top: 2.667vw;
}

.p_btn02:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 3.2vw;
	width: 3.2vw;
	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;
}

.p_btn02_color02 {
	background: var(--main-color);
}

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

/*++++++++++++++++++++++++++++
p_ttl_en
++++++++++++++++++++++++++++*/
.p_ttl_en {
	font-family: var(--font-en);
	font-size: 9.6rem;
	letter-spacing: 0;
	line-height: 1;
	position: relative;
	z-index: 1;
}

/*++++++++++++++++++++++++++++
p_ttl
++++++++++++++++++++++++++++*/
.p_ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 10;
	color: var(--main-color-dark);
	margin-bottom: 8.4vw;
}

.p_ttl span {
	font-size: 4rem;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	font-family: var(--font-en);
	color: var(--main-color);
}

.p_ttl em {
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-top: 2.7vw;
}

/*++++++++++++++++++++++++++++
p_hosoku
++++++++++++++++++++++++++++*/
.p_hosoku {
	color: var(--sky40);
}
.l_under_content .p_hosoku {
	margin-top: 1.5rem;
}
/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
module
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*++++++++++++++++++++++++++++
m_toc
++++++++++++++++++++++++++++*/
.m_toc {
	padding: 3rem 0 4rem;
}

.m_toc_list {
	display: flex;
	flex-direction: column;
    gap: 1.4rem;
}

.m_toc_list a {
	line-height: 1.5;
	padding: 0 0 0 1.6rem;
	font-size: 1.6rem;
	text-decoration: none;
	position: relative;
	width: fit-content;
	letter-spacing: 0.08em;
	display: block;
}

.m_toc_list a::after {
	content: "";
	display: block;
	position: absolute;
	top: 1.1rem;
	left: 0;
	width: 0.6rem;
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 50%;
	background: var(--sky80);
	transform: translateY(-50%);
}

.m_toc_list:has(.m_toc_item_ttl) .m_toc_item_ttl :is(a,p) {
	font-size: 1.8rem;
    text-decoration: none;
    color: var(--sky40);
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--sky80);
	padding-left: 0;
    padding-bottom: 0.2rem;
    margin-bottom: 0;
    display: block;
	width: 100%;
}

.m_toc_list:has(.m_toc_item_ttl) .m_toc_item_ttl :is(a,p):after {
	display: none;
}

.m_toc_list:has(.m_toc_item_ttl) a {
	text-decoration: none;
	position: relative;
	padding: 0 0 0 1.6rem;
	color: var(--sky40);
	display: block;
	line-height: 1.5;
}

.m_toc_list:has(.m_toc_item_ttl) a::after {
	content: "";
	display: block;
	position: absolute;
	top: 1.1rem;
	left: 0;
	width: 0.6rem;
	aspect-ratio: 1/1;
	z-index: 1;
	border-radius: 50%;
	background: var(--sky40);
	transform: translateY(-50%);
}

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

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

.m_linklist li a {
	text-decoration: none;
	color: var(--main-color);
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	line-height: 1.5;
	background: var(--blue-gray90);
	display: flex;
	align-items: center;
	position: relative;
	padding: 0.6rem 2rem 0.5rem;
	min-height: 4rem;
	border-radius: 0.4rem;
}

.m_linklist li a:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.2rem;
	height: 1px;
	z-index: 1;
	background: var(--sky40);
	transform: translateY(-50%);
}

/*++++++++++++++++++++++++++++
m_catch
++++++++++++++++++++++++++++*/
.m_catch {
	text-align: center;
	color: var(--main-color);
	letter-spacing: 0;
	line-height: 1.6;
	margin-top: 3rem;
}

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

.m_cat_item {
	border: 1px solid var(--main-color);
	padding: 0em 1.1em 0em 1.1em;
	line-height: 1.33;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	min-width: calc((80 / var(--bw)) * 100vw);
	text-align: center;
}

/*++++++++++++++++++++++++++++
m_timetable
++++++++++++++++++++++++++++*/
.m_timetable_wrap {
	--ttl-color: var(--sky40);
	--ttl-bg: rgba(255, 255, 255, 0.5);
	--table-font-color: var(--main-color);
	--thead-border-color: var(--blue40);
	--tbody-border-color: var(--blue80);
}

.m_timetable_wrap + .m_timetable_wrap {
	margin-top: 4.1rem;
}

.m_timetable_ttl {
	color: var(--ttl-color);
	border: 1px solid var(--ttl-color);
	background: var(--ttl-bg);
	text-align: center;
	letter-spacing: 0.24rem;
	font-size: 1.4rem;
	min-height: 2.9rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.5;
	padding: 0.2rem 1rem;
	margin-bottom: 1rem;
}

.m_timetable {
	--col-size: 3rem;
}

.m_timetable :is(td, th) {
	font-size: 1.25rem;
	letter-spacing: 0;
	text-align: center;
	padding: 0.9rem 0 0.7rem 0;
	vertical-align: middle;
	color: var(--table-font-color);
	line-height: 1.5;
}

.m_timetable thead {
	border-bottom: 1px solid var(--thead-border-color);
}

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

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

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

.m_timetable tbody tr:last-of-type {
	border-bottom: 0;
}

.m_timetable tbody th {
	text-align: left;
	padding-left: 1rem;
}

.m_timetable_hosoku {
	color: var(--hosoku-color);
	font-size: 1.3rem;
	letter-spacing: 0.15em;
	margin-top: 2.6vw;
}

.m_timetable_hosoku {
	--color: var(--sky40);
	--color02: var(--blue20);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 3.6rem;
}

.m_timetable_hosoku_ttl {
	color: var(--color);
	border: 1px solid var(--color);
	min-height: 3.9rem;
	width: 23rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	margin-bottom: 1.4rem;
}

.m_timetable_hosoku_txt {
	font-size: 1.3rem;
	line-height: 1.8;
	color: var(--color02);
	letter-spacing: 0.02em;
	width: 23.8rem;
}


/*++++++++++++++++++++++++++++
m_col
++++++++++++++++++++++++++++*/
.m_col {
	--gap-col: 2rem;
	--gap-row: 2rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	margin-top: var(--under-default-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_no_gutter img {
	margin: 0;
	border-radius: 0;
}

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

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

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

.m_faq:last-of-type {
}

.m_faq_head {
	position: relative;
	--icon-right: 1.3rem;
	--icon-width: 1.2rem;
	--background: var(--main-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(--background);
}

.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(--background);
	transform: translateY(-50%);
}

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

.m_faq_ttl {
	position: relative;
	z-index: 1;
	padding: 1.1rem 3.3rem 1rem 0rem;
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	line-height: 1.5;
	display: flex;
	cursor: pointer;
	color: var(--main-color);
	background: var(--blue-gray90);
	align-items: center;
}

.m_faq_ttl:before {
	content: "Q";
	display: block;
	position: relative;
	font-size: 2.5rem;
	font-family: var(--font-en);
	width: 4.7rem;
	height: 4rem;
	border-right: 1px solid var(--blue-gray40);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 1.8rem;
}

.m_faq_body {
	padding: 2rem 2.2rem;
	display: none;
	background: var(--txt-white);
}

.m_faq_txt {
	line-height: 1.8;
}

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

/*++++++++++++++++++++++++++++
m_kakomi
++++++++++++++++++++++++++++*/
.m_kakomi {
	background: var(--kakomi-bg);
	padding: 3rem 3rem 3rem;
	position: relative;
	z-index: 1;
	margin-top: 4rem;
	border-radius: 0;
	box-shadow: 0.1rem 0.1rem 3rem 0px rgba(0, 36, 114, 0.06);
}

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

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

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

.m_kakomi_ttl {
	font-size: 1.5rem;
	letter-spacing: 0;
	padding-bottom: 0.8rem;
	margin-bottom: 1.5rem;
	color: var(--main-color);
	line-height: 1.6;
	position: relative;
}

.m_kakomi_ttl:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	background: var(--sky40);
}

.m_kakomi_ttl02 {
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 0;
	padding-left: 1.6rem;
	margin-bottom: 1.5rem;
	color: var(--main-color);
	line-height: 1.6;
}

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

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

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

.m_imgbox_img {
	flex: 1;
}

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

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

:where(.l_under_content) .m_imgbox h3:where(:not(.no_default)),
:where(.l_under_content) .m_imgbox h4:where(:not(.no_default)),
:where(.l_under_content) .m_imgbox h5:where(:not(.no_default)) {
	margin-top: 3rem;
}

/*++++++++++++++++++++++++++++
m_box
++++++++++++++++++++++++++++*/
.m_box {
	--gap: 10vw;
	--child-gap: 3vw;
	flex-direction: column;
	display: flex;
	gap: var(--gap);
	margin-top: calc(var(--under-default-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_btn_wrap
++++++++++++++++++++++++++++*/

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

.m_feature_item {
	--padding-side: 3rem;
	box-shadow: 0.1rem 0.1rem 3rem 0px rgba(0, 36, 114, 0.06);
	background: var(--txt-white);
	padding: 3rem var(--padding-side) 3rem;
	counter-increment: feature_counter;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

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

.m_feature_content {
	width: 100%;
}

.m_feature_ttl {
	font-size: 1.7rem;
	line-height: 1.8;
	margin-bottom: 1.6rem;
	color: var(--main-color);
	position: relative;
}

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

.m_feature_ttl:after {
	content: "";
	display: block;
	position: absolute;
	top: 1.3rem;
	left: calc(-1 * var(--padding-side));
	width: 2rem;
	height: 1px;
	z-index: 1;
	background: var(--sky40);
}

.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 {
	background: var(--bgc-w);
	padding: 2.5rem;
}
.m_feature_content > .m_kakomi {
	margin-top: 2rem;
}

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

.m_flow_item {
	--padding-side: 3rem;
	background: var(--blue-gray90);
	padding: 3rem var(--padding-side) 3rem;
	counter-increment: flow_counter;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

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

.m_flow_content {
	width: 100%;
}

.m_flow_ttl {
	font-size: 1.7rem;
	line-height: 1.8;
	margin-bottom: 1.6rem;
	color: var(--main-color);
	position: relative;
	letter-spacing: 0.08em;
}

.m_flow_ttl:before {
	content: "0" counter(flow_counter);
	font-size: 3.1rem;
	line-height: 1;
	margin-bottom: 0.8rem;
	display: block;
	color: var(--sky40);
}

.m_flow_ttl:after {
	content: "";
	display: block;
	position: absolute;
	top: 1.3rem;
	left: calc(-1 * var(--padding-side));
	width: 2rem;
	height: 1px;
	z-index: 1;
	background: var(--sky40);
}

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

.m_flow_img {
	width: 100%;
}

.m_flow .m_kakomi {
	background: #fff;
	padding: 2.5rem;
}

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


/*++++++++++++++++++++++++++++
m_tableline
++++++++++++++++++++++++++++*/
.m_tableline {
	margin-top: 2rem;
}

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

.m_tableline th {
	border-bottom: 1px solid var(--main-color);
	width: 40%;
	vertical-align: top;
	color: var(--main-color);
}

.m_tableline td {
	border-bottom: 1px solid var(--blue-gray60);
	vertical-align: middle;
}

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

.m_table :is(td, th) {
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0;
	padding: 0.8rem 1rem;
	vertical-align: top;
}

.m_table tr {
	border-top: 1px solid var(--main-color);
	background: var(--blue-gray90);
}

.m_table tr:last-of-type {
	border-bottom: 1px solid var(--main-color);
}

.m_table tr:nth-of-type(2n) {
	background: var(--txt-white);
}

.m_table th {
	width: 40%;
	color: var(--main-color);
}

.m_table td {
}

/*++++++++++++++++++++++++++++
u_ttl01 
++++++++++++++++++++++++++++*/
.u_ttl01 {
	font-family: var(--font-en);
	font-size: 4rem;
	letter-spacing: 0;
	color: var(--main-color);
	margin-top: 5rem;
	line-height: 1;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
}

.u_ttl01 em {
	font-size: 1.5rem;
	margin-top: 1.5rem;
}

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

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

.l_news_item {
	border-bottom: var(--gray80) 1px solid;
	padding: 1rem 0;
}

.l_news_item_inner {
	text-decoration: none;
	display: flex;
	gap: 1.6rem;
}

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

.l_news_item_date {
	font-size: 1.4rem;
	color: var(--blue-gray40);
	line-height: 1.5;
	margin-right: 0;
	letter-spacing: 0;
	position: relative;
}

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

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

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

.nav_special .nav_depth01_ttl:before {
	background-position: center;
	background-repeat: no-repeat;
}

/*++++++++++++++++++++++++++++
l_footer
++++++++++++++++++++++++++++*/
.l_footer {
	color: var(--bgc-w);
}

.l_footer_head {
}

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

.l_footer_logo_sub {
	font-size: 1.3rem;
	letter-spacing: 0;
	line-height: 1.8;
	margin: 2.3rem auto 0;
	width: fit-content;
}

.l_footer_top {
	background: var(--blue10);
	padding: 4.8rem 0 8rem;
}

.l_footer_time,
.l_footer_access {
	border-top: 1px solid #364463;
	margin-top: 3.9rem;
	padding: 3.2rem 1.5rem 0;
}

.l_footer_time {
}

.l_footer_timetable .m_timetable_wrap {
	--ttl-color: var(--bgc-w);
	--ttl-bg: #18294e;
	--table-font-color: var(--bgc-w);
	--thead-border-color: #364463;
	--tbody-border-color: #364463;
}

.l_footer_timetable .m_timetable_ttl {
	border: 0;
}

.l_footer_timetable .m_timetable_hosoku {
	--color: var(--bgc-w);
	--color02: var(--bgc-w);
}

.l_footer_access {
	margin-top: 4.6rem;
}

.l_footer_ttl {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-bottom: 3.1rem;
}

.l_footer_ttl span {
	font-size: 1.9rem;
	letter-spacing: 0.24em;
	padding-left: 0.24em;
	line-height: 1.5;
}

.l_footer_ttl em {
	color: var(--blue-gray60);
	font-size: 1.2rem;
	letter-spacing: 0;
	line-height: 1.3;
	font-family: var(--font-en);
}

.l_footer_catch {
	background: #182a4e;
	min-height: 3.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	padding: 0.5rem 1rem;
}

.l_footer_map {
	margin-top: 2.7rem;
	display: block;
}

.l_footer_map_txt {
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	line-height: 1.5;
	margin-top: 2.7rem;
	padding-left: 0.7rem;
}

.l_footer_btn {
	margin: 6.2rem auto 0;
	--color: var(--bgc-w);
}

.l_footer_bottom {
	background: var(--gray90);
}

.l_footer_bottom .inner {
	padding: 2.8rem 2.7rem;
}

.l_footer_bnr {
	--gap-col: 2.667vw;
	--gap-row: 1.6rem;
	--col: 1;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap-row) var(--gap-col);
	justify-content: center;
}

.l_footer_bnr_item {
	width: 100%;
	font-size: 1.1rem;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
}

.l_footer_bnr_item02 {
	width: 30rem;
}

.l_footer_bnr_item span {
	display: block;
}

.l_footer_bnr_item em {
	display: block;
	font-size: 1.4rem;
	color: #4d4d4d;
	line-height: 1.3;
	margin-top: 0.7rem;
	margin-bottom: -0.3rem;
	letter-spacing: 0.08em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}

.l_footer_small {
	background: var(--txt-white);
	margin-top: 0;
	padding: 1.4rem 0 7.6rem;
}

.l_footer_small small {
	font-size: 1rem;
	letter-spacing: 0;
	text-align: center;
	display: block;
	color: var(--sky40);
	line-height: 1.5;
}

/*++++++++++++++++++++++++++++
l_fixed
++++++++++++++++++++++++++++*/
.l_fixed {
	--height: 6.4rem;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;

	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.l_fixed_tel {
	width: 22.3rem;
	height: var(--height);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--blue20);
	padding-left: 3.9rem;
	padding-top: 0rem;
	color: var(--txt-white);
}

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

.l_fixed_tel:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0.4rem;
	right: 0.4rem;
	z-index: 1;
	width: 0.6rem;
	height: 0.6rem;
	background: var(--txt-white);
	-webkit-clip-path: polygon(100% 100%, 100% 0, 0 100%);
	clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.l_fixed_tel_top {
	font-size: 1rem;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.l_fixed_tel_bottom {
	display: flex;
	align-items: flex-end;
}

.l_fixed_tel_bottom span {
	font-size: 1.2rem;
	line-height: 1;
	position: relative;
	top: -0.2em;
}

.l_fixed_tel_bottom em {
	font-size: 1.9rem;
	line-height: 1;
}

.l_fixed_web {
	flex: 1;
	height: var(--height);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--sky80);
	padding-left: 4.4rem;
	color: var(--main-color);
	padding-top: 0.2rem;
}

.l_fixed_web:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 1.9rem;
	width: 3.2rem;
	height: 100%;
	z-index: 1;
	background: url(../images/icon_calendar.svg) center center / 100% no-repeat;
}

.l_fixed_web:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0.4rem;
	right: 0.4rem;
	z-index: 1;
	width: 0.6rem;
	height: 0.6rem;
	background: var(--main-color);
	-webkit-clip-path: polygon(100% 100%, 100% 0, 0 100%);
	clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.l_fixed_web span {
	font-size: 1.2rem;
	line-height: 1;
}

.l_fixed_web em {
	font-size: 1.5rem;
	line-height: 1;
	margin-top: 0.3rem;
}

/*++++++++++++++++++++++++++++
l_pagetop
++++++++++++++++++++++++++++*/
.l_pagetop {
	position: fixed;
	z-index: 99;
	bottom: 9rem;
	right: 1.1rem;
	width: 1.9rem;
}

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

.l_under_mv:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: linear-gradient(
		89.96deg,
		rgba(0, 36, 114, 0.5) 0.04%,
		rgba(255, 255, 255, 0) 99.97%
	);
	pointer-events: none;
	display: none;
}

.l_under_mv:after {
	content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 4;
background: url(../images/mv_wave01.svg) right -13rem center / auto 122% no-repeat;
pointer-events: none;
opacity: 0.5;
}

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

.l_under_mv_ttl {
	border-radius: 0;
	padding: 3.2rem 2.6rem;
	margin: 0;
	width: auto;
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: var(--main-color);
	width: 100%;
	text-align: center;
}

.l_under_mv_ttl span {
	line-height: 1.3;
	font-size: 2.6rem;
	letter-spacing: 0.08em;
	/* text-align: center; */
	color: var(--txt-white);
}

.l_under_mv_ttl em {
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	line-height: 1.3;
	margin-top: 0.3rem;
	font-family: var(--font-en);
	color: var(--sky60);
}


/*++++++++++++++++++++++++++++
l_under_breadcrumb
++++++++++++++++++++++++++++*/
.l_under_breadcrumb {
	margin-left: calc(-1 * var(--inner-padding));
	width: calc(100% + var(--inner-padding) * 2);
	padding: 0.8rem var(--inner-padding) 0.9rem;
	border-bottom: 1px solid var(--gray80);
}
.breadcrumbs {
	padding: 0;
	margin-bottom: 0;
	/* display: flex; */
	/* justify-content: flex-end; */
	flex-wrap: wrap;
	line-height: 1.2;
	/* text-align: right; */
	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.3;
}

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

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

.breadcrumbs > span:after {
	content: "";
	display: inline-block;
	position: relative;
	top: -0.18em;
	color: var(--main-color-dark);
	background: url(../images/icon_arrow03.svg) center center / 100% no-repeat;
	width: 0.55rem;
	height: auto;
	aspect-ratio: 4/8;
	margin-left: 1rem;
}

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

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

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

/* l_under_content */

:where(.l_under_content) {
	--under-default-font: 1.4rem;
	--under-default-mt: 0vw;
	--under-paragraph-mt: 2.3rem;
}

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

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

:where(.l_under_content)
	:is(
		p:not(.no_default),
		ul,
		ol,
		table,
		.m_kakomi,
		.m_kakomi02,
		.p_table_scroll,
		.m_table,
		.m_tableline,
		.p_youtube,
		.p_btn01,
	)
	+ :where(p, ul, ol, table, .p_table_scroll):where(
		:not(.no_default),
		.m_table,
		.m_tableline
		.p_youtube,
	) {
	margin-top: var(--under-paragraph-mt);
}

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

:where(.l_under_content) strong {
	color: var(--sky40);
	background: linear-gradient(
		transparent 5%,
		var(--sky90) 5%,
		var(--sky90) 95%,
		transparent 95%,
		transparent 100%
	);
	font-weight: 600;
}

: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) > section:where(:not(.no_default)) {
	position: relative;
	padding: 7rem 0 7rem;
	--kakomi-bg: var(--txt-white);
	--form-bg: var(--txt-white);
	isolation: isolate;
}

:where(.l_under_content) > section:where(:not(.no_default)):before {
	background: var(--bgc-w);
	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;
}

:where(.l_under_content) > section:where(:not(.no_default)):nth-of-type(2n) {
	--kakomi-bg: var(--bgc-w);
	--form-bg: var(--bgc-w);
}

:where(.l_under_content) > section:where(:not(.no_default)):nth-of-type(2n):before {
	background: var(--txt-white);
}

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

/* title */

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

:where(.l_under_content) h2:where(:not(.no_default)) {
	font-size: 1.9rem;
	letter-spacing: 0.16em;
	line-height: 1.45;
	color: var(--main-color);
	background: url(../images/ttl_wave.svg) center top / 4rem no-repeat;
	padding: 3.7rem 0 0;
	margin: 8rem 0 4rem;
	text-align: center;
}

:where(.l_under_content) h3:where(:not(.no_default)) {
	font-size: 1.7rem;
	letter-spacing: 0.08em;
	padding: 1rem 0 1rem;
	line-height: 1.45;
	margin-bottom: 2.6rem;
	margin-top: 9rem;
	color: var(--main-color);
	border-top: 1px solid var(--sky40);
	border-bottom: 1px solid var(--sky40);
	text-align: center;
}

:where(.l_under_content) h4:where(:not(.no_default)) {
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1.45;
	padding: 0.1rem 0 0rem 1.4rem;
	margin-bottom: 1.5rem;
	margin-top: 5rem;
	position: relative;
	color: var(--main-color);
}

:where(.l_under_content) h4:where(:not(.no_default)):before {
	content: "";
	display: block;
	position: absolute;
	top: 0.25rem;
	left: 0;
	width: 0.4rem;
	height: 2rem;
	z-index: 1;
	background: var(--main-color);
}

:where(.l_under_content) h5:where(:not(.no_default)) {
	font-size: 1.5rem;
	letter-spacing: 0;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid var(--sky40);
	margin-bottom: 1.5rem;
	color: var(--main-color);
	line-height: 1.6;
	margin-top: 4.5rem;
}

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

/* ul */
:where(.l_under_content) ul:where(:not(.no_default,.m_toc_list)) {
	--gap-col: 1rem;
	--gap-row: 1.5rem;
	--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: 2rem;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	line-height: 1.6;
	color: var(--sky40);
}

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

:where(.l_under_content) .p_btn01 {
	margin-top: 2.2rem;
}

/* ol */
:where(.l_under_content) ol:where(:not(.no_default)) {
	--gap-col: 4vw;
	--gap-row: 5vw;
	--col: 1;
	display: flex;
	/* flex-wrap: wrap; */
	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 2.1rem;
	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;
	line-height: 1.45;
}

:where(.l_under_content) ol:where(:not(.no_default)) li:before {
	content: counter(counter) ".";
	display: block;
	position: absolute;
	top: 1.2vw;
	left: 0;
	z-index: 1;
	font-family: var(--font-en-prata);
	color: var(--main-color);
	line-height: 1;

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

/* 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)) {
	margin-top: 2rem;
}

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

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

:where(.l_under_content) table:where(:not(.no_default)) :is(th, td) {
	font-size: var(--under-default-font);
	padding: 0.9rem 1rem;
	line-height: 1.5;
	vertical-align: middle;
	letter-spacing: 0;
	text-align: center;
}

:where(.l_under_content) table:where(:not(.no_default)) tbody th {
	background: var(--blue-gray90);
	color: var(--main-color);
}

:where(.l_under_content) table:where(:not(.no_default)) thead th:not(:empty) {
	background: var(--main-color);
	color: #fff;
	letter-spacing: 0.24em;
}

:where(.l_under_content) table:where(:not(.no_default)) td {
	/* text-align: left; */
	background: var(--txt-white);
}

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

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

:where(.l_under_content) table:where(:not(.no_default)) tbody tr:last-of-type {
	border-bottom: 1px solid var(--main-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);
}
