/* --------------------------------------------------
  mv
-------------------------------------------------- */
.mv {
	background-image: url(../img/mv.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 7.96875vw 0 0 0;
	width: 100%;
	height: 65.234vw;
	position: relative;
}

.mv__ttl {
	color: rgb(var(--wht));
	font-family: var(--mincho);
	font-size: 1.875vw;
	font-weight: 500;
	text-align: center;
}

.mv__name {
	margin: 1.094vw 0 auto;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--mincho);
	font-size: 4.375vw;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.46875vw;
}

.mv__logo {
	margin: -1.944vw auto 0;
	width: 55vw;
}

.mv__logo svg {
	margin: 0 0px 0px -1.406vw;
	width: 100%;
	height: 15.625vw;
}

.mv__date {
	margin: 0;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 2.734375vw;
	font-weight: 100;
	text-align: center;
	letter-spacing: 0.390625vw;
}

.mv__time {
	margin: 0.156vw auto 0;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.953vw;
	font-weight: 100;
	text-align: center;
}

.mv__hotels-name {
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.40625vw;
	font-weight: 100;
	text-align: center;
	position: absolute;
	bottom: 15.625vw;
	left: 50%;
	transform: translate(-50%, 0);
}

.mv__hotels-name span {
	margin-bottom: 0.5em;
	font-size: 1.563vw;
	border: solid 0.078vw rgb(var(--wht));
	padding: 0.391vw 0.781vw;
	letter-spacing: 0.156vw;
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.mv {
		background-image: url(../img/mv_sp.jpg);
		height: 111.2vw;
		padding: 17.333vw 0 0 0;
	}

	.mv__ttl {
		line-height: 1.5;
		font-size: 4vw;
	}

	.mv__name {
		font-size: 3rem;
	}

	.mv__logo {
		width: calc(100% - 3.4rem);
		margin: 0 auto;
	}

	.mv__logo svg {
		height: auto;
	}

	.mv__date {
		font-size: 4.8vw;
		margin: 2.933vw auto 0;
		letter-spacing: 0.533vw;
		font-weight: 300;
	}

	.mv__time {
		margin: 4vw 0 auto;
		font-size: 3.733vw;
		font-weight: 200;
	}

	.mv__hotels-name {
		width: 100%;
		font-size: 3.2vw;
		bottom: 8vw;
		font-weight: 300;
	}

	.mv__hotels-name span {
		padding: 1.333vw 2.4vw;
		font-size: 3.467vw;
		letter-spacing: 0.533vw;
		border: solid 0.1333vw rgb(var(--wht));
	}
}

/* --------------------------------------------------
  navigation
-------------------------------------------------- */
.navigation {
	background-color: rgba(var(--navigation), 0.8);
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.navigation ul {
	margin: 0 auto;
	padding: 1rem 0;
	width: 100%;
	height: 6.5rem;
	color: rgb(var(--wht));
	display: flex;
	justify-content: center;
	align-items: center;
}

.navigation ul li {
	width: 23rem;
	height: 100%;
}

.navigation ul li a {
	width: 100%;
	height: 100%;
	font-size: 2.6rem;
	font-weight: 100;
	text-decoration: none;
	border-left: solid 1px rgb(var(--wht));
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.navigation ul li:nth-of-type(3) a {
	border-right: solid 1px rgb(var(--wht));
}

@media screen and (max-width: 767px) {
	.navigation {
		background-color: #232323;
		height: 104vw;
		position: fixed;
		top: 0;
		transform: translate(-200%, 0);
		z-index: 998;
		transition: 0.7s;
	}

	.navigation.open {
		display: block;
		transform: translate(-50%, 0%);
		transition: 0.7s;
	}

	.navigation ul {
		margin: 0;
		padding: 0;
		height: 100%;
		flex-direction: column;
	}

	.navigation ul li {
		width: calc(100% - 2.8rem);
	}

	.navigation ul li a {
		font-family: var(--en);
		font-size: 4rem;
		font-weight: 200;
		border-bottom: solid 1px rgb(var(--wht));
		border-left: none;
	}

	.navigation ul li:nth-of-type(3) a {
		border-right: none;
		border-bottom: none;
	}
}

@media (hover: hover) {
	.navigation ul li a:hover {
		color: rgba(255, 255, 255, 0.7);
	}
}

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

@media screen and (max-width: 767px) {
	.hamburger {
		width: 5.3rem;
		height: 5.3rem;
		background-color: rgba(35, 35, 35, 0.9);
		display: block;
		position: fixed;
		top: 2.6666666667vw;
		right: 2.4vw;
		z-index: 999;
	}

	.hamburger__menu--line-inner {
		width: 5.3rem;
		height: 5.3rem;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-content: center;
		gap: 1rem 0;
	}

	.hamburger__menu--line {
		background-color: rgb(var(--wht));
		margin: 0 auto;
		width: 3.2rem;
		height: 1px;
		transition: 0.3s;
	}

	.hamburger.close .hamburger__menu--line:nth-of-type(1) {
		margin: 0;
		position: absolute;
		top: 2.6rem;
		transform: rotate(45deg);
	}

	.hamburger.close .hamburger__menu--line:nth-of-type(2) {
		opacity: 0;
	}

	.hamburger.close .hamburger__menu--line:nth-of-type(3) {
		margin: 0;
		position: absolute;
		top: 2.6rem;
		transform: rotate(-45deg);
	}
}

/* --------------------------------------------------
  btn_reserve
-------------------------------------------------- */
.btn_reserve a {
	background-color: rgb(var(--blk));
	width: 32.5rem;
	height: 7.3rem;
	margin: 0 auto;
	color: rgb(var(--wht));
	font-family: var(--mincho);
	font-size: 2.7rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.btn_reserve a::after {
	background-image: url(../img/arrow.png);
	background-size: cover;
	width: 1.5rem;
	height: 2rem;
	display: block;
	position: absolute;
	right: 2.5rem;
	content: "";
}

.btn_reserve.btn_commingsoon a {
	pointer-events: none;
}

.btn_reserve.btn_commingsoon a::before {
	background-color: rgba(var(--blk), 0.75);
	width: 100%;
	height: 100%;
	font-family: var(--mincho);
	font-size: 1.8rem;
	text-align: center;
	border-radius: 1rem;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
	content: "6月28日（土）より受付開始";
}

@media screen and (max-width: 767px) {
	.btn_reserve a {
		width: 76vw;
		height: 6.4rem;
		font-size: 2.3rem;
	}

	.btn_reserve a::after {
		width: 1.2rem;
		height: 1.6rem;
		right: 2.9rem;
	}

	.btn_reserve.btn_commingsoon a::before {
		margin: 0;
		font-size: 1.3rem;
		font-size: 2.3rem;
	}
}

/* --------------------------------------------------
  page-top
-------------------------------------------------- */
.page-top {
	width: 93px;
	opacity: 1;
	display: block;
	position: fixed;
	right: 3rem;
	bottom: 5rem;
	z-index: 99;
	animation: DownAnime 0.5s forwards;
}

@media screen and (max-width: 767px) {
	.page-top {
		width: 5.3rem;
		bottom: 1rem;
		right: 1rem;
	}
}

@keyframes DownAnime {
	0% {
		transform: translateY(50px);
	}

	100% {
		transform: translateY(0);
	}
}

/* --------------------------------------------------
  about
-------------------------------------------------- */
.about {
	background-color: #EAEAEA;
	padding: 6rem 0;
}

.about p {
	font-family: var(--gothic);
	font-size: 2.1rem;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.about {
		padding: 4rem 0;
	}

	.about p {
		font-size: 1.6rem;
		font-weight: 300;
	}
}

/* ----------------------------------------------------
	menu
---------------------------------------------------- */
.menu {
	background-color: #EAEAEA;
	padding-bottom: 10rem;
}

.menu__wrap {
	margin: 0 auto;
	width: 107.5rem;
}

.menu__title {
	background-color: rgb(var(--base-color));
	margin-bottom: 2rem;
	height: 8rem;
	color: rgb(var(--wht));
	font-family: var(--en);
	font-size: 6.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu__lead {
	margin-bottom: 5rem;
	font-family: var(--mincho);
	text-align: center;
}

.menu__lead--time {
	margin-bottom: 2rem;
	color: rgb(var(--base-color));
	font-family: var(--mincho);
	font-size: 3rem;
}

.menu__lead--text {
	font-size: 2.1rem;
}

.menu__lead .note {
	margin-top: 1em;
	font-family: var(--gothic);
}

@media screen and (max-width: 768px) {
	.menu {
		padding-bottom: 6rem;
	}

	.menu__wrap {
		width: 100%;
	}

	.menu__title {
		margin-bottom: 2rem;
		height: 8rem;
		font-size: 6rem;
	}

	.menu__lead {
		margin-bottom: 3rem;
		letter-spacing: -0.005em;
	}

	.menu__lead--time {
		margin-bottom: 1rem;
		font-size: 2rem;
	}

	.menu__lead--text {
		font-size: 1.3rem;
	}
}

/*
	alacarte
------------------------------ */
.alacarte {
	margin-top: 10rem;
	padding-top: 10rem;
	border-top: solid 1px rgb(var(--blk));
}

@media screen and (max-width: 768px) {
	.alacarte {
		margin-top: 6rem;
		padding-top: 6rem;
	}
}

/*
	menu__content
------------------------------ */
.menu__content {
	margin-bottom: 10rem;
	display: flex;
	justify-content: space-between;
}

.menu__content--detail {
	width: 41.8rem;
	font-family: var(--mincho);
}

.menu__content--detail .circle {
	font-size: 1.8rem;
	letter-spacing: -0.04em;
}

.menu__content--detail .circle li::before {
	color: rgb(var(--base-color));
	font-size: 0.5rem;
}

.menu__content--image {
	width: 62.7rem;
}

@media screen and (max-width: 768px) {
	.menu__content {
		margin-bottom: 6rem;
		flex-direction: column-reverse;
	}

	.menu__content--detail {
		padding: 0 1.5rem;
		width: 100%;
	}

	.menu__content--detail .circle {
		font-size: 1.4rem;
	}

	.menu__content--image {
		margin-bottom: 2rem;
		width: 100%;
	}
}

/*
	plan
------------------------------ */
.plan__title {
	margin-bottom: 2rem;
	line-height: 1;
	font-family: var(--en);
	font-size: 5.8rem;
	font-weight: 500;
}

.plan__title .jp {
	margin-top: 0.5em;
	font-size: 2.5rem;
	display: block;
}

.plan__price {
	margin-bottom: 2rem;
	line-height: normal;
	font-size: 2.5rem;
}

.plan__menu--title {
	margin-bottom: 2rem;
	line-height: 1;
	color: rgb(var(--base-color));
	font-size: 3.8rem;
	position: relative;
}

.plan__menu--title::before {
	background-color: rgb(var(--base-color));
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 1rem;
	left: 0;
	z-index: 1;
	content: "";
}

.plan__menu--title span {
	background-color: #EAEAEA;
	padding-right: 2rem;
	display: inline-block;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.plan__title {
		margin-bottom: 1rem;
		font-size: 3.8rem;
	}

	.plan__title .jp,
	.plan__price {
		font-size: 1.8rem;
	}

	.plan__menu--title {
		margin-bottom: 1rem;
		font-size: 2.4rem;
	}

	.plan__menu--title span {
		padding-right: 1rem;
	}
}

/*
	alacarte
------------------------------ */
.kids .plan__title {
	margin-bottom: 0;
}

.kids .plan__title+.note {
	margin: 1rem 0 2rem;
	font-family: var(--gothic);
}

@media screen and (max-width: 768px) {
	.kids .plan__title+.note {
		margin-bottom: 1rem;
	}
}

/*
	alacarte
------------------------------ */
.alacarte__title {
	color: rgb(var(--base-color));
	font-size: 3.8rem;
}

.alacarte .note {
	margin-bottom: 2rem;
	font-family: var(--gothic);
}

@media screen and (max-width: 768px) {
	.alacarte__title {
		font-size: 2.4rem;
	}

	.alacarte .note {
		margin-bottom: 1rem;
	}
}

/*
	drink
------------------------------ */
.drink-menu {
	margin-bottom: 4rem;
}

.drink-menu:not(:last-of-type) {
	padding-bottom: 4rem;
	border-bottom: solid 1px rgb(var(--blk));
}

.drink-menu__title {
	margin-bottom: 1rem;
	color: rgb(var(--base-color));
	font-size: 2rem;
}

#drink .beer {
	display: flex;
}

#drink .beer__dt {
	padding-right: 1em;
}

#drink .note {
	font-family: var(--gothic);
}

@media screen and (max-width: 768px) {
	.drink-menu {
		margin-bottom: 2rem;
	}

	.drink-menu:not(:last-of-type) {
		padding-bottom: 2rem;
	}

	.drink-menu__title {
		font-size: 1.8rem;
	}
}

/* ----------------------------------------------------
	faq
---------------------------------------------------- */
.faq {
	margin: 0 auto;
	padding: 10rem 0;
	width: 107.5rem;
}

.faq__title {
	margin-bottom: 5rem;
	line-height: 1;
	color: rgb(var(--base-color));
	font-family: var(--en);
	font-size: 8rem;
	text-align: center;
}

.faq__list {
	font-family: var(--mincho);
	font-weight: 500;
}

.faq__list .question,
.faq__list .answer {
	display: flex;
	align-items: flex-start;
}

.faq__list .question {
	color: rgb(var(--base-color));
	font-size: 2.5rem;
}

.faq__list .question::before {
	content: "Q.";
}

.faq__list .answer {
	margin-bottom: 2rem;
	font-size: 2.1rem;
}

.faq__list .answer::before {
	content: "A.";
}

@media screen and (max-width: 768px) {
	.faq {
		padding: 6rem 0;
		width: 100%;
	}

	.faq__title {
		margin-bottom: 3rem;
		font-size: 5.5rem;
	}

	.faq__list {
		padding: 0 1.5rem;
	}

	.faq__list .question {
		font-size: 2rem;
	}

	.faq__list .answer {
		margin-bottom: 1rem;
		font-size: 1.4rem;
	}
}

/* ----------------------------------------------------
	contact
---------------------------------------------------- */
.contact {
	margin: 0 auto;
	padding: 10rem 0;
	width: 107.5rem;
	text-align: center;
	border-top: solid 1px rgb(var(--blk));
	border-bottom: solid 1px rgb(var(--blk));
}

.contact__title {
	font-family: var(--mincho);
	font-size: 2rem;
	font-weight: 500;
}

.contact__detail {
	font-weight: 500;
}

.contact__detail--tel {
	margin: 1rem 0 1.5rem;
	line-height: 1;
	font-family: var(--en);
	font-size: 5.8rem;
}

.contact__detail--note {
	font-family: var(--mincho);
	font-size: 2rem;
}

@media screen and (max-width: 768px) {
	.contact {
		padding: 4rem 0;
		width: calc(100% - 3rem);
	}

	.contact__detail--tel {
		margin: 1rem 0 1.5rem;
		font-size: 4rem;
	}

	.contact__detail--note {
		font-size: 1.4rem;
	}
}

/* ----------------------------------------------------
	page-note
---------------------------------------------------- */
.page-note {
	margin: 0 auto;
	padding: 10rem 0;
	width: 107.5rem;
}

@media screen and (max-width: 768px) {
	.page-note {
		padding: 4rem 1.5rem;
		width: 100%;
	}
}

/* ----------------------------------------------------
	xxx
---------------------------------------------------- */
.xxx {}

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

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: #f0f0f0;
	padding-top: 5rem;
	color: rgb(var(--blk));
}

/* 
	footer__head
------------------------------ */
.footer__head {
	margin: 0 auto;
	padding-bottom: 5rem;
	width: 100rem;
	display: flex;
	justify-content: space-between;
}

.footer__head--logo {
	width: 28.7rem;
}

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

.footer__sns--title {
	margin-right: 1rem;
	font-size: 2.4rem;
}

.footer__sns--content {
	display: flex;
}

.footer__sns--icon {
	margin-left: 2rem;
	width: 3rem;
}

@media screen and (max-width: 768px) {
	.footer__head {
		padding: 0 2.6rem 3rem;
		width: 100%;
		display: block;
	}

	.footer__head--logo {
		margin-bottom: 3.2rem;
		width: 19.4rem;
	}

	.footer__sns--title {
		margin-right: 0;
		font-size: 1.6rem;
	}
}

/* 
	footer__body
------------------------------ */
.footer__body {
	margin: 0 auto;
	padding: 5rem 0;
	width: 100rem;
	display: flex;
	position: relative;
}

.footer__body::before {
	background-color: rgb(var(--blk));
	width: 100vw;
	height: 1px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.footer__body::before {
	top: 0;
}

.footer__body a {
	display: inline-flex;
	align-items: center;
}

.footer__body a:not(.telephone)::before {
	content: "＞";
}

.footer__body--content {
	font-size: 1.6rem;
	white-space: nowrap;
}

.footer__body--content:not(:last-of-type) {
	margin-right: 11.5rem;
}

.footer__body--title {
	margin-bottom: 1rem;
	line-height: normal;
	font-size: 2rem;
	font-weight: 500;
}

.footer__address {
	margin-bottom: 1rem;
}

.footer__pool {
	width: 26rem;
	display: flex;
	flex-wrap: wrap;
}

.footer__pool--item:nth-child(odd) {
	width: 15rem;
}

.footer__pool--item:not(:nth-child(even)) {
	margin-right: 4rem;
}

@media screen and (max-width: 768px) {
	.footer__body {
		padding: 4rem 2.6rem;
		width: 100%;
		display: block;
	}

	.footer__body--content:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 3rem;
	}

	.footer__address {
		margin-bottom: 1rem;
	}

	.footer__pool {
		width: 100%;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	background-color: rgb(var(--wht));
	padding: 2rem 0;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 1rem;
		letter-spacing: -0.005rem;
	}
}