@charset "UTF-8";

@import url("https://use.typekit.net/hgb5bid.css");

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--seasons: "the-seasons", sans-serif;

	/* color */
	--blk: 0, 0, 0;
	--gry: 38, 37, 37;
	--wht: 255, 255, 255;
	--gld: 193, 169, 134;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--blk));
	line-height: 1.8;
}

.visually-hidden {
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	border: 0;
	position: absolute;
}

a {
	color: rgb(var(--gld));
	display: inline-block;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {}

/*
	font
------------------------------ */
body {
	font-family: var(--mincho);
	font-feature-settings: "palt"1;
	font-weight: 500;
	letter-spacing: 0.05em;
}

body,
th,
td {
	color: rgb(var(--wht));
	font-size: 16px;
	font-weight: normal;
}

@media screen and (max-width: 1000px) {

	body,
	th,
	td {
		font-size: 1.6vw;
	}
}

@media screen and (max-width: 768px) {

	body,
	th,
	td {
		font-size: 4.267vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	display: flex;
	position: relative;
}

/* note */
ul.note li {
	font-size: 13px;
}

ul.note li::before {
	content: "※";
}

ul.note.en li::before {
	content: "*";
}

@media screen and (max-width: 1000px) {
	ul.note li {
		font-size: 1.3vw;
	}
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--gld), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background: rgb(var(--blk));
	position: relative;
	z-index: 2;
}

.header__title,
.header__date {
	position: absolute;
	left: 50%;
	z-index: 10;
}

.header__title {
	width: 51.34vw;
	top: 50%;
	transform: translate(-50%, -50%);
}

.header__date {
	width: 100%;
	height: 3.5vw;
	font-family: var(--seasons);
	font-size: 1.923vw;
	font-weight: 700;
	text-align: center;
	bottom: 0;
	transform: translateX(-50%);
}

.header__image {
	background: rgb(var(--blk));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
}

.header__slide {
	line-height: 0;
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 85.179vw;
		top: 4.8vw;
		transform: translate(-50%, 0);
	}

	.header__date {
		background: none;
		height: auto;
		font-size: 5.867vw;
	}
}

/*
	animation
------------------------------ */
.header__slide {
	animation: fadeInSlide 5s ease-in-out forwards;
}

@keyframes fadeInSlide {
	0% {
		opacity: 0;
		visibility: hidden;
	}

	20% {
		opacity: 1;
		visibility: visible;
	}

	100% {
		opacity: 1;
		visibility: visible;
	}
}

.header__title,
.header__date {
	animation: fadeIn 8s ease-in-out forwards;
}

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

	80% {
		opacity: 1;
		visibility: visible;
	}

	100% {
		opacity: 1;
		visibility: visible;
	}
}

/* ---------------------------------------------------
	main
---------------------------------------------------- */
.main {
	position: relative;
	z-index: 1;
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--blk));
	padding-top: 75px;
	position: relative;
	z-index: 10;
}

.footer .note {
	margin: 0 auto 54px;
	width: 900px;
}

@media screen and (max-width: 1000px) {
	.footer {
		padding-top: 7.5vw;
	}

	.footer .note {
		margin-bottom: 5.4vw;
		width: 90vw;
	}
}

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

	.footer .note {
		margin-bottom: 12vw;
	}
}

/*
	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));
	font-family: var(--gothic);
	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 {
		justify-content: center;
	}

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

	.footer__hotelNav li a {
		font-size: 3.733vw;
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after,
	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		display: none;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 25px 0;
	font-family: var(--gothic);
	font-size: 12px;
	text-align: center;
}

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