@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.0.0/css/all.css");
/**
 * 1.0 - Normalize
 * 2.0 - Common
 * 3.0 - Header
 * 4.0 - Contents
 * 5.0 - Navi
 * 6.0 - Main
 * 7.0 - Footer
 * 8.0 - Single Page
 * 9.0 - Option
 */
/*----------------------------------------------------
	1.0 - Normalize
----------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: """";
}
a img {
	border: 0;
}
figure {
	margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
/*Border*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: baseline;
}
/*----------------------------------------------------
	2.0 - Common
----------------------------------------------------*/
html {
	font-size: 62.5%; /* base-font-size:10px */
}
body {
	background-color: #fff;
	color: #333;
	font-family: "Roboto", sans-serif;
	font-size: 1.6rem;
	letter-spacing: 0;
	position: relative;
	overflow-x: hidden;
}
@media (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}
a {
	color: #e94d40;
}
a:hover {
	color: #7d9a21;
	text-decoration-color: transparent;
}
img {
	vertical-align: middle;
}
a:hover img {
	opacity: 0.7;
	transition: 0.3s;
}
*tel-setting*/ a[href*="tel:"] {
	pointer-events: none;
}
.l-wrapper {
	width: 100%;
	min-height: calc(100vh - 2.85em);
	/*display: flex;*/
	/*flex-wrap: wrap;*/
	position: relative;
	margin: 0 auto;
}
@media (max-width: 999px) {
	.l-wrapper {
		background: transparent;
	}
}
/*----------------------------------------------------
	3.0 - Header
----------------------------------------------------*/
.l-header {
	background: #fff;
	width: 100%;
	flex-basis: 100%;
	max-width: 100%;
	line-height: 0;
	margin: 0 auto;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.l-header__inner {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	gap: 1em 2em;
	padding: 0 20px;
	justify-content: center;
}
.l-header__title {
	position: relative;
	flex-shrink: 0;
	z-index: 10;
}
.l-header__logo {
	display: flex;
	max-width: 240px;
}
/* アクセシビリティ用タイトルテキスト（旧 .l-header_title span） */
.l-header__title span {
	width: 1px;
	height: 1px;
	clip-path: polygon(0px 0px, 1px 0px, 1px 1px, 0px 1px);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	margin: -1px;
}
.l-header img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
/* PC版：TOPページ（.p-home）のときだけタイトル非表示 */
@media (min-width: 1000px) {
	.p-home .l-header__title {
		display: none;
	}
}
@media (max-width: 999px) {
	.l-header__inner {
		height: 60px;
	}
	.l-header__logo {
		max-width: 200px;
	}
}
/* 検索（ヘッダー） */
.c-header-search {
	display: flex;
	align-items: center;
	margin-left: 1em;
	position: relative;
}
/* SP ではヘッダー検索自体を非表示（必要なければ外してOK） */
@media (max-width: 999px) {
	.c-header-search {
		display: none;
	}
}
/* 虫眼鏡ボタン */
.c-header-search__toggle {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: #fff; /* ヘッダー背景が濃色想定 */
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-header-search__toggle:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.c-header-search__icon::after {
	font-family: "Font Awesome 6 Free";
	content: "\f002";
	width: 1em;
	height: 1em;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.875em;
	font-weight: 900;
	line-height: 1;
}
/* ボタン内のテキストは視覚的に非表示 */
.c-header-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
/* スライドさせるパネル部 */
.c-header-search__panel {
	display: none; /* jQuery の slideToggle 対象 */
	margin-left: 0.75em;
}
/* 入力欄 */
.c-header-search__input {
	width: 200px;
	max-width: 240px;
	font-size: 1.2rem;
	padding: 0.35em 0.7em;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
}
.c-header-search__input::placeholder {
	color: #fff;
	opacity: 0.7;
}
/*----------------------------------------------------
	5.0 - Navi
----------------------------------------------------*/
/* Hamburger */
@media (min-width: 1000px) {
	.c-nav-toggle {
		display: none;
	}
}
/* 999px under */
@media (max-width: 999px) {
	.c-nav-toggle {
		position: fixed;
		display: flex;
		justify-content: center;
		background: #004ea2;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		line-height: 1.75;
		text-align: center;
		cursor: pointer;
		z-index: 10;
	}
	.c-nav-toggle span {
		display: block;
		position: absolute;
		width: 30px;
		height: 2px;
		left: 15px;
		background: #fff;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.c-nav-toggle span:nth-child(1) {
		top: 12px;
	}
	.c-nav-toggle span:nth-child(2) {
		top: 21px;
	}
	.c-nav-toggle span:nth-child(3) {
		top: 30px;
	}
	.c-nav-toggle.active span:nth-child(1) {
		top: 21px;
		left: 15px;
		background: #fff;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.c-nav-toggle.active span:nth-child(2), .c-nav-toggle.active span:nth-child(3) {
		top: 21px;
		background: #fff;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.c-nav-toggle p {
		position: absolute;
		top: 34px;
		color: #fff;
		font-family: "Roboto", sans-serif;
		font-size: 1.2rem;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.c-nav-toggle.active p {
		color: #fff;
	}
}
/* Menu */
.c-global-nav {
	flex: 1 1 auto;
}
.c-global-nav__list {
	width: 100%;
	font-size: 1.4rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1.2;
	margin: 0 auto;
	padding: 0;
	text-align: left;
	position: relative;
	z-index: 0;
	display: flex;
}
.c-global-nav__item {
	position: relative;
	display: block;
	transition: 0.3s all;
	line-height: 1.2;
	flex-grow: 10;
}
/* PC 用ナビの配置調整 */
@media (min-width: 1000px) {
	/* nav 全体は中身サイズだけ（flex: 0） */
	.c-global-nav {
		flex: 0 0 auto;
	}
	/* メニューの並び：中央寄せ＋ 2em 間隔 */
	.c-global-nav__list {
		display: flex;
		justify-content: center; /* ★ナビ全体を中央に */
		align-items: stretch;
		gap: 2em; /* ★項目同士の間隔 ≒ 2em */
		margin: 0;
		padding: 0;
		border-left: none; /* 旧デザインで入れていた線を消したい場合 */
	}
	/* 各メニュー項目は「伸びない」 */
	.c-global-nav__item {
		flex: 0 0 auto; /* ★伸ばさない */
		border-right: none; /* 右のボーダーも不要なら消す */
	}
	/* 中身に対して適当なパディングだけ付ける */
	.c-global-nav__item > a {
		width: auto; /* ★横幅はテキスト分だけ */
		height: 60px;
		padding: 0 0.75em; /* 左右パディングだけ調整 */
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media (max-width: 999px) {
	.c-global-nav {
		position: fixed; /* ★ flexレイアウトから独立 */
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh; /* 画面全体 */
		padding-top: 60px; /* ヘッダーぶん余白（ハンバーガー高さ） */
		row-gap: 0;
		background: rgba(255, 255, 255, 0.95);
		display: none; /* JSでfadeToggle */
		z-index: 9; /* ハンバーガーより一段低く */
	}
	.c-nav-toggle {
		z-index: 10; /* 既に10だが、念のため上に出しておく */
	}
	.c-global-nav__list {
		z-index: 2;
		flex-wrap: wrap;
		border-top: 1px solid #ccc;
		display: none; /* 初期は非表示 → JSでfadeIn */
		flex-direction: column; /* SPでは縦積み */
	}
	.c-global-nav__list:nth-of-type(2) {
		border-top: none;
	}
	.c-global-nav__item {
		border-bottom: 1px solid #ccc;
		width: 100%;
		flex-grow: 0;
	}
}
@media (max-width: 768px) {
	.c-global-nav__item {
		width: 100%;
	}
}
.c-global-nav__item > a {
	width: 100%;
	height: 60px;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.25em 0.25em;
	text-decoration: none;
	transition: 0.3s;
	text-align: center;
	position: relative;
}
@media (max-width: 999px) {
	.c-global-nav__item > a {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 1em 0.25em 1.1em 1.3em;
		text-align: left;
		justify-content: space-between;
	}
	.c-global-nav__item > a br {
		display: none;
	}
}
.c-global-nav__item > a:hover, .c-global-nav__item > a:focus, .c-global-nav__item.is-current > a {
	color: #004ea2;
}
@media (max-width: 999px) {
	.c-global-nav__item > a:hover, .c-global-nav__item > a:focus, .c-global-nav__item.is-current > a {
		width: 100%;
		margin: 0;
	}
}
.c-global-nav__item.is-disabled > a {
	cursor: default;
	pointer-events: none;
	color: #999;
	background: transparent;
}
/* 下向き／右向きの三角マーカー（hover + current） */
.c-global-nav__item > a:hover::after, .c-global-nav__item > a:focus::after, .c-global-nav__item.is-current > a::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #004ea2;
	position: absolute;
	font-size: 0.715em;
	left: 0%;
	bottom: 0;
}
@media (max-width: 999px) {
	.c-global-nav__item > a:hover::after, .c-global-nav__item > a:focus::after, .c-global-nav__item.is-current > a::after {
		content: "";
		width: 1em;
		height: 1em;
		background: #fff;
		position: absolute;
		font-size: 0.715em;
		left: auto;
		right: 1em;
		bottom: 50%;
		transform: translateY(50%);
		clip-path: polygon(20% 0%, 70% 50%, 20% 100%);
	}
}
/* ▼ サブメニューありの親項目：テキスト右に三角アイコン */
.c-global-nav__item--has-submenu > a {
	padding-right: 2em; /* 三角分の余白 */
}
.c-global-nav__item--has-submenu > a::before {
	content: "";
	position: absolute;
	right: 0.8em;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 6px solid #004ea2; /* 青い三角形 */
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
/* ホバー・フォーカス・現在地のときは白い三角に */
.c-global-nav__item--has-submenu > a:hover::before, .c-global-nav__item--has-submenu > a:focus::before, .c-global-nav__item--has-submenu.is-current > a::before {
	border-top-color: #004ea2;
}
/* SP では、開閉時に向きを変える（任意） */
@media (max-width: 999px) {
	.c-global-nav__item--has-submenu > a::before {
		right: 1.4em;
	}
	.c-global-nav__item--has-submenu.is-open > a::before {
		transform: translateY(-50%) rotate(90deg);
	}
}
/* ▼ サブメニュー：モバイル優先（デフォルトはアコーディオン） */
.c-global-nav__submenu {
	display: none; /* JS の slideToggle で開閉 */
	position: static; /* ★ relative な行内ではなく、下に押し下げる */
	margin: 0;
	padding: 0;
}
.c-global-nav__submenu-item > a {
	display: block;
	padding: 0.6em 1.5em;
	color: #004ea2;
	text-decoration: none;
	font-size: 1.3rem;
	line-height: 1.4;
}
/* モバイル時：少しインデントして階層感を出す */
@media (max-width: 999px) {
	.c-global-nav__submenu-item > a {
		padding-left: 2.5em;
	}
}
/* PC 用：ホバーで下に出てくるドロップダウン */
@media (min-width: 1000px) {
	/* 親 li を基準にする */
	.c-global-nav__item {
		position: relative;
	}
	.c-global-nav__submenu {
		position: absolute; /* ★ PC だけドロップダウン */
		top: 100%;
		left: 0;
		min-width: 220px;
		background: #004ea2; /* ★ PC では濃いブルー背景 */
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		padding: 0.5em 0;
		z-index: 10;
	}
	/* ネストしたサブメニュー（Accommodation の子など） */
	.c-global-nav__submenu .c-global-nav__submenu {
		top: 0;
		left: 100%;
	}
	.c-global-nav__submenu-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
	.c-global-nav__submenu-item:last-of-type {
		border-bottom: none;
	}
	.c-global-nav__submenu-item > a {
		padding: 0.5em 1.2em;
		white-space: nowrap;
		color: #fff; /* ★ PC では文字色を白に */
	}
	.c-global-nav__submenu-item > a:hover,.c-global-nav__submenu-item > a:active,.c-global-nav__submenu-item > a:focus {
		background: #317ED1;
		transition: 0.3s;
	}
	.c-global-nav__submenu-item.is-disabled > a {
		cursor: default;
		pointer-events: none;
		color: #ccc;
	}
	/* PC：親 li にホバー／フォーカスで子 UL を展開 */
	.c-global-nav__item:hover > .c-global-nav__submenu, .c-global-nav__item:focus-within > .c-global-nav__submenu, .c-global-nav__submenu-item:hover > .c-global-nav__submenu, .c-global-nav__submenu-item:focus-within > .c-global-nav__submenu {
		display: block;
	}
}
/* 共通のホバー色（PC/SP 共通でOK） */
/* 999px 未満（スマホ）のときの背景色 */
@media (max-width: 999px) {
	.c-global-nav__submenu {
		background: rgba(0, 32, 99, 0.15);
	}
	.c-global-nav__submenu-item {
		border-top: 1px solid #fff;
		border-bottom: none;
	}
	.c-global-nav__submenu-item.is-disabled > a {
		cursor: default;
		pointer-events: none;
		color: #777;
	}
.c-global-nav__submenu-item > a:hover, .c-global-nav__submenu-item > a:focus {
	background: #004ea2;
	color: #fff;
}
}
/* bannermenu */
.bannermenu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
	row-gap: 10px;
	margin: 20px 0 0;
	padding: 0;
}
@media (max-width: 999px) {
	.bannermenu {
		width: auto;
		display: inline-flex;
		margin: 20px auto 0;
		padding: 0;
	}
}
@media (max-width: 480px) {
	.bannermenu {
		width: 100%;
	}
}
.bannermenu > li {
	background: #ddd;
	width: 100%;
	max-width: 240px;
}
@media (max-width: 999px) {
	.bannermenu > li {
		width: calc((100% - 2em) / 3);
	}
}
@media (max-width: 480px) {
	.bannermenu > li {
		width: calc((100% - 1em) / 2);
	}
}
.cont_banner {
	width: 100%;
	display: none;
	padding: 0 0 6%;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 999px) {
	.cont_banner {
		display: block;
		margin: -4% auto 0;
	}
}
.cont_index_banner {
	background: rgba(255, 255, 255, 0.85);
	width: 100%;
	display: none;
	padding: 0 0 40px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
@media (max-width: 999px) {
	.cont_index_banner {
		display: block;
		margin: 0 auto;
	}
}
@media (max-width: 999px) {
	.cont_banner > .bannermenu, .cont_index_banner > .bannermenu {
		width: 92%;
		display: grid;
		grid-template-columns: repeat(auto-fit, 23.5%);
		column-gap: 2%;
		justify-content: center;
		margin: 0 auto;
		padding: 0;
	}
	.cont_banner > .bannermenu > li:nth-of-type(n), .cont_index_banner > .bannermenu > li:nth-of-type(n) {
		margin-top: 0;
		margin-bottom: 10px;
	}
}
@media (max-width: 768px) {
	.cont_banner > .bannermenu, .cont_index_banner > .bannermenu {
		grid-template-columns: repeat(auto-fit, 32%);
		column-gap: 2%;
	}
}
@media (max-width: 480px) {
	.cont_banner > .bannermenu, .cont_index_banner > .bannermenu {
		grid-template-columns: repeat(auto-fit, 48%);
		column-gap: 4%;
	}
}
/* new marker */
a.new:after {
	content: "NEW";
	background: red;
	color: #fff;
	font-size: 0.75em;
	display: inline-block;
	line-height: 1;
	padding: 0.3em 0.25em 0.25em;
	transform: translateY(0.1em);
}
a.new:hover:after, .on a.new:after {
	content: "NEW";
	background: #fff;
	color: red;
}
/*----------------------------------------------------
	5.0 - Search form
----------------------------------------------------*/
.c-header-search {
	display: flex;
	align-items: center;
	margin-left: 1em;
	gap: 0.5em;
}
.c-header-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.c-header-search__input {
	width: 180px;
	max-width: 100%;
	font-size: 1.2rem;
	padding: 0.4em 0.6em;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
/* SP ではひとまず検索フォーム非表示 */
@media (max-width: 999px) {
	.c-header-search {
		display: none;
	}
}
/*----------------------------------------------------
	4.0 - Contents
----------------------------------------------------*/
.l-contents {
	flex: 1;
	width: 100%;
	flex-basis: 100%;
	height: 100%;
	font-size: 1.0625em;
	margin: 0 auto;
	padding: 0;
	line-height: 0;
	z-index: 0;
}
@media (max-width: 999px) {
	.l-contents {
		width: 100%;
		/*padding-top: 60px;*/
	}
}
.c-section__inner {
	width: 92%;
	max-width: 1080px;
	margin: 0 auto;
}
@media (max-width: 1200px) {
	.c-section__inner {
		width: 100%;
	}
}
.page_section {
	display: flex;
	column-gap: 20px;
	margin: 0 auto;
}
.page_section > .side_banner {
	width: 260px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	flex-shrink: 0;
}
@media (max-width: 999px) {
	.page_section > .side_banner {
		width: 26vw;
	}
}
@media (max-width: 768px) {
	.page_section > .side_banner {
		width: 100%;
		display: grid;
		/* template-columns と column-gap を合計して100%になるようにする */
		grid-template-columns: repeat(auto-fit, calc((100% - 20px) / 3));
		row-gap: 10px;
		column-gap: 10px;
		justify-content: center;
		margin-top: 20px;
	}
}
@media (max-width: 480px) {
	.page_section > .side_banner {
		/* template-columns と column-gap を合計して100%になるようにする */
		grid-template-columns: repeat(auto-fit, calc((100% - 10px) / 2));
	}
}
.page_section > .side_banner img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
@media (max-width: 999px) {
	.page_section {
		width: 92%;
	}
}
@media (max-width: 768px) {
	.page_section {
		flex-direction: column;
	}
}
section.bg_light {
	background: #fafafa;
	color: #333;
}
section.bg_dark {
	background: #333333;
	color: #fff;
}
section.bg_green {
	background: #c2dfda;
	background-image: url(../img/common/bg_green.webp);
	background-size: cover;
	background-position: center center;
	color: #000;
}
section.bg_red {
	background: #f86f9a;
	background-image: url(../img/common/bg_red.webp);
	background-size: cover;
	background-position: center center;
	color: #fff;
}
section.bg_ {}
/*----------------------------------------------------
	6.0 - Main
----------------------------------------------------*/
#main {
	width: 100%;
	height: 100%;
	background-image: url(../img/common/bg_base.webp);
	background-size: 2000px 840px;
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	z-index: 0;
	padding-top: 100px;
}
@media (max-width: 999px) {
	#main {
		padding-top: 0;
		border: none;
	}
}
.main_bg {
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 0;
	position: relative;
}
@media (max-width: 999px) {
	.main_bg {
		border: none;
		padding: 60px 0 0;
	}
}
.page_head {
	width: 92%;
	max-width: 720px;
	font-size: 2em;
	line-height: 1;
	margin: 0 auto;
	padding: 1em 0;
}
@media (max-width: 768px) {
	.page_head {
		padding: 5vw 60px;
	}
}
.page_head img {
	width: 100%;
	height: auto;
	filter: drop-shadow(1px -1px 5px rgba(255, 255, 255, 1)) drop-shadow(1px 1px 5px rgba(255, 255, 255, 1)) drop-shadow(-1px 1px 5px rgba(255, 255, 255, 1)) drop-shadow(-1px -1px 5px rgba(255, 255, 255, 1));
}
article {
	width: 100%;
	height: 100%;
	min-height: 67.5vh;
	margin: 0 auto;
	padding: 0 0 0;
	line-height: 1.8;
	text-align: left;
	overflow: hidden;
}
@media (min-width: 1000px) and (max-height: 840px) {
	article {
		min-height: 50vh;
	}
}
@media (max-width: 999px) {
	article {
		min-height: 76.75vh;
		margin: 0 auto;
	}
}
@media (max-width: 480px) {
	article {
		min-height: 56.125vh;
	}
}
article h1 {
	width: 92%;
	max-width: 1080px;
	min-height: 4em;
	color: #fff;
	display: flex;
	align-items: center;
	font-optical-sizing: auto;
	font-size: 2.5em;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 auto;
	padding: 0.15em 0em 0.25em 0;
	text-shadow: 0px 2px 5px #004ea2;
	position: relative;
}
article h1::after {
	content: "";
	width: 100vw;
	height: 100%;
	background-image: url(../img/top/bg_bottom.jpg);
	background-size: 2400px 1600px;
	background-position: center center;
	background-repeat: no-repeat;
	color: #fff;
	display: flex;
	align-items: center;
	font-optical-sizing: auto;
	font-size: 2.5em;
	font-weight: 500;
	line-height: 1.2;
	padding: 0.15em 0.2em 0.25em 1em;
	position: absolute;
	top: 0;
	left: 50%;
	text-align: center;
	border-bottom: 10px solid #004ea2;
	z-index: -1;
	transform: translateX(-50%);
}
@media (max-width: 999px) {
	article h1 {
		transition: 0.3s;
	}
}
@media (max-width: 480px) {
	article h1 {
		height: 3em;
		padding-left: 0.75em;
		font-size: 2.1em;
	}
}
article h1 .en_title {
	font-size: 0.5em;
	display: flex;
	align-items: center;
	position: relative;
	letter-spacing: 0.1em;
	opacity: 0.75;
}
article h1 .en_title:before, article h1 .en_title:after {
	content: "";
	width: 1.5em;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
}
article h1 .en_title:before {
	left: -2em;
}
article h1 .en_title:after {
	right: -2em;
}
section {
	min-height: calc(67.5vh - 7.5em);
	padding: 4em 2.5em 4em;
	text-align: left;
}
@media (min-width: 1000px) and (max-height: 840px) {
	section {
		min-height: calc(50vh - 7.5em);
	}
}
@media (max-width: 999px) {
	section {
		min-height: calc(76.75vh - 7.5em);
	}
}
@media (max-width: 480px) {
	section {
		padding: 2em 1.4em;
		min-height: calc(56.125vh - 6.35em);
	}
}
.section_inner {
	width: 92%;
	max-width: 1080px;
	margin: 0 auto;
}
@media (max-width: 1200px) {
	.section_inner {
		width: 100%;
	}
}
section h2 {
	width: 100%;
	position: relative;
	margin: 2.25em auto 0.75em;
	padding: 0 0 0.5em;
	font-size: 2em;
	font-weight: 500;
	line-height: 1.2;
	border-bottom: 4px solid #004ea2;
	text-box: trim-both cap alphabetic;
}
section h2:first-of-type {
	margin-top: 0;
}
section h2 + h3 {
	margin-top: 0;
}
section h2 span.title_icon {
	width: 1em;
	height: 1em;
	display: inline-block;
}
section h2 span.title_icon img {
	width: 90%;
	height: 90%;
	vertical-align: baseline;
}
section h3 {
  color: #004ea2;
  position: relative;
  margin: 1.75em auto 0.75em;
  padding: 0 0 0 0.5em;
  font-size: 1.35em;
  font-weight: 700;
  line-height: 0;
  display: flex;
  align-items: center;
}

section h3 span {
  line-height: 1.25; /* ←この比率に合わせてバーを縮める */
  position: relative;
}

section h3::before {
  content: "";
  height: 100%;            /* ←要素高(= line-height×行数) には追従させる */
  inline-size: 0.2em;
  background: #004ea2;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: 50% 50%;
  transform: translateY(-50%) scaleY(0.8); /* ← 1/1.25 = 0.8 */
}

section h4 {
	background: #ece7e0;
	margin: 1.5em auto 0.5em;
	padding: 0.4em 0.6em 0.5em;
	position: relative;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1;
}
section h3 + h4 {
	margin-top: 0;
}
section p, section li, section dl, section table {
	line-height: 1.8;
}
/*----------------------------------------------------
	7.0 - Footer
----------------------------------------------------*/
.l-footer {
	width: 100%;
	background-color: #004ea2;
	color: #fff;
	position: relative;
	margin: 0 auto;
	text-align: center;
	z-index: 0;
	z-index: 0;
}
.l-footer_inner {
	width: 96%;
	max-width: 1080px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 3.25em 0;
	position: relative;
	z-index: 1;
	column-gap: 1em;
	row-gap: 2em;
	z-index: 2;
}
@media (max-width: 768px) {
	.l-footer_inner {
		width: 92%;
		padding: 3.5em 0 3em;
	}
}
@media (max-width: 768px) {
	.l-footer_inner {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		grid-row-gap: 2em;
	}
}
.l-footer_secretariat {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	column-gap: 1.25em;
	row-gap: 1.25em;
}
@media (max-width: 480px) {
	.l-footer_secretariat {
		row-gap: 2em;
	}
}
.l-footer_secretariat > li {
	display: inline-flex;
	justify-content: center;
	column-gap: 1.25em;
	row-gap: 1.25em;
}
@media (max-width: 480px) {
	.l-footer_secretariat > li {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		grid-row-gap: 1em;
	}
}
.l-footer_secretariat h3 {
	background: rgba(255, 255, 255, 0.35);
	flex-shrink: 0;
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: left;
	padding: 0 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.75em;
}
@media (max-width: 768px) {
	.l-footer_secretariat h3 {
		padding: 1em;
		text-align: center;
	}
}
.l-footer_secretariat dl {
	padding-top: 0.25em;
	text-align: left;
}
@media (max-width: 768px) {
	.l-footer_secretariat dl {
		width: 100%;
		text-align: center;
		border-left: none;
		padding-top: 0em;
	}
}
.l-footer_secretariat dt {
	font-size: 1em;
	font-weight: 700;
}
.l-footer_secretariat dd {
	font-size: 0.875em;
	line-height: 1.6;
}
@media (max-width: 768px) {
	.l-footer_secretariat dd:nth-of-type(3) {
		justify-content: center;
	}
}
.l-footer_secretariat dd:nth-of-type(4) {
	font-size: 0.875em;
}
.l-footer_organizer {
	display: flex;
	flex-direction: column;
	row-gap: 2em;
	justify-content: space-between;
}
.l-footer_logo {
	width: auto;
	height: auto;
	display: inline-flex;
	column-gap: 2em;
}
.l-footer_logo > li {
	width: 120px;
}
.l-footer_logo li img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.l-footer__copyright {
	background: #004ea2;
	font-size: 0.8125em;
	text-align: center;
	line-height: 1.5;
	padding: 1em 0;
	position: relative;
	z-index: 2;
}
@media (max-width: 999px) {
	.l-footer__copyright {
		width: 100%;
	}
}
.l-footer a {
	color: #fff;
}
footer a:hover {
	color: #c5cfa6;
}
footer a.tel {
	color: inherit;
	text-decoration: none;
	pointer-events: none;
}
/*----------------------------------------------------
	8.0 - Single Page
----------------------------------------------------*/
/*  Index
----------------------------------------------------*/
#main_index {
	width: 100%;
	text-align: center;
	z-index: 0;
}
@media (max-width: 999px) {
	#main_index {
		border: none;
	}
}
/* Main Visual */
.c-mv {
	min-height: 0;
	padding: 100px 0 0;
	/* 必要なら .mv と同等の背景を付ける
	   background-image: url(../img/common/bg_base.webp);
	   background-size: 2000px 840px;
	   background-position: center top;
	   background-repeat: no-repeat;
	*/
}
@media (max-width: 999px) {
	.c-mv {
		padding: 60px 0 0;
	}
}
.c-mv__inner {
	/* 旧 .c-mv_inner → BEM 名だけ変更
	   必要に応じてここに max-width などを足してもOK
	*/
}
.c-mv__image {
	width: 100%;
}
.c-mv__image img {
	width: 100%;
	height: auto;
}
/* Index Contents */
.c-home__bg {
	background-image: url(../img/top/bg_bottom.jpg);
	background-size: 2400px 1600px;
	background-position: center center;
	background-repeat: no-repeat;
}
.c-home__section {
	background: transparent;
	background-image: none;
}
/* Information */
.c-news {
	padding: 3em 0 3em;
}
.c-news__title {
	color: #fff;
	font-size: 2.25em;
	font-weight: 700;
	margin: 0 0 0.5em;
	padding: 0;
	border-bottom: none;
}
.c-news__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.c-news__item {
	border: 8px solid rgba(255, 255, 255, 0.5);
	border-radius: 0.5em;
	overflow: hidden;
	display: flex;
}
.c-news__thumb {
	width: 160px;
	height: 90px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 0.75em;
	gap: 0.25em;
	flex-shrink: 0;
}
@media (max-width: 480px) {
	.c-news__item {
		flex-direction: column;
	}
	.c-news__thumb {
		width: 100%;
		height: auto;
	}
}
.c-news__thumb img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.c-news__data {
	background: rgba(255, 255, 255, 0.85);
	flex-grow: 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.25em 2.5em 0.25em 1.25em;
	position: relative;
}
.c-news__data::before {
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	width: 1em;
	height: 1em;
	color: #003d93;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1em;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
.c-news__date {
	color: #004ea2;
	font-size: 0.9375em;
}
.c-news__text {
	font-weight: 500;
}
@media (max-width: 480px) {
	.c-news__data {
		padding: 0.75em 2.5em 0.75em 1em;
	}
}
/* Introduction */
.c-intro {
	padding: 3em 0 3em;
}
.c-intro__title {
	color: #fff;
	font-size: 2.25em;
	font-weight: 700;
	margin: 0 0 0.75em;
	padding: 0;
}
.c-intro__data {
	color: #fff;
}
/* リンクリスト */
.c-intro__link {
	display: flex;
	gap: 1em;
}
.c-intro__link-item {
	flex: 1 1 0; /* ★要素数に応じて等分される（3個なら1/3、4個なら1/4） */
	min-width: 0; /* flex内でのはみ出し防止 */
	min-height: 3.25em;
	border-radius: 0.5em;
}
@media (max-width: 768px) {
	.c-intro__link {
		flex-direction: column;
	}
	.c-intro__link-item {
		flex: none;
		width: 100%;
	}
}
/* ボタン */
.c-intro__link-item > a {
	width: 100%;
	height: 100%;
	background: #fff;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	padding: 0.5em 1em;
	text-decoration: none;
	position: relative;
	border-radius: 0.5em;
	transition: 0.3s;
}
.c-intro__link-item > a:hover, .c-intro__link-item > a:active, .c-intro__link-item > a:focus {
	background: #003d93;
	color: #fff;
	box-shadow: 0px 0px 10px rgb(188, 247, 255);
}
/* 矢印アイコン */
.c-intro__link-item > a::before {
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	width: 1em;
	height: 1em;
	color: #003d93;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.875em;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
.c-intro__link-item > a:hover::before, .c-intro__link-item > a:active::before, .c-intro__link-item > a:focus::before {
	color: #fff;
} /* 無効リンク（.is-disabled） */
.c-intro__link-item.is-disabled > a {
	cursor: default;
	pointer-events: none;
	background: #ddd;
	color: #666;
	box-shadow: none;
}
.c-intro__link-item.is-disabled > a::before {
	color: #666;
}
/*  Calendar
----------------------------------------------------*/
.calendar_info {
	background: #f7f6e4;
	border: 1px solid #ff290b;
	display: flex;
}
@media (max-width: 999px) {
	.calendar_info {
		max-width: 760px;
		flex-direction: column;
		margin-left: auto;
		margin-right: auto;
	}
}
.calendar_info .calendar_title {
	background: #ff290b;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.25em 1em;
	font-weight: 700;
	font-size: 1.25em;
	flex-shrink: 2;
}
.calendar_info ul {
	flex-grow: 10;
	padding: 0.75em 1em;
	display: flex;
	column-gap: 1em;
}
@media (max-width: 480px) {
	.calendar_info ul {
		flex-direction: column;
		grid-row-gap: 1em;
	}
}
.calendar_info ul li {
	width: calc((100% - 2em) / 3);
}
@media (max-width: 480px) {
	.calendar_info ul li {
		width: 100%;
	}
}
.calendar_info ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgb(235, 137, 51);
	background: linear-gradient(90deg, rgba(243, 153, 75, 1) 0%, rgba(255, 41, 11, 1) 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 1.2em;
	min-height: 2.4em;
	position: relative;
	padding-right: 1.75em;
	padding-left: 0.75em;
}
.calendar_info ul li a::before {
	content: "";
	width: 1em;
	height: 1em;
	background: #fff;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 0.5em;
}
.calendar_info ul li a::after {
	content: "";
	width: 1em;
	height: 1em;
	background: #ff290b;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	clip-path: polygon(36% 24%, 70% 50%, 36% 76%);
}
.calendar_info ul li a:hover {
	background: #fff;
	color: rgba(255, 41, 11, 1);
	box-shadow: 0px 0px 10px rgba(13, 76, 153, 0.5);
	font-weight: 700;
	transition: 0.3s;
}
.calendar_info ul li a:hover::before {
	background: #ff290b;
	transition: 0.3s;
}
.calendar_info ul li a:hover::after {
	background: #fff;
	transition: 0.3s;
}
.mv .calendar_info {
	width: 12em;
	position: absolute;
	left: 50%;
	top: calc(100% - 60px);
	flex-direction: column;
	transform: translate(calc(600px - 12em), calc(-100% - 1.5em));
	z-index: 2;
	border-radius: 0.5em;
	overflow: hidden;
}
@media (max-width: 1200px) {
	.mv .calendar_info {
		font-size: 0.9375em;
		top: calc(100%);
		transform: translate(calc(48vw - 12em), calc(-100% - 1.5em));
	}
}
.mv .calendar_info .calendar_title {
	font-size: 1em;
	line-height: 1.25;
}
.mv .calendar_info ul {
	flex-direction: column;
	font-size: 0.9375em;
	row-gap: 0.5em;
	padding: 0.75em 0.75em;
}
.mv .calendar_info ul li {
	width: 100%;
	height: 2em;
	min-height: 1em;
	border-radius: 1em;
}
.mv .calendar_info ul li a {
	height: 2em;
	min-height: 1em;
	border-radius: 1em;
}
/*  Greeting
----------------------------------------------------*/
.grt_info {
	display: flex;
	align-items: flex-start;
	column-gap: 40px;
}
@media (max-width: 999px) {
	.grt_info {
		column-gap: 5%;
	}
}
@media (max-width: 480px) {
	.grt_info {
		flex-wrap: wrap;
	}
}
.grt_info .grt_image {
	width: 240px;
	flex-basis: 240px;
}
@media (max-width: 999px) {
	.grt_info .grt_image {
		width: 24vw;
		flex-basis: 24vw;
	}
}
@media (max-width: 480px) {
	.grt_info .grt_image {
		width: 100%;
		flex-basis: 100%;
		margin: 0 auto;
		text-align: center;
	}
	.grt_info .grt_image img {
		max-width: 160px;
	}
}
.grt_info .grt_image img {
	width: 100%;
	height: auto;
}
.grt_info .grt_name {
	margin-top: 1em;
	font-weight: 700;
	font-size: 1.2em;
}
.grt_info .grt_belong {
	font-size: 0.875em;
}
.grt_info .grt_data {
	width: calc(100% - 240px - 40px);
	flex-basis: calc(100% - 240px - 40px);
	text-align: left;
}
@media (max-width: 999px) {
	.grt_info .grt_data {
		width: calc(100% - 24vw - 5%);
		flex-basis: calc(100% - 24vw - 5%);
		text-align: left;
	}
}
@media (max-width: 480px) {
	.grt_info .grt_data {
		width: 100%;
		flex-basis: 100%;
		margin-top: 1em;
		text-align: center;
	}
}
.grt_text:first-letter {
	margin-left: 1em;
}
.grt_info .list_button {
	justify-content: flex-start;
}
/*  Outline
----------------------------------------------------*/
.out_org {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.out_org dt {
	width: 6em;
}
.out_org dd {
	width: calc(100% - 6em);
}
@media (max-width: 480px) {
	.out_org dt {
		width: 100%;
	}
	.out_org dd {
		width: 100%;
	}
}
/*  Abstracts
----------------------------------------------------*/
/*  Program
----------------------------------------------------*/
.program_box {
	border: 2px solid #167686;
	padding: 0.75em 1em;
}
.program_menu {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.5em;
}
.program_menu > li {
	position: relative;
	padding-left: 0.8em;
}
.program_menu > li::before {
	content: "";
	width: 0.8em;
	height: 1em;
	background: #2eab4f;
	position: absolute;
	top: 0.45em;
	left: 0;
	clip-path: polygon(0% 10%, 65% 50%, 0% 90%);
	display: inline-block;
}
/* ===== 基本設定 ===== */
.program_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
/* dt の基本スタイル */
.program_list > dt {
	width: 3.25em; /* 3文字分の幅 */
	display: flex;
	justify-content: space-between;
	flex-shrink: 0;
	position: relative;
}
/* dt の右側に「：」を表示 */
.program_list > dt:after {
	content: "：";
}
/* dt に続く 1 つ目の dd（dt の横に配置） */
.program_list > dt + dd {
	width: calc(100% - 3.25em);
	display: flex;
	align-items: baseline;
	column-gap: 0.5em;
	margin-left: 0; /* 1つ目の dd は dt の横に配置 */
}
/* 2つ目以降の dd（dt の直下に揃える） */
.program_list > dt + dd + dd, .program_list > dt + dd ~ dd {
	width: calc(100% - 3.25em);
	display: flex;
	align-items: baseline;
	column-gap: 0.5em;
	margin-left: 3.25em; /* dt の幅と揃える */
}
/* ===== dt に文字数が多い場合の幅調整（dt02～dt08） ===== */
.program_list dt.dt02 {
	width: 3.25em;
}
.program_list dt.dt03 {
	width: 4.25em;
}
.program_list dt.dt04 {
	width: 5.25em;
}
.program_list dt.dt05 {
	width: 6.25em;
}
.program_list dt.dt06 {
	width: 7.25em;
}
.program_list dt.dt07 {
	width: 8.25em;
}
.program_list dt.dt08 {
	width: 9.25em;
}
/* dt に応じて 1 つ目の dd の幅を調整 */
.program_list dt.dt02 + dd, .program_list dt.dt03 + dd, .program_list dt.dt04 + dd, .program_list dt.dt05 + dd, .program_list dt.dt06 + dd, .program_list dt.dt07 + dd, .program_list dt.dt08 + dd {
	margin-left: 0;
}
.program_list dt.dt02 + dd {
	width: calc(100% - 3.25em);
}
.program_list dt.dt03 + dd {
	width: calc(100% - 4.25em);
}
.program_list dt.dt04 + dd {
	width: calc(100% - 5.25em);
}
.program_list dt.dt05 + dd {
	width: calc(100% - 6.25em);
}
.program_list dt.dt06 + dd {
	width: calc(100% - 7.25em);
}
.program_list dt.dt07 + dd {
	width: calc(100% - 8.25em);
}
.program_list dt.dt08 + dd {
	width: calc(100% - 9.25em);
}
/* dt に応じて 2 つ目以降の dd の margin-left を調整 */
.program_list dt.dt02 + dd + dd, .program_list dt.dt02 + dd ~ dd {
	margin-left: 3.25em;
}
.program_list dt.dt03 + dd + dd, .program_list dt.dt03 + dd ~ dd {
	margin-left: 4.25em;
}
.program_list dt.dt04 + dd + dd, .program_list dt.dt04 + dd ~ dd {
	margin-left: 5.25em;
}
.program_list dt.dt05 + dd + dd, .program_list dt.dt05 + dd ~ dd {
	margin-left: 6.25em;
}
.program_list dt.dt06 + dd + dd, .program_list dt.dt06 + dd ~ dd {
	margin-left: 7.25em;
}
.program_list dt.dt07 + dd + dd, .program_list dt.dt07 + dd ~ dd {
	margin-left: 8.25em;
}
.program_list dt.dt08 + dd + dd, .program_list dt.dt08 + dd ~ dd {
	margin-left: 9.25em;
}
/* dt に応じて 2 つ目以降の dd の 例外処理 */
.program_list dt[class*="dt"] + dd ~ dd.dd02 {
	margin-left: 3.25em;
}
.program_list dt[class*="dt"] + dd ~ dd.dd03 {
	margin-left: 4.25em;
}
.program_list dt[class*="dt"] + dd ~ dd.dd04 {
	margin-left: 5.25em;
}
.program_list dt[class*="dt"] + dd ~ dd.dd05 {
	margin-left: 6.25em;
}
.program_list dt[class*="dt"] + dd ~ dd.dd06 {
	margin-left: 7.25em;
}
.program_list dt[class*="dt"] + dd ~ dd.dd07 {
	margin-left: 8.25em;
}
.program_list dt[class*="dt"] + dd ~ dd.dd08 {
	margin-left: 9.25em;
}
/* ===== 次の dt が登場したら margin-left をリセット ===== */
.program_list dt + dd {
	margin-left: 0 !important;
}
.program_list .prg_title {
	width: 100%;
	color: #0d8ea3;
	display: flex;
	align-items: baseline;
	column-gap: 0.5em;
	margin-top: 0.5em;
	font-weight: 700;
}
.program_list dt + dd .prg_title {
	margin-top: 0;
}
.program_list .prg_title > .title_number {
	min-width: 4.5em;
	background: #ed8f3d;
	color: #fff;
	line-height: 1.15;
	padding: 0.15em 0.15em 0.25em;
	text-indent: 0;
	text-align: center;
	flex-shrink: 0;
}
.program_list dd .prg_name {
	min-width: 6em;
	flex-shrink: 0;
	text-indent: 0;
}
.program_list dd .prg_belong {
	position: relative;
}
.program_list dd .prg_belong::before {
	content: "(";
}
.program_list dd .prg_belong::after {
	content: ")";
}
/**/
.prg_time {
	text-align: right;
}
.prg_time {
	padding-top: 5px;
	text-align: right;
	color: #555;
	display: flex;
	column-gap: 1em;
	justify-content: flex-end;
}
.prg_sponsor {
	margin-top: 10px;
	text-align: right;
}
/* Flyer Style */
section .prg_flyer {
	float: right;
	margin-left: 1em;
	overflow: hidden;
}
section .prg_flyer img {
	width: 100px;
	float: right;
}
section .prg_flyer a:hover img {
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	opacity: 0.6;
	transition: 0.2s;
}
section .prg_flyer a:not(:first-of-type) {
	display: none;
}
/* Irregular Option */
section h2.prg, section h3.prg, section h4.prg {
	display: flex;
	align-items: baseline;
}
section h2 + .prg_time {
	margin-top: -20px;
}
section h3 + .prg_time {
	margin-top: -20px;
}
section h4.prg {
	font-size: 1.25em;
}
section h4.prg .prg_icon {
	position: absolute;
	bottom: 8px;
	right: 5px;
	padding: 0.15em;
	color: #fff;
	font-size: 0.7em;
	font-weight: normal;
	border-radius: 2px;
}
/* timetable */
.btn_timetable {
	display: flex;
	height: 3em;
	font-weight: 700;
	font-size: 1.2em;
	border-bottom: 2px solid #f10e15;
	justify-content: space-around;
}
@media (max-width: 768px) {
	.btn_timetable {
		font-size: 3.25vw;
	}
}
.btn_timetable > li {
	width: 48%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #f10e15;
	border-bottom: none;
	cursor: pointer;
}
.btn_timetable > li:hover {
	background: #f10e15;
	color: #fff;
	transition: 0.3s;
}
.btn_timetable > li.on {
	background: #f10e15;
	color: #fff;
	cursor: default;
	pointer-events: none;
}
.prg_timetable {}
.prg_timetable > .on {
	display: block;
}
.prg_timetable > .off {
	display: none;
}
.prg_anchor {
	display: flex;
	height: 0;
	transform: translateY(-1em);
}
@media (max-width: 999px) {
	.prg_anchor {
		display: flex;
		height: 0;
		transform: translateY(-5em);
	}
}
/*  Registration
----------------------------------------------------*/
.reg_flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.reg_flow > li {
	width: calc(100% / 3);
	flex-basis: calc(100% / 3);
	position: relative;
}
@media (max-width: 768px) {
	.reg_flow > li {
		width: 100%;
		flex-basis: 100%;
		margin-bottom: 3em;
	}
}
.reg_flow > li:nth-of-type(1) h3:after {
	content: "";
	width: 1em;
	height: 100%;
	background: #ed4b16;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 100% 50%);
}
.reg_flow > li:nth-of-type(2) h3:after {
	content: "";
	width: 1em;
	height: 100%;
	background: #d60e19;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 100% 50%);
}
@media (max-width: 768px) {
	.reg_flow > li:nth-of-type(1) h3:after, .reg_flow > li:nth-of-type(2) h3:after {
		content: none;
	}
}
@media (max-width: 768px) {
	.reg_flow > li:after {
		content: "";
		background: #c5851a;
		clip-path: polygon(50% 0, 100% 100%, 0 100%);
		margin: 0;
		width: 2em;
		height: calc(tan(60deg) * 1em / 2);
		display: inline-block;
		position: absolute;
		top: auto;
		bottom: -2em;
		right: auto;
		left: 50%;
		transform: rotate(180deg) translate(50%, -0%);
	}
}
@media (max-width: 768px) {
	.reg_flow > li:last-of-type {
		margin-bottom: 0;
	}
}
.reg_flow > li:last-of-type:after {
	display: none;
}
.reg_flow > li h3 {
	height: 4.75em;
	background: #049678;
	color: #fff;
	display: flex;
	align-items: center;
	column-gap: 0.25em;
	font-size: 1em;
	margin: 0;
	padding: 0.5em 0.75em 0.5em 1em;
	border-bottom: none;
}
.reg_flow > li:nth-of-type(1) h3 {
	background: #ef9a0e;
}
.reg_flow > li:nth-of-type(2) h3 {
	background: #ed4b16;
}
.reg_flow > li:nth-of-type(3) h3 {
	background: #d60e19;
}
.reg_flow > li h3 span {
	font-size: 3em;
	font-family: "Roboto", sans-serif;
}
@media (max-width: 768px) {
	.reg_flow > li h3 {
		height: auto;
		font-size: 1.25em;
		column-gap: 0.75em;
		padding: 0.25em 0.25em 0.25em 1em;
	}
	.reg_flow > li h3 span {
		font-size: 2em;
	}
	.reg_flow > li h3 br {
		display: none;
	}
}
@media (max-width: 480px) {
	.reg_flow > li h3 {
		height: auto;
		padding: 0.5em 1em 0.5em 1.25em;
	}
}
.reg_flow > li p {
	padding: 0.75em 1em;
}
.reg_card {
	display: flex;
	column-gap: 1em;
	row-gap: 0.5em;
}
.reg_card img {
	vertical-align: middle;
}
/*  Speakers
----------------------------------------------------*/
.box_poster {
	display: flex;
	gap: 1em;
	align-items: flex-start;
}
.poster_image {
	width: 280px;
	flex-shrink: 0;
}
.poster_image img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
@media (max-width: 768px) {
	.box_poster {
		flex-wrap: wrap;
	}
}
/*  Venue
----------------------------------------------------*/
.map {
	width: 100%;
	position: relative;
	padding-bottom: 56.25%;
}
.map > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*  Sponsorship
----------------------------------------------------*/
.spn_flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.spn_flow > li {
	border: 1px solid #174e91;
	width: 30%;
	flex-basis: 30%;
	position: relative;
}
@media (max-width: 768px) {
	.spn_flow > li {
		border: 1px solid #174e91;
		width: 100%;
		flex-basis: 100%;
		margin-bottom: 3em;
	}
}
.spn_flow > li:after {
	content: "";
	background: #000;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	margin: 0;
	width: 2em;
	height: calc(tan(60deg) * 1em / 2);
	display: inline-block;
	position: absolute;
	top: 55%;
	right: -13%;
	transform: rotate(90deg) translate(-50%, -50%);
}
@media (max-width: 768px) {
	.spn_flow > li:after {
		content: "";
		background: #000;
		clip-path: polygon(50% 0, 100% 100%, 0 100%);
		margin: 0;
		width: 2em;
		height: calc(tan(60deg) * 1em / 2);
		display: inline-block;
		position: absolute;
		top: auto;
		bottom: -2em;
		right: auto;
		left: 50%;
		transform: rotate(180deg) translate(50%, -0%);
	}
}
@media (max-width: 768px) {
	.spn_flow > li:last-of-type {
		margin-bottom: 0;
	}
}
.spn_flow > li:last-of-type:after {
	display: none;
}
.spn_flow > li h3 {
	height: 4em;
	background: rgba(46, 167, 224, 1);
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 1em;
	margin: 0;
	padding: 0.5em 1em;
	padding-left: 2em;
	text-indent: -1em;
	border-bottom: none;
}
@media (max-width: 768px) {
	.spn_flow > li h3 {
		height: auto;
		padding: 1em 1em 1em 2em;
	}
}
.spn_flow > li p {
	padding: 1em;
}
.spn_faq {}
.spn_faq > li {
	margin-bottom: 1em;
	padding: 0 0 1em;
	border-bottom: 1px dotted #ddd;
}
.spn_faq dl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.spn_faq dt {
	color: #da7c03;
	width: 2em;
	flex-basis: 2em;
	font-weight: 700;
	text-align: right;
}
.spn_faq dt:nth-of-type(1) {
	color: rgb(21, 145, 202);
}
.spn_faq dd {
	width: calc(100% - 2em);
	flex-basis: calc(100% - 2em);
}
.spn_faq dd:nth-of-type(1) {
	color: rgb(21, 145, 202);
	font-weight: 700;
}
/*  Omotenashi
----------------------------------------------------*/
.omotenashi_index {
	display: flex;
	column-gap: 2em;
	row-gap: 2em;
	flex-wrap: wrap;
}
.omotenashi_index > div {
	width: calc((100% - 2em) / 2);
}
@media (max-width: 480px) {
	.omotenashi_index > div {
		width: 100%;
	}
}
.omotenashi_index > div {
	cursor: pointer !import;
}
/* 01 */
.omotenashi_data {
	display: flex;
	column-gap: 2em;
	row-gap: 2em;
	flex-wrap: wrap;
}
.omotenashi_list {
	width: calc((100% - 2em) / 2);
	/*display: flex;
	column-gap: 2em;
	row-gap: 2em;
	flex-wrap: wrap;*/
}
@media (max-width: 480px) {
	.omotenashi_list {
		width: 100%;
	}
}
.omotenashi_list .tours_image {
	cursor: default;
}
.omotenashi_list .tours_image:hover img {
	opacity: 1;
}
/* 03 */
.tours_map {}
/* 04 */
.omotenashi_shop {}
.omotenashi_shop .shop_data {
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.5em;
	row-gap: 0.25em;
	align-items: baseline;
}
.omotenashi_shop .shop_data dt {
	background: #ddd;
	width: 5em;
	text-align: center;
}
.omotenashi_shop .shop_data dd {
	width: calc(100% - 5.5em);
}
/* 05 */
.tours_map {
	width: 100%;
	padding-bottom: 640px;
	position: relative;
	display: block;
}
@media (max-width: 999px) {
	.tours_map {
		padding-bottom: 640px;
	}
}
@media (max-width: 768px) {
	.tours_map {
		padding-bottom: 65vh;
	}
}
@media (max-width: 480px) {
	.tours_map {
		padding-bottom: 65vh;
	}
}
.tours_map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
/* 06 */
.tours_list {
	display: block;
	position: relative;
}
.tours_data {}
.tours_image {
	cursor: pointer;
}
.tours_image img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.tours_image:hover img {
	opacity: 0.7;
	transition: 0.3s;
}
.tours_info {
	width: 100%;
	height: 100%;
	min-height: 0;
	background-color: rgba(255, 255, 255, 0.85);
	border: 1px solid #ddd;
	padding: 2em;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	row-gap: 2em;
	justify-content: center;
	/*align-items: center;*/
	overflow-y: auto;
}
@media (max-width: 768px) {
	.tours_info {
		justify-content: flex-start;
	}
}
.tours_info .tours_title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 0.5em;
	margin: 0;
	padding: 0;
	border: none;
}
.tours_info .tours_title span:first-of-type {
	background: #000;
	color: #fff;
	font-weight: 400;
	padding: 0.25em 0.5em;
}
.tours_info .tours_title span:last-of-type {
	font-size: 1.25em;
	text-decoration-line: underline;
	text-decoration-thickness: 8px;
	text-decoration-color: #fded0e;
	text-underline-offset: -2px;
}
.tours_info .tours_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	width: 100%;
}
.tours_info .tours_button a {
	min-width: 40%;
	height: 4em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	background-color: #d50e19;
	color: #fff;
	text-decoration: none;
	border: 2px solid #d50e19;
	border-radius: 4px;
	transition: 0.3s;
}
@media (max-width: 480px) {
	.tours_info .tours_button a {
		width: 92%;
		min-width: 6em;
	}
}
.tours_info .tours_button a:hover {
	background-color: #fffcf3;
	color: #251616;
	border: 2px solid #d50e19;
	box-shadow: 5px 5px 5px rgba(13, 76, 153, 0.1);
}
.tours_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 1.33em;
	height: 1.33em;
	background: #000;
	font-size: 1.5em;
	color: #fff;
	display: flex;
	justify-content: center;
	cursor: pointer;
	align-items: center;
}
/* event list */
.omotenashi_event_list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2em;
	row-gap: 2em;
}
.omotenashi_event_list > div {
	width: 100%;
	border: 1px solid #eee;
	min-height: 0;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.omotenashi_event_list > div h3 {
	width: 100%;
	background: rgb(214, 163, 54);
	background: linear-gradient(90deg, rgba(214, 163, 54, 1) 0%, rgba(232, 185, 85, 1) 100%);
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	border: none;
	margin: 0;
	padding: 0.3em 0.5em 0.4em;
	font-size: 1.5em;
}
.omotenashi_event_list .omotenashi_event_data {
	width: 100%;
	min-height: 0;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.omotenashi_event_list > div .omotenashi_event_text {
	width: 69%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
	font-weight: 700;
	padding: 0.75em 1em;
	display: flex;
	align-items: flex-start;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	row-gap: 1em;
	left: 0;
	bottom: 0;
}
@media (max-width: 768px) {
	.omotenashi_event_list > div .omotenashi_event_text {
		width: 100%;
	}
	.omotenashi_event_list > div .omotenashi_event_text br.blank {
		display: none;
	}
}
@media (max-width: 480px) {
	.omotenashi_event_list > div .omotenashi_event_text {
		background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
		justify-content: space-between;
	}
}
.omotenashi_event_list > div .omotenashi_event_image {
	width: 100%;
}
.omotenashi_event_list > div .omotenashi_event_image img {
	width: 100%;
	height: auto;
}
.omotenashi_event_list > div {
	/*width: calc((100% - 2em) / 2);*/
}
@media (max-width: 480px) {
	.omotenashi_event_list > div {
		width: 100%;
	}
}
.omotenashi_event_list > div > div p {
	line-height: 1.5;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.85);
}
.omotenashi_event_list > div p {}
.omotenashi_event_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	width: 100%;
}
@media (max-width: 480px) {
	.omotenashi_event_button {
		justify-content: center;
	}
}
.omotenashi_event_button a {
	min-width: 40%;
	height: 3em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	background-color: #d50e19;
	color: #fff;
	text-decoration: none;
	border: 2px solid #d50e19;
	border-radius: 4px;
	transition: 0.3s;
}
@media (max-width: 480px) {
	.omotenashi_event_button a {
		width: 92%;
		min-width: 6em;
	}
}
.omotenashi_event_button a:hover {
	background-color: #fffcf3;
	color: #251616;
	border: 2px solid #d50e19;
	box-shadow: 5px 5px 5px rgba(13, 76, 153, 0.1);
}
/*----------------------------------------------------
	8.0 - Search
----------------------------------------------------*/
/* Search Results */
.c-page-title {
	font-size: 2em;
	font-weight: 700;
	margin: 1.5em 0 0.5em;
}
.c-search-summary {
	font-size: 1.4rem;
	margin-bottom: 1.5em;
}
.c-search-results__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25em;
}
.c-search-results__item a {
	text-decoration: none;
	color: inherit;
}
.c-search-results__title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #004ea2;
	margin: 0 0 0.3em;
}
.c-search-results__excerpt {
	font-size: 1.3rem;
	margin: 0;
}
/*----------------------------------------------------
	9.0 - Option
----------------------------------------------------*/
.image_box {
	display: flex;
	column-gap: 1em;
	row-gap: 1em;
	justify-content: center;
}
.image_box > div {
	width: 100%;
	text-align: center;
}
.image_box.col2 > div {
	width: calc((100% - 1em) / 2);
}
.image_box > div img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.image_box > div img.border {
	border: 1px solid #ddd;
}
@media (max-width: 480px) {
	.image_box {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.image_box.col2 > div {
		width: 92%;
	}
}
.img_fit img {
	width: 100%;
	height: auto;
	vertical-align: middlel;
}
/*  List - Text
----------------------------------------------------*/
/* No icon Style */
ul.list_normal li {
	padding-left: 1em;
}
ul.list_normal li {
	padding-left: 1em;
	text-indent: -1em;
}
/* No icon Style/English */
ul.list_normal_en li {
	padding-left: 0.425em;
}
ul.list_normal_en li {
	padding-left: 0.425em;
	text-indent: -0.425em;
}
/* Disk Style */
ul.list_disc {
	margin-left: 1em;
}
ul.list_disc li {
	position: relative;
}
ul.list_disc li:after {
	display: block;
	background-color: #666;
	content: "";
	position: absolute;
	top: 0.65em;
	left: -0.75em;
	width: 6px;
	height: 6px;
	border-radius: 100%;
}
ul.list_disc li .list_normal li:after {
	content: none;
}
/* Mark Style */
ul.list_mark li {
	padding-left: 1em;
	position: relative;
}
ul.list_mark li:before, ul.list_mark li:after {
	content: " ";
	position: absolute;
}
ul.list_mark li:before {
	background-color: #0393ab;
	width: 0.9375em;
	height: 0.9375em;
	top: 0.35em;
	left: 0em;
	border-radius: 50%;
}
ul.list_mark li:after {
	background: #fff;
	top: 0.35em;
	left: 0em;
	width: 0.9375em;
	height: 0.9375em;
	clip-path: polygon(40% 20%, 75% 50%, 40% 80%);
}
/* Link Style */
ul.list_link li {
	padding: 0 0 0.5em 1em;
	position: relative;
	border-bottom: 1px solid #ddd;
}
ul.list_link li:before {
	display: block;
	position: absolute;
	content: "\025b6";
	width: 1em;
	height: 1em;
	margin-left: -1em;
	background: #e94d40;
	color: #e94d40;
	clip-path: polygon(10% 10%, 75% 50%, 10% 90%);
	transform: translateY(0.35em);
}
/* Decimal Style */
ol.list_decimal {
	list-style: none;
	counter-reset: num;
	margin-left: 2em;
}
ol.list_decimal > li {
	position: relative;
}
ol.list_decimal > li:before {
	counter-increment: num;
	content: counter(num) ".";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}
/* Decimal (Parentheses) Style */
ol.list_numberParen {
	list-style-type: none;
	counter-reset: ol_li;
	margin-left: 2em;
}
ol.list_numberParen > li {
	position: relative;
}
ol.list_numberParen > li:before {
	counter-increment: ol_li;
	content: "("counter(ol_li) ")";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}
/* Decimal (Parentheses - One Side) Style */
ol.list_numberParenR {
	list-style-type: none;
	counter-reset: ul_lione;
	margin-left: 2em;
}
ol.list_numberParenR > li {
	position: relative;
}
ol.list_numberParenR > li:before {
	counter-increment: ul_lione;
	content: counter(ul_lione) ")";
	display: inline-block;
	position: absolute;
	width: 2em;
	top: 0;
	left: -2em;
	margin-right: 2em;
	text-align: center;
}
/*  List - Button
----------------------------------------------------*/
/*ul.list_button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}*/
ul.list_button {
	width: 100%;
	font-weight: 600;
	display: grid;
	/* template-columns と column-gap を合計して100%になるようにする */
	grid-template-columns: repeat(auto-fit, calc((100% - 2em) / 2));
	row-gap: 1em;
	column-gap: 2em;
	justify-content: center;
}
ul.list_button.btn_col02 {
	grid-template-columns: repeat(auto-fit, calc((100% - 2em) / 2));
}
ul.list_button.btn_col03 {
	grid-template-columns: repeat(auto-fit, calc((100% - 4em) / 3));
}
ul.list_button.btn_col04{
	grid-template-columns: repeat(auto-fit, calc((100% - 6em) / 4));
}
@media (max-width: 768px) {
	ul.list_button {
		/* template-columns と column-gap を合計して100%になるようにする */
		grid-template-columns: repeat(auto-fit, 100%);
	}
	ul.list_button.btn_col02 {
		grid-template-columns: repeat(auto-fit, 100%);
	}
	ul.list_button.btn_col03 {
	grid-template-columns: repeat(auto-fit, calc((100% - 2em) / 2));
	}
	ul.list_button.btn_col04 {
	grid-template-columns: repeat(auto-fit, calc((100% - 2em) / 2));
	}
}
@media (max-width: 480px) {
	ul.list_button.btn_col03 {
		grid-template-columns: repeat(auto-fit, 100%);
	}
	ul.list_button.btn_col04 {
		grid-template-columns: repeat(auto-fit, 100%);
	}
}
ul.list_button li {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	font-size: 1em;
	line-height: 1.2;
}
ul.list_button > li a {
	width: 100%;
	min-width: 240px;
	max-width: 400px;
	min-height: 60px;
	background: #004ea2;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	text-decoration: none;
	transition: 0.5s;
	border-radius: 0.5em;
	position: relative;
	padding: 0 1.75em;
	border: 2px solid #004ea2;
}
ul.list_button > li a::before {
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	width: 1em;
	height: 1em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.875em;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
ul.list_button > li a:hover {
	background: #fff;
	color: #004ea2;
	box-shadow: 0px 0px 10px rgba(13, 76, 153, 0.5);
}
ul.list_button > li a:hover::before {
	color: #004ea2;
}
ul.list_button > li.notLink a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #dddddd;
	color: #999999;
	cursor: default;
	pointer-events: none;
	border: 1px solid #ccc;
}
ul.list_button > li.notLink a::before {
	font-family: "Font Awesome 6 Free";
	content: "\f061";
	width: 1em;
	height: 1em;
	color: #999;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.875em;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
/* 2 Column After */
ul.list_button.btn_col02:after {
	content: "";
	display: block;
	width: 50%;
	height: 0;
}
/* 3 Column After */
ul.list_button.btn_col03:after {
	content: "";
	display: block;
	width: 66.67%;
	height: 0;
}
@media (max-width: 768px) {
	ul.list_button.btn_col03:after {
		width: 50%;
	}
}
.list_button .button_pink a {
	background: #e7588d;
	color: #fff;
	border: 2px solid #e7588d;
}
.list_button .button_pink a::after {
	background: #e7588d;
}
.list_button .button_pink a:hover {
	background: #fff;
	color: #df5085;
	border: 2px solid #df5085;
}
.list_button .button_pink a:hover::before {
	background: #e7588d;
}
.list_button .button_pink a:hover::after {
	background: #fff;
}
.list_button .button_blue a {
	background: #008ce5;
	color: #fff;
	border: 2px solid #008ce5;
}
.list_button .button_blue a::after {
	background: #008ce5;
}
.list_button .button_blue a:hover {
	background-color: #fff;
	color: #008ce5;
	border: 2px solid #008ce5;
}
.list_button .button_blue a:hover::before {
	background: #008ce5;
}
.list_button .button_blue a:hover::after {
	background: #fff;
}
.list_button .button_orange a {
	background-color: #f77613;
	color: #fff;
	border: 2px solid #f77613;
}
.list_button .button_orange a:hover {
	background-color: #fff;
	color: #f77613;
	border: 2px solid #f77613;
}
.list_button .button_green a {
	background-color: #00c099;
	color: #fff;
	border: 2px solid #00c099;
}
.list_button .button_green a:hover {
	background-color: #fff;
	color: #00c099;
	border: 2px solid #00c099;
}
/*  List - Banner
----------------------------------------------------*/
ul.list_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	line-height: 1.1;
	text-align: center;
}
ul.list_banner li {
	margin: 0 0 0.75em;
}
ul.list_banner li a img {
	width: 100%;
	max-width: 230px;
	border: 1px solid #ddd;
	transition: 0.3s;
}
ul.list_banner > li a img:hover {
	border: 1px solid #999;
}
ul.list_banner li.blank {
	margin: 0;
}
ul.list_banner.btn_col01 > li {
	width: 100%;
}
ul.list_banner.btn_col02 > li {
	width: 48%;
}
ul.list_banner.btn_col03 > li {
	width: 30%;
}
ul.list_banner.btn_col04 > li {
	width: 24%;
}
@media (max-width: 480px) {
	ul.list_banner.btn_col04 > li {
		width: 30%;
	}
}
/*  Table
----------------------------------------------------*/
table.table_normal {
	width: 100%;
	border: solid 1px #ddd;
}
table.table_normal th {
	padding: 10px;
	background: #eff0e9;
	border-left: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	font-weight: 700;
}
table.table_normal td {
	padding: 10px;
	background: #fff;
	border-left: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}
/* Vertical Setting */
table th.vtl_center, table td.vtl_center {
	vertical-align: middle;
}
table.vtl_center_all td {
	vertical-align: middle;
}
/* th number setting */
table.table_number th {
	width: 3.5em;
	text-align: center;
}
/* Scroll */
@media (max-width: 768px) {
	.table_scroll {
		overflow-x: scroll;
	}
	.table_scroll::-webkit-scrollbar {
		height: 10px;
	}
	.table_scroll::-webkit-scrollbar-track {
		margin: 0 2px;
		background: #ccc;
		border-radius: 5px;
	}
	.table_scroll::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #666;
	}
	.table_scroll:after {
		content: "*If the window size is narrow, this table is displayed with side scrolling.";
		position: relative;
		font-size: calc(768px * 0.015625);
	}
	.table_scroll .table_normal {
		min-width: 700px;
	}
}
/* Stack */
table.table_stack_sp {
	width: 100%;
}
table.table_stack_sp th {
	padding: 1em 0.5em;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	border-bottom: solid 1px #ccc;
}
table.table_stack_sp td {
	padding: 1em 0 1em 0.5em;
	vertical-align: middle;
	border-bottom: solid 1px #ccc;
}
@media (max-width: 480px) {
	table.table_stack_sp th {
		width: auto;
		background: #fff;
		text-align: left;
	}
	table.table_stack_sp th, table.table_stack_sp td {
		border-bottom: none;
		border: 1px solid #ccc;
	}
	table.table_stack_sp th, table.table_stack_sp td {
		display: list-item;
		list-style: none;
		width: 100%;
		padding: 5px;
		border-width: 1px 0 0;
	}
}
table.table_stack_noborder tr {
	width: auto;
	display: inline-flex;
	align-items: flex-start;
}
@media (max-width: 999px) {
	table.table_stack_noborder tr {
		flex-wrap: wrap;
	}
}
table.table_stack_noborder th, table.table_stack_noborder td {
	padding: 0;
	white-space: nowrap;
	border: none;
}
@media (max-width: 999px) {
	table.table_stack_noborder th, table.table_stack_noborder td {
		max-width: 100%;
		white-space: normal;
	}
}
/* Stack Irregular */
section h2 + table.table_stack_p {
	margin-top: -0.5em;
}
section h3 + table.table_stack_p {
	margin-top: -0.45em;
}
table.table_stack_p {
	width: auto;
}
table.table_stack_p.table_center {
	margin-left: auto;
	margin-right: auto;
}
table.table_stack_p th, table.table_stack_p td {
	padding: 0;
	text-align: left;
	vertical-align: top;
	border: none;
}
table.table_stack_p td:first-of-type {
	white-space: nowrap;
}
table.table_stack_p td {}
@media (max-width: 999px) {
	table.table_stack_p tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.table_stack_p tr th, table.table_stack_p tr td {
		display: inline-block;
		width: auto;
	}
	table.table_stack_p tr td:first-of-type {
		white-space: normal;
	}
}
/*  Table
----------------------------------------------------*/
table.table_style01 {
	width: 100%;
	border: solid 1px #ddd;
}
table.table_style01 th {
	padding: 10px;
	background: #f8f1dc;
	border-left: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	font-weight: 700;
}
table.table_style01 td {
	padding: 10px;
	border-left: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
}
/* Vertical Setting */
table.vtl_center th, table.vtl_center td {
	vertical-align: middle;
}
/*  Table Program
----------------------------------------------------*/
table.table_timetable {
	width: 100%;
	border: none;
	table-layout: fixed;
}
table.table_timetable th, table.table_timetable td {
	font-size: 0.8em;
	line-height: 1.4;
	padding: 0;
	text-align: center;
	border: none;
	border-left: 1px solid #fff;
	letter-spacing: -0.04em;
}
@media (max-width: 480px) {
	table.table_timetable th, table.table_timetable td {
		font-size: 2vw;
	}
}
table.table_timetable tr:nth-of-type(1) th:nth-of-type(n + 2) {
	background: #f10e15;
	color: #fff;
	padding: 0.25em 0;
}
table.table_timetable tr:nth-of-type(2) td {
	background: #fcd7d8;
	color: #111;
	font-weight: 700;
	padding: 0.25em 0;
}
table.table_timetable th {
	width: calc((100% - 3em) / 7);
	vertical-align: middle;
}
table.table_timetable th:nth-of-type(1) {
	width: 3em;
	background: #fff;
	border-bottom: 1px solid #ddd;
	border-left: none;
	padding: 0.25em 0;
}
table.table_timetable td {
	width: calc((100% - 3em) / 7);
	background: #eee;
	border-bottom: 1px solid #fff;
	position: relative;
}
table.table_timetable td a {
	width: 100%;
	height: 100%;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 0.25em;
	position: absolute;
	text-decoration: none;
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}
table.table_timetable td a:hover {
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 0);
}
table.table_timetable .bg_yellow {
	background: #fff8ad;
}
table.table_timetable .bg_ygreen {
	background: #daf1ae;
}
table.table_timetable .bg_green {
	background: #c5edc3;
}
table.table_timetable .bg_cyan {
	background: #b9f0f7;
}
table.table_timetable .bg_blue {
	background: #d2e6ff;
}
table.table_timetable .bg_indigo {
	background: #0758bb;
	color: #fff;
}
table.table_timetable .bg_purple {
	background: #efbfff;
}
table.table_timetable .bg_pink {
	background: #ffc8da;
}
table.table_timetable .bg_orange {
	background: #ffb995;
}
table.table_timetable .bg_gray {
	background: #ccc;
}
table.table_timetable .bg_yellow a:hover, table.table_timetable .bg_yellow a:active {
	background: #ffd43f;
	transition: 0.3s;
}
table.table_timetable .bg_green a:hover, table.table_timetable .bg_green a:active {
	background: #3fc039;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_ygreen a:hover, table.table_timetable .bg_ygreen a:active {
	background: #7db335;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_cyan a:hover, table.table_timetable .bg_cyan a:active {
	background: #2dd8ed;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_blue a:hover, table.table_timetable .bg_blue a:active {
	background: #4f6bf0;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_indigo a:hover, table.table_timetable .bg_indigo a:active {
	background: #142997;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_purple a:hover, table.table_timetable .bg_purple a:active {
	background: #c36be0;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_pink a:hover, table.table_timetable .bg_pink a:active {
	background: #f56aa7;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_orange a:hover, table.table_timetable .bg_orange a:active {
	background: #ff7c38;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable .bg_gray a:hover, table.table_timetable .bg_gray a:active {
	background: #999;
	color: #fff;
	transition: 0.3s;
}
table.table_timetable td .table_br {
	display: none;
}
@media (max-width: 480px) {
	table.table_timetable td .table_br {
		display: block;
	}
}
/*  Back Ground Color
----------------------------------------------------*/
.bg_blue {
	background: #174e91;
}
.bg_green {
	background: #509869;
}
.bg_red {
	background: #f10e15;
}
.bg_orange {
	background: #ec7430;
}
/*  Align
----------------------------------------------------*/
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.middle {
	vertical-align: middle;
}
/*  Hr
-----------------------------------------------*/
hr {
	border: solid 1px #ddd;
}
/*  Text
----------------------------------------------------*/
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
strong {
	font-weight: 700;
}
.tx_cancel {
	text-decoration-line: line-through;
	text-decoration-thickness: 2px;
}
.tx_cancel_red {
	text-decoration-line: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: #f10e15;
}
.tx_cancel_red span {
	color: black;
}
.tx_under {
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
}
.tx_red {
	color: #f10e15;
}
.tx_blue {
	color: #19375b;
}
.tx_black {
	color: #222;
}
.tx_white {
	color: #fff;
}
.tx_green {
	color: #19375b;
}
.tx_13 {
	font-size: 1.3rem;
}
.tx_13B {
	font-size: 1.3rem;
	font-weight: 700;
}
.tx_14 {
	font-size: 0.875em;
}
.tx_14B {
	font-size: 0.875em;
	font-weight: 700;
}
.tx_15 {
	font-size: 0.9375em;
}
.tx_15B {
	font-size: 0.9375em;
	font-weight: 700;
}
.tx_16 {
	font-size: 1em;
}
.tx_16B {
	font-size: 1em;
	font-weight: 700;
}
.tx_18 {
	font-size: 1.125em;
}
.tx_18B {
	font-size: 1.125em;
	font-weight: 700;
}
.tx_20 {
	font-size: 1.25em;
}
.tx_20B {
	font-size: 1.25em;
	font-weight: 700;
}
.tx_24 {
	font-size: 1.5em;
}
.tx_24B {
	font-size: 1.5em;
	font-weight: 700;
}
.tx_28 {
	font-size: 1.75em;
}
.tx_28B {
	font-size: 1.75em;
	font-weight: 700;
}
@media (max-width: 768px) {
	.tx_13, .tx_13B {
		font-size: 1.2rem;
	}
	.tx_14, .tx_14B {
		font-size: 1.3rem;
	}
	.tx_15, .tx_15B {
		font-size: 1.4rem;
	}
	.tx_16, .tx_16B {
		font-size: 1.5rem;
	}
	.tx_17, .tx_17B {
		font-size: 1.6rem;
	}
	.tx_18, .tx_18B {
		font-size: 1.7rem;
	}
	.tx_20, .tx_20B {
		font-size: 1.8rem;
	}
	.tx_22, .tx_22B {
		font-size: 2rem;
	}
}
.tx_space01 {
	letter-spacing: 0.1rem;
}
.tx_space02 {
	letter-spacing: 0.2rem;
}
.tx_space03 {
	letter-spacing: 0.3rem;
}
.tx_space04 {
	letter-spacing: 0.4rem;
}
.tx_space05 {
	letter-spacing: 0.5rem;
}
.tx_space_nw001 {
	letter-spacing: -0.01rem;
}
.tx_space_nw01 {
	letter-spacing: -0.1rem;
}
.tx_space_nw02 {
	letter-spacing: -0.2rem;
}
.tx_space_nw03 {
	letter-spacing: -0.3rem;
}
.tx_indent00 {
	text-indent: 1em;
}
.tx_indent01 {
	padding-left: 1em;
	text-indent: -1em;
}
.tx_indent02 {
	padding-left: 2em;
	text-indent: -2em;
}
/*  Line Height
----------------------------------------------------*/
.line_height00 {
	line-height: 0;
	vertical-align: middle;
}
.line_height01 {
	line-height: 1;
	vertical-align: middle;
}
.line_height02 {
	line-height: 2;
	vertical-align: middle;
}
/*  Text Break
----------------------------------------------------*/
@media (max-width: 999px) {
	span.br999_under:before {
		content: "\A";
		white-space: pre;
	}
}
@media (max-width: 768px) {
	span.br768_under:before {
		content: "\A";
		white-space: pre;
	}
}
@media (max-width: 480px) {
	span.br480_under:before {
		content: "\A";
		white-space: pre;
	}
}
/*  Margin
----------------------------------------------------*/
.u-mt-10 {
	margin-top: 10px;
}
.u-mt-20 {
	margin-top: 20px;
}
.u-mt-30 {
	margin-top: 30px;
}
.u-mt-40 {
	margin-top: 40px;
}
.u-mt-50 {
	margin-top: 50px;
}
.u-mb-10 {
	margin-bottom: 10px;
}
.u-mb-20 {
	margin-bottom: 20px;
}
.u-mb-30 {
	margin-bottom: 30px;
}
.u-mb-40 {
	margin-bottom: 40px;
}
.u-mb-50 {
	margin-bottom: 50px;
}
.mgl_10 {
	margin-left: 10px;
}
.mgl_01 {
	margin-left: 1em;
}
.mgl_02 {
	margin-left: 2em;
}
.mgl_03 {
	margin-left: 3em;
}
.mgl_04 {
	margin-left: 4em;
}
.mgl_05 {
	margin-left: 5em;
}
/*  Image
----------------------------------------------------*/
.u-w480 {
	max-width: 480px;
}
.u-w360 {
	max-width: 360px;
}
.u-w320 {
	max-width: 320px;
}
.u-w240 {
	max-width: 240px;
}
.u-w200 {
	max-width: 200px;
}
.u-w120 {
	max-width: 120px;
}
.u-w480 img, .u-w360 img, .u-w320 img, .u-w240 img, .u-w200 img, .u-w120 img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
/*  Icon
----------------------------------------------------*/
/*Link Blank Icon*/
.link:after {
	font-family: "Font Awesome 6 Free";
	content: "\f360";
	margin-left: 0.2em;
	color: #4369c4;
	font-size: 1.375em;
	font-weight: 900;
}
.pdf:after {
	font-family: "Font Awesome 6 Free";
	content: "\f1c1";
	margin-left: 0.2em;
	color: #f54328;
	font-size: 1.6em;
	font-weight: 900;
}
.ppt:after {
	font-family: "Font Awesome 6 Free";
	content: "\f1c4";
	margin-left: 0.2em;
	color: #ce6243;
	font-size: 1.6em;
	font-weight: 900;
}
.word:after {
	font-family: "Font Awesome 6 Free";
	content: "\f1c2";
	margin-left: 0.2em;
	color: #254c9b;
	font-size: 1.6em;
	font-weight: 900;
}
.excel:after {
	font-family: "Font Awesome 6 Free";
	content: "\f1c3";
	margin-left: 0.2em;
	color: #347241;
	font-size: 1.6em;
	font-weight: 900;
}
.ssl:after {
	font-family: "Font Awesome 6 Free";
	content: "\f084";
	margin-left: 0.2em;
	color: #ceaf28;
	font-size: 1.6em;
	font-weight: 900;
}
/* Irregular Option */
.list_button a.link:hover:after, .list_button a.pdf:hover:after, .list_button a.ppt:hover:after, .list_button a.word:hover:after, .list_button a.excel:hover:after, .list_button a.ssl:hover:after {
	color: #fff;
}
/* Triangle Icon */
.triangle {
	/* margin: 0; */
	padding-left: 1em;
	text-indent: -1em;
	position: relative;
}
.triangle:before {
	content: "\025b6";
	color: #e94d40;
	clip-path: polygon(10% 20%, 75% 50%, 10% 80%);
}
/*  Page Top
----------------------------------------------------*/
.c-page-top, #page_top, #page-top {
	position: fixed;
	display: flex;
	bottom: 1em;
	right: 1em;
	margin: 0;
}
.c-page-top a, #page_top a, #page-top a {
	display: block;
	position: relative;
	width: 60px;
	height: 60px;
	text-align: center;
	vertical-align: middle;
	opacity: 0.85;
	transition: 0.4s;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	background-color: #0087ba;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	/* ▼ テキストを視覚的に非表示（矢印だけ見せる） */
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.c-page-top a:hover, #page_top a:hover, #page-top a:hover {
	background-color: #e94d40;
}
/* 矢印アイコン */
.c-page-top a::before, #page_top a::before, #page-top a::before {
	position: absolute;
	top: 25px;
	left: 35%;
	content: "";
	width: 15px;
	height: 15px;
	margin: auto;
	border-left: 3px solid #fff;
	border-top: 3px solid #fff;
	vertical-align: middle;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (max-width: 480px) {
	.c-page-top a::before, #page_top a::before, #page-top a::before {
		top: 18px;
		left: 33%;
	}
	.c-page-top a, #page_top a, #page-top a {
		width: 50px;
		height: 50px;
	}
}
/*  Float
----------------------------------------------------*/
.fL {
	float: left;
	margin: 0 1em 10px 0;
}
.fR {
	float: right;
	margin: 0 0 10px 1em;
}
/*  Attention
----------------------------------------------------*/
.box_attention {
	max-width: 100%;
	padding: 1em;
	line-height: 1.6;
	border: 4px solid #e0363c;
}
.box_attention_g {
	max-width: 100%;
	padding: 1em;
	line-height: 1.6;
	border: 4px solid #969696;
}
/*  Construction
----------------------------------------------------*/
.construction {
	width: 60%;
	margin: 5% auto 30%;
	padding: 20px 40px;
	display: block;
	color: #bbb;
	text-align: center;
	border: 3px solid #ddd;
}
.construction .title {
	font-size: 1.2em;
	font-weight: 700;
}
@media (max-width: 480px) {
	.construction {
		padding: 10px 20px;
	}
}
/*  Coming
----------------------------------------------------*/
.box_coming {
	max-width: 30em;
	color: #999;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: 3em 1em;
	line-height: 1.6;
	border: 3px double #ccc;
	border-radius: 1em;
	text-align: center;
}
.box_coming > p {
	display: inline-block;
}
.box_coming p:first-of-type {
	font-size: 2em;
	letter-spacing: 0.5em;
	padding-left: 0.5em;
	padding-bottom: 0.25em;
	position: relative;
}
.box_coming > p:first-of-type:after {
	content: "";
	width: 4em;
	height: 1px;
	background: #ddd;
	position: absolute;
	bottom: 0;
	left: calc(50% - 2em);
}
.box_coming p:last-of-type {
	letter-spacing: 0.1em;
	padding-left: 0.1em;
	padding-top: 0.75em;
}
/*  anker link
----------------------------------------------------*/
.inner_link {
	transform: translateY(-5em);
	display: inline-block;
	z-index: -1;
}
@media (max-width: 999px) {
	.inner_link {
		transform: translateY(-3em);
		display: inline-block;
		z-index: -1;
	}
}
/*  Print
----------------------------------------------------*/
@media print {
	.l-wrapper {
		max-width: 100%;
	}
	header {
		position: absolute;
		top: 0;
		left: 0;
	}
	header h1 {
		mix-blend-mode: normal;
	}
	header h1 a {
		text-decoration: none;
		color: #002063;
	}
	header h1 span {
		display: block;
		transform: translateY(0%);
		position: relative;
		mix-blend-mode: normal;
	}
	header h1 img {
		display: none;
	}
	.hamburger {
		position: absolute;
	}
	.main_bg {
		padding-bottom: 5%;
	}
	.theme:after {
		width: 100%;
		bottom: -5px;
		left: 0;
		transform: translate(0, 0);
	}
	.info:after {
		width: 100%;
	}
}
.fonts {
	font-family: "IBM Plex Sans JP", sans-serif;
	font-family: "Roboto", sans-serif;
}
/* option */
.is-disabled {
	cursor: default;
	pointer-events: none;
}