@charset "UTF-8";

: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;

	/* color */
	--blk: 35, 24, 21;
	--wht: 255, 255, 255;
	--red: 218, 68, 54;
	--gre: 51, 118, 51;
	--beg: 210, 196, 184;
	--gnav: 210, 196, 184;
}

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

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 0;
	}
}

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

a {
	display: inline-block;
	text-decoration: underline;
	transition: all 0.5s ease 0s
}

a:hover {
	text-decoration: none;
}

.bg {
	background: url(../img/bgBody.webp) center 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;
}

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

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	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: 1000px) {

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

@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: "●";
}

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

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

/*
	linkBtn
------------------------------ */
.linkBtn a {
	height: 70px;
	color: rgb(var(--wht));
	text-decoration: none;
	border: solid 2px;
	border-radius: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

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

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--red), 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-top: 8.46154vw;
	position: relative;
}

.header__title,
.header__bg {
	opacity: 0;
	animation: fadeIn 2.5s ease-in forwards;
}

.header__title {
	width: 40.43177%;
	position: absolute;
	top: 8.46154vw;
	left: 8.35953vw;
	animation-delay: 1s;
}

.header__bg {
	animation-delay: 0s;
}

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

	100% {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.header {
		padding-top: 32.62352vw;
	}

	.header__title {
		width: 68.32635%;
		top: 21.06667vw;
		left: 9.7772vw;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	padding: 100px 50px 0;
}

.footer__sns {
	margin: 0 auto 50px;
	max-width: 940px;
	height: 160px;
	border: solid 1px rgb(var(--gre));
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.footer__sns::before,
.footer__sns::after {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border: solid 1px rgb(var(--red));
	position: absolute;
	z-index: 1;
	content: "";
}

.footer__sns::before {
	border-bottom: none;
	border-left: none;
	top: 8px;
	right: 8px;
}

.footer__sns::after {
	border-top: none;
	border-right: none;
	bottom: 8px;
	left: 8px;
}

.footer__sns--title {
	line-height: 1.5;
	font-size: 26px;
	font-weight: 600;
}

.footer__sns--title span {
	color: rgb(var(--red));
}

.footer__sns--details {
	padding-left: 2em;
}

.footer__sns--list {
	display: flex;
	position: relative;
	z-index: 2;
}

.footer__sns--list li {
	margin: 0 1em;
}

.footer__sns--list li svg {
	width: 54px;
	height: auto;
	vertical-align: bottom;
}

.footer__sns--list .facebook svg {
	fill: rgb(var(--blk));
}

.footer__sns--list .facebook svg {
	fill: rgb(var(--blk));
	stroke-width: 0px;
}

.footer__sns--list .x svg {
	fill: rgb(var(--blk));
	stroke-width: 0px;
}

.footer__sns--list .line .cls-1 {
	stroke-width: 0px;
}

.footer__sns--list .line .cls-1,
.footer__sns--list .line .cls-2 {
	fill: #00a65a;
}

.footer__sns--list .line .cls-2 {
	fill: rgb(var(--wht));
}

.footer .note {
	margin: 0 auto 56px;
	max-width: 1140px;
}

@media screen and (max-width: 1000px) {
	.footer {
		padding: 10vw 5vw 0;
	}

	.footer__sns {
		margin-bottom: 5vw;
		height: 16vw;
	}

	.footer__sns::before,
	.footer__sns::after {
		width: calc(100% - 4px);
		height: calc(100% - 4px);
	}

	.footer__sns::before {
		top: 4px;
		right: 4px;
	}

	.footer__sns::after {
		bottom: 4px;
		left: 4px;
	}

	.footer__sns--title {
		font-size: 2.6vw;
	}

	.footer__sns--list li {
		margin: 0 0.75em;
	}

	.footer__sns--list li svg {
		width: 5.4vw;
	}

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

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

	.footer__sns {
		margin-bottom: 6.93333vw;
		padding: 6.4vw;
		height: auto;
		display: block;
	}

	.footer__sns--title {
		margin-bottom: 1em;
		font-size: 4.26667vw;
		text-align: center;
	}

	.footer__sns--details {
		padding-left: 0;
	}

	.footer__sns--list {
		justify-content: center;
	}

	.footer__sns--list li svg {
		width: 10.66667vw;
	}

	.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 {
	margin: 0 auto;
	max-width: 1000px;
	line-height: 1;
	color: rgb(var(--blk));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	width: 38%;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:nth-child(3n) {
	width: 24%;
}

.footer__hotelNav li:last-child {
	margin-top: 2rem;
	width: 100%;
	justify-content: center;
}

.footer__hotelNav li:last-child::before,
.footer__hotelNav li:last-child::after {
	content: "|";
}

.footer__hotelNav li a {
	color: rgb(var(--blk));
	display: inline-flex;
}

.footer__hotelNav li a:hover {
	opacity: 1;
}

.footer__hotelNav li a::before {
	content: "＞";
}

.footer__hotelNav li:last-child a {
	padding: 0 1em;
	text-decoration: none;
}

.footer__hotelNav li:last-child a:hover {
	text-decoration: underline;
}

.footer__hotelNav li:last-child a::before {
	content: "";
}

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

@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: 1em;
		width: 100%;
		font-size: 3.73333vw;
		text-indent: 0;
		display: flex;
		position: relative;
	}

	.footer__hotelNav li:nth-child(3n) {
		width: 100%;
	}

	.footer__hotelNav li:last-child {
		margin-top: 2rem;
	}

	.footer__hotelNav li a {
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before {
		left: 0;
	}

	.footer__hotelNav li a::after {
		right: 0;
	}
}

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

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

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 64px;
		height: 64px;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}

	.toggle__inner--item {
		background: rgb(var(--blk));
		width: 60%;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

	.toggle__inner--item:nth-child(1) {
		top: 20px;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(2) {
		top: 30px;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(3) {
		background: none;
		width: 100%;
		height: auto;
		font-size: 11px;
		font-weight: 600;
		text-align: center;
		display: block;
		bottom: 10px;
		left: 0;
		transform: translateX(0);
	}

	/* is-open */
	.is-open .toggle__inner--item {
		transform-origin: 0 0;
	}

	.is-open .toggle__inner--item:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
	}

	.is-open .toggle__inner--item:nth-child(2) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}

	.is-open .toggle__inner--item:nth-child(3) {
		opacity: 0;
	}
}

/*
	gnav
------------------------------ */
.gnav {
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 3;
	transition: background-color 0.3s ease;
}

.gnav.fixed {
	background: rgba(var(--wht), 0.75);
}

.gnav__list {
	display: flex;
	justify-content: center;
}

.gnav__list--item {
	margin: 0 2em;
}

.gnav__list--link {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__list--link svg {
	width: auto;
	fill: #aa8f84;
	stroke: #aa8f84;
	stroke-miterlimit: 10;
	stroke-width: 1.42px;
}

.gnav__list--link:hover svg,
.allHotels .hotel .gnav__list--link svg {
	fill: rgb(var(--red));
	stroke: rgb(var(--red));
}

.gnav__list--item.nav1 a svg {
	height: 23px;
}

.gnav__list--item.nav2 a svg {
	height: 29px;
}

.gnav__list--item.nav3 a svg {
	height: 22px;
}

.gnav__list--link span {
	display: none;
}

.hotel__nav {
	display: none;
}

@media screen and (max-width: 768px) {
	.gnav {
		background: rgba(var(--gnav), 1);
		padding: 0;
		width: 100%;
		height: 100%;
		color: rgb(var(--blk));
		font-weight: 600;
		overflow: auto;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		transform: translateX(-100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav.fixed {
		background: rgba(var(--gnav), 1);
	}

	.gnav__list {
		padding: 72px 8vw 0;
		display: block;
	}

	.gnav__list--item {
		margin: 0 0 0.5em;
		font-size: 5.86667vw;
		position: relative;
	}

	.gnav__list--item.nav2 {
		margin-bottom: 1em;
		padding-bottom: 0.5em;
	}

	.gnav__list--item.nav2::before,
	.gnav__list--item.nav2::after {
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		content: "";
	}

	.gnav__list--item.nav2::before {
		background: rgb(var(--red));
		bottom: 4px;
	}

	.gnav__list--item.nav2::after {
		background: rgb(var(--gre));
		bottom: 0;
	}

	.gnav__list--item.nav3 .gnav__list--link {
		margin-bottom: 0.5em;
	}

	.gnav__list--link {
		color: rgb(var(--blk));
		text-decoration: none;
		display: block;
		transition: opacity 0.6s ease;
	}

	.gnav__list--link svg {
		display: none;
	}

	.gnav__list--link span {
		display: block;
	}

	.overlay {
		background: rgba(var(--blk), 0.5);
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
		content: "";
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .gnav {
		z-index: 999;
		transform: translateX(0);
	}

	.is-open .overlay {
		opacity: 1;
		visibility: visible;
		cursor: pointer;
	}

	.hotel__nav {
		font-size: 4.26667vw;
		display: block;
	}

	.hotel__nav li:not(:last-of-type) {
		margin-bottom: 0.5em;
	}

	.hotel__nav li a {
		color: rgb(var(--blk));
		text-decoration: none;
		display: flex;
	}

	.hotel__nav a::before {
		content: "-";
	}
}