@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@100..900&display=swap');

:root {
	/* font */
	--gothic: "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--title: "Noto Serif Display", serif;
	--zhs-mincho: "Noto Serif SC", serif;

	/* color */
	--blk: 20, 20, 20;
	--wht: 255, 255, 255;
	--gry: 240, 240, 230;
	--brn: 140, 100, 0;
}

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

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

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

/*
	表示設定
------------------------------ */
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;
	opacity: 0.6;
}

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

/*
	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: 1200px) {

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

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

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

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
/* note */
ul.note li {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 14px;
}

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

ul.note.en li {
	margin-left: 1em;
	text-indent: -0.5em;
}

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

/* type1 */
ul.type1 li {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

ul.type1 li::before {
	content: "・";
}

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

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

/*
	tel
------------------------------ */
.tel {
	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;
}

/* ----------------------------------------------------
	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 {
	background: rgb(var(--gry));
	padding-left: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 10;
}

.header__title {
	line-height: 1;
	font-family: var(--title);
	font-size: 28px;
	font-weight: 600;
}

@media screen and (max-width: 1200px) {
	.header {
		padding-left: 10vw;
		height: 5vw;
	}

	.header__title {
		font-size: 2.333vw;
	}
}

@media screen and (max-width: 768px) {
	.header {
		padding-left: 16vw;
		height: 16vw;
	}

	.header__title {
		font-size: 4.8vw;
	}
}

/* ---------------------------------------------------
	main
---------------------------------------------------- */
.main {
	overflow: hidden;
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: 100px 50px 0;
	text-align: center;
}

/* logo */
.footer__logo {
	margin: 0 auto 50px;
	max-width: 200px;
}

/* link */
.footer__link {
	margin: 0 auto 50px;
	width: 560px;
	display: flex;
	justify-content: space-between;
}

.footer__link--item {
	width: 270px;
}

.footer__link.en {
	width: 100%;
	justify-content: center;
}

.en .footer__link--item {
	margin: 0 0.5em;
	width: 400px;
}

.footer__link--item a {
	height: 45px;
	color: rgb(var(--blk));
	text-decoration: none;
	border: solid 1px rgb(var(--blk));
	display: flex;
	justify-content: center;
	align-items: center;
}

/* address */
.footer__address {
	margin-bottom: 50px;
}

.footer__address--name {
	margin-bottom: 30px;
	line-height: 1;
	font-size: 26px;
}

.footer__address--detail {
	font-size: 20px;
}

.footer__address--detail a {
	color: rgb(var(--blk));
	font-size: 18px;
	text-decoration: none;
}

/* sns */
.footer__sns {
	margin-bottom: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__sns--item:not(:last-of-type) {
	margin-right: 40px;
}

.footer__sns--item.instagram {
	width: 48px;
}

.footer__sns--item.facebook {
	width: 46px;
}

.footer__sns--item a {
	display: block;
}

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

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

@media screen and (max-width: 1200px) {
	.footer {
		padding: 8.333vw 4.167vw 0;
	}

	/* logo */
	.footer__logo {
		margin-bottom: 4.167vw;
		max-width: 16.667vw;
	}

	/* link */
	.footer__link {
		margin-bottom: 4.167vw;
		width: 46.667vw;
	}

	.footer__link--item {
		width: 22.5vw;
	}

	.en .footer__link--item {
		width: 33.333vw;
	}

	.footer__link--item a {
		height: 3.75vw;
		font-size: 1.5vw;
	}

	/* address */
	.footer__address {
		margin-bottom: 4.167vw;
	}

	.footer__address--name {
		margin-bottom: 2.5vw;
		font-size: 2.167vw;
	}

	.footer__address--detail {
		font-size: 1.667vw;
	}

	/* sns */
	.footer__sns {
		margin-bottom: 4.167vw;
	}

	.footer__sns--item:not(:last-of-type) {
		margin-right: 3.333vw;
	}

	.footer__sns--item.instagram {
		width: 4vw;
	}

	.footer__sns--item.facebook {
		width: 3.833vw;
	}

	/* note */
	.footer .note {
		margin-bottom: 8.333vw;
	}
}

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

	/* logo */
	.footer__logo {
		margin: 0 auto 8vw;
		max-width: 46.667vw;
	}

	/* link */
	.footer__link {
		margin-bottom: 8vw;
		width: 70%;
		display: block;
	}

	.footer__link--item {
		width: 100%;
	}

	.en .footer__link--item {
		margin: 0;
		padding: 0 1.6vw;
		width: 100%;
	}

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

	.footer__link--item a {
		height: 13.333vw;
		font-size: 4.267vw;
	}

	/* address */
	.footer__address {
		margin-bottom: 8vw;
	}

	.footer__address--name {
		margin-bottom: 4vw;
		font-size: 4.8vw;
	}

	.footer__address--detail,
	.footer__address--detail a {
		font-size: 4.267vw;
	}

	/* sns */
	.footer__sns {
		margin-bottom: 8vw;
	}

	.footer__sns--item:not(:last-of-type) {
		margin-right: 10.667vw;
	}

	.footer__sns--item.instagram {
		width: 11.733vw;
	}

	.footer__sns--item.facebook {
		width: 11.2vw;
	}

	/* note */
	.footer .note {
		margin-bottom: 13.333vw;
	}
}

/*
	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 {
		justify-content: center;
	}

	.footer__hotelNav li:not(:last-of-type) {
		margin-bottom: 4vw;
	}

	.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-size: 12px;
	text-align: center;
}

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

/* ----------------------------------------------------
	nav
---------------------------------------------------- */
/*
	toggle
------------------------------ */
.toggle {
	background: rgb(var(--gry));
	width: 44px;
	height: 44px;
	border: solid 1px rgb(var(--blk));
	position: fixed;
	top: 8px;
	left: 38px;
	z-index: 100;
}

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

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

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

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

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

/* 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) {
	opacity: 0;
	visibility: hidden;
}

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

.thankyou .toggle__inner--item {
	background: rgb(var(--wht));
}

@media screen and (max-width: 1200px) {
	.toggle {
		width: 3.667vw;
		height: 3.667vw;
		top: 0.667vw;
		left: 3.167vw;
	}

	.toggle__inner--item {
		width: 2.333vw;
		height: 0.25vw;
		border-radius: 0.25vw;
	}

	.toggle__inner--item:nth-child(1) {
		top: 1vw;
	}

	.toggle__inner--item:nth-child(3) {
		bottom: 1vw;
	}
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 9.6vw;
		height: 9.6vw;
		top: 3.2vw;
		right: 3.2vw;
	}

	.toggle__inner--item {
		width: 65%;
		height: 2px;
		border-radius: 0.8vw;
	}

	.toggle__inner--item:nth-child(1) {
		top: 2.4vw;
	}

	.toggle__inner--item:nth-child(3) {
		bottom: 2.4vw;
	}
}

/*
	gnav
------------------------------ */
.gnav {
	background: rgb(var(--gry));
	padding: calc(120px - 24px) 38px 0;
	width: 500px;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	transform: translateX(-100%);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gnav__list--item a {
	padding: 1em 0;
	line-height: 1;
	color: rgb(var(--blk));
	font-family: var(--title);
	font-size: 24px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: solid 1px rgb(var(--blk));
	display: block;
	transition: opacity 0.6s ease;
}

.gnav__list--item a:hover {
	opacity: 0.6;
}

.gnav__list--item a .jp {
	margin-top: 10px;
	font-family: var(--mincho);
	font-size: 18px;
	font-size: 16px;
	display: block;
}

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

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

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

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

@media screen and (max-width: 1200px) {
	.gnav {
		padding: calc(10vw - 2vw) 3.167vw 0;
		width: 41.667vw;
	}

	.gnav__list--item a {
		font-size: 2vw;
	}

	.gnav__list--item a .jp {
		margin-top: 0.833vw;
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		padding: calc(20vw - 4.8vw) 3.2vw 0;
		width: 100%;
	}

	.gnav__list--item a {
		font-size: 4.8vw;
	}

	.gnav__list--item a .jp {
		margin-top: 2.667vw;
		font-size: 4vw;
		display: block;
	}
}

/* --------------------------------------------------
	lang
-------------------------------------------------- */
.lang {
	font-family: var(--mincho);
	font-weight: 500;
	position: fixed;
	top: 18px;
	right: 38px;
	z-index: 90;
	cursor: pointer;
}

.lang__title--inner {
	padding-right: 24px;
	display: inline-block;
	position: relative;
}

.lang__title--inner::before {
	width: 8px;
	height: 8px;
	border-top: solid 1px rgb(var(--blk));
	border-right: solid 1px rgb(var(--blk));
	position: absolute;
	top: 50%;
	right: 6px;
	transform: rotate(135deg) translateX(-50%);
	transition: all 0.5s ease 0s;
	content: "";
}

.active .lang__title--inner::before {
	transform: rotate(675deg);
}

.lang__title {
	font-size: 16px;
	border-bottom: solid 1px rgb(var(--blk));
}

.lang__list {
	background: rgb(var(--gry));
	padding: 10px;
	font-size: 14px;
}

.lang__list--item .langSelect {
	color: rgb(var(--blk));
	font-family: var(--gothic);
	text-decoration: none;
}

@media screen and (max-width: 1200px) {
	.lang {
		top: 1.333vw;
		right: 3.167vw;
	}

	.lang__title--inner {
		padding-right: 2vw;
	}

	.lang__title--inner::before {
		width: 0.667vw;
		height: 0.667vw;
		right: 0.5vw;
	}

	.lang__title {
		font-size: 1.333vw;
	}

	.lang__list {
		padding: 0.833vw;
		font-size: 1.167vw;
	}
}

@media screen and (max-width: 768px) {
	.lang {
		top: 6.4vw;
		top: 4.267vw;
		right: 3.2vw;
	}

	.lang__title--inner {
		padding-right: 4vw;
		letter-spacing: -0.005em;
	}

	.lang__title--inner::before {
		width: 1.6vw;
		height: 1.6vw;
		right: 0.8vw;
	}

	.lang__title {
		font-size: 4vw;
	}

	.lang__list {
		padding: 1.6vw;
		font-size: 3.2vw;
	}
}