@charset "UTF-8";

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	margin-bottom: 4em;
}

.header__main {
	margin-bottom: 4em;
	height: 74.61266vw;
	display: flex;
}

.header__title {
	width: calc(100% - (26.46154% * 2));
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	order: 1;
}

.header__title img {
	width: 70%;
}

.swiper {
	width: 26.46154%;
	height: 74.61266vw;
}

.swiper.slide01 {
	order: 0;
}

.swiper.slide02 {
	order: 2;
}

.swiper .swiper-wrapper {
	height: 100%;
}

.swiper .swiper-wrapper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.swiper-slide img {
	width: 128%;
	animation: slide 10s linear infinite;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-10%);
	}
}

.swiper-slide-active img {
	animation-play-state: running;
}

.header__lead {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 815px;
}

@media screen and (max-width: 1200px) {
	.header__lead {
		padding: 0 4.16667vw;
	}
}

@media screen and (max-width: 768px) {
	.header {
		margin-bottom: 13.33333vw;
	}

	.header__main {
		margin-bottom: 4em;
		height: auto;
		display: flex;
		flex-direction: column;
	}

	.header__title {
		padding: 10.66667vw 0;
		width: 100%;
		height: auto;
	}

	.header__title img {
		width: 70%;
	}

	.swiper {
		width: 100%;
		height: auto;
	}

	.header__lead {
		padding: 0 6.4vw;
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	margin-bottom: 120px;
	padding-bottom: 1em;
	border-bottom: solid 1px rgb(var(--brn));
}

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

.gnav__list--item {
	margin: 0 2em;
}

.gnav__list--item a {}

@media screen and (max-width: 768px) {
	.gnav {
		margin-bottom: 13.33333vw;
		padding-bottom: 0;
		border-bottom: none;
	}

	.gnav__list {
		flex-wrap: wrap;
	}

	.gnav__list--item {
		margin: 0;
		padding-bottom: 1em;
		width: 50%;
		text-align: center;
		border-bottom: solid 1px rgb(var(--brn));
	}

	.gnav__list--item a img {
		width: auto;
		height: 3.2vw;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: 100px 50px 0;
}

.footer .container {
	max-width: 1100px;
}

/* .footer .container .list.note.jp {
	margin-bottom: 2em;
} */

.footer .container .list.note {
	margin-bottom: 2em;
}

.footer .logo {
	margin: 0 auto;
	width: 80px;
}

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

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	margin-top: 5em;
	line-height: 1;
	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: 1.5em;
	}

	.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;
	color: rgba(var(--blk), 0.5);
	font-size: 12px;
	text-align: center;
}

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