/* ---------------------------------------------------
  :root カスタムプロパティ
--------------------------------------------------- */
:root {
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gry: 148, 148, 149;
	--yel: 230, 230, 204;
	--beg: 224, 224, 219;
	--baseColor: 37, 53, 81;
	--footer: 238, 239, 234;
	--mov: 42, 40, 41;


	--pageTop-right: 1rem;
	--pageTop-bottom: 1rem;
}

/* ---------------------------------------------------
  HTML / BODY 基本
--------------------------------------------------- */
html {
	/* 1300pxベース */
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: min(9.2rem, 7.077vw);
}

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

body {
	background: rgb(var(--beg));
	padding-top: min(9.2rem, 7.077vw);
	color: rgb(var(--wht));
	font-family: var(--gothic);
	line-height: 1.8;
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

body.en {
	font-family: "Pontano Sans", sans-serif;
}

.en-font {
	font-family: "Tenor Sans", sans-serif;
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	body {
		padding-top: 18.133vw;
	}
}

:where(input, select, textarea, button, label) {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

:where(a) {
	color: inherit;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

:where(a:hover) {
	text-decoration: none;
	opacity: 0.6;
}

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/* ---------------------------------------------------
  汎用リスト
--------------------------------------------------- */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

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

/* 注記リスト（改良版） */
ul.note li {
	font-size: min(1.3rem, 1vw);
}

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

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

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

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

/* ---------------------------------------------------
  iframe動画ラッパー
--------------------------------------------------- */
.video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video iframe {
	width: 100%;
	height: 100%;
}

/* ---------------------------------------------------
	リンク
--------------------------------------------------- */
.link-text::before {
	content: "＞";
}

/*
	ボタン
------------------------------ */
.link-button {
	background-color: rgb(var(--wht));
	width: min(25.2rem, 19.385vw);
	height: min(8rem, 6.154vw);
	color: rgb(var(--blk));
	font-size: min(1.6rem, 1.231vw);
	font-weight: bold;
	text-decoration: none;
	border-radius: min(8rem, 6.154vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.link-button.event-end {
	pointer-events: none;
}

.link-button.event-end:hover {
	opacity: 1;
}

.link-button.event-end::before {
	background-color: rgb(var(--gry));
	width: 100%;
	height: 100%;
	color: rgb(var(--wht));
	border-radius: min(8rem, 6.154vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: "終了いたしました";
}

.en .link-button.event-end::before {
	content: "Already Ended";
}

@media screen and (max-width: 768px) {
	.link-button {
		width: 41.067vw;
		height: 13.067vw;
		font-size: 3.467vw;
		border-radius: 13.067vw;
	}

	.link-button.event-end::before {
		border-radius: 13.067vw;
	}
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--baseColor), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: var(--pageTop-right);
	bottom: var(--pageTop-bottom);
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ---------------------------------------------------
  slick
--------------------------------------------------- */
.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-dots {
	display: flex;
	justify-content: center;
}

.slick-dots li {
	margin: 0;
	width: auto;
	height: auto;
}

.slick-dots li button {
	background-color: rgba(var(--baseColor), 0.32);
	width: min(1.2rem, 0.923vw);
	height: min(1.2rem, 0.923vw);
	border-radius: min(1.2rem, 0.923vw);
}

.slick-dots li {
	margin: 0;
	width: auto;
	height: auto;
}

.slick-dots li:not(:last-of-type) {
	margin-right: min(1.2rem, 0.923vw);
}

.slick-dots li button::before {
	display: none;
}

.slick-dots li.slick-active button {
	background-color: rgba(var(--baseColor), 1);
}

@media screen and (max-width: 768px) {
	.slick-dots li:not(:last-of-type) {
		margin-right: 4vw;
	}

	.slick-dots li button {
		width: 2.133vw;
		height: 2.133vw;
		border-radius: 2.133vw;
	}
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background-color: rgba(var(--baseColor), 0.85);
	background-color: rgba(var(--baseColor), 1);
	width: 100%;
	height: min(9.2rem, 7.077vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.header__logo {
	width: min(18rem, 13.846vw);
	position: relative;
	z-index: 1000;
}

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

	.header__logo {
		width: 28.267vw;
		width: 32vw;
		z-index: 1;
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgb(var(--baseColor));
	padding: 0 min(4.8rem, 3.692vw);
	width: 100%;
	height: min(9.2rem, 7.077vw);
	line-height: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

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

.gnav__list--item:not(:last-of-type) {
	margin-right: min(6rem, 4.615vw);
}

.gnav__list--item a {
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.406vw);
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.gnav {
		background: rgba(var(--baseColor), 0.85);
		background: rgba(var(--baseColor), 1);
		padding-top: 24vw;
		width: 100%;
		height: 100%;
		overflow: auto;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		padding: 0 6.133vw;
		display: block;
	}

	.gnav__list--item:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 8vw;
	}

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

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

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

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

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

@media screen and (max-width: 768px) {
	.toggle {
		width: 8vw;
		height: 3.2vw;
		display: block;
		position: fixed;
		top: 7.467vw;
		right: 5.333vw;
		z-index: 1000;
	}

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

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

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

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

	/* is-open */
	.is-open .toggle__inner--item {
		background: rgb(var(--wht));
		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%);
	}
}

/*
	lang
------------------------------ */
.lang {
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.385vw);
	display: flex;
}

.lang__item:not(:last-of-type) {
	margin-right: 0.25em;
}

.lang__item:not(:last-of-type)::after {
	content: "/";
}

a.lang__item--link {
	color: rgb(var(--gry));
	text-decoration: none;
}

a.lang__item--link:hover {
	color: rgb(var(--wht));
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.lang {
		margin-top: 16vw;
		padding: 0 6.333vw;
		font-size: 5.333vw;
	}
}

/* ----------------------------------------------------
	section
---------------------------------------------------- */
.section__title {
	font-size: min(3.1rem, 2.385vw);
	text-align: center;
}

.section__note {
	background-color: rgb(var(--wht));
	color: rgb(var(--blk));
}

.section__note .note {
	margin: 0 auto;
	padding-bottom: min(5rem, 3.846vw);
	width: min(102rem, 78.462vw);
}

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

	.section__note {
		width: 100%;
	}

	.section__note .note {
		padding: 0 6.333vw 8vw;
		width: 100%;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--blk));
	padding-top: min(5rem, 3.846vw);
	color: rgb(var(--wht));
}

.footer-block {
	margin: 0 auto;
	width: min(118rem, 90.769vw);
	padding: 0 3.846vw;
	display: flex;
	justify-content: space-between;
}

.footer__line {
	margin: min(3rem, 2.308vw) 0;
}

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

	.footer-block {
		margin-bottom: 8vw;
		width: 88.533vw;
		display: block;
	}

	.footer__line {
		margin: 8vw 0;
	}
}

/* 
	footer__head 
------------------------------ */
.footer__head {
	padding-bottom: min(3rem, 2.308vw);
	align-items: flex-end;
}

.footer__logo {
	width: min(16rem, 12.308vw);
}

.footer__sns {
	display: flex;
	align-items: center;
}

.footer__sns--title {
	font-size: min(1.8rem, 1.385vw);
}

.footer__sns--list {
	display: flex;
}

.footer__sns--list a {
	margin-left: min(2.7rem, 2.077vw);
	width: min(2.2rem, 1.692vw);
	display: inline-block;
}

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

	.footer__logo {
		margin-bottom: 8vw;
		width: 36vw;
	}

	.footer__sns--title {
		padding-right: 1.6vw;
		font-size: 3.733vw;
	}

	.footer__sns--list {
		display: flex;
	}

	.footer__sns--list a {
		margin-left: 6.4vw;
		width: 6.4vw;
	}
}

/* 
	footer__body
------------------------------ */
.footer__body a::before {
	content: "＞";
}

.footer__nav--title {
	font-size: min(1.8rem, 1.385vw);
	font-weight: bold;
}

.footer__nav--content {
	margin-top: 1em;
	line-height: 2;
	font-size: min(1.6rem, 1.231vw);
}

@media screen and (max-width: 768px) {
	.footer__nav:not(:last-of-type) {
		margin-bottom: 8vw;
	}

	.footer__nav--title {
		font-size: 4.267vw;
	}

	.footer__nav--content {
		margin-top: 0;
		font-size: 3.733vw;
	}
}

/* 
	footer__foot 
------------------------------ */
.footer__foot .copy {
	padding-bottom: min(3rem, 2.308vw);
	font-size: min(1.2rem, 0.923vw);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer__foot .copy {
		padding-bottom: 8vw;
		font-size: 2.4vw;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	margin-bottom: min(2.8rem, 2.154vw);
	line-height: 1;
	font-size: min(1.7rem, 1.308vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .hotel-nav::before,
.footer .hotel-nav__item::after {
	content: "|";
}

.footer .hotel-nav__item a {
	padding: 0 1em;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		margin-bottom: 13.333vw;
		padding: 0 6.333vw;
		font-size: 3.467vw;
		display: block;
	}

	.footer .hotel-nav::before,
	.footer .hotel-nav__item::after {
		content: "";
	}

	.footer .hotel-nav__item:not(:last-of-type) {
		margin-bottom: 6.133vw;
	}

	.footer .hotel-nav__item a {
		padding: 0;
		text-decoration: underline;
	}
}