/* ---------------------------------------------------
  footer
--------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	padding-top: min(8rem, 6.25vw);
}

.footer__copyright {
	padding: min(3rem, 2.344vw) 0 min(4rem, 3.125vw);
	text-align: center;
}

.footer__copyright--text {
	color: rgb(var(--gry));
	font-size: min(1.2rem, 0.938vw);
}

@media screen and (max-width: 768px) {
	.footer {
		padding-top: 17.333vw;
	}

	.footer__copyright {
		padding: 6.4vw 0;
	}

	.footer__copyright--text {
		font-size: 2.4vw;
	}
}

/*
	access
------------------------------ */
.access {
	margin-bottom: min(4rem, 3.125vw);
	font-size: min(1.8rem, 1.406vw);
	text-align: center;
}

.access__hotel-name {
	margin-bottom: min(2rem, 1.563vw);
	line-height: 1;
	font-size: min(2.8rem, 2.188vw);
	font-weight: 600;
}

.access__address {
	margin-bottom: min(2rem, 1.563vw);
}

.access__link::before {
	content: "＞";
}

.access__map iframe {
	margin-top: min(4rem, 3.125vw);
	width: 100%;
	height: min(43.2rem, 33.75vw);
}

@media screen and (max-width: 768px) {
	.access {
		margin-bottom: 8vw;
		font-size: 4.8vw;
	}

	.access__hotel-name {
		margin-bottom: 6.4vw;
		font-size: 5.867vw;
	}

	.access__address {
		margin-bottom: 6.4vw;
	}

	.access__map iframe {
		margin-top: 16vw;
		height: 114.933vw;
	}
}

/*
	hotel-list
------------------------------ */
.footer__hotel-list {
	font-size: min(1.6rem, 1.25vw);
	display: flex;
	justify-content: center;
}

.footer__hotel-list--item {
	padding: 0 1.5em;
	position: relative;
}

.footer__hotel-list--item::before,
.footer__hotel-list--item::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "|";
}

.footer__hotel-list--item::before {
	left: 0;
}

.footer__hotel-list--item::after {
	right: 0;
}

.footer__hotel-list--item:last-of-type:before {
	content: "";
}

.footer__hotel-list--link {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer__hotel-list {
		margin: 0 auto;
		font-size: 4.267vw;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.footer__hotel-list--item:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.footer__hotel-list--item:last-of-type:before {
		content: "|";
	}
}

/* ---------------------------------------------------
  gnav
--------------------------------------------------- */
.gnav {
	background: rgba(var(--wht), 0.95);
	max-width: 100%;
	width: 100%;
	font-family: var(--zain);
	position: sticky;
	top: 0;
	z-index: 999;
}

.gnav__list {
	display: flex;
	justify-content: center;
}

.gnav__list--link {
	padding: 0 min(1.8rem, 1.406vw);
	height: min(7.7rem, 6.016vw);
	line-height: 0.8;
	color: rgb(var(--blk));
	font-size: min(2.4rem, 1.875vw);
	font-weight: 800;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__list--link:hover,
.gnav__list--link.active {
	color: rgb(var(--orn));
	opacity: 1;
}

.overlay {
	display: none;
}

@media screen and (max-width: 768px) {
	.gnav {
		background: rgba(var(--nvy), 0.95);
		padding-top: 16vw;
		max-width: 600px;
		height: 100%;
		line-height: 1;
		overflow: auto;
		position: fixed;
		right: 0;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		display: block;
	}

	.gnav__list--item {
		margin-bottom: 32px;
	}

	.gnav__list--link {
		height: auto;
		font-size: 6.4vw;
		color: rgb(var(--wht));
	}

	.gnav__list--link:hover,
	.gnav__list--link.active {
		color: rgb(var(--wht));
	}

	.overlay {
		background: rgba(var(--blk), 0.75);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
		content: "";
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .gnav {
		z-index: 999;
		transform: translateX(0);
	}

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

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

@media screen and (max-width: 768px) {
	.toggle {
		width: 10.667vw;
		height: 3.733vw;
		display: block;
		position: fixed;
		top: 5.333vw;
		right: 4.8vw;
		z-index: 1000;
	}

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

	.toggle__inner--item {
		background: rgb(var(--blk));
		width: 100%;
		height: 0.4vw;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

	.toggle__inner--item:nth-child(1) {
		top: 0;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(2) {
		bottom: 0;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle__inner--item {
		background: rgb(var(--wht));
		transform-origin: 0 0;
	}

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

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