@charset "UTF-8";

/* ----------------------------------------------------
	videoBg
---------------------------------------------------- */
.videoBg {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.videoBg .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.videoBg .bg__wrap {
	width: 100%;
	height: 100% !important;
	overflow: hidden;
	position: relative;
}

.videoBg .bg .video {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	height: 100vh;
	height: 100dvh;
	transition: all 0.5s ease 0s;
}

.header::before {
	background: rgb(var(--blk));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	animation-name: fadeShutter;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	content: "";
}

@keyframes fadeShutter {
	0% {
		height: 100%;
	}

	50% {
		height: 100%;
	}

	100% {
		height: 0;
	}
}

.header__title {
	width: 47.65095%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 101;
	transform: translate(-50%, -50%);
}

.header__logo {
	width: 16.01963%;
	position: absolute;
	top: 3.43951vw;
	right: 3.2063vw;
	z-index: 101;
}

.header__title,
.header__logo {
	animation-name: fadeUp;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	opacity: 0;
}

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

	100% {
		opacity: 1;
	}
}

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

	.header__logo {
		width: 34.20608%;
		top: 7.35779vw;
		right: 7.85616vw;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: url(../img/bgMain.webp) center top no-repeat;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.footer {
		background-image: url(../img/bgMain_sp.webp);
		background-size: cover;
	}
}

/* ---------------------------------------------------
	inquiry
---------------------------------------------------- */
.inquiry {
	padding-bottom: 8.34783vw;
	text-align: center;
}

.inquiry__title .jp {
	margin-top: 1em;
	font-size: 1.47826vw;
	display: block;
}

.inquiry .number {
	line-height: 1;
	/* font-size: 3.04348vw; */
	font-size: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inquiry .number .tel {
	color: rgb(var(--wht));
	text-decoration: none;
}

.inquiry .number+.note {
	margin: 1em 0 2em;
	/* font-size: 1.3913vw; */
	font-size: 16px;
}

.inquiry .hotels {
	margin-bottom: 4em;
	/* font-size: 1.47826vw; */
	font-size: 17px;
}

.inquiry .hotels__name {
	margin-bottom: 2em;
	line-height: 2;
}

.inquiry .linkBtn a {
	background: rgba(var(--wht), 1);
	color: rgb(var(--bgColor));
	border: solid 1px rgb(var(--wht));
}

.inquiry .linkBtn a:hover {
	background: rgba(var(--wht), 0);
	color: rgb(var(--wht));
}

.inquiry .logo img {
	width: 12.6972%;
}

@media screen and (max-width: 768px) {
	.inquiry {
		padding-right: 6.4vw;
		padding-bottom: 13.33333vw;
		padding-left: 6.4vw;
	}

	.inquiry__title .jp {
		margin-top: 0.75em;
		font-size: 5.33333vw;
	}

	.inquiry .number {
		font-size: 9.6vw;
	}

	.inquiry .number+.note,
	.inquiry .hotels {
		font-size: 3.73333vw;
	}

	.inquiry .hotels__name {
		margin-bottom: 2em;
		line-height: 2;
	}

	.inquiry .logo img {
		width: 32%;
	}
}

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

.notes .list.note {
	margin: 0 auto;
	max-width: 800px;
	width: 91.30435%;
}

.notes .list.note li {
	font-size: 14px;
}

.notes .list.note.jp {
	margin-bottom: 2em;
}

.notes .list.note a {
	color: #72C6EF;
}

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

	.notes .list.note {
		width: 100%;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	padding-top: 8.34783vw;
	line-height: 1;
	color: rgb(var(--wht));
	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));
	/* font-size: 1.47826vw; */
	font-size: 16px;
	text-decoration: none;
	display: inline-block;
}

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

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		padding-top: 13.33333vw;
		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 {
		font-size: 3.73333vw;
		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: rgb(var(--wht));
	/* font-size: 0.95652vw; */
	font-size: 12px;
	text-align: center;
}

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