/* ---------------------------------------------------
	color
---------------------------------------------------- */
.color-blu {
	color: rgb(var(--blu));
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgba(var(--blu), 1);
	width: 100%;
	line-height: 1;
	font-size: 2.4rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__list {
	height: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__item {
	margin: 0 1em;
}

.gnav__item a {
	color: rgb(var(--wht));
	font-family: var(--en);
	font-weight: 700;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__item a:hover,
.gnav__item a.active {
	color: #0E177F;
}

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background: rgba(var(--blu), 0.9);
		max-width: 37.5rem;
		width: 100%;
		height: 100%;
		font-size: 2.8rem;
		overflow: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		height: auto;
		display: block;
	}

	.gnav__item {
		margin: 0;
		text-align: left;
	}

	.gnav__item:not(:last-of-type) {
		margin-bottom: 1.5em;
	}

	.gnav__item a {
		font-size: 2.4rem;
		justify-content: flex-start;
	}

	.gnav__item a:hover,
	.gnav__item a.active {
		color: rgb(var(--wht));
	}

	.overlay.is-gnav-overlay {
		background: rgba(var(--blk), 0.25);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}

	body.is-open {
		overflow: hidden;
	}

	.is-open .gnav--sp-toggle {
		transform: translateX(0);
	}

	.is-open .overlay.is-gnav-overlay {
		opacity: 1;
		visibility: visible;
		cursor: pointer;
	}
}

/* ---------------------------------------------------
	toggle
---------------------------------------------------- */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 4.2rem;
		height: 1.6rem;
		display: block;
		position: fixed;
		top: 2.3rem;
		right: 2.8rem;
		z-index: 1000;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		display: block;
		position: relative;
		cursor: pointer;
	}

	.toggle__line {
		background: rgb(var(--wht));
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
		transform: translateX(-50%);
		transform-origin: center;
	}

	.toggle__line:nth-child(1) {
		top: 0;
	}

	.toggle__line:nth-child(2) {
		bottom: 0;
	}

	.is-open .toggle__line {
		transform-origin: 0 0;
	}

	.is-open .toggle__line:nth-child(1) {
		top: 50%;
		transform: rotate(25deg) translate(-50%, -50%);
	}

	.is-open .toggle__line:nth-child(2) {
		top: 50%;
		bottom: auto;
		transform: rotate(-25deg) translate(-50%, -50%);
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
/* 
	hotel
------------------------------ */
.hotels {
	padding: 10rem 0 5rem;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
}

.hotels__name {
	margin-bottom: 1.1rem;
	font-size: 3rem;
	font-weight: 500;
}

.hotels__address {
	margin-bottom: 1.1rem;
}

.hotels__access {
	margin-bottom: 3.3rem;
}

.hotels__map {
	margin: 0 auto;
	width: 100rem;
}

.hotels__map iframe {
	width: 100%;
	height: 44rem;
}

@media screen and (max-width: 768px) {
	.hotels {
		padding: 5rem 0 4rem;
	}

	.hotels__name {
		margin-bottom: 0;
		font-size: 2.5rem;
	}

	.hotels__address {
		margin-bottom: 0;
	}

	.hotels__access {
		margin-bottom: 2.3rem;
	}

	.hotels__map {
		width: 32rem;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: 1.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .hotel-nav::before,
.footer .hotel-nav__item::after {
	content: "|";
}

.footer .hotel-nav__item a {
	padding: 0 1em;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		font-size: 4.267vw;
		text-align: center;
		display: block;
	}

	.footer .hotel-nav::before {
		content: "";
	}

	.footer .hotel-nav__item::before,
	.footer .hotel-nav__item::after {
		content: "|";
	}

	.footer .hotel-nav__item:not(:last-of-type) {
		margin-bottom: 1em;
	}

	.footer .hotel-nav__item a {
		padding: 0 1em;
		text-decoration: none;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	background-color: rgb(var(--wht));
	margin-top: 2.5em;
	height: 5rem;
	line-height: normal;
	color: rgba(141, 141, 141, 1);
	font-size: 1.3rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		background: none;
		font-size: 1rem;
	}
}

/* ----------------------------------------------------
	subpage
---------------------------------------------------- */
.subpage .header {
	background-image: url(../img/page-bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	margin-bottom: 9rem;
	padding-top: 16rem;
}

.subpage .header__title {
	line-height: normal;
	color: rgb(var(--gol));
	font-family: var(--en);
	font-size: 9rem;
	font-weight: 600;
	text-align: center;
}

.subpage .header__title--jp {
	font-family: var(--gothic);
	font-size: 2.4rem;
	font-weight: 700;
	display: block;
}

@media screen and (max-width: 768px) {
	.subpage .header {
		background-image: url(../img/page-bg_sp.webp);
		margin-bottom: 4.5rem;
		padding-top: 8rem;
	}

	.subpage .header__title {
		font-size: 4.8rem;
	}

	.subpage .header__title--jp {
		font-size: 1.8rem;
	}
}

/* ----------------------------------------------------
	sec
---------------------------------------------------- */
.sec {
	padding: 13rem 0;
}

.sec__inner {
	margin: 0 auto;
	width: 100rem;
}

@media screen and (max-width: 768px) {
	.sec {
		padding: 6rem 0;
	}

	.sec__inner {
		width: 32rem;
	}
}

/* ----------------------------------------------------
	ticket-title
---------------------------------------------------- */
.ticket-title {
	margin-bottom: 4rem;
	line-height: normal;
	font-family: var(--en);
	font-size: 5rem;
	font-weight: 600;
	text-align: center;
}

.ticket-title+.ticket-detail {
	margin-bottom: 7rem;
}

@media screen and (max-width: 768px) {
	.ticket-title {
		margin-bottom: 2rem;
		font-size: 3rem;
	}

	.ticket-title+.ticket-detail {
		margin-bottom: 3.5rem;
	}
}

/* ----------------------------------------------------
	content-title
---------------------------------------------------- */
.content-title {
	background-color: rgb(var(--blu));
	margin-bottom: 5rem;
	width: 100%;
	height: 6.2rem;
	color: rgb(var(--wht));
	font-family: var(--en);
	font-size: 4.5rem;
	font-style: italic;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content-title.jp {
	font-family: var(--gothic);
	font-size: 3rem;
	font-style: normal;
	font-weight: 500;
}

.content-title__inner {
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.content-title__jp {
	margin-left: 1em;
	font-family: var(--gothic);
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	.content-title {
		margin-bottom: 2.5rem;
		height: 5rem;
		font-size: 3.2rem;
		letter-spacing: -0.005em;
	}

	.content-title.jp {
		font-size: 2rem;
	}

	.content-title__jp {
		margin-left: 0.5em;
		font-size: 1.6rem;
	}
}
