@charset "UTF-8";

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

	/* color */
	--blk: 122, 122, 122;
	--wht: 255, 255, 255;
	--blu1: 44, 128, 165;
	--blu2: 61, 157, 199;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
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 {
	margin-bottom: 1em;
	word-wrap: break-word;
}

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: var(--wht);
	line-height: 1.8;
}

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

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

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

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

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

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

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

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

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

span.note {
	display: block;
}

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

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


/*
	link-list
------------------------------ */
.link-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.link-list.columnTwo li {
	padding: 0 0.5em;
	width: 50%;
}

@media screen and (max-width: 768px) {
	.link-list.columnTwo li {
		padding: 0;
		width: 100%;
	}

	.link-list.columnTwo li:not(:last-of-type) {
		margin-bottom: 1em;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: rgb(var(--blu2));
	margin: 0 auto;
	width: 100%;
	height: 80px;
	line-height: 1.25;
	color: rgb(var(--wht));
	font-size: 22px;
	text-align: center;
	border-radius: 10px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a::before {
	background: rgb(var(--wht));
	width: 15px;
	height: 26px;
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	content: "";
}

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

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

	.linkBtn a::before {
		width: 2.4vw;
		height: 5.33333vw;
		right: 1em;
	}
}

/*
	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(--blu1), 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 {
	position: relative;
}

@media screen and (max-width: 768px) {
	.header {
		background: url(../img/kv_sp.jpg) center no-repeat;
		background-size: 100% auto;
		height: 133.33333vw;
	}

	.headerTitle {
		width: 86.83536%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	
	}
}

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

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

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

	.toggle__inner span {
		background: #77797B;
		width: 100%;
		height: 7px;
		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: 2px;
	}

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

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

	/* is-open */
	.is-open .toggle__inner span {
		background: rgb(var(--wht));
		height: 1px;
	}

	.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(--blu1));
	position: sticky;
	top: 0;
	z-index: 2000;
}

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

.gnav__list--item {
	padding: 4px 0;
	height: 60px;
}

.gnav__list--item a {
	padding: 0 2em;
	height: 100%;
	line-height: 1.5;
	color: rgb(var(--wht));
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	position: relative;
	transition: opacity 0.6s ease;
}

.gnav__list--item a.toTop {
	display: none;
}

.gnav__list--item:not(:first-of-type) a {
	border-left: solid 1px rgb(var(--wht));
}

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

@media screen and (max-width: 768px) {
	.gnav {
		padding-top: 86px;
		max-width: 80%;
		width: 100%;
		height: 100%;
		font-size: 4.26667vw;
		overflow: auto;
		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__list {
		display: block;
	}

	.gnav__list--item {
		padding: 0 1em;
		height: auto;
	}

	.gnav__list--item a {
		padding: 0.5em 1em;
		text-align: left;
	}

	.gnav__list--item a.toTop {
		padding: 1.5em 1em;
		display: flex;
	}

	.gnav__list--item a:not(.toTop)::before {
		background: rgb(var(--wht));
		width: 2.13333vw;
		height: 4.26667vw;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		content: "";
	}

	.gnav__list--item:not(:first-of-type) a {
		border-top: dotted 1px rgb(var(--wht));
		border-left: none;
	}

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

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

	.is-open .filter.overlay {
		background: rgba(var(--wht), 0.8);
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: rgb(var(--wht));
	padding-top: 110px;
	position: relative;
	z-index: 10;
}

.footer .container .note {
	letter-spacing: -0.005em;
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	padding: 55px 0;
	line-height: 1;
	color: #333;
	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(--blk));
	text-decoration: none;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		padding: 7.46667vw 0 12.8vw;
		line-height: 2;
		font-size: 4.26667vw;
		text-align: center;
		display: block;
	}

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

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

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

/*
	hotelNav
------------------------------ */
.footer .copy {
	padding-bottom: 4em;
	font-size: 12px;
	text-align: center;
}

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