/*
Theme Name:ba-template
*/
@charset "UTF-8";
/*####################################

1. General
┣ Root
┣ Element
┣ Decoration
┣ Css Animation
┣ Plugin Overwrite
┣ default.css Overwrite
┣ Other
2. Site Common Style
┣ Pagination
┣ Form
┣ 404 & Thanks
3. Header
4. Main
5. Footer
6. Common Style
┣ Single
┣ Section 
7.Module
8. Page

####################################*/
/*====================================

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* メインカラー */
	--mainColor: #FB6C00;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #ffe8d6;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #efefef;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #022993;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #FB6C00;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #FB6C00;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #fb6c000f;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #fb6c000f;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
.js-topSlider .slick-arrow::before {
	border-color: var(--mainColor);
}
.js-topSlider .slick-dots li.slick-active button {
	background: var(--mainColor);
}
.js-topSlider .slick-dots {
	bottom: -35px;
}
.js-topSlider .slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 5px;
}
.js-facilitiesPaidSeatsGallerySlider .slick-dots li button {
	background: #000;
}
.js-facilitiesPaidSeatsGallerySlider .slick-dots li.slick-active button {
	background: var(--mainColor);
}
.js-facilitiesPaidSeatsGallerySlider .slick-dots {
	bottom: 0px;
}
.js-facilitiesPaidSeatsGallerySlider .slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 5px;
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*--------------------------------------------------
カスタムカレンダー
--------------------------------------------------*/
/*セレクト*/
.monthSelector {
	overflow: hidden;
	display: flex;
	align-items: end;
	flex-wrap: wrap;
	width: min(900px, 100%);
	min-height: clamp(4.375rem, 4.091rem + 1.21vw, 5rem);
	margin: auto;
	padding: 0;
	list-style: none;
}
.monthItem {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: wrap;
	flex: 1;
	gap: 2px;
	min-height: 50px;
	padding: 10px clamp(0.313rem, 0.17rem + 0.61vw, 0.625rem);
	font-size: clamp(1rem, 0.83rem + 0.73vw, 1.375rem);
	font-weight: 600;
	border: 1px solid #fff;
	color: #999;
	cursor: default;
	background: #f0f0f0;
}
.monthItem:first-child {
	border-radius: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem) 0 0 0;
}
.monthItem:last-child {
	border-radius: 0 clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem) 0 0;
}
.monthItem.available {
	color: var(--mainColor);
	background: #ffe8d6;
	cursor: pointer;
}
.monthItem.current {
	min-width: 20%;
	min-height: clamp(3.75rem, 3.182rem + 2.42vw, 5rem);
	font-size: clamp(1.5rem, 1.045rem + 1.94vw, 2.5rem);
	color: #fff;
	line-height: 1;
	background: var(--mainColor);
}
.monthSelector .year { display: none; }
.monthSelector .monthItem.current .year {
	display: block;
	width: 100%;
	font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
	text-align: center;
}
.monthSelector .monthItem.current .month {
	display: block;
}
.customCalendarItem {
	display: none;
}
.customCalendarItem.active {
	display: block;
}
/*カレンダー*/
.customCalendar {
	margin-top: 5px;
}
.customCalendar .scroll-hint-icon {}

.customCalendar > .js-scrollHint {
	width: max(1200px, 100%);
}
.customCalendarItem{
	width: 100%;
	height: auto;
	position: relative;
	display: none;
}
.customCalendarItem.active{
	display: block;
}
.customCalendarItem .nextButton{
	position: absolute;
	top: 38px;
	right: 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #464c53;
	cursor: pointer;
}
.customCalendarItem .nextButton:before, .customCalendarItem .nextButton:after{
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background: #FFF;
	position: absolute;
	top: calc(50% - 2px);
	right: 14px;
	border-radius: 100px;
	transform: rotate(40deg);
	transform-origin:calc(100% - 0px) 50%;
}
.customCalendarItem .nextButton:after{
	transform: rotate(-40deg);
}
.customCalendarItem .previousButton{
	position: absolute;
	top: 38px;
	left: 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #464c53;
	cursor: pointer;
}
.customCalendarItem .previousButton:before, .customCalendarItem .previousButton:after{
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background: #FFF;
	position: absolute;
	top: calc(50% - 2px);
	left: 4px;
	border-radius: 100px;
	transform: rotate(140deg);
	transform-origin:calc(100% - 0px) 50%;
}
.customCalendarItem .previousButton:after{
	transform: rotate(-140deg);
}
.customCalendarItem .previousButton.hidden,
.customCalendarItem .nextButton.hidden {
	display: none;
}
.customCalendar table {
	width: 100%;
	table-layout: fixed;
}
.customCalendar table th,
.customCalendar table td {
	vertical-align: middle;
	text-align: center;
}
.customCalendar table caption {
	margin-bottom: 10px;
	text-align: center;
}
.customCalendar table caption div{
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.customCalendar table caption .labels, .customCalendar table caption .year{
	display: inline-block;
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	color: #464c53;
	margin-bottom: 20px;
}
.customCalendar table caption .month{
	display: inline-block;
	font-weight: 600;
	font-size: 64px;
	line-height: 102px;
	color: #464c53;
	margin: 0 27px;
}
.customCalendar table tr._rowDay {
	height: 36px;
}
.customCalendar table tr._rowDay td {
	font-size: 15px;
}
.customCalendar table tr._rowWeek {
	height: 24px;
}
.customCalendar table tr._rowWeek td {
	font-size: 14px;
}
.customCalendar table tr._rowDay td._sat,
.customCalendar table tr._rowWeek td._sat {
	color: #fff;
	background-color: #2E93EA;
}
.customCalendar table tr._rowDay td._sun,
.customCalendar table tr._rowWeek td._sun {
	color: #fff;
	background: #E81810;
}
.customCalendar table tr._rowHome,
.customCalendar table tr._rowAway {
	height: clamp(7.813rem, 7.102rem + 3.03vw, 9.375rem);
}
.customCalendar table tr._rowEvent {
	height: 90px;
}
.customCalendar table tr th {
	position: sticky;
	top: 0px;
	left: 0;
	z-index: 1;
	transform: translateX(0px);
	width: clamp(5rem, 4.006rem + 4.24vw, 7.188rem);
	font-weight: 600;
	font-size: clamp(0.938rem, 0.852rem + 0.36vw, 1.125rem);
	line-height: 23px;
	text-align: center;
	border: solid 1px #CFCFCF;
}
@media screen and (max-width: 1024px) {
	.customCalendar table tr th {
		
	}
}
.customCalendar table tr th._headDate {
	background: #DDDDDD;
}
.customCalendar table tr th._headHome {
	background: #fbb700;
}
.customCalendar table tr th._headAway {
	background: #a6d0dd;
}
.customCalendar table tr th._headEvent {
	background: #ff7765;
}
.customCalendar table tr td {
	border: solid 1px #CFCFCF;
	padding: 4px 2px;
	text-align: center;
	line-height: 1.2;
	font-size: 13px;
	position: relative;
	background: #FFFFFF;
}
.customCalendar table tr td > *:not(:first-child) {}
.customCalendar table tr._rowHome td._hasValue{
	background: #fdf7e5;
}
.customCalendar table tr._rowAway td._hasValue {
	background: #eaf8fc;
}
.customCalendar table tr._rowEvent td._hasValue {
	background: #fdd9d5;
}
.customCalendar table tr._rowHome td span:not(:first-child),
.customCalendar table tr._rowAway td span:not(:first-child),
.customCalendar table tr._rowEvent td span:not(:first-child) {
	display: inline-block;
	margin-top: 10px;
}
.customCalendar table tr td ._text {
	line-height: 1.6;
	font-weight: 600;
	display: -webkit-box; /* 必須 */
	-webkit-box-orient: vertical; /* 必須 */
	-webkit-line-clamp: 4; /* 行数を制限 */
	overflow: hidden; /* はみ出た部分を非表示 */
}
.customCalendar table tr td ._iconBox {
	display: flex;
	justify-content: center;
	flex-flow: wrap;
	gap: 5px;
	margin-top: 5px;
}
.customCalendar table tr td ._iconBox img {
	width: 25px;
}
.calendarTooltip {
  position: fixed; /* スクロールに追従 */
  max-width: min(90vw, 560px);
  max-height: min(70vh, 480px);
  overflow: auto;
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  border-radius: 10px;
  padding: 12px 14px;
  z-index: 9999;
}
.calendarTooltip:focus {
	outline: none;
}

/* クリック可能なことがわかるように */
.calendar td._hasValue {
	position: relative;
	cursor: pointer;
}

/* 内容を少し読みやすく */
.calendarTooltip ._text {
	display:block;
	line-height:1.6;
	margin-bottom:8px;
	text-align: center;
}
.calendarTooltip ._iconBox {
	display:flex;
	justify-content: center;
	flex-wrap:wrap;gap:8px;
}
.calendarTooltip img._icon { 
	width:28px;
	height:28px;
}
@media screen and (max-width: 1024px) {}
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 56px;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	margin: 60px 0 0;
}
.pn_list .listArrow::before, .pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 11px;
}
.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 2px);
}
.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	color: var(--pnColor);
	border-radius: 5px;
}
.pn_list .listPagerBlk span.listPagerNum {
	color: var(--pnCurrentColor);
	background: var(--pnCurrentBg);
}
.pn_list .listPagerNext::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 2px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listPagerPrevious:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listPagerBlk a:hover {
		color: var(--pnHoverColor);
		background: var(--pnHoverBg);
		opacity: 1;
	}
	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
.pn_list .listFirstBlk, .pn_list .listLastBlk {
	width: 100px;
	height: 100%;
}
.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover, .pn_list .listLastBlk a:hover {
		background: var(--pnHoverBg);
	}
}
.pn_list .listFirstBlk a {
	border-right: solid 1px #E2E6EB;
}
.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: 50%;
}
.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}
.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
@media screen and (max-width: 1024px) {
	.pn_list {
		margin: 45px 0 0;
	}
	.pn_list .listArrow::before, .pn_list .listArrow::after {
		top: calc(50% + 2px);
	}
	.pn_list .listPagerBlk {
		gap: 8px;
	}
	.pn_list .listPagerPrevious::before {
		left: calc(50% - 2px);
	}
	.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
		height: 30px;
		width: 26px;
		font-size: 14px;
	}
	.pn_list .listPagerBlk span.listPagerNum {}
	.pn_list .listPagerNext::before {}
	.pn_list .listFirstBlk, .pn_list .listLastBlk {
		width: 40px;
	}
	.pn_list .listFirstBlk a, .pn_list .listLastBlk a {}
	.pn_list .listFirstBlk a {}
	.pn_list .listFirstBlk a::before {
		left: calc(50% + 2px);
	}
	.pn_list .listFirstBlk a::after {
		left: calc(50% - 5px);
	}
	.pn_list .listLastBlk a {}
	.pn_list .listLastBlk a::before {
		right: calc(50% + 2px);
	}
	.pn_list .listLastBlk a::after {
		right: calc(50% - 5px);
	}
}
/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 55px;
	margin: 50px 0 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 100px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: block;
	height: 100%;
}
.pn_detail a {
	background: #fff;
	box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
	border-radius: 6px;
}
@media screen and (min-width: 1025px) {
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
}
.pn_detail .detailpreviousBlk {}
.pn_detail .detailpreviousBlk a {}
.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailpreviousBlk a::before {
	left: 50%;
}
.pn_detail .detailpreviousBlk a::after {
	left: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_detail .detailpreviousBlk a:hover::before, .pn_detail .detailpreviousBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}
.pn_detail .detailNextBlk {}
.pn_detail .detailNextBlk a {}
.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailNextBlk a::before {
	right: 50%;
}
.pn_detail .detailNextBlk a::after {
	right: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_detail .detailNextBlk a:hover::before, .pn_detail .detailNextBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
.pn_detail .detailBackBlk {}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 100%;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
@media screen and (max-width: 1024px) {
	.pn_detail {
		margin: 60px 0 0;
	}
	.pn_detail > * {}
	.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
		width: 55px;
	}
	.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
		width: 100%;
	}
	.pn_detail a {}
	.pn_detail .detailpreviousBlk {}
	.pn_detail .detailpreviousBlk a {}
	.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {}
	.pn_detail .detailpreviousBlk a::before {}
	.pn_detail .detailpreviousBlk a::after {}
	.pn_detail .detailNextBlk {}
	.pn_detail .detailNextBlk a {}
	.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {}
	.pn_detail .detailNextBlk a::before {}
	.pn_detail .detailNextBlk a::after {}
	.pn_detail .detailBackBlk {}
	.pn_detail .detailBackBlk a {
		width: 200px;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	border: 1px solid #D7DCE2;
	border-bottom: transparent;
}
.form_input .inputRow {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #D7DCE2;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	align-items: center;
	flex-flow: wrap;
	width: 225px;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	background: var(--formItemBg);
	padding: 25px 15px;
	font-weight: 600;
	border-right: 1px solid #D7DCE2;
}
.form_input .inputItem._alignItemsFS {
	align-items: flex-start;
}
.form_input .inputItem ._must {
	font-size: 12px;
	color: #BF2121;
}
.form_input .inputItem ._note,
.form_input .inputValue ._note {
	display: block;
	width: 100%;
	font-size: clamp(0.813rem, 0.784rem + 0.12vw, 0.875rem);
}
.form_input .inputValue {
	flex: 1;
	padding: 15px;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	background: #fff;
}
.form_input .inputValue ._note {
	font-weight: 600;
	margin-top: 5px;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
/* input[text, tel, email], textarea */
.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
	width: 100%;
	height: 40px;
	border-radius: 6px;
	border: 1px solid #89bdde;
	padding: 0px 10px;
	font-size: 13px;
}
.form_input textarea {
	width: 100% !important;
	height: auto;
	padding: 10px;
}
.form_input input::placeholder, .form_input textarea::placeholder {
	font-size: 14px;
	color: #b4b7bc;
}
/* input[checkbox, radio] */
.form_input input[type="checkbox"], .form_input input[type="radio"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.form_input .wpcf7-list-item-label {
	font-size: 14px;
}
/* input[file] */
.form_input input[type="file"] {
	font-size: 14px;
}
/* validation */
.form_input .wpcf7-not-valid-tip {
	width: 100%;
	font-size: 14px;
	margin: 10px 0 0;
}
/* agree */
.form_agree {
	margin: 40px 0 0;
	text-align: center;
}
.form_agree .wpcf7-list-item {
	margin: 0;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 12px;
}
.form_agree .wpcf7-list-item-label {
	font-size: 13px;
}
.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
/* submit */
.form_submit {
	position: relative;
	width: min(350px, 100%);
	text-align: center;
	margin: 50px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 70px;
	font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
	color: #fff;
	transition: .3s;
	background: var(--mainColor);
}
@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
}
.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
	.form_input {
		border: 1px solid #D7DCE2;
	}
	.form_input .inputRow {
		border-bottom: 1px solid #D7DCE2;
		flex-flow: wrap;
	}
	.form_input .inputRow:last-child {
		border-bottom: transparent;
	}
	.form_input .inputItem {
		justify-content: flex-start;
		width: 100%;
		padding: 15px 15px;
		border-right: transparent;
	}
	.form_input .inputItem ._must {}
	.form_input .inputValue {}
	.form_input .wpcf7-form-control-wrap {}
	/* input[text, tel, email], textarea */
	.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
		font-size: 16px;
	}
	.form_input textarea {}
	.form_input input::placeholder, .form_input textarea::placeholder {}
	/* input[checkbox, radio] */
	.form_input input[type="checkbox"], .form_input input[type="radio"] {}
	.form_input .wpcf7-form-control {}
	.form_input .wpcf7-list-item {}
	.form_input .wpcf7-list-item label {}
	.form_input .wpcf7-list-item-label {}
	/* input[file] */
	.form_input input[type="file"] {}
	/* validation */
	.form_input .wpcf7-not-valid-tip {}
	/* agree */
	.form_agree {}
	.form_agree .wpcf7-list-item {}
	.form_agree label {}
	.form_agree .wpcf7-list-item-label {}
	.form_agree input[type="checkbox"] {}
	/* submit */
	.form_submit {
		margin: 30px auto 0;
		width: 100%;
		max-width: var(--maxWidth300);
	}
	.form_submit input[type="submit"] {
		height: 55px;
	}
	.form_submit .wpcf7-spinner {}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 60px 0 0;
	width: 100%;
	height: 270px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 33px;
	overflow: auto;
}
.form_pp dl {}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 60px 0 0;
		width: 100%;
		height: 250px;
		padding: 30px 15px;
	}
	.form_pp dl {}
	.form_pp dt {
		font-size: 15px;
	}
	.form_pp dd {}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.thanks_section .inner {}
.thanks_section .blk {}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 35px 0 0;
}
.thanks_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.error_section .inner {}
.error_section .blk {}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.thanks_section .linkBlk, .error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a, .error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px var(--mainColor);
	border-radius: 30px;
}
@media screen and (min-width: 1025px) {
	.thanks_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: var(--mainColor);
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 90px;
	}
	.thanks_section .inner {}
	.thanks_section .blk {}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 90px;
	}
	.error_section .inner {}
	.error_section .blk {}
	.error_section .headBlk {}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
	.thanks_main .linkBlk a, .error_section .linkBlk a {}
}
/*====================================

3. Header

====================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 200px;
	box-shadow: 0 3px 3px rgb(0 0 0 / 16%);
	border-top: solid 10px #000;
	background: white;
	transition: .3s;
}
header .decoration {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translate(-50%, 0%);
	transition: .3s;
}
header .decoration img {
	width: 500px;
	height: 60px;
	object-position: bottom;
}
@media screen and (max-width: 1024px) {
	header {
		border-top: solid 5px #000;
	}
	header .decoration img {
		width: 270px;
		min-width: 270px;
		height: auto;
	}
}
header .inner {
	height: 100%;
}
header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}
header .logoBlk {
	position: absolute;
	top: 3px;
	left: 50%;
	transform: translate(-50%, 0%);
	z-index: 1;
}
header .logoBlk a {}
header .logoBlk a img {
	height: 80px;
}
header .menuRightBox {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	padding: 45px 0 15px;
	transition: .3s;
	align-items: self-start;
	justify-content: end;
}
@media screen and (max-width: 1024px) {
	header .menuRightBox {
		padding-top: 35px;
	}
}
header .menuOtherBox > a {
	padding-bottom: 2px;
	font-size: 0.875rem;
	border-bottom: solid 2px #dc1216;
}
header .menuOtherBox {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	display: none;
}
header .menuSnsBox {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 15px 25px;
	border-radius: 15px 0px;
	background: #000;
}
@media screen and (max-width: 1024px) {
	header .menuSnsBox {
		margin: auto;
	}
}
header .menuSnsBox > ._text {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
}
header .menuSnsIconBox {
	display: flex;
	gap: 10px;
}
header .menuSnsIconBox > a {}
@media screen and (min-width: 1025px) {
	header .menuBlk {
		display: flex;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	header .menuBlk nav {
		padding-top: 90px;
	}
	header .menuBlk nav > ul {
		display: flex;
		gap: clamp(1.25rem, -4.574rem + 9.09vw, 2.813rem);
		height: 100%;
	}
	header .menuBlk nav > ul > li {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
	}
	header .menuBlk nav > ul > li > a {
		padding: 5px 0 5px 50px;
		font-size: clamp(1rem, 0.534rem + 0.73vw, 1.125rem);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 50px;
	}
	header .menuBlk nav > ul > li > a._calendar {
		background-image: url(./images/icon_schedule_orange01.svg);
	}
	header .menuBlk nav > ul > li > a._topics {
		background-image: url(./images/icon_topic_orange01.svg);
	}
	header .menuBlk nav > ul > li > a._facilitys {
		background-image: url(./images/icon_facility_orange01.svg);
	}
	header .menuBlk nav > ul > li > a._accessTouristInformation {
		background-image: url(./images/icon_access_orange01.svg);
	}
	header .menuBlk nav > ul > li > a._active {
		color: var(--mainColor);
	}
	header .menuBlk nav > ul > li > a:hover {}
	header .menuBlk nav > ul > li a:hover {
		color: var(--mainColor);
		opacity: 1;
	}
	header .menuBlk nav > ul > li > ul {
		position: absolute;
		top: 80%;
		left: -30px;
		left: clamp(-1.25rem, 1.08rem + -3.64vw, -1.875rem);
		display: flex;
		gap: 15px;
		flex-direction: column;
		background: #fff;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		z-index: 1;
		padding: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
		min-width: 190px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		pointer-events: none;
	}
	header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	header .menuBlk nav > ul > li > ul > li {}
	header .menuBlk nav > ul > li > ul > li > a {
		font-size: 14px;
	}
	header .menuBlk nav > ul > li > ul > li > a:hover {}
	/* header scrollIn */
	body.scrollIn header {
		height: 145px;
	}
	body.scrollIn header .decoration {
		text-align:center;
	}
	body.scrollIn header .decoration img {
		height: 50px;
	}
	body.scrollIn header .logoBlk a img {
		height: 60px;
	}
	body.scrollIn header .menuBlk nav {
		padding-top: 70px;
	}
	body.scrollIn header .menuRightBox {
		padding: 15px 0 10px;
	}
}
@media screen and (max-width: 1024px) {
	header {
		height: 55px;
		box-shadow: none;
	}
	header .inner {
		width: 100%;
		max-width: initial;
		padding: 0 5px 0 4%;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		background: white;
	}
	header .blk {
    justify-content: flex-end;
}
	header .logoBlk {}
	header .logoBlk a {}
	header .logoBlk a img {
		height: 40px;
	}
	header .menuBlk {
		position: absolute;
		top: 0;
		left: 0;
		height: 100dvh;
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 70px 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
	}
	header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	header .menuBlk nav {}
	header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	header .menuBlk nav > ul > li > a,
	header .menuBlk nav > ul > li > p {
		display: flex;
		padding: 15px 10px;
		font-size: 15px;
		cursor: pointer;
	}
	header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 5px 5px 0px 5px;
		border-color: var(--mainColor) transparent transparent transparent;
		position: absolute;
		top: 25px;
		right: 15px;
		transform: translateY(0%);
		transition: .3s;
	}
	header .menuBlk nav > ul > li._parent::before {
		transform: translateY(0%);
	}
	header .menuBlk nav > ul > li._parent._childOpen::before {
		transform: rotateX(180deg);
	}
	header .menuBlk nav > ul > li > ul {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0 0 0 20px;
		transition: .3s;
		position: unset;
		background: unset;
		box-shadow: unset;
		min-width: unset;
		opacity: unset;
		visibility: unset;
	}
	header .menuBlk nav > ul > li > ul {
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	header .menuBlk nav > ul > li > ul::-webkit-scrollbar {
		display: none;
	}
	header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: unset;
		visibility: unset;
	}
	header .menuBlk nav > ul > li._childOpen > ul {
		gap: 15px 0;
		margin: 5px 0 20px;
	}
	header .menuBlk nav > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li {
		height: auto;
	}
	header .menuBlk nav > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	header .menuBlk nav > ul > li._contact {
		border-bottom: none;
	}
	header .menuBlk nav > ul > li._contact > a {
		width: 250px !important;
		margin: auto;
	}
	header .menuBlk nav > ul > li._contact._tel {
		margin: 40px 0 0;
	}
	header .menuBlk nav > ul > li._contact._tel > a {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 5px 0;
		flex-flow: wrap;
		padding: 15px 0;
		font-size: 26px;
		line-height: 23px;
		font-weight: 500;
		border: 1px solid;
		background: unset;
	}
	header .menuBlk nav > ul > li._contact._tel > a > ._num {
		padding: 0 0 0 20px;
		background-image: url(./images/icon_tel01_black.svg);
		background-repeat: no-repeat;
		background-position: left top 100%;
		background-size: 15px;
	}
	header .menuBlk nav > ul > li._contact._tel > a > ._time {
		width: 100%;
		font-size: 14px;
		text-align: center;
		color: black;
		line-height: 1;
		margin: 7px 0 0;
	}
	header .menuBlk nav > ul > li._contact._tel > a > img {
		height: 20px;
		margin: 4px 0 0;
		margin: 0 2px 0 0;
	}
	header .menuBlk nav > ul > li._contact._mail {
		margin: 15px auto 0;
	}
	header .menuBlk nav > ul > li._contact._mail > a {
		display: grid;
		place-items: center;
		padding: 15px 0;
		box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
		height: auto;
		color: white;
		background: var(--mailBtnBg);
	}
	header .menuBlk nav > ul > li._contact._mail > a > img {
		height: 20px;
	}
	header .menuBlk nav > ul > li._contact._mail > a > span {
		padding: 27px 0 0;
		background-image: url(./images/icon_mail01_white.svg);
		background-repeat: no-repeat;
		background-position: left 50% top;
		background-size: 25px;
	}
	header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
	}
	/*header .mbMenuBlk::before {
	content: 'MENU';
	color: #363A4D;
	font-size: 10px;
	position: absolute;
	top: 0;
	right: 0;
	right: 14px;
	top: 11px;
}*/
	header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	header .mbMenuBdrBlk {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 25px;
		height: auto;
		transform: translate(-50%, -50%);
	}
	header .mbMenuBdrBlk:focus:not(:focus-visible) {
		outline: none;
	}
	header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after {
		content: '';
	}
	header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after, .mbMenuBdrBlk span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #333;
		border-radius: 4px;
		transition: .2s;
	}
	header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}
	header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}
	header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -8px;
		transition-delay: .2s;
	}
	header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}
	header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 8px;
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
}
/*====================================

4. Main

====================================*/
main {
	margin: 200px 0 0;
	transition: .3s;
}
body.scrollIn main {
	margin: 150px 0 0;
}
@media screen and (max-width: 1024px) {
	main {
		margin: 55px 0 0!important;
	}
}
/*====================================

5. Footer

====================================*/
footer {
	padding: 60px 0 50px;
	background-image: url(./images/footer_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
footer .inner {}
footer .box {}
footer .snsBox {
	justify-content: center;
	gap: clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
}
footer .snsBox a {
}
footer .snsBox a img {
	width: clamp(2.813rem, 2.386rem + 1.82vw, 3.75rem);
}
footer .menuBox {
	margin: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem) auto 0;
}
footer .menuBox ul._main {justify-content: center;gap: clamp(0.938rem, -0.028rem + 4.12vw, 3.063rem) clamp(1.25rem, 0.426rem + 3.52vw, 3.063rem);}
footer .menuBox ul._main > li {}
footer .menuBox ul._main > li > a {
	font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
	color: #fff;
}
footer .menuBox ul._other {
	justify-content: center;
	margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
}
footer .menuBox ul._other > li {}
footer .menuBox ul._other > li:first-child {
	padding-right: 20px;
}
footer .menuBox ul._other > li:last-child {
	padding-left: 20px;
	/* border-left: solid 1px #fff; */
}
footer .menuBox ul._other > li > a {
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	color: #fff;
}
footer .logoBox {
	margin-top: clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem);
	text-align: center;
}
footer .logoBox img {
	height: clamp(3.75rem, 3.182rem + 2.42vw, 5rem);
}
footer .infoBox {
	margin: 20px 0 0;
}
footer .infoBox p {
	text-align: center;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	color: #fff;
	line-height: 2;
}
footer .infoBox p a {}
footer .copyrightBlk {
	margin: clamp(1.563rem, 1.42rem + 0.61vw, 1.875rem) 0 0;
}
footer .copyrightBlk p {
	font-size: 11px;
	color: #fff;
	text-align: center;
}
footer .recaptchaBlk {}
footer .recaptchaBlk p {
	font-size: 11px;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 1024px) {}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}
.cmn_outer {
	padding: clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem) 0;
}
.cmn_outer._top {
	padding: clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem) 0 0;
}
.cmn_inner {
	max-width: 1280px;
	padding: 0 40px;
	margin: auto;
}
@media screen and (max-width: 1024px) {
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
}
.cmn_inner._small {
	max-width: 1020px;
}
.cmn_link1 {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: min(350px, 100%);
	min-height: 70px;
	padding: 10px;
	border-radius: 50px;
	font-size: clamp(0.938rem, 0.852rem + 0.36vw, 1.125rem);
	color: #fff;
	background: var(--mainColor);
}
.cmn_borderRadius20 {
	border-radius: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem) 0px;
}
.cmn_borderRadius15 {
	border-radius: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem) 0px;
}
.cmn_arrow1 {
	position: absolute;
	top: 50%;
	right: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
	transform: translate(0%, -50%);
	display: inline-block;
	width: 20px;
	height: 20px;
}
.cmn_arrow1._bg1 {
	border-radius: 50%;
	background: black;
}
.cmn_arrow1._bg2 {
	border-radius: 50%;
	background: white;
}
.cmn_arrow1::before {
	content:'';
	position: absolute;
	top: 50%;
	left: calc(50% + 1px);
	transform: translate(-50%, -50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	width: 6px;
	height: 8px;
}
.cmn_arrow1._bg1::before {
	background: #fff;
}
.cmn_arrow1._bg2::before {
	background: #000;
}
@media screen and (min-width: 1025px) {
	.cmn_link1:hover::before {
		right: 0px;
		opacity: 0;
	}
}
/*head*/
.cmn_head1 {
	margin-bottom: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
	padding-left: 10px;
	font-size: clamp(1.375rem, 1.006rem + 1.58vw, 2.188rem);
	border-left: solid 8px var(--mainColor);
	line-height: 1.1;
}
.cmn_head1 span {
	font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
}
/*
6.2 Section
====================================*/
/* lower top */
.cmn_top {
	height: clamp(8.125rem, 6.136rem + 8.48vw, 12.5rem);
	background-image: url(./images/common_top_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
/* #company .cmn_top {
background-image: url(./images/dummy.webp);
} */
.cmn_top._small {
	height: 150px;
	background: var(--lowerTopBg);
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .box {
	height: 100%;
}
.cmn_top .headBox {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cmn_top .headBox ._head {
	font-size: clamp(1.75rem, 1.068rem + 2.91vw, 3.25rem);
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
.cmn_top .headBox ._head span {
	display: block;
	margin: clamp(0.375rem, 0.119rem + 1.09vw, 0.938rem) 0 0;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	text-align: center;
}
/* table */
.cmn_table > dl {
	border: 1px solid #d7dce2;
	background: white;
}
.cmn_table > dl > div {
	display: flex;
	flex-flow: wrap;
	border-bottom: 1px solid #d7dce2;
}
.cmn_table > dl > div:last-child {
	border-bottom: transparent;
}
.cmn_table > dl > div > * {
	padding: 25px 20px;
	line-height: 26px;
	font-size: 14px;
}
.cmn_table > dl > div > dt {
	width: 225px;
	background: var(--tableItemBg);
	border-right: 1px solid #D7DCE2;
}
.cmn_table > dl > div > dd {
	flex: 1;
}
.cmn_table > dl > div > dd a {
	color: var(--linkTextColor);
}
.cmn_table > dl > div > dd a:not([href^="tel"]) {
	text-decoration: underline;
}
.cmn_table > dl > div > dd a[href^="tel"] {
	color: inherit;
}
@media screen and (max-width: 1024px) {
	/* table */
	.cmn_table > dl {
		border: 1px solid #d7dce2;
		background: white;
	}
	.cmn_table > dl > div {
		display: flex;
		flex-flow: wrap;
		border-bottom: 1px solid #d7dce2;
	}
	.cmn_table > dl > div:last-child {
		border-bottom: transparent;
	}
	.cmn_table > dl > div > * {
		padding: 20px 15px;
		line-height: 24px;
		font-size: 14px;
	}
	.cmn_table > dl > div > dt {
		width: 100%;
		border-right: transparent;
	}
	.cmn_table > dl > div > dd {
		flex: unset;
		width: 100%;
	}
	.cmn_table > dl > div > dd a {}
	.cmn_table > dl > div > dd a[href^="tel"] {}
}
/*====================================

7. Module

====================================*/
.mod_modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	padding: 0 40px;
	background-color: rgb(51, 51, 51, 65%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
@media screen and (max-width: 1024px) {
	.mod_modal {
		padding: initial;
	}
}
.mod_modal._open {
	transition: all .5s;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.mod_modal .inner {
	position: relative;
	min-width: 50%;
	max-height: 90%;
	padding: 60px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	border-radius: 10px;
	background: #fff;
}
@media screen and (max-width: 1024px) {
	.mod_modal .inner {
		max-width: initial;
	}
}
.mod_modal .box {
    position: relative;
}
.mod_modal .closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #000;
	background: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s;
}
.mod_modal .closeBtn::before, .mod_modal .closeBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 2px;
	background: #000;
	border-radius: 4px;
	transition: all .3s;
}
.mod_modal .closeBtn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mod_modal .closeBtn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1025px) {
	.mod_modal .closeBtn:hover {
		background: #000;
		opacity: 1;
	}
	.mod_modal .closeBtn:hover::before, .mod_modal .closeBtn:hover::after {
		background: #fff;
	}
}
.mod_modal .mainBox {
    display: none;
    max-height: calc((100dvh - 10dvh) - 120px);
    padding: 0 clamp(0rem, -0.568rem + 2.42vw, 1.25rem);
    overflow: auto;
}
.mod_modal .mainBox._active {
	display: block;
}
.mod_modal .mainTitleBox {
	justify-content: center;
	align-items: center;
}
.mod_modal .mainTitleBox img {
    width: clamp(4.375rem, 3.523rem + 3.64vw, 6.25rem);
}
.mod_modal .mainTitleBox p {
	font-weight: 600;
	font-size: clamp(1.063rem, 0.693rem + 1.58vw, 1.875rem);
}
.mod_modal .mainLeadBox {
}
.mod_modal .mainLeadBox p {
	font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
	text-align: center;
}
.mod_modal .mainLinkBox {
	display: grid;
	gap: clamp(0.313rem, 0.114rem + 0.85vw, 0.75rem);
	grid-template-columns: repeat(auto-fill, minmax(clamp(8.75rem, 6.477rem + 9.7vw, 13.75rem), 1fr));
	margin-top: 25px;
}
.mod_modal .mainLinkBox a {}
/*====================================

8. Page

====================================*/
/*
トップページ
====================================*/
/*common start*/
.top_cmn_head {
	font-size: 50px;
	line-height: 1;
	text-align: center;
}
.top_cmn_head span {
	display: block;
	margin: 15px 0 0;
	font-size: 14px;
	font-weight: 500;
}
.top_news .mainArticleBox > a > ._date,
.top_topics .mainArticleBox a > ._date {
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
	font-weight: 600;
}
.top_news .mainArticleBox > a > ._cat,
.top_topics .mainArticleBox a > ._cat {
	min-width: 80px;
	margin-left: 10px;
	padding: 0 15px;
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
	color: #fff;
	font-weight: 600;
	background: #000;
}
.top_news .mainArticleBox > a > ._title,
.top_topics .mainArticleBox a > ._title {
	width: 100%;
	margin-top: 4px;
	padding-right: clamp(2.5rem, 1.932rem + 2.42vw, 3.75rem);
	font-size: clamp(0.938rem, 0.852rem + 0.36vw, 1.125rem);
}
/*common end*/
.top_mv {
	position: relative;
}
.top_mv .inner {
	height: 100%;
}
.top_mv .box {
	height: 100%;
}
.top_mv .mainBox {}
.top_mv._todayRaceSchedule .mainBox {
	align-items: center;
	gap: clamp(1.25rem, 0.398rem + 3.64vw, 3.125rem);
}
@media screen and (max-width: 1024px) {
	.top_mv._todayRaceSchedule .mainBox {
	    flex-flow: column;
	}
}
.top_mv .mainBox img {}
.top_mv._todayRaceSchedule {
	padding: 30px 0 clamp(4.375rem, 2.102rem + 9.7vw, 9.375rem);
	background-image: url(./images/top_mv_main02.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media screen and (max-width: 1024px) {
	.top_mv._todayRaceSchedule {
	    /* padding-bottom: clamp(5rem, 3.628rem + 5.86vw, 7.375rem); */
	}
}
.top_mv._todayRaceSchedule .mainLiveBox {
    width: calc(50% + 150px);
    aspect-ratio: 16/9;
}
@media screen and (max-width: 1024px) {
	.top_mv._todayRaceSchedule .mainLiveBox {
	    width: 100%;
	}
}
.top_mv._todayRaceSchedule .mainLiveBox iframe {}
.top_mv._todayRaceSchedule .mainLinkBox {
	display: flex;
	gap: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
	flex-flow: column;
	flex: 1;
}
@media screen and (max-width: 1024px) {
	.top_mv._todayRaceSchedule .mainLinkBox {
		flex-flow: wrap;
		justify-content: center;
		flex: initial;
	}
}
.top_mv._todayRaceSchedule .mainLinkBox > p {
    font-size: clamp(1.125rem, 1.006rem + 0.51vw, 1.25rem);
    text-align: center;
    color: #fff;
    font-weight: 600;
}
@media screen and (max-width: 1024px) {
	.top_mv._todayRaceSchedule .mainLinkBox > p {
	    width: 100%;
}
}
.top_mv._todayRaceSchedule .mainLinkBox > a,
.top_mv._todayRaceSchedule .mainLinkBox > div {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: clamp(1.563rem, -9.743rem + 17.65vw, 4.375rem);
    font-size: clamp(1rem, 0.268rem + 1.14vw, 1.125rem);
    background: #fff;
    cursor: pointer;
    transition: .3s;
}
@media screen and (max-width: 1024px){
	.top_mv._todayRaceSchedule .mainLinkBox > a,
	.top_mv._todayRaceSchedule .mainLinkBox > div {
		width: min(var(--maxWidth300), 100%);
		padding-left: 40px;
	}
}
.top_mv._todayRaceSchedule .mainIconBox {}
.top_mv._todayRaceSchedule .mainIconBox img {height: clamp(5rem, -2.321rem + 11.43vw, 6.25rem);}
@media screen and (min-width: 1025px){
	.top_mv._todayRaceSchedule .mainLinkBox > *:not(p):hover {
		opacity: .7;
	}
}
.top_mv .textBox {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 50%;
	transform: translate(-50%, 37%);
}
.top_mv .textBox img {}
.top_announcement {
	padding: clamp(3.125rem, 1.705rem + 6.06vw, 6.25rem) 0 25px 0;
	background-image: url(./images/top_announcement_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_announcement .inner {
}
.top_announcement .box {
	width: min(1000px, 100%);
	margin: auto;
}
.top_announcement .mainBox {
	display: grid;
	gap: 10px;
}
.top_announcement .mainBox > div {
	justify-content: flex-start;
	align-items: center;
	gap: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	padding: clamp(1.25rem, 1.449rem + -0.85vw, 0.813rem) clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
	background: #fff;
}
.top_announcement .mainDateBox {
	overflow: hidden;
	display: flex;
	align-items: stretch;
	border-radius: 50px;
}
@media screen and (max-width: 1024px) {
	.top_announcement .mainBox > div {
		justify-content: center;
	}
	.top_announcement .mainDateBox {
		display: inline-flex;
		justify-content: flex-start;
		flex-flow: nowrap;
	}
}
.top_announcement .mainDateBox  > * {
	padding: 5px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
}
.top_announcement .mainDateBox > ._title {
	display: grid;
	place-items: center;
	padding-left: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
	font-size: clamp(1.125rem, 1.011rem + 0.48vw, 1.375rem);
	font-weight: 600;
	color: #fff;
}
.top_announcement .mainDateBox._today > ._title {
	background: #dc1216;
}
.top_announcement .mainDateBox._tomorrow > ._title {
	background: #fb6c00;
}
.top_announcement .mainDateBox > ._date {
	display: flex;
	align-items: baseline;
	flex-shrink: 0;
	padding-left: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	font-size: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
	font-weight: 600;
}
.top_announcement .mainDateBox._today > ._date {
	background: #ffc1b5;
}
.top_announcement .mainDateBox._tomorrow > ._date {
	background: #fdd0ad;
}
.top_announcement .mainDateBox > ._date > ._1 {
	font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
}
.top_announcement .mainDateBox > ._date > ._2 {
	margin-left: -5px;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
.top_announcement .mainRaceBox {
	flex: 1;
	display: grid;
	gap: clamp(0.625rem, 0.511rem + 0.48vw, 0.875rem);
}
@media screen and (max-width: 1024px) {
	.top_announcement .mainRaceBox {
		flex: initial;
		width: 100%;
	}
}
.top_announcement .mainRaceBox dl {
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.top_announcement .mainRaceBox dl > * {
	line-height: 1.4;
	font-size: clamp(0.938rem, 0.909rem + 0.12vw, 1rem);
}
.top_announcement .mainRaceBox dl dt {
	display: grid;
	place-items: center;
	height: 40px;
	padding: 0 13px;
}
.top_announcement .mainRaceBox dl:nth-child(1) dt {
	color: #fff;
	background: #000;
}
.top_announcement .mainRaceBox dl:nth-child(2) dt {
	background: #ccc;
}
.top_announcement .mainRaceBox dl dd {
	flex: 1;
	font-weight: 600;
}
.top_slider {
	padding: 40px 0 60px;
	background: #000;
}
.top_slider .inner {}
.top_slider .box {}
.top_slider .mainBox {}
.top_slider .mainImgBox {
	margin: 0 clamp(0.313rem, -0.256rem + 2.42vw, 1.563rem);
}
.top_slider .mainImgBox img {
    width: 100%;
}
.top_news {
	padding: clamp(1.563rem, 1.705rem + -0.61vw, 1.25rem) 0;
	background: var(--mainColor);
}
.top_news .box {
	width: min(1085px, 100%);
	margin: auto;
}
.top_news .mainBox {justify-content: flex-start;gap: clamp(0.938rem, 0.369rem + 2.42vw, 2.188rem);}
.top_news .mainBox > ._head {
	font-size: clamp(1.75rem, 1.068rem + 2.91vw, 3.25rem);
	line-height: 1;
	color: #fff;
}
.top_news .mainBox > ._head > span{
	display: block;
	margin-top: 6px;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
.top_news .mainArticleBox {
	flex: 1;
}
@media screen and (max-width: 1024px) {
	.top_news .mainArticleBox {
		flex: initial;
		width: 100%;
	}
}
.top_news .mainArticleBox > a {
	position: relative;
	justify-content: flex-start;
	padding: 15px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	background: #fff;
}
@media screen and (min-width: 1025px){
	.top_news .mainArticleBox > a:hover {
		opacity: 1;
		background: var(--contentsBg);
	}
}
.top_news .mainArticleBox > a > ._date {
}
.top_news .mainArticleBox > a > ._cat {
}
.top_news .mainArticleBox > a > ._title {
}
.top_menu {
	background-image: url(./images/top_menu_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_menu .inner {}
.top_menu .box {}
.top_menu .mainBox {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
	width: min(890px, 100%);
	margin: auto;
}
.top_menu .mainBox > * {
	padding: clamp(1.563rem, 1.42rem + 0.61vw, 1.875rem) 0 0;
	aspect-ratio: 1/1;
	background: #fff;
	transition: .3s;
	cursor: pointer;
}
@media screen and (min-width: 1025px){
	.top_menu .mainBox > *:hover {
		opacity: 1;
		background: var(--contentsBg);
	}
}
.top_menu .mainIconBox {
	text-align: center;
}
.top_menu .mainIconBox img {}
@media screen and (max-width: 1024px) {
	.top_menu .mainIconBox img {
		width: 50%;
	}
}
.top_menu .mainBox > * > span {
	display: block;
	margin-top: 2px;
	font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
	text-align: center;
	line-height: 1.35;
}
.top_menu .mainBox > a > span > small {
	display: block;
	text-align: center;
	line-height: 1;
}
.top_menu .otherBox {
	justify-content: center;
	width: min(1026px, 100%);
	gap: clamp(0.938rem, 0.625rem + 1.33vw, 1.625rem);
	margin: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem) auto 0;
}
.top_menu .otherBox > a {
	flex: 1;
	min-height: clamp(3.75rem, 3.182rem + 2.42vw, 5rem);
}
@media screen and (max-width: 1024px) {
	.top_menu .otherBox > a {
		flex: initial;
		text-align: center;
		line-height: 1.4;
	}
}
.top_topics {
	padding: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem) 0;
	background-image: url(./images/top_topics_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_topics .inner {}
.top_topics .box {}
.top_topics .headBox {}
.top_topics .headBox ._head {
	font-size: clamp(1.75rem, 1.068rem + 2.91vw, 3.25rem);
	text-align: center;
	color: #fff;
	line-height: 1;
}
.top_topics .headBox ._head span {
	display: block;
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	margin-top: clamp(0.375rem, 0.119rem + 1.09vw, 0.938rem);
}
.top_topics .mainBox {
	width: min(1000px, 100%);
	margin: clamp(1.563rem, 1.42rem + 0.61vw, 1.875rem) auto 0;
}
.top_topics .mainBottomBox {
	padding: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem) clamp(0.938rem, -0.057rem + 4.24vw, 3.125rem) clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem);
	padding-top: clamp(0.938rem, 0.369rem + 2.42vw, 2.188rem);
	border: 2px solid #fb6c00;
	background: #fff;
}
.top_topics .mainCatBox {
	width: min(940px, 100%);
	margin: auto;
}
@media screen and (max-width: 1024px) {
	.top_topics .mainCatBox {
		padding: 0 2px;
	}
}
.top_topics .mainCatBox > ul {
	display: flex;
	gap: clamp(0.125rem, -0.102rem + 0.97vw, 0.625rem);
}
.top_topics .mainCatBox > ul > li {
	display: grid;
	place-items: center;
	flex-grow: 1;
	min-width: 52px;
	min-height: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
	padding: clamp(0.438rem, 0.352rem + 0.36vw, 0.625rem) clamp(0.125rem, -0.102rem + 0.97vw, 0.625rem);
	border-radius: 10px 0px 0px 0px;
	font-size: clamp(0.813rem, 0.67rem + 0.61vw, 1.125rem);
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	background: #fff;
	cursor: pointer;
	transition: .3s;
}
@media screen and (min-width: 1025px){
	.top_topics .mainCatBox > ul > li:hover {
		color: #fff;
		background: #000
	}
}
.top_topics .mainCatBox > ul > li._active {
	color: #fff;
	background: #000
}
.top_topics .mainArticleBox {
}
.top_topics .mainArticleBox article {}
.top_topics .mainArticleBox article:not(:first-child) {
	border-top: 1px solid #ccc;
}
.top_topics .mainArticleBox a {
	overflow: hidden;
	position: relative;
	z-index: 1;
	justify-content: flex-start;
	padding: 20px 0;
}
@media screen and (min-width: 1025px){
	.top_topics .mainArticleBox a:hover {
		opacity: 1;
		background: var(--contentsBg);
	}
}
.top_topics .mainArticleBox a > ._date {}
.top_topics .mainArticleBox a > ._cat {
	margin-left: 10px;
	font-weight: bold;
	color: #fff;
}
.top_topics .mainArticleBox a > ._new {
	margin-left: 10px;
	color: #f00;
}
.top_topics .mainArticleBox a > ._title {
	width: 100%;
}
.top_topics .mainArticleBox a .cmn_arrow1 {
	right: 0;
}
.top_topics .mainArchiveBox {
	padding-top: clamp(0.938rem, 0.369rem + 2.42vw, 2.188rem);
	text-align: center;
}
.top_topics .mainArchiveBox a {
	min-height: 60px;
}
.top_banner {
	padding: 35px 0;
}
.top_banner .inner {}
.top_banner .box {}
.top_banner .mainBox {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(clamp(10.313rem, 8.75rem + 6.67vw, 13.75rem), 1fr));
	gap: clamp(0.625rem, 0.54rem + 0.36vw, 0.813rem);
}
.top_banner .mainBox a {
	text-align: center;
}
.top_banner .mainBox a img {
	width: 100%;
}
/*
開催日程
====================================*/
/*common start*/
/*common end*/
.calendar_calendar {
}
.calendar_calendar .inner {}
.calendar_calendar .box {}
.calendar_calendar .iconBox {
	overflow: hidden;
	align-items: stretch;
	border: 2px solid #fb6c00;
}
.calendar_calendar .iconBox > ._title {
	display: grid;
	place-items: center;
	width: min(190px, 27%);
	font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
	color: #fff;
	font-weight: 600;
	text-align: center;
	background: var(--mainColor);
}
.calendar_calendar .iconDescBox {
	flex: 1;
	padding: clamp(0.938rem, 0.739rem + 0.85vw, 1.375rem);
}
.calendar_calendar .iconDescBox dl {
	gap: 30px;
	padding: 10px 0;
	background-image : linear-gradient(to right, #000, #000 2px, transparent 3px, transparent 8px);  /* 幅2の線を作る */
	background-size: 7px 1px;          /* グラデーションの幅・高さを指定 */
	background-position: left bottom;  /* 背景の開始位置を指定 */
	background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
}
@media screen and (max-width: 1024px) {
	.calendar_calendar .iconDescBox dl {
		gap: 10px;
	}
}
.calendar_calendar .iconDescBox dl:last-child {
	background-image : initial;
}
.calendar_calendar .iconDescBox dl:first-child {
	padding-top: 0;
}
.calendar_calendar .iconDescBox dl:last-child {
	padding-bottom: 0;
}
.calendar_calendar .iconDescBox dl > dt {
	min-width: 90px;
	font-weight: 600;
	font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
	text-align: center;
	color: var(--mainColor);
}
.calendar_calendar .iconDescBox dl > dd {
	flex: 1;
	gap: 10px;
}
@media screen and (max-width: 1024px) {
	.calendar_calendar .iconDescBox dl > dt {
		min-width: 0px;
	}
	.calendar_calendar .iconDescBox dl > dd {
		justify-content: flex-start;
		flex: initial;
		gap: 10px 12px;
		width: 100%;
	}
}
.calendar_calendar .iconDescBox dl > dd > div {
	align-items: center;
	gap: clamp(0.313rem, 0.227rem + 0.36vw, 0.5rem);
}
.calendar_calendar .iconDescBox dl > dd > div._w100 {
	width: 100%;
}
.calendar_calendar .iconDescBox dl > dd > div > img {}
@media screen and (max-width: 1024px) {
	.calendar_calendar .iconDescBox dl > dd > div > img {
		width: 24px;
	}
}
.calendar_calendar .iconDescBox dl > dd > div > span {
}
.calendar_calendar .mainBox {
	margin-top: clamp(1.875rem, 1.591rem + 1.21vw, 2.5rem);
}
.calendar_calendar .linkBox {
	margin-top: 50px;
	text-align: center;
}
.calendar_calendar .linkBox a {
	width: min(500px, 100%);
}
@media screen and (max-width: 1024px) {}
/*
トピックス
====================================*/
/*common start*/
.topics_category .box,
.topics_list .box {
}
.topics_list .mainArticleBox a > ._date,
.topics_detail .mainBox article > ._date {
	font-weight: 900;
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
}
.topics_list .mainArticleBox a > ._cat,
.topics_detail .mainBox article > ._cat {
	min-width: 80px;
	margin-left: 10px;
	padding: 0 15px;
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
	color: #fff;
	font-weight: 600;
	background: #000;
}
.topics_list .mainArticleBox a > ._new,
.topics_detail .mainBox article > ._new {
	margin-left: 10px;
	color: #f00;
}
/*common end*/
.topics_category {
	padding: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem) 0;
}
.topics_category .inner {}
.topics_category .box {}
.topics_category .mainBox {}
.topics_category .mainBox ul {
	justify-content: center;
	gap: clamp(0.125rem, -0.102rem + 0.97vw, 0.625rem);
	flex-flow: initial;
}
.topics_category .mainBox ul > li {
	flex-grow: 1;
	max-width: 180px;
	min-width: 50px;
}
.topics_category .mainBox ul > li > a {
	display: grid;
	place-items: center;
	min-height: 50px;
	padding: 0 4px;
	text-align: center;
	border-radius: 10px 0px;
	font-weight: 600;
	line-height: 1.4;
	font-size: clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
	background: #ffe8d6;
}
.topics_category .mainBox ul > li.current-cat {}
.topics_category .mainBox ul > li.current-cat > a {
	color: #fff;
	background: var(--mainColor);
}
@media screen and (min-width: 1025px){
	.topics_category .mainBox ul > li > a:hover {
		color: #fff;
		background: var(--mainColor);
		opacity: 1;
	}
}
.topics_list {
	padding: 0 0 clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem);
}
.topics_list .inner {}
.topics_list .box {}
.topics_list .mainBox {}
.topics_list .mainBox._interview {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
	gap: 50px 40px;
}
.topics_list .mainArticleBox {
	border-top: 1px solid #ccc;
}
.topics_list .mainArticleBox:last-child {
	border-bottom: 1px solid #ccc;
}
.topics_list .mainArticleBox a {
	overflow: hidden;
	position: relative;
	justify-content: flex-start;
	padding: clamp(1.25rem, 0.824rem + 1.82vw, 2.188rem) 0;
}
@media screen and (min-width: 1025px){
	.topics_list .mainArticleBox a:hover {
		opacity: 1;
		background: var(--contentsBg);
	}
}
.topics_list .mainArticleYoutubeBox {
	width: 100%;
	margin-bottom: 10px;
}
.topics_list .mainArticleYoutubeBox iflame {}
.topics_list .mainArticleBox a > ._date {}
.topics_list .mainArticleBox a > ._cat {}
.topics_list .mainArticleBox a > ._new {}
.topics_list .mainArticleBox a > ._title {
	width: 100%;
	margin-top: 4px;
	padding-right: clamp(2.5rem, 1.932rem + 2.42vw, 3.75rem);
	font-size: clamp(0.938rem, 0.852rem + 0.36vw, 1.125rem);
}
.topics_list .mainArticleBox a .cmn_arrow1 {
	right: 0;
}
.topics_list .paginationBox {}
/* カテゴリー：インタビュー */
.topics_list .mainBox._interview .mainArticleBox {
	border: initial;
}
.topics_list .mainBox._interview .mainArticleBox a {
	padding: 15px 0;
}
/* 投稿詳細 */
.topics_detail {}
.topics_detail .mainBox article > ._head {
	margin-top: 10px;
	padding-bottom: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
	font-size: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
	border-bottom: 1px solid #ccc;
}
.topics_detail .mainBox article > .mainContentBox {
	padding: clamp(1.875rem, 1.449rem + 1.82vw, 2.813rem) 0;
	border-bottom: 1px solid #ccc;
}
.topics_detail .mainContentBox > *:first-child,
.topics_detail .mainContentBox > * *:first-child {
	margin-top: 0;
}
.topics_detail .mainContentBox p {}
.topics_detail .mainContentBox img {
	display: table;
	margin: auto!important;
}
.topics_detail .mainContentBox :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(clamp(0.875rem, 0.818rem + 0.24vw, 1rem) * 1.6) 0 0;
}
.topics_detail .mainContentBox a {
	color: var(--mainColor);
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {}
/*
施設情報
====================================*/
/*common start*/
/*common end*/
.facilities_map {}
.facilities_map .inner {}
.facilities_map .box {}
.facilities_map .mainBox {
	display: flex;
	justify-content: center;
	gap: clamp(1.563rem, 1.278rem + 1.21vw, 2.188rem);
}
.facilities_map .mainMapBox {
	flex: 1;
}
.facilities_map .mainMapBox img {
    width: 100%;
}
.facilities_map .mainOpeningTimeBlk {
	overflow: hidden;
	display: grid;
	gap: 17px;
	width: calc(50% - clamp(15.625rem, -20.982rem + 57.14vw, 21.875rem));
}
@media screen and (max-width: 1024px) {
	.facilities_map .mainMapBox {
		flex: initial;
		width: 100%;
	}
	.facilities_map .mainOpeningTimeBlk {
	justify-content: center;
	width: 100%;
	}
}
.facilities_map .mainOpeningTimeBlk > div {
}
.facilities_map .mainOpeningTimeBlk > div > p {
    text-indent: -1em;
    margin-left: 1em;
    font-size: 14px;
}
.facilities_map .mainOpeningTimeBlk dl {
    overflow: hidden;
    width: min(500px, 100%);
    margin: auto;
}
.facilities_map .mainOpeningTimeBlk dl > dt {
	display: grid;
	place-items: center;
	min-height: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
	font-weight: 600;
	font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
	text-align: center;
	color: #fff;
	background: var(--mainColor);
}
.facilities_map .mainOpeningTimeBlk dl > dd {
	padding: 14px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	background: #ffe8d6;
}
.facilities_map .mainOpeningTimeBlk dl._icon > dd {
    display: grid;
    gap: 10px;
}
@media screen and (max-width: 1024px) {
	.facilities_map .mainOpeningTimeBlk dl._icon > dd {
	    display: grid;
	    grid-template-columns: repeat(2, 1fr);
	}
}
.facilities_map .mainOpeningTimeBlk dl > dd  p {
	font-weight: 600;
}
.facilities_map .mainOpeningTimeBlk dl._icon > dd  p {
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
@media screen and (max-width: 1024px) {
	.facilities_map .mainOpeningTimeBlk dl:not(._icon) > dd  p {
		padding: 0 clamp(4.375rem, 0.2rem + 17.81vw, 8.75rem);
	}
	.facilities_map .mainOpeningTimeBlk dl._icon > dd  p {
	    flex-flow: nowrap;
	}
}
.facilities_map .mainOpeningTimeBlk dl > dd  span {}
.facilities_map .mainOpeningTimeBlk dl > dd  span img {
	width: clamp(1.875rem, 0.045rem + 2.86vw, 2.188rem);
}
.facilities_paidSeats {}
.facilities_paidSeats .inner {}
.facilities_paidSeats .box {}
.facilities_paidSeats .headBox {}
.facilities_paidSeats .headBox > ._head {}
.facilities_paidSeats .headBox > ._head span {}
.facilities_paidSeats .galleryBox {
    gap: clamp(1.563rem, 1.42rem + 0.61vw, 1.875rem);
}
.facilities_paidSeats .gallerySliderBox {
    width: calc(50% - 100px);
    padding-bottom: 24px;
}
.facilities_paidSeats .gallerySliderImgBox {}
.facilities_paidSeats .gallerySliderImgBox img {}
.facilities_paidSeats .gallerySliderImgBox p {
    width: 100%;
    padding-top: 5px;
    text-align: center;
}
.facilities_paidSeats .galleryIllustBox {
    flex: 1;
}
@media screen and (max-width: 1024px) {
	.facilities_paidSeats .gallerySliderBox {
	    width: 100%;
	}
	.facilities_paidSeats .galleryIllustBox {
	    flex: initial;
	}
}
.facilities_paidSeats .galleryIllustBox figcaption {
	display: grid;
	place-items: center;
	min-height: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
	font-weight: 600;
	font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
	text-align: center;
	color: #fff;
	border-start-start-radius: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
	background: var(--mainColor);
}
.facilities_paidSeats .galleryIllustBox img {}
.facilities_paidSeats .tableBox {
    margin-top: clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem);
}
.facilities_paidSeats .tableBox table {
	table-layout: fixed;
	border-collapse: collapse;
	width: max(540px, 100%);
}
.facilities_paidSeats .tableBox table th,
.facilities_paidSeats .tableBox table td {
	vertical-align: middle;
	padding: 12px clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
	font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
	text-align: center;
	border: 1px solid #bbb;
}
.facilities_paidSeats .tableBox table th {}
.facilities_paidSeats .tableBox table td {}
.facilities_paidSeats .tableBox table thead th {font-weight: 700;background: var(--contentsBg);}
.facilities_paidSeats .tableBox table tbody th {}
.facilities_paidSeats .tableBox table tbody tr:nth-child(odd) td {
    background: #eee;
}
.facilities_other .tableBox table tbody td {}
.facilities_other {}
.facilities_other .box {}
.facilities_other .headBox {}
.facilities_other .headBox > ._head {}
.facilities_other .galleryBox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(1.25rem, 0.398rem + 3.64vw, 3.125rem) clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
}
@media screen and (max-width: 1024px) {
	.facilities_other .galleryBox {
	    display: grid;
	    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}
}
.facilities_other .galleryBox figure {}
.facilities_other .galleryBox a {
}
.facilities_other .galleryBox img {
}
.facilities_other .galleryBox figcaption {
    margin-top: clamp(0.375rem, 0.29rem + 0.36vw, 0.563rem);
    font-size: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
}
@media screen and (max-width: 1024px) {}
/*
アクセス・周辺観光
====================================*/
/*common start*/
/*common end*/
.accessTouristInformation_access {
}
.accessTouristInformation_access .inner {}
.accessTouristInformation_access .box {}
.accessTouristInformation_access .headBox {}
.accessTouristInformation_access .headBox > ._head {}
.accessTouristInformation_access .mainBox {}
.accessTouristInformation_access .mainBox > p {}
.accessTouristInformation_access .mainMapBox {
    margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
}
.accessTouristInformation_access .mainMapBox iframe {}
@media screen and (max-width: 1024px) {
	.accessTouristInformation_access .mainMapBox iframe {
		aspect-ratio: 4/3;
	}
}
.accessTouristInformation_access .mainHowtoBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
    margin-top: clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem);
}
.accessTouristInformation_access .mainHowtoBox dl {
    overflow: hidden;
}
.accessTouristInformation_access .mainHowtoBox dl._1 {
	grid-area: 1 / 1 / 2 / 2;
}
.accessTouristInformation_access .mainHowtoBox dl._2 {
	grid-area: 1 / 2 / 2 / 3;
}
.accessTouristInformation_access .mainHowtoBox dl._3 {
	grid-area: 2 / 1 / 3 / 3;
}
@media screen and (max-width: 1024px){
	.accessTouristInformation_access .mainHowtoBox {
		display: grid;
		grid-template-columns: initial;
		grid-template-rows: initial;
	}
	.accessTouristInformation_access .mainHowtoBox dl {
	    grid-area: initial!important;
	}
}
.accessTouristInformation_access .mainHowtoBox dl dt {
    padding: 5px 0;
    font-size: clamp(1.125rem, 0.926rem + 0.85vw, 1.563rem);
    text-align: center;
    color: #fff;
    background: var(--mainColor);
}
.accessTouristInformation_access .mainHowtoBox dl dd {
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
    padding: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
    background: var(--contentsBg);
}
.accessTouristInformation_access .mainHowtoIconBox {
    width: clamp(3.75rem, 1.193rem + 10.91vw, 9.375rem);
}
.accessTouristInformation_access .mainHowtoIconBox img {}
.accessTouristInformation_access .mainHowtoTextBox {
    flex: 1;
}
.accessTouristInformation_access .mainHowtoTextBox > ._desc {
    text-indent: -1em;
    margin-left: 1em;
    font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
    line-height: 2;
}
.accessTouristInformation_access .mainHowtoTextBox > ._desc:first-letter {
    color: var(--mainColor);
}
.accessTouristInformation_access .mainHowtoTextBox > ._note {
    margin-top: 10px;
    padding:  15px;
    font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
    border-radius: 30px;
    text-align: center;
    background: #fff;
}
.accessTouristInformation_parking {
    padding: clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem) 0 0;
}
.accessTouristInformation_parking .inner {}
.accessTouristInformation_parking .box {}
.accessTouristInformation_parking .mainBox {}
.accessTouristInformation_parking .mainBox ._head {}
.accessTouristInformation_parking .mainMapBox {
    width: 50%;
    margin: auto;
}
.accessTouristInformation_parking .mainMapBox img {}
.accessTouristInformation_spot {}
.accessTouristInformation_spot .inner {}
.accessTouristInformation_spot .box {}
.accessTouristInformation_spot .headBox {}
.accessTouristInformation_spot .headBox > ._head {}
.accessTouristInformation_spot .mainBox {
    display: grid;
    gap: clamp(3.125rem, 2.273rem + 3.64vw, 5rem);
}
.accessTouristInformation_spot .mainBox > div {}
.accessTouristInformation_spot .mainBox > div > ._head {
    padding: 5px 15px;
    font-size: clamp(1.125rem, 0.926rem + 0.85vw, 1.563rem);
    color: #fff;
    background: var(--mainColor);
}
.accessTouristInformation_spot .mainItemBox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem) 30px;
    margin-top: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
}
.accessTouristInformation_spot .mainItemBox > div {}
.accessTouristInformation_spot .mainItemImgBox {}
.accessTouristInformation_spot .mainItemImgBox img {}
.accessTouristInformation_spot .mainItemBox > div > ._head {
    margin-top: 10px;
    font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
}
.accessTouristInformation_spot .mainItemBox > div > p {
    min-height: calc((5 * clamp(0.875rem, 0.818rem + 0.24vw, 1rem)) * 1.6);
    margin-top: 7px;
}
@media screen and (max-width: 1024px) {
	.accessTouristInformation_spot .mainItemBox > div > p {
	    min-height: initial;
	}
}
.accessTouristInformation_spot .mainItemAccessBox {
    margin-top: 15px;
    padding: 15px;
    background: var(--contentsBg);
}
.accessTouristInformation_spot .mainItemAccessBox > ._1 {
    font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
    color: var(--mainColor);
    font-weight: 600;
}
.accessTouristInformation_spot .mainItemAccessBox > ._2 {
    margin-top: 3px;
    margin-left: 3em;
    text-indent: -3em;
}
.accessTouristInformation_spot .mainItemAccessBox > ._2 a {
    color: #006edd;
    text-decoration: underline;
}
.accessTouristInformation_spot .otherBox {
	width: min(464px, 100%);
	margin: clamp(3.125rem, 1.989rem + 4.85vw, 5.625rem) auto 0;
}
.accessTouristInformation_spot .otherBox > p {
    text-align: center;
    line-height: 2;
}
.accessTouristInformation_spot .otherBox > a {
	display: inline-block;
	margin-top: 20px;
	padding: 33px 55px;
	border: 1px solid #ddd;
}
.accessTouristInformation_spot .otherBox > a img {}
/*

====================================*/
/*common start*/
.sitePolicy_policy .mainTextBox > p,
.sitePolicy_policy .mainTextBox dl dd {
    line-height: 2;
}
/*common end*/
.sitePolicy_policy {}
.sitePolicy_policy .inner {}
.sitePolicy_policy .box {}
.sitePolicy_policy .leadBox {}
.sitePolicy_policy .leadBox > p {
    line-height: 2;
    text-align: center;
}
@media screen and (max-width: 1024px) {
	.sitePolicy_policy .leadBox > p {
	    text-align: justify;
	}
}
.sitePolicy_policy .mainBox {
    display: grid;
    gap: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
    margin-top: 50px;
}
.sitePolicy_policy .mainBox > div {}
.sitePolicy_policy .mainBox > div > ._head {}
.sitePolicy_policy .mainTextBox {}
.sitePolicy_policy .mainTextBox > p {}
.sitePolicy_policy .mainTextBox dl {}
.sitePolicy_policy .mainTextBox dl dt {
    font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
}
.sitePolicy_policy .mainTextBox dl dt:not(:first-of-type) {
	margin-top: 30px;
}
.sitePolicy_policy .mainTextBox dl dd {
    margin-top: 4px;
}
@media screen and (max-width: 1024px) {}
/*
選手応援メッセージ受付
====================================*/
/*common start*/
/*common end*/
.message_form {}
.message_form .inner {}
.message_form .box {}
.message_form .headBox {}
.message_form .headBox > ._head {
    font-size: clamp(1.25rem, 0.824rem + 1.82vw, 2.188rem);
    text-align: center;
    color: var(--mainColor);
}
.message_form .headBox > ._lead {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
    line-height: 2;
}
.message_form .headBox > ._note {
    display: table;
    margin: clamp(0.938rem, 0.71rem + 0.97vw, 1.438rem) auto 0;
    font-size: 14px;
    line-height: 19px;
    color: #dc1216;
}
.message_form .mainBox {
    overflow: hidden;
    margin-top: 40px;
}
.message_form .mainBox > ._head {
    padding: 9px 0;
    font-size: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
    text-align: center;
    color: #fff;
    line-height: 1.3;
    background: var(--mainColor);
}
.message_form .mainFormBox {
    padding: clamp(1.563rem, 0.994rem + 2.42vw, 2.813rem) clamp(0.938rem, -2.898rem + 16.36vw, 9.375rem) clamp(2.813rem, 1.96rem + 3.64vw, 4.688rem);
    background: var(--contentsBg);
}
.message_form .mainFormBox > ._note {
	margin-bottom: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
	font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	text-align: center;
	font-weight: 600;
}
.message_form .mainFormBox > ._note span {
	color: #DC1216;
}
@media screen and (max-width: 1024px) {
	/*common start*/
	/*common end*/
}
/*テスト*/