@charset "UTF-8";

:root {
	/* font */
	--gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	--greycliff: "greycliff-cf", sans-serif;
	/* font-family: "greycliff-cf", sans-serif;
	font-weight: 400;
	font-style: normal; */

	--the-seasons: "the-seasons", sans-serif;
	/* font-family: "the-seasons", sans-serif;
	font-weight: 400;
	font-style: normal;

	font-family: "the-seasons", sans-serif;
	font-weight: 700;
	font-style: normal; */

	/* color */
	--blk: 51, 51, 51;
	--wht: 255, 255, 255;
	--aqu: 234, 245, 250;
	--blu: 156, 215, 230;
	--sky: 112, 197, 219;
	--nvy: 74, 95, 130;
	--orn: 237, 112, 70;
	--yel: 242, 230, 157;
}

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

/*
	表示設定
------------------------------ */
body {
	/* background: rgb(var(--aqu)); */
	background: url(../img/bg.webp) no-repeat;
	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 {
	display: inline-block;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	body {
		background: url(../img/bg.webp) repeat-y;
		background-size: 100%;
	}
}

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

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

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

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

@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: 1150px) {
	ul.note li {
		font-size: 1.217vw;
	}
}

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

/*
	tel
------------------------------ */
.tel {
	text-decoration: none;
	pointer-events: none;
}

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

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

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

/*
	textLink
------------------------------ */
.textLink {
	line-height: 1;
	color: rgb(var(--blk));
	font-size: 17px;
}

.textLink::before {
	content: "＞";
}

@media screen and (max-width: 1150px) {
	.textLink {
		font-size: 1.478vw;
	}
}

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

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--orn), 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;
}

/* ----------------------------------------------------
	screen reader only
---------------------------------------------------- */
.sr-only {
	clip: rect(0 0 0 0);
	margin: -1px;
	padding: 0;
	width: 1px;
	height: 1px;
	white-space: nowrap;
	border: 0;
	overflow: hidden;
	position: absolute;
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
/*
	共通初期設定
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	上から
------------------------------ */
.fadeTop {
	transform: translateY(-50px);
}

.fadeTop.fadeIn {
	transform: translateY(0);
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	height: 48.696vw;
	position: relative;
}

.header__title {
	width: 43.931vw;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: fadeInAnime 3s forwards;
}

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.header {
		background-image: url(../img/headerBg_sp.webp);
		height: 68.528vw;
	}

	.header__title {
		width: 55.318vw;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: #8b9643;
	color: rgb(var(--wht));
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	padding-bottom: 2em;
	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;
	font-weight: 300;
}

.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 {
		line-height: 1.5;
		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:first-of-type::before,
	.footer__hotelNav li::after,
	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		display: none;
	}
}

/*
	copy
------------------------------ */
.copy {
	background: rgb(var(--wht));
	padding: 25px 0;
	color: rgb(var(--blk));
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 1150px) {
	.copy {
		padding: 2.174vw 0;
		font-size: 1.043vw;
	}
}

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