@charset "UTF-8";

@import url("https://use.typekit.net/xum5wcw.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
	/* font */
	--gothic: "Noto Sans JP", serif;
	--mincho: "Noto Serif JP", serif;
	--forevs: "forevs", sans-serif;

	/* font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 100-900;
  font-style: normal; */

	/* font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 200-900;
  font-style: normal; */

	/* font-family: "forevs", sans-serif;
	font-weight: 500;
	font-style: normal; */

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--yel: 216, 180, 83;
	--brn: 153, 129, 43;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	/* scroll-padding-top: 80px; */
}

@media screen and (max-width: 768px) {
	html {
		/* scroll-padding-top: 21.33333vw; */
	}
}

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

body::before {
	background: rgb(var(--blk));
	background: linear-gradient(180deg, rgba(var(--blk), 1) 30%, rgba(var(--blk), 0) 100%);
	width: 100%;
	height: 78.125vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: "";
}

.fixedBg {
	background: url(../img/bg.webp) center top no-repeat;
	background-size: cover;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

.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 {
	display: inline-block;
	text-decoration: underline;
	transition: all 0.5s ease 0s
}

a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	body::before {
		height: 258.66667vw;
	}

	.fixedBg {
		background-image: url(../img/bg_sp.webp);
		background-size: cover;
	}
}

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

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

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

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

/*
	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: 14px;
	font-weight: 300;
}

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

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

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

/* type（要らなければ消す） */
ul.type1 li::before {
	content: "●";
}

/* cnt（要らなければ消す） */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

/*
	video
------------------------------ */
.video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video iframe {
	width: 100%;
	height: 100%;
}

/*
	tel（要らなければ消す）
------------------------------ */
.tel {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.tel {
		pointer-events: all;
	}
}

/*
	linkBtn（要らなければ消す）
------------------------------ */
.linkBtn a {
	background: rgb(153, 129, 43);
	background: linear-gradient(180deg, rgba(153, 129, 43, 1) 0%, rgba(229, 223, 202, 1) 50%, rgba(153, 129, 43, 1) 100%);
	margin: 0 auto;
	width: 365px;
	height: 72px;
	line-height: 1.15;
	color: rgb(var(--blk));
	font-family: var(--forevs);
	text-decoration: none;
	border-radius: 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a::before,
.linkBtn a::after {
	position: absolute;
	transition: all 0.5s ease 0s;
	content: "";
}

.linkBtn a::before {
	background: rgb(173, 154, 85);
	background: linear-gradient(90deg, rgba(173, 154, 85, 1) 0%, rgba(229, 223, 202, 1) 50%, rgba(173, 154, 85, 1) 100%);
	width: calc(100% - 6px);
	height: 66px;
	line-height: 1;
	border-radius: 66px;
	top: 3px;
	left: 3px;
	z-index: 1;
}

.linkBtn a::after {
	background: url(../img/arrows-link.svg) center no-repeat;
	background-size: cover;
	width: 18px;
	height: 22px;
	top: 50%;
	right: 1.75em;
	transform: translateY(-50%);
	z-index: 2;
}

.linkBtn a span,
.linkBtn a small {
	text-align: center;
	position: relative;
	z-index: 2;
}

.linkBtn a span {
	font-size: 29px;
}

.linkBtn a small {
	font-size: 15px;
}

/* hover */
.linkBtn a:hover::after {
	right: 1em;
}

@media screen and (max-width: 1000px) {
	.linkBtn a small {
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		width: 100%;
		height: 19.2vw;
		border-radius: 19.2vw;
	}

	.linkBtn a::before {
		width: calc(100% - 1.6vw);
		height: calc(19.2vw - 1.6vw);
		border-radius: calc(19.2vw - 1.6vw);
		top: 0.8vw;
		left: 0.8vw;
	}

	.linkBtn a::after {
		width: 4.8vw;
		height: 5.86667vw;
	}

	.linkBtn a span {
		font-size: 7.73333vw;
	}

	.linkBtn a small {
		font-size: 3.73333vw;
	}
}

/*
	linkBtn（cover）（要らなければ消す）
------------------------------ */
.linkBtn a.cover {
	pointer-events: none;
	z-index: 1;
}

.linkBtn a.cover::before {
	background: rgba(var(--blk), 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/* comingsoon */
.linkBtn a.comingsoon::before {
	content: "Coming Soon";
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.75);
	width: 80px;
	height: 80px;
	border-radius: 100%;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 2;
}

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

@media screen and (max-width: 768px) {
	.pageTop a {
		width: 80px;
		height: 80px;
		right: 1rem;
		bottom: 1rem;
		z-index: 2;
	}

	.is-open .pageTop a {
		display: none;
	}
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
	z-index: 2;
}

.header__title {
	width: 31.39862vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	animation: fadeIn 2s ease-in forwards;
}

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

	100% {
		opacity: 1;
	}
}

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

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--blk));
	padding: 100px 0 0;
	color: rgb(var(--wht));
	font-family: var(--gothic);
}

.footer .note {
	margin: 0 auto 28px;
	padding: 0 50px;
	max-width: 1000px;
}

.footer .note.en {
	margin-bottom: 100px;
}

.footer__logo {
	margin: 0 auto 40px;
	max-width: 166px;
}

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

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

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

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

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	margin-bottom: 40px;
	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));
	text-decoration: none;
	display: inline-block;
}

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

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		margin-bottom: 12vw;
		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: 4.8vw;
	}

	.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 {
	background: rgb(var(--wht));
	padding: 25px 50px;
	color: rgba(var(--blk), 1);
	font-size: 12px;
	display: flex;
	justify-content: space-between;
}

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

	.copy span:not(:last-of-type) {
		margin-bottom: 2.4vw;
	}
}