@charset "UTF-8";

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background: url(../img/headerBg.webp) center top no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 48.69565vw;
	opacity: 0;
	position: relative;
	animation: fadeInHeader 2s ease forwards;
}

@keyframes fadeInHeader {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.header__title {
	background: url(../img/headerTitle.webp) center no-repeat;
	background-size: cover;
	width: 46.6053%;
	height: 34.4051vw;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: fadeInTitle 2s ease forwards;
	animation-delay: 1s;
}

@keyframes fadeInTitle {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.header {
		background: url(../img/headerBg_sp.webp) center top no-repeat;
		background-size: 100% auto;
		height: 74.66667vw;
	}

	.header__title {
		background: url(../img/headerTitle_sp.webp) center no-repeat;
		background-size: cover;
		width: 61.8388%;
		height: 53.86576vw;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: url(../img/footerBg.webp) center bottom no-repeat;
	background-size: 100% auto;
	padding: 100px 50px 130px;
}

.footer .note {
	margin-bottom: 100px;
	font-weight: 200;
}

@media screen and (max-width: 768px) {
	.footer {
		background: url(../img/footerBg_sp.webp) center bottom no-repeat;
		background-size: 100% auto;
		padding: 13.33333vw 0 20vw;
	}

	.footer .note {
		margin-bottom: 13.33333vw;
		padding: 0 6.4vw;
	}
}

/*
	access
------------------------------ */
.access {
	margin-bottom: 60px;
	line-height: 2;
	text-align: center;
}

.access__logo {
	margin-bottom: 40px;
}

.access__logo img {
	max-width: 146px;
}

.access__name {
	font-size: 17px;
	font-weight: 500;
}

.access__address {
	margin-bottom: 40px;
}

.access__address a {
	color: rgb(var(--blk));
	text-decoration: none;
}

.access__link {
	margin-bottom: 40px;
}

.access__link a {
	color: rgb(var(--blk));
	font-size: 17px;
}

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

.access__map iframe {
	width: 100%;
	height: 288px;
}

@media screen and (max-width: 768px) {
	.access {
		margin-bottom: 60px;
		line-height: 1.8;
	}

	.access__logo {
		margin-bottom: 8vw;
	}

	.access__logo img {
		max-width: 29.86667vw;
	}

	.access__name {
		margin-bottom: 0.5em;
		font-size: 4.53333vw;
	}

	.access__address {
		margin-bottom: 8vw;
	}

	.access__link {
		margin-bottom: 8vw;
	}

	.access__link a {
		font-size: 4.53333vw;
	}

	.access__map iframe {
		height: 100vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	line-height: 1.5;
	color: rgb(var(--blk));
	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(--blk));
	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 {
		justify-content: center;
	}

	.footer__hotelNav li:not(:last-of-type) {
		margin-bottom: 2em;
	}

	.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 0;
	color: rgb(var(--blk));
	font-size: 12px;
	font-weight: 200;
	text-align: center;
}

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