@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "a-otf-ud-reimin-pr6n", sans-serif;

	/* color */
	--blk: 0, 0, 0;
	--gry: 179, 179, 179;
	--wht: 255, 255, 255;
	--orn: 204, 124, 94;
	--brn: 173, 95, 68;
	--yel: 163, 149, 64;
	--blu: 139, 179, 209;
	--sky: 114, 156, 183;
	--grn: 112, 153, 116;
	--beg: 249, 243, 225;
	--btnColor: 115, 99, 87;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--wht));
	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) {}

/*
	font
------------------------------ */
body {
	font-family: var(--mincho);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

body,
th,
td {
	color: rgb(var(--blk));
	font-size: 16px;
	font-weight: normal;
}

@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;
}

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(var(--btnColor)) url(../img/arrow04.svg) right 20px center no-repeat;
	background-size: 28px auto;
	padding-left: 25px;
	width: 220px;
	height: 50px;
	color: rgb(var(--wht));
	font-size: 18px;
	text-decoration: none;
	border-radius: 50px;
	display: flex;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		background-position: right 4.8vw center;
		background-size: 7.467vw auto;
		padding-left: 6.933vw;
		width: 100%;
		height: 13.333vw;
		font-size: 4.8vw;
		border-radius: 13.333vw;
	}
}

/*
	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.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;
}

/* ----------------------------------------------------
	fadeIn（要らなければ消す）
---------------------------------------------------- */
/*
	共通初期設定
	透明度が変化
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	下から
------------------------------ */
.fadeBottom {
	transform: translateY(100px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/*
	右から
------------------------------ */
.fadeRight {
	transform: translateX(100px);
}

.fadeRight.fadeIn {
	transform: translateX(0);
}

/*
	左から
------------------------------ */
.fadeLeft {
	transform: translateX(-100px);
}

.fadeLeft.fadeIn {
	transform: translateX(0);
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	padding: 6.082vw 5.868vw;
	position: relative;
}

.header__title {
	width: 10.352vw;
	position: absolute;
	top: 4.453vw;
	right: 9.598vw;
	z-index: 3;
}

.header__title--en {
	width: 2.144vw;
	position: absolute;
	top: 6.129vw;
	right: 4.241vw;
	z-index: 1;
}

.header__logo {
	width: 41.486vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
}

.header__slide {
	position: relative;
	z-index: 2;
}

.header__slide .slick-dots {
	line-height: 1;
	display: flex;
	position: absolute;
	right: 1.364vw;
	bottom: 0.875vw;
}

.header__slide .slick-dots li:not(:first-of-type) {
	margin-left: 1.364vw;
}

.header__slide .slick-dots button {
	background: rgb(var(--gry));
	width: 1.032vw;
	height: 1.032vw;
	text-indent: -9999px;
	outline: none;
	border: none;
	border-radius: 1.032vw;
	cursor: pointer;
}

.header__slide .slick-dots .slick-active button {
	background: rgb(var(--wht));
}

@media screen and (max-width: 768px) {
	.header {
		margin-bottom: 3.467vw;
		padding: 0;
		/*height: 120.489vw;*/
		height: 100.489vw;
	}

	.header__title {/*
		width: 18.503vw;
		position: absolute;
		top: 67.69vw;
		right: 5.713vw;
		z-index: 3;*/
		display: none
	}

	.header__title--en {/*
		width: 4.216vw;
		top: 67.69vw;
		right: 0.324vw;
		z-index: 3;*/
		display: none
	}

	.header__logo {
		width: 100%;
		position: static;
		top: 0;
		left: 0;
		z-index: 4;
	}

	.header__slide .slick-dots {
		right: auto;
		bottom: 1.849vw;
		left: 2.887vw;
	}

	.header__slide .slick-dots li:not(:first-of-type) {
		margin-left: 0;
	}

	.header__slide .slick-dots li:not(:last-of-type) {
		margin-right: 2.887vw;
	}

	.header__slide .slick-dots button {
		width: 2.269vw;
		height: 2.269vw;
		border-radius: 2.269vw;
	}

	.header__slide .slick-dots .slick-active button {
		background: rgb(var(--wht));
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: 50px 50px 0;
}

.footer .note {
	margin: 0 auto 50px;
	max-width: 1000px;
}

.footer .note li {
	font-family: var(--gothic);
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 8vw 6.4vw 0;
	}

	.footer .note {
		margin-bottom: 8vw;
	}

	.footer .note.en {
		margin-bottom: 8.53333vw;
	}

	.footer__logo {
		margin-bottom: 8.53333vw;
		max-width: 38.53504vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	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 {
		margin-bottom: 1rem;
		justify-content: center;
	}

	.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: 25px 0;
	font-family: var(--gothic);
	font-weight: 500;
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.copy {
		padding: 4.8vw 0;
		font-size: 2.93333vw;
	}
}