@charset "UTF-8";

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background: url(../img/mv.webp) center no-repeat;
	background-size: cover;
	height: 51.70558vw;
	position: relative;
}

.header__title {
	width: 53.56731%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header__title {
	width: 53.56731%;
}

@media screen and (max-width: 768px) {
	.header {
		height: 75vw;
	}

	.header__title {
		width: 90%;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--gra));
	color: rgb(var(--wht));
}

.footer a {
	color: rgb(var(--wht));
}

/*
	logo
------------------------------ */
.footer .logo {
	margin-bottom: calc(4em - ((1.5 - 1) * 0.5em));
	display: flex;
	justify-content: center;
}

.footer .logo img {
	width: 210px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.footer .logo img {
		width: 42.66667vw;
	}
}

/*
	sns
------------------------------ */
.sns {
	display: flex;
	justify-content: center;
}

.sns__item {
	margin: 0 1.5em;
}

.sns__item a img {
	width: 70px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.sns__item a img {
		width: 14.93333vw;
	}
}

/*
	contact
------------------------------ */
.contact {
	margin: calc(2em - ((1.5 - 1) * 0.5em)) 0;
	line-height: 1.75;
	font-size: 29px;
	text-align: center;
}

.contact__contents--tel a {
	text-decoration: none;
}

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

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	font-size: 18px;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:first-of-type::before,
.footer__hotelNav li::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.footer__hotelNav li:first-of-type::before {
	left: 0;
	content: "|";
}

.footer__hotelNav li::after {
	right: 0;
	content: "|";
}

.footer__hotelNav li a {
	padding: 0 1em;
	text-decoration: none;
	display: inline-block;
}

.footer__hotelNav li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		text-align: center;
		display: block;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after {
		content: "";
	}

	.footer__hotelNav li {
		margin-bottom: 1rem;
		font-size: 4.26667vw;
		justify-content: center;
	}

	.footer__hotelNav li a {
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		content: "|";
	}

	.footer__hotelNav li a::before {
		left: 0;
	}

	.footer__hotelNav li a::after {
		right: 0;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 2rem 0 3rem;
	font-size: 12px;
	text-align: center;
}

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

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

@media screen and (max-width: 768px) {
	.toggle {
		background: rgba(var(--mainColor), 0.75);
		width: 56px;
		height: 56px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 4px;
		position: fixed;
		top: 0.5rem;
		right: 0.5rem;
		z-index: 1000;
	}

	.toggle__inner {
		position: relative;
		width: 36px;
		height: 32px;
		cursor: pointer;
	}

	.toggle__inner span {
		background: rgb(var(--wht));
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 0;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 2px;
	}

	.toggle__inner span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle__inner span:nth-child(3) {
		bottom: 2px;
	}

	/* is-open */
	.is-open .toggle {
		background: none;
	}

	.is-open .toggle__inner span {
		background: rgb(var(--wht));
	}

	.is-open .toggle__inner span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translatey(-50%);
	}

	.is-open .toggle__inner span:nth-child(2) {
		width: 0;
	}

	.is-open .toggle__inner span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg) translatey(-50%);
	}
}

/*
	nav_content
------------------------------ */
.gnav {
	/* background: rgba(var(--mainColor), 0.9); */
	background: rgba(var(--mainColor), 1);
	width: 100%;
	/* position: sticky;
	top: 0; */
	z-index: 999;
}

.gnav__list {
	display: flex;
	flex-wrap: wrap;
}

.gnav__list--item {
	width: calc(100% / 4);
}

.gnav__list--item a {
	height: 10.25vw;
	line-height: 1.25;
	color: rgb(var(--wht));
	font-family: var(--din);
	font-size: 2.93077vw;
	font-weight: 400;
	text-decoration: none;
	border-right: solid 2px rgb(var(--bei1));
	border-bottom: solid 2px rgb(var(--bei1));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.gnav__list--item a:hover {
	opacity: 1;
}

.gnav__list--item a span small {
	font-size: 2.30769vw;
	text-align: center;
	display: block;
}

.gnav__list--item a svg {
	fill: rgb(var(--wht));
	width: 1.02672vw;
	height: auto;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	transition: all 0.5s ease 0s;
}

.gnav__list--item a:hover svg {
	right: 0.5rem;
}

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

	.gnav__list {
		margin-top: 21.33333vw;
		border-top: solid 2px rgb(var(--bei1));
		display: block;
	}

	.gnav__list--item,
	.gnav__list--item:nth-child(4),
	.gnav__list--item:nth-child(5) {
		width: 100%;
	}

	.gnav__list--item a {
		height: 21.33333vw;
		font-size: 5.33333vw;
		border-right: none;
	}

	.gnav__list--item a span small {
		font-size: 4.26667vw;
	}

	.gnav__list--item a:hover {
		opacity: 0.6;
	}

	.gnav__list--item a svg {
		width: 2.4vw;
	}

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

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