/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background-color: rgb(var(--gld));
	width: 100%;
	height: 7.3rem;
	line-height: normal;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__list {
	margin: 0 auto;
	padding-right: 1.5rem;
	width: 136.6rem;
	height: 100%;
	display: flex;
	align-items: center;
}

.gnav__item {
	padding: 1rem 0;
}

.gnav__item a {
	width: 18.5rem;
	color: rgb(var(--wht));
	font-family: var(--mincho);
	font-size: 2.2rem;
	font-weight: bold;
	text-decoration: none;
	border-right: solid 1px rgb(var(--wht));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gnav__item a .jp {
	font-family: var(--gothic);
	font-size: 1.5rem;
	font-weight: normal;
}

/* pamphlet */
.gnav__item.pamphlet {
	margin-left: auto;
}

.gnav__item.pamphlet a {
	width: 26.4rem;
	border-right: none;
}

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background-color: rgb(var(--red));
		background-image: url(../img/gnav-bg.webp);
		background-position: center bottom;
		background-repeat: no-repeat;
		background-size: 100% auto;
		width: 100%;
		height: 100%;
		overflow: auto;
		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 {
		padding: 7rem 0 0;
		width: 100%;
		flex-direction: column;
	}

	.gnav__item {
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.gnav__item:not(.pamphlet) {
		min-height: 0;
		flex: 1;
		display: flex;
	}

	.gnav__item a {
		width: 100%;
		border: none;
	}

	.gnav__item:not(.pamphlet) a {
		height: 100%;
	}

	/* pamphlet */
	.gnav__item.pamphlet {
		margin: 5rem 0 0;
		padding: 0;
		width: 100%;
		height: 10rem;
		flex-shrink: 0;
	}

	.gnav__item.pamphlet a {
		width: 100%;
		height: 100%;
		border-top: solid 1px rgb(var(--wht));
		display: block;
		position: relative;
	}

	.gnav__item.pamphlet a::after {
		width: 100%;
		height: 100%;
		font-family: var(--gothic);
		font-size: 1.8rem;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		content: "デジタルパンフレットはこちら";
	}

	.gnav__item.pamphlet a img {
		display: none;
	}

	/* is-open */
	.overlay.is-gnav-overlay {
		background: rgba(var(--blk), 0.75);
		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: 2.6rem;
		height: 1.6rem;
		opacity: 0;
		visibility: hidden;
		display: block;
		position: fixed;
		top: 1.5rem;
		right: 1.5rem;
		z-index: 1000;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.toggle.is-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

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

	.toggle__line {
		background: rgb(var(--gld));
		width: 100%;
		height: 1px;
		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) {
		top: 50%;
		transform: translate(-50%, -50%);
	}

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

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

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

	.is-open .toggle__line:nth-child(2) {
		opacity: 0;
	}

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

/* ----------------------------------------------------
	content
---------------------------------------------------- */
.content {
	margin: 0 auto;
	width: 114rem;
}

.content:not(:last-of-type) {
	margin-bottom: 8rem;
}

@media screen and (max-width: 768px) {
	.content {
		width: 100%;
	}

	.content:not(:last-of-type) {
		margin-bottom: 4rem;
	}
}

/* ----------------------------------------------------
	greeting
---------------------------------------------------- */
.greeting {
	background-image: url(../img/greeting-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 8rem 0 3rem;
}

.greeting__content {
	margin: 0 auto;
	width: 76.2rem;
}

@media screen and (max-width: 768px) {
	.greeting {
		background-image: url(../img/greeting-bg_sp.webp);
		padding: 4rem 0 3rem;
	}

	.greeting__content {
		width: 32.4rem;
	}
}

/* ----------------------------------------------------
	events
---------------------------------------------------- */
.events {
	padding-top: 8rem;
}

.special {
	background-image: url(../img/special-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 8rem 0;
}

@media screen and (max-width: 768px) {
	.events {
		padding-top: 4rem;
	}

	.special {
		background-image: url(../img/special-bg_sp.webp);
		padding: 4rem 0;
	}
}

/* ----------------------------------------------------
	dinner
---------------------------------------------------- */
.dinner {
	background-color: rgb(var(--nvy));
	background-image: url(../img/dinner-bg01.webp), url(../img/dinner-bg02.webp);
	background-position: right top, left bottom 48rem;
	background-repeat: no-repeat, no-repeat;
	background-size: 100% auto, 100% auto;
	padding: 8rem 0;
}

.dinner01 img {
	width: calc(100% + 3.8rem);
	position: relative;
	left: -3.8rem;
}

@media screen and (max-width: 768px) {
	.dinner {
		background-color: rgb(var(--nvy));
		background-image: url(../img/dinner-bg01_sp.webp), url(../img/dinner-bg02_sp.webp), url(../img/dinner-bg03_sp.webp);
		background-position: right top, left bottom 172.8rem, left bottom 20.8rem;
		background-repeat: no-repeat, no-repeat, no-repeat;
		background-size: 100% auto, 100% auto, 100% auto;
		padding: 4rem 0;
	}

	.dinner .content {
		width: 35.5rem;
	}

	.dinner01 img {
		width: 100%;
		position: static;
	}
}

/* ----------------------------------------------------
	stay
---------------------------------------------------- */
.stay {
	padding-top: 8rem;
}

@media screen and (max-width: 768px) {
	.stay {
		padding-top: 4rem;
	}
}

/* ----------------------------------------------------
	model
---------------------------------------------------- */
.model {
	padding-top: 8rem;
}

.model .content {
	width: 42.2rem;
}

@media screen and (max-width: 768px) {
	.model {
		padding-top: 4rem;
	}

	.model .content {
		width: 32.7rem;
	}
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation {
	padding: 8rem 0;
}

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

	.reservation .content {
		width: 35.5rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
	.footer {
		padding-bottom: 3rem;
	}
}

/* 
	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 {
	margin-top: 2em;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 2.933vw;
	}
}