@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');

:root {
	/* font */
	--gothic: "Noto Sans JP", serif;
	--mincho: "Noto Serif JP", serif;
	--stix: "STIX Two Text", serif;

	/*
	.noto-sans-jp-<uniquifier> {
		font-family: "Noto Sans JP", serif;
		font-optical-sizing: auto;
		font-weight: <weight>;
		font-style: normal;
	}

	.noto-serif-jp-<uniquifier> {
		font-family: "Noto Serif JP", serif;
		font-optical-sizing: auto;
		font-weight: <weight>;
		font-style: normal;
	}

	.stix-two-text-<uniquifier> {
		font-family: "STIX Two Text", serif;
		font-optical-sizing: auto;
		font-weight: <weight>;
		font-style: normal;
	}
	*/

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--brn: 178, 124, 27;
	--pin: 237, 105, 140;
	--gre: 83, 173, 68;
	--beg: 247, 242, 232;
}

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

@media screen and (max-width: 1000px) {
	html {
		scroll-padding-top: 8vw;
	}
}

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

/*
	表示設定
------------------------------ */
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(--gothic);
	font-feature-settings: "palt";
	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-family: var(--gothic);
	font-size: 11px;
	font-weight: 400;
}

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) ")";
}

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

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

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: url(../img/pagetop.svg) center no-repeat;
	background-size: cover;
	width: 73px;
	height: 91px;
	text-indent: -9999px;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 10;
}

.pageTop a:hover {
	opacity: 0.75;
}

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

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

.header,
.main,
.footer {
	position: relative;
	z-index: 1;
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	padding-top: 80px;
}

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

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

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

	.toggle {
		width: 40px;
		height: 24px;
		display: block;
		position: fixed;
		top: 1em;
		right: 1em;
		z-index: 1000;
	}

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

	.toggle__inner--item {
		background: linear-gradient(90deg, #99812b 25%, #e5dfca 50%, #99812b 75%);
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.25s;
	}

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

	.toggle__inner--item:nth-child(2) {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.toggle__inner--item:nth-child(3) {
		bottom: 0;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle__inner--item {
		background: rgb(var(--blk));
		transform-origin: 0 0;
	}

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

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

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

/*
	gnav
------------------------------ */
.gnav {
	background: rgb(242, 150, 174);
	background: linear-gradient(90deg, rgba(242, 150, 174, 1) 0%, rgba(241, 173, 174, 1) 29%, rgba(171, 205, 142, 1) 74%, rgba(135, 198, 124, 1) 100%);
	padding-right: 100px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__logo {
	position: fixed;
	top: 10px;
	left: 80px;
}

.gnav__logo img {
	width: auto;
	height: 60px;
}

.gnav__list {
	margin: 0 auto;
	/* height: 53px; */
	height: 80px;
	display: flex;
	justify-content: flex-end;
}

.gnav__list--item {
	height: 100%;
	position: relative;
}

.gnav__list--link {
	padding: 0 11px;
	width: 100%;
	height: 100%;
	line-height: 1;
	color: rgb(var(--blk));
	font-family: var(--stix);
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

span.gnav__list--link {
	background: url(../img/arrows.svg) center right no-repeat;
	background-size: 10px auto;
	padding-right: 17px;
	/* height: 53px; */
	height: 80px;
	cursor: pointer;
}

.gnav__list--wrapper .hotel-nav {
	background: rgb(var(--wht));
	width: 200px;
	font-family: var(--mincho);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	/* top: 53px; */
	top: 80px;
	left: 0;
	transition: all 0.3s ease 0s
}

.gnav__list--wrapper:hover .hotel-nav {
	opacity: 1;
	visibility: visible;
}

.gnav .hotel-list__item:not(:last-of-type) {
	border-bottom: solid 1px #ccc;
}

.gnav .hotel-list__item--link {
	height: 60px;
	line-height: 1.5;
	color: rgb(var(--blk));
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	letter-spacing: -0.005em;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1000px) {
	.gnav {
		padding-right: 10vw;
	}

	.gnav__logo {
		left: 10vw;
	}

	.gnav__list--link {
		padding: 0 1.1vw;
		font-size: 1.8vw;
	}

	span.gnav__list--link {
		background-size: 1vw auto;
		padding-right: 1.7vw;
	}

	.gnav__list--wrapper .hotel-nav {
		width: 20vw;
	}

	.gnav .hotel-list__item--link {
		height: 6vw;
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		/* background: rgb(var(--brn)); */
		background: #f7f2e8;
		padding: 0;
		width: 100%;
		height: 100vh;
		overflow: auto;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__logo {
		display: none;
	}

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

	.gnav__list {
		padding: 13.86667vw 8vw 0;
		height: auto;
		display: block;
	}

	.gnav__list--item {
		background: none;
		width: 100%;
		position: relative;
	}

	.gnav__list--link,
	span.gnav__list--link {
		padding: 0.5em 0;
		width: 100%;
		height: auto;
		font-size: 5.33333vw;
		display: block;
	}

	span.gnav__list--link {
		background: url(../img/arrows.svg) center right 24vw no-repeat;
		background-size: 2.66667vw auto;
		padding-right: 0;
		height: auto;
	}

	.gnav__list--wrapper .hotel-nav {
		background: none;
		padding-left: 1em;
		width: auto;
		opacity: 1;
		visibility: visible;
		position: relative;
		top: auto;
		left: auto;
	}

	.gnav .hotel-list__item:not(:last-of-type) {
		border-bottom: none;
	}

	.gnav .hotel-list__item--link {
		padding: 0.5em 0;
		height: auto;
		font-size: 4.26667vw;
		text-align: left;
		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;
	}

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

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

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

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

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
}

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

@media screen and (max-width: 1000px) {
	.footer .note {
		margin-bottom: 3vw;
		padding: 0 5vw;
		max-width: 100vw;
	}
}

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

/*
	slideshow
------------------------------ */
.slideshow {
	margin-bottom: 40px;
}

.slideshow__inner {
	display: flex;
	overflow: hidden;
}

.slideshow__list {
	display: flex;
	animation: scroll 90s linear infinite;
}

.slideshow__list--item img {
	width: auto;
	height: 200px;
}

@keyframes scroll {
	0% {
		translate: 0;
	}

	100% {
		translate: calc(-100%);
	}
}

.slideshow__copy {
	margin-top: 1em;
	font-size: 10px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	.slideshow {
		margin-bottom: 4vw;
	}

	.slideshow__list--item img {
		height: 20vw;
	}
}

@media screen and (max-width: 768px) {
	.slideshow {
		margin-bottom: 8vw;
	}

	.slideshow__list--item img {
		height: 37.33333vw;
	}
}

/*
	sns
------------------------------ */
.footer__sns {
	background: #e6e6e6;
	margin-bottom: 45px;
	padding: 60px 0;
}

.footer__sns--title {
	margin: 0 auto 10px;
	line-height: 1.5;
	font-family: var(--stix);
	font-size: 37px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.05em;
}

.footer__sns--title small {
	line-height: 1;
	display: block;
}

.footer__sns--title small {
	font-size: 19px;
}

.footer__sns--lead {
	margin-bottom: 20px;
	font-size: 18px;
	text-align: center;
}

.footer__sns--nav {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__sns--nav li {
	margin: 0 2em;
	width: 59px;
}

.footer__sns--nav li.twitter {
	width: 52px;
}

.footer__sns--nav li a svg {
	width: 100%;
	height: auto;
}

.footer__sns--nav li.twitter a svg,
.footer__sns--nav li.instagram a svg {
	fill: rgb(var(--blk));
	stroke-width: 0px;
}

.footer__sns--nav li.line a .cls-1 {
	fill: rgb(var(--blk));
}

.footer__sns--nav li.line a .cls-1,
.footer__sns--nav li.line a .cls-2 {
	stroke-width: 0px;
}

.footer__sns--nav li.facebook a .cls-1,
.footer__sns--nav li.line a .cls-2 {
	fill: rgb(var(--wht));
}

@media screen and (max-width: 1000px) {
	.footer__sns {
		margin-bottom: 4.5vw;
		padding: 6vw 0;
	}

	.footer__sns--title small {
		font-size: 1.9vw;
	}

	.footer__sns--title .ja {
		font-size: 2.5vw;
	}

	.footer__sns--lead {
		margin-bottom: 2vw;
		font-size: 1.8vw;
	}

	.footer__sns--nav li {
		width: 5.9vw;
	}

	.footer__sns--nav li.twitter {
		width: 5.2vw;
	}
}

@media screen and (max-width: 768px) {
	.footer__sns {
		margin-bottom: 8vw;
		padding: 10.66667vw 0;
	}

	.footer__sns--title {
		margin: 0 auto 2.4vw;
		font-size: 8.53333vw;
	}

	.footer__sns--title small {
		font-size: 3.73333vw;
	}

	.footer__sns--title .ja {
		font-size: 5.33333vw;
	}

	.footer__sns--lead {
		margin-bottom: 4vw;
		font-size: 4.26667vw;
	}

	.footer__sns--nav li {
		margin: 0 1em;
		width: 12vw;
	}

	.footer__sns--nav li.twitter {
		width: 11.2vw;
	}

	.footer__sns--nav li img {
		width: 100%;
		height: auto;
	}
}

/*
	hotel-list
------------------------------ */
.footer .hotel-list {
	margin: 0 auto 60px;
	width: 980px;
	display: flex;
	flex-wrap: wrap;
}

.footer .hotel-list__item {
	margin-bottom: 10px;
	flex: 0 0 390px;
}

.footer .hotel-list__item:nth-child(3n) {
	flex: 1 1 auto;
}

.footer .hotel-list__item--link {
	color: rgb(var(--blk));
	font-size: 18px;
}

.footer .hotel-list__item--link::before {
	content: "＞";
}

@media screen and (max-width: 1000px) {
	.footer .hotel-list {
		margin-bottom: 6vw;
		width: 98vw;
	}

	.footer .hotel-list__item {
		margin-bottom: 1vw;
		flex: 0 0 39vw;
	}

	.footer .hotel-list__item--link {
		font-size: 1.8vw;
	}
}

@media screen and (max-width: 768px) {
	.footer .hotel-list {
		margin-bottom: 8vw;
		padding: 0 6.4vw;
		width: 100%;
		display: block;
	}

	.footer .hotel-list__item {
		margin-bottom: 0;
	}

	.footer .hotel-list__item--link {
		font-size: 3.73333vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	margin-bottom: 45px;
	line-height: 1;
	color: rgb(var(--blk));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	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 {
		margin-bottom: 8vw;
		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 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;
	color: #666;
	font-size: 12px;
	text-align: center;
	border-top: solid 1px #b3b3b3;
}

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

/* ---------------------------------------------------
	star
---------------------------------------------------- */
/* .star {
	background: url(../img/mouse.svg) center no-repeat;
	background-size: cover;
	width: 84px;
	height: 50px;
	opacity: 0.75;
	position: fixed;
	top: -15px;
	left: -15px;
	z-index: 100;
	transform-origin: center;
	animation: star 2.5s ease-out 0s forwards;
	pointer-events: none;
}

@keyframes star {
	0% {
		transform: translateY(0) rotate(-5deg);
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		transform: translateY(50px) rotate(5deg);
		opacity: 0;
	}
} */