/* ----------------------------------------------------
	bg
---------------------------------------------------- */
.bg {
	background-image: url(../img/bg.webp);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

.wrapper {
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.bg {
		background-image: url(../img/bg_sp.webp);
	}
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background-color: rgb(var(--red));
	width: 100%;
	height: 100dvh;
	position: relative;
}

.header__title {
	width: 38.067vw;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

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

/* ----------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	line-height: 1;
	position: fixed;
	top: 8rem;
	right: 0;
	z-index: 999;
}

.gnav__item:not(:last-of-type) {
	margin-bottom: 1.6rem;
}

.gnav__item a {
	padding-bottom: 0.5rem;
	width: 16rem;
	color: rgb(var(--yel));
	font-family: var(--en);
	font-size: 1.4rem;
	text-decoration: none;
	display: block;
	position: relative;
}

.gnav__item a:hover {
	opacity: 1;
}

.gnav__item a img {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(100%);
	transition: all 1s ease 0s;
}

.gnav__item a:hover img,
.gnav__item a.is-current img {
	transform: translateX(0);
}

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background-color: rgb(var(--yel));
		padding-top: 13.2rem;
		max-width: 37.5rem;
		width: 100%;
		height: 100%;
		text-align: center;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__item:not(:last-of-type) {
		margin-bottom: 2.3rem;
	}

	.gnav__item a {
		width: auto;
		color: rgb(var(--red));
		font-size: 2.2rem;
		display: inline-block;
	}

	.gnav__item a img {
		display: none;
	}

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

	body.is-open {
		overflow: hidden;
	}

	.is-open .gnav--sp-toggle {
		transform: translateX(0);
	}

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

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

@media screen and (max-width: 768px) {
	.toggle {
		background: rgba(var(--yel), 1);
		width: 7rem;
		height: 7rem;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
	}

	.toggle__line {
		background: rgb(var(--red));
		width: 3.6rem;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
		transform: translateX(-50%);
		transform-origin: center;
	}

	.toggle__line:nth-child(1) {
		top: 2.6rem;
	}

	.toggle__line:nth-child(2) {
		bottom: 2.6rem;
	}

	.is-open .toggle__line {
		transform-origin: 0 0;
	}

	.is-open .toggle__line:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
	}

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

/* ----------------------------------------------------
	en-hidden
---------------------------------------------------- */
.en-hidden {
	display: none !important;
}

.en-hidden::before {
	/* background-color: rgb(200, 0, 0);
	margin-right: 0.5rem;
	padding: 0 0.5em;
	color: rgb(var(--wht));
	font-size: 1rem;
	content: "非表示にする箇所"; */
	display: none;
}

/* ----------------------------------------------------
	sec
---------------------------------------------------- */
.sec .wrapper {
	padding: 16rem 0;
}

.sec__title {
	margin-bottom: 5rem;
	line-height: 1;
	font-family: var(--en);
	font-size: 5rem;
	text-align: center;
}

.sec__image {
	margin: 0 auto 5rem;
	width: 96rem;
}

.sec__menu-title {
	margin-bottom: 2rem;
	line-height: normal;
	font-family: var(--en);
	font-size: 3.2rem;
}

.sec .circle,
.sec .price {
	font-size: 1.6rem;
	font-weight: 500;
}

.sec__price {
	margin-bottom: 5rem;
}

.sec__text {
	margin: 0 auto 5rem;
	width: 68rem;
	font-size: 1.3rem;
	text-align: left;
}

.sec__text .en {
	margin-top: 2rem;
}

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

.sec__link--item {
	margin: 0 2.5rem;
	width: 23.6rem;
}

.sec__link--item .link-button {
	width: 100%;
	line-height: 0.75;
	flex-direction: column;
}

.sec__link--item a small {
	font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
	.sec .wrapper {
		padding: 8rem 0;
	}

	.sec__title {
		margin-bottom: 2.5rem;
		font-size: 3rem;
	}

	.sec__image {
		margin-bottom: 3rem;
		width: 30rem;
	}

	.sec__menu-title {
		margin-bottom: 1.5rem;
		font-size: 2.2rem;
	}

	.sec .circle,
	.sec .price {
		font-size: 1.4rem;
	}

	.sec__price {
		margin-bottom: 3rem;
	}

	.sec__text {
		margin-bottom: 3rem;
		width: 30rem;
		font-size: 1.1rem;
	}

	.sec__text .en {
		margin-top: 1rem;
	}

	.sec__link {
		flex-direction: column;
	}

	.sec__link--item {
		margin: 0 auto;
	}

	.sec__link--item:not(:last-of-type) {
		margin-bottom: 1.5rem;
	}
}

/* ---------------------------------------------------
	menu-list
--------------------------------------------------- */
.menu-list__item:not(:last-of-type) {
	margin-bottom: 5rem;
}

.menu-name {
	margin-bottom: 1rem;
	line-height: 1;
	font-family: var(--en);
	font-size: 3.2rem;
}

.menu-detail {
	font-size: 1.6rem;
}

.menu-detail .en {
	margin-left: 1em;
}

@media screen and (max-width: 768px) {
	.menu-list {
		margin: 0 auto;
		width: 30rem;
	}

	.menu-list__item:not(:last-of-type) {
		margin-bottom: 3rem;
	}

	.menu-name {
		font-size: 2.2rem;
	}

	.menu-detail {
		font-size: 1.4rem;
	}

	.menu-detail span {
		display: block;
	}

	.menu-detail .en {
		margin-left: 0;
	}
}

/* ----------------------------------------------------
	collaboration
---------------------------------------------------- */
.collaboration {
	color: rgb(var(--wht));
}

.collaboration__logo {
	margin: 0 auto 8rem;
	width: 34.4rem;
}

.collaboration__lead {
	margin-bottom: 5rem;
	font-family: var(--en);
	font-size: 1.5rem;
	text-align: center;
}

.collaboration__text {
	margin: 0 auto 16rem;
	width: 82rem;
	display: flex;
	justify-content: space-between;
}

.collaboration__text .text {
	width: 38.8rem;
	line-height: 2.26;
	font-size: 1.5rem;
}

.collaboration__text .text.en {
	font-size: 1.4rem;
}

.collaboration__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.collaboration__content--image {
	flex: 1 1 0;
}

.collaboration__content--detail {
	margin: 0 6.5rem;
	width: 45.5rem;
	flex: 0 0 45.5rem;
}

.collaboration__content--title {
	margin-bottom: 4rem;
	line-height: 1.7;
	font-family: var(--en);
	font-size: 2rem;
}

.collaboration__content--title .jp {
	margin-top: 1.3rem;
	font-family: var(--gothic);
	font-size: 1.6rem;
	display: block;
}

.collaboration__content--text {
	margin-bottom: 4rem;
	line-height: 2;
	font-size: 1.3rem
}

.collaboration__content--text .text.en {
	margin-top: 2rem;
}

.collaboration__content--link a {
	font-size: 1.3rem;
}

.collaboration__content--link a::before {
	content: ">";
}

@media screen and (max-width: 768px) {
	.collaboration__logo {
		margin-bottom: 6rem;
		width: 23.8rem;
	}

	.collaboration__lead {
		margin-bottom: 4rem;
		font-size: 1.4rem;
	}

	.collaboration__text {
		margin-bottom: 6rem;
		width: 30rem;
		flex-direction: column;
	}

	.collaboration__text .text {
		width: 100%;
		line-height: 2;
		font-size: 1.3rem;
	}

	.collaboration__text .text.en {
		margin-top: 2rem;
		font-size: 1.2rem;
	}

	.collaboration__content {
		display: flex;
		justify-content: space-between;
		align-items: center;

		margin: 0 auto;
		width: 30rem;
		flex-direction: column;
	}

	.collaboration__content--image,
	.collaboration__content--detail {
		width: 100%;
		flex: none;
	}

	.collaboration__content--detail {
		margin: 3rem 0;
	}

	.collaboration__content--title {
		margin-bottom: 3rem;
		font-size: 1.6rem;
	}

	.collaboration__content--title .jp {
		font-size: 1.6rem;
	}

	.collaboration__content--text {
		margin-bottom: 3rem;
		font-size: 1.1rem
	}

	.collaboration__content--text .text.en {
		margin-top: 2rem;
	}

	.collaboration__content--link a {
		font-size: 1.2rem;
	}
}

/* ----------------------------------------------------
	lunch
---------------------------------------------------- */
.lunch .wrapper {
	padding-bottom: 0;
	text-align: center;
}

.lunch .link-button {
	margin: 0 auto;
}

.lunch__list {
	margin: 12rem auto 0;
	width: 82rem;
}

.lunch__list--item {
	display: flex;
	justify-content: space-between;
}

.lunch__list--item:not(:last-of-type) {
	margin-bottom: 4.5rem;
	padding-bottom: 4.5rem;
	border-bottom: solid 1px rgb(var(--blk));
}

.lunch__detail {
	width: 43rem;
	text-align: left;
	position: relative;
}

.lunch__detail .sec__menu-title {
	font-size: 2.4rem;
}

.lunch__detail.azure::before,
.lunch__detail.maitai::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
}

.lunch__detail.azure::before {
	background-image: url(../img/logo-azure.webp);
	width: 8.4rem;
	height: 8.4rem;
}

.lunch__detail.maitai::before {
	background-image: url(../img/logo-maitai.webp);
	width: 7rem;
	height: 7rem;
}

.lunch__detail .sec__menu-title--name {
	font-family: var(--gothic);
	font-size: 1.6rem;
	display: block;
}

.lunch__detail .sec__menu-title--name.jp {
	margin-top: 1rem;
}

.lunch__detail .sec__text {
	margin-bottom: 0;
	width: 100%;
}

.lunch__image {
	width: 36rem;
}

@media screen and (max-width: 768px) {
	.lunch__list {
		margin-top: 8rem;
		width: 30rem;
	}

	.lunch__list--item {
		flex-direction: column;
	}

	.lunch__list--item:not(:last-of-type) {
		margin-bottom: 3rem;
		padding-bottom: 3rem;
	}

	.lunch__detail {
		margin-bottom: 3rem;
		width: 100%;
	}

	.lunch__detail.azure::before,
	.lunch__detail.maitai::before {
		width: 6rem;
		height: 6rem;
	}

	.lunch__detail .sec__menu-title--name {
		font-size: 1.4rem;
	}

	.lunch__detail.azure::before,
	.lunch__detail.maitai::before {
		top: 0;
		bottom: auto;
		right: 0;
	}

	.lunch__image {
		width: 100%;
	}
}

/* ----------------------------------------------------
	dinner
---------------------------------------------------- */
.dinner {
	text-align: center;
}

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

/* ----------------------------------------------------
	tea
---------------------------------------------------- */
.tea .wrapper {
	padding-bottom: 0;
	text-align: center;
}

.tea .sec__menu-title small {
	margin-top: 0.25em;
	font-size: 0.75em;
	display: block;
}

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

/* ----------------------------------------------------
	breakfast
---------------------------------------------------- */
.breakfast .wrapper {
	padding-bottom: 0;
}

.breakfast__content {
	margin: 0 auto;
	width: 82rem;
	display: flex;
	justify-content: space-between;
}

.breakfast__content--detail {
	width: 43rem;
	position: relative;
}

.breakfast .logo {
	width: 8.9rem;
	position: absolute;
	top: 6.8rem;
	right: 0;
}

.breakfast .price {
	margin-bottom: 5rem;
}

.breakfast__text {
	margin-bottom: 5rem;
	font-size: 1.3rem;
}

.breakfast__text .en {
	margin-top: 2rem;
}

.breakfast__content--image {
	width: 36rem;
}

@media screen and (max-width: 768px) {
	.breakfast__content {
		width: 30rem;
		flex-direction: column-reverse;
	}

	.breakfast__content--detail {
		width: 100%;
		text-align: center;
	}

	.breakfast .logo {
		margin: 0 auto 3rem;
		width: 8.4rem;
		position: static;
	}

	.breakfast .price {
		margin-bottom: 3rem;
	}

	.breakfast__text {
		margin-bottom: 3rem;
		font-size: 1.1rem;
		text-align: left;
	}

	.breakfast__text .en {
		margin-top: 1rem;
	}

	.breakfast .link-button {
		margin: 0 auto;
	}

	.breakfast__content--image {
		margin-bottom: 3rem;
		width: 100%;
	}
}

/* ----------------------------------------------------
	alacarte
---------------------------------------------------- */
.alacarte__content {
	margin: 0 auto;
	width: 82rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.alacarte__content:not(:last-of-type) {
	margin-bottom: 12rem;
}

.alacarte__content--detail {
	width: 43rem;
	position: relative;
}

.alacarte .logo {
	position: absolute;
	right: 0;
}

.alacarte .logo.logo01 {
	width: 7rem;
	top: 0;
}

.alacarte .logo.logo02 {
	width: 8.9rem;
	top: 6.8rem;
}

.alacarte .price {
	margin-bottom: 5rem;
}

.alacarte__text {
	margin-bottom: 5rem;
	font-size: 1.3rem;
}

.alacarte__text .en {
	margin-top: 2rem;
}

.alacarte__content--image {
	width: 36rem;
}

@media screen and (max-width: 768px) {
	.alacarte__content {
		width: 30rem;
		flex-direction: column-reverse;
	}

	.alacarte__content:not(:last-of-type) {
		margin-bottom: 8rem;
	}

	.alacarte__content--detail {
		width: 100%;
	}

	.alacarte .logo {
		margin: 0 auto 3rem;
		position: static;
	}

	.alacarte .logo.logo01,
	.alacarte .logo.logo02 {
		width: 8.4rem;
	}

	.alacarte .price {
		margin-bottom: 3rem;
	}

	.alacarte__text {
		margin-bottom: 3rem;
		font-size: 1.1rem;
	}

	.alacarte__text .en {
		margin-top: 1rem;
	}

	.alacarte .link-button {
		margin: 0 auto;
	}

	.alacarte__content--image {
		margin-bottom: 3rem;
		width: 100%;
	}
}

/* ----------------------------------------------------
	cocktails
---------------------------------------------------- */
.cocktails {
	text-align: center;
}

.cocktails .link-button {
	margin: 0 auto;
}

.cocktails__list {
	margin: 12rem auto 0;
	width: 82rem;
	text-align: left;
}

.cocktails__list--item:not(:last-of-type) {
	margin-bottom: 4.5rem;
	padding-bottom: 4.5rem;
	border-bottom: solid 1px rgb(var(--blk));
}

.cocktails__list--head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.cocktails__list--head .price {
	font-size: 2rem;
}

.cocktails__list--head .price small {
	margin-right: 0.5em;
	font-size: 1.3rem;
}

.cocktails__list--body {
	display: flex;
	position: relative;
}

.cocktails__list--body.maitai::before,
.cocktails__list--body.surf::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	top: -1em;
	right: 0;
	content: "";
}

.cocktails__list--body.maitai::before {
	background-image: url(../img/logo-maitai.webp);
	width: 7rem;
	height: 7rem;
}

.cocktails__list--body.surf::before {
	background-image: url(../img/logo-surflanai.webp);
	width: 8.4rem;
	height: 4.7rem;
}

.cocktails__list--body .sec__text {
	margin: 0;
	width: 69rem;
}

.cocktails__list--body .note.en {
	margin-top: 0;
}

@media screen and (max-width: 768px) {
	.cocktails .link-button {
		margin: 0 auto;
	}

	.cocktails__list {
		margin-top: 8rem;
		width: 30rem;
	}

	.cocktails__list--item:not(:last-of-type) {
		margin-bottom: 3rem;
		padding-bottom: 3rem;
	}

	.cocktails__list--head {
		margin-bottom: 2rem;
		display: block;
	}

	.cocktails__list--head .sec__menu-title {
		letter-spacing: -0.005em;
	}

	.cocktails__list--head .price {
		margin-top: 1em;
		font-size: 1.4rem;
	}

	.cocktails__list--head .price small {
		font-size: 1.4rem;
		display: inline-block;
	}

	.cocktails__list--body.maitai::before {
		width: 6rem;
		height: 6rem;
	}

	.cocktails__list--body.surf::before {
		width: 8.4rem;
		height: 4.7rem;
	}

	.cocktails__list--body .sec__text {
		margin: 0;
		width: 21rem;
	}

	.cocktails__list--body .note.en {
		margin-top: 0;
	}
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation .wrapper {
	padding-bottom: 0;
	text-align: center;
}

.reservation__tel {
	font-family: var(--en);
	font-size: 3.2rem;
}

.reservation__tel--note {
	font-family: var(--gothic);
	font-size: 1.6rem;
	display: block;
}

.reservation__support {
	margin-top: 5rem;
	font-size: 1.3rem;
}

.reservation__support.en {
	margin-top: 2rem;
}

.reservation__logo {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
}

.reservation__logo--item {
	margin: 0 1.5rem;
}

.reservation__logo--item img {
	width: auto;
	height: 8rem;
}

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

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

	.reservation__support {
		margin-top: 2.5rem;
	}

	.reservation__support.en {
		margin-top: 1rem;
	}

	.reservation__logo {
		margin-top: 3rem;
	}

	.reservation__logo--item {
		margin: 0 0.6rem;
	}

	.reservation__logo--item img {
		height: 5rem;
	}
}

/* ----------------------------------------------------
	banner
---------------------------------------------------- */
.banner {
	padding: 8rem 0;
}

.banner__title {
	margin-bottom: 3rem;
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
}

.banner__list {
	margin: 0 auto;
	width: 64.8rem;
}

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

	.banner__title {
		margin-bottom: 1rem;
		font-size: 1.1rem;
	}

	.banner__list {
		width: 30rem;
	}
}

/* ----------------------------------------------------
	page-note
---------------------------------------------------- */
.page-note {
	padding-bottom: 8rem;
}

.page-note .note {
	margin: 0 auto;
	width: 72.6rem;
	letter-spacing: -0.005em;
}

.page-note .note.en {
	margin-top: 2rem;
}

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

	.page-note .note {
		width: 30rem;
		letter-spacing: normal;
	}

	.page-note .note.en {
		margin-top: 1rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding-bottom: 5rem;
}

.footer__logo {
	margin: 0 auto 3rem;
	width: 15.1rem;
}

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

	.footer__logo {
		margin: 0 auto 3rem;
		width: 11.6rem;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: 1.3rem;
	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 {
		font-size: 0.9rem;
		text-align: center;
		display: block;
	}

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

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

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

/* 
	copy
------------------------------ */
.footer .copy {
	margin-top: 2em;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

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