@charset "UTF-8";

@import url("https://use.typekit.net/pwa7zoe.css");

:root {
	/* font */
	--gothic: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
	--mrs-eaves: "mrs-eaves", serif;

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--red: 215, 73, 13;
	--green: 102, 171, 113;
	--dark-blue: 8, 9, 12;
}

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

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

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

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

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--wht));
	background-size: cover;
	line-height: 1.8;
}

section {
	position: relative;
	z-index: 2;
}

.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1100px;
	width: 100%;
}

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

/* bgFixed */
.bgFixed {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}

.bgFixed__inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.bgFixed__inner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}

body,
th,
td {
	color: var(--blk);
	font-size: 16px;
	font-weight: 500;
}

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

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

small {
	font-size: calc(1em - 2px);
}

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	bg
------------------------------ */
.bgType1 {
	background: rgb(var(--red));
}

/*
	list
------------------------------ */
ul.list li {
	display: flex;
}

ul.list li::before {
	width: 1em;
	height: 1em;
}

/*
	note
------------------------------ */
ul.note li {
	font-size: 13px;
}

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

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

/*
	type
------------------------------ */
ul.circle li::before {
	content: "●";
}

/*
	cnt
------------------------------ */
ol.cnt li {
	display: flex;
	counter-increment: number;
}

ol.cnt.type1 li::before {
	content: "("counter(number) ")";
}

/*
	.movie
------------------------------ */
.movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}

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

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

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

/*
	linkText
------------------------------ */
.linkText a {
	display: inline-flex;
}

.linkText a::before {
	content: "＞";
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	width: 100%;
	line-height: 1;
	color: #fff;
	font-size: 28px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a svg {
	width: auto;
	height: 1rem;
	fill: rgb(var(--wht));
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%) rotate(90deg);
	transition: right 0.5s ease;
}

.linkBtn a:hover svg {
	right: 0;
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		font-size: 5.33333vw;
	}
}

/*
	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(--red), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}

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

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	width: 100%;
	position: relative;
	z-index: 2;
}

.header__title,
.header__title--kaisei {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.header__title {
	width: 71.45515%;
	bottom: 2%;
}

.header__title--kaisei {
	width: 13.0744%;
	top: 0;
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 85.16445%;
	}

	.header__title--kaisei {
		width: 30.67579%;
	}
}

/*
	fadeUp
------------------------------ */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.delay01 {
	animation-delay: 0.5s;
}

.delay02 {
	animation-delay: 1s;
}

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

@media screen and (max-width: 768px) {
	.toggle {
		background: rgb(var(--red));
		padding: 0.5rem;
		display: block;
		position: fixed;
		top: 1em;
		right: 1em;
		z-index: 1000;
	}

	.toggle__inner {
		position: relative;
		width: 32px;
		height: 32px;
		cursor: pointer;
	}

	.toggle__inner span {
		background: rgb(var(--wht));
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 0;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 6px;
	}

	.toggle__inner span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle__inner span:nth-child(3) {
		bottom: 6px;
	}

	/* is-open */
	.is-open .toggle__inner span {
		background: #fff;
	}

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

	.is-open .toggle__inner span:nth-child(2) {
		width: 0;
	}

	.is-open .toggle__inner span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg) translatey(-50%);
	}
}

/*
	nav_content
------------------------------ */
.gnav {
	background: rgb(var(--red));
	width: 100%;
	height: 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.gnav__list {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

.gnav__list--item a {
	color: rgb(var(--wht));
	font-family: var(--mrs-eaves);
	font-size: 22px;
	text-decoration: none;
}

.gnav__list--item a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.gnav {
		padding: 86px 1em;
		height: 100vh;
		position: fixed;
		right: 0;
		z-index: 999;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		display: block;
	}

	.gnav__list--item a {
		padding: 0 0 1rem;
		color: rgb(var(--wht));
		font-size: 4.26667vw;
		display: block;
		transition: opacity 0.6s ease;
	}

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

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

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

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	position: relative;
	z-index: 2;
}

/*
	hotelNav
------------------------------ */
.footer .bgType1 {
	padding: 2em 0;
}

.footer__hotelNav {
	padding: 2rem 0 0;
	line-height: 1;
	color: rgb(var(--wht));
	display: flex;
	justify-content: center;
}

.footer__hotelNav::before {
	content: "｜";
}

.footer__hotelNav li {
	margin: 0;
	margin: 0;
	text-indent: 0;
}

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

.footer__hotelNav li::after {
	content: "｜";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--wht));
	text-decoration: none;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		font-size: 3.46667vw;
		text-align: center;
		display: block;
	}

	.footer__hotelNav::before {
		content: "";
	}

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

	.footer__hotelNav li::before {
		content: "｜";
	}

	.footer__hotelNav li a {
		padding: 0 0.5em;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 2rem 0;
	color: rgb(var(--wht));
	font-size: 12px;
	text-align: center;
}

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