@charset "UTF-8";
.gHeaderWrap {
	height: 80px;
}
.gHeader {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white);
}
.gHeader_inner {
	max-width: none;
	padding-right: 0;
	padding-left: 34px;
}
.gHeader_cols {
	display: flex;
}
.gHeader_col {}
.gHeader_col-title {
	width: 528px;
}
.gHeader_title {}
.gHeader_title > a {
	text-decoration: none;
	display: block;
	color: var(--color-blue-dark);
	display: flex;
	height: 80px;
	align-items: center;
	transition-duration: .3s;
	transition-property: opacity;
}
.gHeader_title_inner {
	display: block;
	position: relative;
	padding-bottom: 6.25%;
	width: 100%;
}
.gHeader_title_img {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	fill: currentColor;
	transition-duration: 0.5s;
	transition-property: opacity;
}
.gHeader_col-menu {
	max-width: calc(100% - 541px);
	display: flex;
	margin-left: auto;
	flex-grow: 1;
	justify-content: flex-end;
}
.gHeader_list {
	list-style: none;
	display: grid;
	width: calc(100% - 293px);
	grid-template-columns: repeat(6, 1fr);
	max-width: 545px;
	border-right: 1px solid var(--color-gray-medium);
	box-sizing: border-box;
}
.gHeader_list > li {
	border-left: 1px solid var(--color-gray-medium);
}
.gHeader_list_item {
	display: flex;
	text-decoration: none;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
	position: relative;
	box-sizing: border-box;
	padding-left: 5px;
	padding-right: 5px;
	word-break: break-word;
}
.gHeader_list_item::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: currentColor;
	transition-duration: .3s;
	transition-property: transform;
	transform-origin: center bottom;
}
.gHeader_list_icon {
	display: block;
	font-size: 34px;
	transition-duration: .3s;
	transition-property: transform;
}
.gHeader_list_text {
	display: block;
	color: var(--color-gray-dark);
	display: flex;
	min-height: 28px;
	align-items: center;
	margin-top: 0px;
}
.gHeader_ticketLink {
	width: 133px;
}
.gHeader_ticketLink > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.gHeader_ticketLink_image {
	display: block;
	transition-duration: .3s;
	transition-property: transform;
}
.gHeader_ticketLink_image > img {
	display: block;
	max-width: 100%;
	height: auto;
}
.gHeader_lang {
	width: 80px;
	position: relative;
}
.gHeader_lang_btn {
	display: block;
	height: 100%;
	background-color: var(--color-blue-light);
	color: var(--color-white);
	width: 100%;
	box-sizing: border-box;
	padding-top: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gHeader_lang_btn[aria-expanded="true"] {
	background-color: var(--color-blue-dark);
}
.gHeader_lang_btn_icon {
	display: block;
	font-size: 20px;
}
.gHeader_langBtn_text {
	display: flex;
	font-size: 12px;
	line-height: 20px;
	align-items: center;
	justify-content: center;
}
.gHeader_langBtn_text::after {
	content: "▼";
	font-size: 10px;
	display: block;
	transform: translateY(2px) scale(0.9);
	margin-left: 2px;
	transition-duration: .3s;
	transition-property: transform;
}
.gHeader_lang_btn[aria-expanded="true"] .gHeader_langBtn_text::after {
	transform: rotate(180deg) translateY(-2px) scale(0.9);
}
.gMenuBtn {
	display: block;
	width: 80px;
	background-color: var(--color-black);
	color: var(--color-white);
	box-sizing: border-box;
	padding-top: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	position: relative;
	z-index: 11;
}
.gMenuBtn[aria-expanded="true"] {
	background-color: var(--color-blue-dark);
}
.gMenuBtn_barWrap {
	display: block;
	width: 23px;
	margin: 0 auto;
}
.gMenuBtn_bar {
	display: block;
	height: 2px;
	background-color: currentColor;
	transition-duration: .3s;
	transition-property: transform;
}
.gMenuBtn_bar-no1 {}
.gMenuBtn_bar-no2 {
	margin-top: 4px;
	margin-bottom: 4px;
}
.gMenuBtn_bar-no3 {}
.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {
	transform: translateY(6px) rotate(45deg);
}
.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {
	transform: scale(0, 1);
}
.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {
	transform: translateY(-6px) rotate(-45deg);
}
.gMenuBtn_text {
	display: block;
	font-size: 14px;
	line-height: 20px;
	margin-top: 0;
}
.gMenuBtn_text-open {}
.gHeader_list_item-enjoy {
	color: var(--color-purple);
}
.gHeader_list_item-vehicle {
	color: var(--color-cyan);
}
.gHeader_list_item-timetable {
	color: var(--color-green);
}
.gHeader_list_item-price {
	color: var(--color-yellow);
}
.gHeader_list_item-live {
	color: var(--color-orange);
}
.gHeader_list_item-access {
	color: var(--color-pink-red);
}
.gFooter {
	background-color: var(--color-green-light);
	color: var(--color-white);
	padding-top: 54px;
	padding-bottom: 69px;
	box-shadow: 0 100vh 0 100vh var(--color-green-light);
}
.gFooter_inner {}
.gFooter_logo {
	max-width: 528px;
	margin: 0 auto 47px;
}
.gFooter_logo > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: opacity;
}
.gFooter_logo_inner {
	display: block;
	position: relative;
	padding-bottom: 6.25%;
}
.gFooter_logo_svg {
	fill: currentColor;
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gFootNav {
	max-width: 900px;
	margin: 0 auto;
}
.gFootNav_grid {
	display: flex;
	justify-content: space-between;
}
.gFootNav_cell {}
.gFootNav_list {
	list-style: none;
	font-size: 14px;
	line-height: 20px;
	display: grid;
	grid-template-columns: 100%;
	row-gap: 7px;
}
.gFootNav_list > li {}
.gFootNav_list > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
	padding: 4px 0;
	padding-left: 20px;
}
.gFootNav_list > li > a > .icon {
	display: block;
	font-size: 16px;
	position: absolute;
	top: 14px;
	left: 0;
	transform: translateY(-50%);
}
.gFootNav_cList {
	list-style: none;
}
.gFootNav_cList > li {}
.gFootNav_cList > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
	padding: 4px 0;
	padding-left: 20px;
}
.gFootNav_cList_icon {
	font-size: 10px;
	position: absolute;
	top: 14px;
	left: 3px;
	transform: translateY(-50%);
}
.gFooter_snsList {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 13px;
	margin-top: 49px;
}
.gFooter_snsList > li {}
.gFooter_snsList > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: transform;
}
.gFooter_snsList_item {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 31px;
}
.gFooter_snsList_item-facebook {
	background-color: #0863F7;
}
.gFooter_snsList_item-youtube {
	background-color: #FF0000;
}
.gFooter_snsList_item > .icon {
	display: block;
}
.gFooter_snsList_item-instagram {
	background-image: linear-gradient(-218deg, #7e2ef8, #f22654, #ffca02);
}
.gFooter_copyright {
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-top: 27px;
}
.gNav {
	background-color: var(--color-blue-dark);
	color: var(--color-white);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 10;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: .5s;
	box-sizing: border-box;
	padding-top: 121px;
	padding-bottom: 50px;
	overflow: auto;
}
.gNav.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.gNav_inner {
	max-width: 1000px;
}
.gNav_title {
	max-width: 528px;
	margin: 0 auto 54px;
}
.gNav_title > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: opacity;
}
.gNav_title_inner {
	display: block;
	position: relative;
	padding-bottom: 6.25%;
	width: 100%;
}
.gNav_title_img {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	fill: currentColor;
}
.gNav_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 5%;
}
.gNav_cell {}
.gNav_list {
	list-style: none;
	border-top: 1px solid currentColor;
}
.gNav_list > li {
	border-bottom: 1px solid currentColor;
}
.gNav_list > li > a {
	text-decoration: none;
	color: inherit;
	font-size: 20px;
	line-height: 28px;
	padding: 18px 0;
	display: block;
	position: relative;
	padding-left: 39px;
	transition-duration: .3s;
	transition-property: opacity;
}
.gNav_list > li > a > .icon {
	display: block;
	font-size: 20px;
	position: absolute;
	top: 32px;
	left: 6px;
	transform: translateY(-50%);
	transition-duration: .3s;
	transition-property: transform;
}
.gNav_cList {
	list-style: none;
	margin-top: -16px;
	padding-bottom: 14px;
}
.gNav_cList > li {}
.gNav_cList > li > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	font-size: 14px;
	line-height: 20px;
	padding: 4px 0;
	position: relative;
	padding-left: 28px;
	transition-duration: .3s;
	transition-property: opacity;
}
.gNav_cList > li > a > .icon {
	display: block;
	position: absolute;
	top: 14px;
	left: 10px;
	transform: translateY(-50%);
	font-size: 10px;
	transition-duration: .3s;
	transition-property: left;
}
.gHeader_lang_list {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--color-white);
	width: 160px;
	box-sizing: border-box;
	background-color: var(--color-blue-dark);
	color: var(--color-white);
	padding: 15px 0px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: .5s;
}
.gHeader_lang_list.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.gHeader_lang_list > li {}
.gHeader_lang_list > li > a {
	text-decoration: none;
	color: inherit;
	font-size: 14px;
	line-height: 16px;
	display: block;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	transition-duration: .3s;
	transition-property: opacity;
}
.gHeader_title_img-main {}
.gHeader_title_img-white {
	opacity: 0;
	fill: var(--color-white);
}
.gFootNav_cList > li > a > .icon-blank {
	font-size: 12px;
	margin-left: 3px;
}
.gBody {
	padding-top: 55px;
	overflow: hidden;
}
.gHead {
	margin-bottom: 60px;
}
.gHead_inner {}
.gHead_title {
	margin-bottom: 0;
}
.gBody_inner {}
.gPankuzu {
	margin-top: 80px;
}
.gPankuzu_inner {}
.gPankuzu_oList {
	list-style: none;
	display: flex;
	align-items: center;
	font-size: 12px;
	white-space: nowrap;
	overflow: auto;
}
.gPankuzu_oList > li {
	display: flex;
	align-items: center;
}
.gPankuzu_oList > li:last-child {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gPankuzu_oList > li:nth-last-child(n+2)::after {
	content: "-";
	display: block;
	margin: 0 5px;
}
.gPankuzu_oList > li > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	height: 48px;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gPankuzu-noMt {
	margin-top: 0;
}
.gVis {
	padding-bottom: 73px;
	margin-bottom: 115px;
}
.gVis_inner {}
.gVis_cols {
	display: flex;
}
.gVis_col {}
.gVis_col-ttl {
	position: relative;
	width: 44.45%;
	top: 73px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}
.gVis_title {
	font-size: 50px;
	line-height: 1.44;
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	font-weight: bold;
}
.gVis_title::after {
	content: "";
	display: block;
	width: 100px;
	height: 4px;
	background-color: var(--color-blue-dark);
	margin: 40px auto 0;
}
.gVis_col-img {
	width: 55.55%;
}
.gVis_image {
	position: relative;
	z-index: 1;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	overflow: hidden;
}
.gVis_image > img {
	display: block;
	width: 100%;
	height: auto;
}
.gVis_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-blue-pale);
	z-index: 0;
	width: calc(100% + 180px);
}
.gBody-noPt {
	padding-top: 0;
}
.gBody-home {
	padding-top: 0;
}
.gHeader_list_item-small {
    font-size: 11px;
    padding-left: 3px;
    padding-right: 3px;
}
@media screen and (min-width: 1440px) {
	.gVis_col-img {
		width: 800px;
	}
	.gVis_col-ttl {
		width: calc(100% - 800px);
	}
}
@media screen and (max-width: 1449px) {
	.gHeader_cols {
		max-width: 1400px;
		margin-left: auto;
	}
	.gHeader_inner {
		padding-left: 20px;
	}
	.gHeader_col-title {
		width: calc(100% - 850px);
		max-width: 528px;
	}
	.gHeader_col-menu {
		width: 838px;
		max-width: none;
	}
}
@media screen and (max-width:1249px) {
	.gHeader_ticketLink_image {
		width: 80px;
	}
	.gHeader_ticketLink {
		width: 100px;
	}
	.gHeader_list_item {
		font-size: 11px;
		line-height: 12px;
	}
	.gHeader_list_text {
		min-height: 24px;
	}
	.gHeader_col-title {
		width: 364px;
	}
	.gHeader_col-menu {
		width: calc(100% - 380px);
		max-width: 800px;
		flex-grow: 0;
	}
	.gHeader_list {
		width: calc(100% - 260px);
	}
}
@media screen and (max-width:1149px) {
	.gHeader_col-title {
		width: 300px;
	}
	.gHeader_col-menu {
		width: calc(100% - 315px);
	}
}
@media screen and (max-width:1099px) {
	.gHeader_list {
		display: none;
	}
	.gHeader_col-title {
		width: 400px;
	}
	.gHeader_col-menu {
		width: calc(100% - 415px);
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	.gPankuzu_oList > li > a:hover {
		color: var(--color-cyan);
	}
	.gHeader_lang_list > li > a:hover {
		opacity: .5;
	}
	.gNav_list > li > a:hover > .icon {
		transform: translateY(-50%) scale(1.2);
	}
	.gNav_cList > li > a:hover > .icon {
		left: 13px;
	}
	.gHeader_title > a:hover {
		opacity: .7;
	}
	.gHeader_list_item:hover::after {
		transform: scale(1, 2);
	}
	a:hover .gHeader_list_icon {
		transform: scale(1.2) rotate(5deg);
	}
	.gHeader_ticketLink > a:hover {}
	a:hover .gHeader_ticketLink_image {
		transform: scale(1.05) rotate(2deg);
	}
	.gHeader_lang_btn:hover {
		background-color: var(--color-blue-dark);
	}
	.gMenuBtn:hover {
		background-color: var(--color-blue-dark);
	}
	.gFooter_logo > a:hover {
		opacity: .7;
	}
	.gFootNav_list > li > a:hover {
		text-decoration: underline;
	}
	.gFootNav_cList > li > a:hover {
		text-decoration: underline;
	}
	.gFooter_snsList > li > a:hover {
		transform: scale(1.1);
	}
	.gNav_title > a:hover {
		opacity: 0.7;
	}
	.gNav_list > li > a:hover {
		opacity: 0.7;
	}
	.gNav_cList > li > a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width:999px) {
	.gHeaderWrap {}
	.gHeader {}
	.gHeader_inner {}
	.gHeader_cols {}
	.gHeader_col {}
	.gHeader_col-title {}
	.gHeader_title {}
	.gHeader_title > a {}
	.gHeader_title_inner {}
	.gHeader_title_img {}
	.gHeader_col-menu {}
	.gHeader_list {}
	.gHeader_list > li {}
	.gHeader_list_item {}
	.gHeader_list_item::after {}
	.gHeader_list_icon {}
	.gHeader_list_text {}
	.gHeader_ticketLink {}
	.gHeader_ticketLink > a {}
	.gHeader_ticketLink_image {}
	.gHeader_ticketLink_image > img {}
	.gHeader_lang {}
	.gHeader_lang_btn {}
	.gHeader_lang_btn[aria-expanded="true"] {}
	.gHeader_lang_btn_icon {}
	.gHeader_langBtn_text {}
	.gHeader_langBtn_text::after {}
	.gHeader_lang_btn[aria-expanded="true"] .gHeader_langBtn_text::after {}
	.gMenuBtn {}
	.gMenuBtn[aria-expanded="true"] {}
	.gMenuBtn_barWrap {}
	.gMenuBtn_bar {}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {}
	.gMenuBtn_bar-no3 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {}
	.gMenuBtn_text {}
	.gMenuBtn_text-open {}
	.gHeader_list_item-enjoy {}
	.gHeader_list_item-vehicle {}
	.gHeader_list_item-timetable {}
	.gHeader_list_item-price {}
	.gHeader_list_item-live {}
	.gHeader_list_item-access {}
	.gFooter {}
	.gFooter_inner {}
	.gFooter_logo {}
	.gFooter_logo > a {}
	.gFooter_logo_inner {}
	.gFooter_logo_svg {}
	.gFootNav {}
	.gFootNav_grid {
		column-gap: 15px;
	}
	.gFootNav_cell {}
	.gFootNav_list {}
	.gFootNav_list > li {}
	.gFootNav_list > li > a {}
	.gFootNav_list > li > a > .icon {}
	.gFootNav_cList {}
	.gFootNav_cList > li {}
	.gFootNav_cList > li > a {}
	.gFootNav_cList_icon {}
	.gFooter_snsList {}
	.gFooter_snsList > li {}
	.gFooter_snsList > li > a {}
	.gFooter_snsList_item {}
	.gFooter_snsList_item-facebook {}
	.gFooter_snsList_item-youtube {}
	.gFooter_snsList_item > .icon {}
	.gFooter_snsList_item-instagram {}
	.gFooter_copyright {}
	.gNav {}
	.gNav.isShow {}
	.gNav_inner {}
	.gNav_title {}
	.gNav_title > a {}
	.gNav_title_inner {}
	.gNav_title_img {}
	.gNav_grid {}
	.gNav_cell {}
	.gNav_list {}
	.gNav_list > li {}
	.gNav_list > li > a {
		font-size: 16px;
		line-height: 22px;
	}
	.gNav_list > li > a > .icon {
		top: 29px;
	}
	.gNav_cList {
		margin-top: -10px;
	}
	.gNav_cList > li {}
	.gNav_cList > li > a {}
	.gNav_cList > li > a > .icon {}
	.gHeader_lang_list {}
	.gHeader_lang_list.isShow {}
	.gHeader_lang_list > li {}
	.gHeader_lang_list > li > a {}
	.gHeader_title_img-main {}
	.gHeader_title_img-white {}
	.gFootNav_cList > li > a > .icon-blank {}
	.gBody {}
	.gHead {
		margin-bottom: 45px;
	}
	.gHead_inner {}
	.gHead_title {}
	.gBody_inner {}
	.gPankuzu {}
	.gPankuzu_inner {}
	.gPankuzu_oList {}
	.gPankuzu_oList > li {}
	.gPankuzu_oList > li:nth-last-child(n+2)::after {}
	.gPankuzu_oList > li > a {}
	.gPankuzu-noMt {
		margin-top: 0;
	}
	.gVis {
		padding-bottom: 45px;
		margin-bottom: 80px;
	}
	.gVis_inner {}
	.gVis_cols {}
	.gVis_col {}
	.gVis_col-ttl {
		top: 45px;
	}
	.gVis_title {
		font-size: 36px;
	}
	.gVis_title::after {
		margin-top: 25px;
		width: 80px;
	}
	.gVis_col-img {}
	.gVis_image {}
	.gVis_image > img {}
	.gVis_bg {}
	.gBody-noPt {
		padding-top: 0;
	}
	.gBody-home {
		padding-top: 0;
	}
	.gHeader_list_item-small {}
}
@media screen and (max-width:767px) {
	.gHeaderWrap {
		height: 90px;
	}
	.gHeader {}
	.gHeader_inner {
		padding-left: 0;
	}
	.gHeader_cols {
		display: block;
	}
	.gHeader_col {
		width: auto;
		max-width: none;
	}
	.gHeader_col-title {
		padding-left: 17px;
		padding-right: 17px;
	}
	.gHeader_title {
		max-width: 341px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
		z-index: 1001;
	}
	.gHeader_title > a {
		height: 40px;
	}
	.gHeader_title_inner {}
	.gHeader_title_img {}
	.gHeader_col-menu {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.gHeader_list {}
	.gHeader_list > li {}
	.gHeader_list_item {}
	.gHeader_list_item::after {}
	.gHeader_list_icon {}
	.gHeader_list_text {}
	.gHeader_ticketLink {
		width: auto;
	}
	.gHeader_ticketLink > a {
		background-color: var(--color-yellow-bright);
	}
	.gHeader_ticketLink_image {
		width: 90px;
		max-width: 100%;
	}
	.gHeader_ticketLink_image > img {}
	.gHeader_lang {
		width: auto;
	}
	.gHeader_lang_btn {}
	.gHeader_lang_btn[aria-expanded="true"] {}
	.gHeader_lang_btn_icon {}
	.gHeader_langBtn_text {
		display: none;
	}
	.gHeader_langBtn_text::after {}
	.gHeader_lang_btn[aria-expanded="true"] .gHeader_langBtn_text::after {}
	.gMenuBtn {
		width: auto;
		height: 50px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		column-gap: 9px;
	}
	.gMenuBtn[aria-expanded="true"] {}
	.gMenuBtn_barWrap {
		margin: 0;
		width: 19px;
	}
	.gMenuBtn_bar {}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {
		margin-top: 3px;
		margin-bottom: 3px;
	}
	.gMenuBtn_bar-no3 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {
		transform: translateY(5px) rotate(45deg);
	}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {
		transform: translateY(-5px) rotate(-45deg);
	}
	.gMenuBtn_text {}
	.gMenuBtn_text-open {}
	.gHeader_list_item-enjoy {}
	.gHeader_list_item-vehicle {}
	.gHeader_list_item-timetable {}
	.gHeader_list_item-price {}
	.gHeader_list_item-live {}
	.gHeader_list_item-access {}
	.gFooter {
		padding-top: 27px;
		padding-bottom: 29px;
	}
	.gFooter_inner {}
	.gFooter_logo {
		max-width: 321px;
		margin-bottom: 0;
	}
	.gFooter_logo > a {}
	.gFooter_logo_inner {}
	.gFooter_logo_svg {}
	.gFootNav {
		display: none;
	}
	.gFootNav_grid {}
	.gFootNav_cell {}
	.gFootNav_list {}
	.gFootNav_list > li {}
	.gFootNav_list > li > a {}
	.gFootNav_list > li > a > .icon {}
	.gFootNav_cList {}
	.gFootNav_cList > li {}
	.gFootNav_cList > li > a {}
	.gFootNav_cList_icon {}
	.gFooter_snsList {
		margin-top: 11px;
		column-gap: 9px;
	}
	.gFooter_snsList > li {}
	.gFooter_snsList > li > a {}
	.gFooter_snsList_item {
		width: 35px;
		height: 35px;
		font-size: 22px;
	}
	.gFooter_snsList_item-facebook {}
	.gFooter_snsList_item-youtube {}
	.gFooter_snsList_item > .icon {}
	.gFooter_snsList_item-instagram {}
	.gFooter_copyright {
		margin-top: 10px;
	}
	.gNav {
		padding-top: 0;
		top: 90px;
		height: calc(100% - 90px);
	}
	.gNav.isShow {}
	.gNav_inner {}
	.gNav_title {
		max-width: 321px;
		display: none;
	}
	.gNav_title > a {}
	.gNav_title_inner {}
	.gNav_title_img {}
	.gNav_grid {
		display: block;
	}
	.gNav_cell {}
	.gNav_cell:nth-child(n+2) {
		margin-top: -1px;
	}
	.gNav_list {}
	.gNav_list-first {
		border-top: none;
	}
	.gNav_list > li {}
	.gNav_list > li > a {
		font-size: 15px;
	}
	.gNav_list > li > a > .icon {}
	.gNav_cList {}
	.gNav_cList > li {}
	.gNav_cList > li > a {}
	.gNav_cList > li > a > .icon {}
	.gHeader_lang_list {
		width: 199%;
		box-shadow: 10px 0 0 var(--color-blue-dark);
	}
	.gHeader_lang_list.isShow {}
	.gHeader_lang_list > li {}
	.gHeader_lang_list > li > a {}
	.gHeader_title_img-main {}
	.gHeader_title_img-white {}
	.isMenuOpen .gHeader_title_img-main {
		opacity: 0;
	}
	.isMenuOpen .gHeader_title_img-white {
		opacity: 1;
	}
	.gFootNav_cList > li > a > .icon-blank {}
	.gBody {
		padding-top: 35px;
	}
	.gHead {
		margin-bottom: 25px;
	}
	.gHead_inner {}
	.gHead_title {}
	.gBody_inner {}
	.gPankuzu {
		margin-top: 50px;
	}
	.gPankuzu_inner {}
	.gPankuzu_oList {
		font-size: 11px;
	}
	.gPankuzu_oList > li {}
	.gPankuzu_oList > li:nth-last-child(n+2)::after {}
	.gPankuzu_oList > li > a {}
	.gPankuzu-noMt {
		margin-top: 0;
	}
	.gVis {
		padding-bottom: 0;
		margin-bottom: 45px;
	}
	.gVis_inner {}
	.gVis_cols {
		flex-direction: column-reverse;
		flex-direction: column;
	}
	.gVis_col {
		width: 100%;
	}
	.gVis_col-ttl {
		top: 0;
		padding: 20px 15px;
	}
	.gVis_title {
		font-size: 28px;
	}
	.gVis_title::after {
		width: 60px;
		height: 3px;
		margin-top: 11px;
	}
	.gVis_col-img {}
	.gVis_image {
		border-radius: 0;
	}
	.gVis_image > img {}
	.gVis_bg {
		width: 100%;
		height: 100%;
	}
	.gBody-noPt {
		padding-top: 0;
	}
	.gBody-home {
		padding-top: 0;
	}
	.gHeader_list_item-small {}
}
@media screen and (max-width:374px) {}
