@charset "UTF-8";

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	height: 100vh;
}

.header__inner {
	color: rgb(var(--wht));
	display: flex;
	flex-direction: column-reverse;
	position: absolute;
	bottom: 2.66667vw;
	left: 2.66667vw;
	z-index: 1;
}

.header__title {
	line-height: 1.05;
	font-family: var(--big);
	font-size: 10.4vmin;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.header__title small {
	line-height: 1.75;
	font-size: 4.53333vmin;
	display: block;
}

.header__title small span {
	font-size: calc(1em - 0.15385vw);
}

.header__text {
	margin-bottom: 2em;
	font-size: 1.86667vmin;
}

.header__link {
	width: 280px;
	width: min(30.8rem, 24.063vw);
	position: absolute;
	bottom: 2.667vw;
	right: 5.333vw;
	z-index: 1;
	animation: fadeIn 4s ease-out forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

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

	.header__inner {
		bottom: 4.26667vw;
		left: 4.26667vw;
	}

	.header__title {
		font-size: 12.8vw;
	}

	.header__title small {
		font-size: 5.6vw;
	}

	.header__title small span {
		font-size: calc(1em - 0.53333vw);
	}

	.header__text {
		margin-bottom: 1em;
		font-size: 3.2vw;
	}

	.header__link {
		/* width: 53.333vw; */
		width: auto;
		height: 25vh;
		top: 4.267vw;
		bottom: auto;
		right: auto;
		left: 4.267vw;
	}

	.header__link img {
		width: auto;
		height: 100%;
	}
}

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

@media screen and (max-width: 768px) {
	.toggle {
		width: 64px;
		height: 64px;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
	}

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

	.toggle__inner--item {
		background: rgb(var(--wht));
		width: 60%;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

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

	.toggle__inner--item:nth-child(2) {
		opacity: 1;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.toggle__inner--item:nth-child(3) {
		bottom: 20px;
		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(45deg) translate(-50%, -50%);
	}

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

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

/*
	gnav
------------------------------ */
.gnav a {
	color: rgb(var(--wht));
	font-family: var(--inter);
	text-decoration: none;
}

.gnav__list {
	position: fixed;
	top: 1.86667vw;
	left: 3.73333vw;
	z-index: 100;
}

.gnav__item {
	margin-bottom: 0.5em;
	line-height: 1;
}

.gnav__item--link {
	font-size: 1.15385vw;
}

.gnav__item--link.is-current {
	color: rgb(var(--active));
}

.gnav__item--link:hover {
	opacity: 1;
}

.gnav__item--link::before {
	margin-right: 0.25em;
	color: rgba(var(--active), 0);
	display: inline-block;
	transition: all 0.5s ease 0s;
	content: "●";
}

.gnav__item--link:hover,
.gnav__item--link:hover::before,
.gnav__item--link.is-current::before {
	color: rgba(var(--active), 1);
}

.gnav__reservation {
	text-align: center;
	position: fixed;
	top: 2.4vw;
	right: 1.6vw;
	z-index: 100;
}

.gnav__reservation--link {
	background: #3C5D8C;
	padding: 0.5em 3em;
	line-height: 1.2;
	font-size: 1.33333vw;
	border: solid 2px #3C5D8C;
	border-radius: 0.53333vw;
	flex-direction: column;
}

.gnav__reservation--link:hover {
	background: rgb(var(--wht));
	color: #3C5D8C;
	opacity: 1;
}

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

	.gnav__list {
		margin-top: 64px;
		padding: 0 1em;
		display: block;
		position: relative;
		top: auto;
		left: auto;
	}

	.gnav__item--link {
		padding: 0.5em 0;
		font-size: 4.26667vw;
		display: block;
	}

	.gnav__reservation {
		padding: 2em;
		position: relative;
		top: auto;
		right: auto;
		z-index: 100;
	}

	.gnav__reservation--link {
		font-size: 4.26667vw;
	}

	.gnav__reservation--link:hover {
		background: rgb(var(--wht));
		color: #3C5D8C;
		opacity: 1;
	}

	.overlay {
		background: rgba(var(--blk), 0.5);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		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;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--bgColor));
}

/*
	abouut
------------------------------ */
.footer .about {
	margin: 0 auto 9.33333vw;
	width: 74.60088%;
}

.footer .about .list.note li {
	font-size: 0.92308vw;
}

.footer .about .logo {
	margin-bottom: 9.33333vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.footer .about .logo__item.part1 {
	margin-right: 9.33333vw;
}

.footer .about .logo__item.part1 img {
	width: 11.69666vw;
}

.footer .about .logo__item.part2 img {
	width: 11.36992vw;
}

.footer .about .logo__item.part3 {
	margin-top: 10em;
	width: 100%;
	text-align: center;
}

.footer .about .logo__item.part3 img {
	max-width: 320px;
}

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

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

@media screen and (max-width: 768px) {
	.footer .about {
		padding: 0 6.4vw;
		width: 100%;
	}

	.footer .about .list.note li {
		font-size: 2.93333vw;
	}

	.footer .about .logo {
		margin-bottom: 9.33333vw;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer .about .logo__item {
		width: 50%;
		text-align: center;
	}

	.footer .about .logo__item.part1 {
		margin-right: 0;
	}

	.footer .about .logo__item.part1 img,
	.footer .about .logo__item.part2 img {
		width: 50%;
	}

	.footer .about .logo__item.part3 {
		margin-top: 6em;
	}

	.footer .about .logo__item.part3 img {
		width: 70%;
	}
}

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

.footer__hotelNav li {
	margin: 0 0 1rem;
	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;
	color: rgb(var(--wht));
	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;
		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: 1.06667vw;
	text-align: center;
}

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