/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background-color: rgb(var(--red));
	background-image: url(../img/bg-header.webp);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: min(8rem, 6.25vw);
	width: 100%;
	height: 65.625vw;
	color: rgb(var(--base));
	overflow: hidden;
	position: relative;
}

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

.header__title {
	width: 42.813vw;
	top: 10.156vw;
	z-index: 2;
}

.header__obj {
	background-image: url(../img/header-obj.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36.641vw;
	height: 36.641vw;
	bottom: -16.094vw;
	z-index: 1;
}

.header__obj--image {
	width: 34.063vw;
	height: 34.063vw;
}

.header__obj--image img {
	animation: rotateAnimation 25s linear infinite;
}

@keyframes rotateAnimation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(-360deg);
	}
}

@media screen and (max-width: 768px) {
	.header {
		background-image: url(../img/bg-header_sp.webp);
		padding-top: 0;
		height: 216.533vw;
		height: 100dvh;
	}

	.header__title {
		width: 83.2vw;
		height: calc(100% - 63.467vw);
		top: 60.8vw;
		display: flex;
		justify-content: center;
		align-items: center;
		top: 0;
	}

	.header__obj {
		width: 124.533vw;
		height: 124.533vw;
		bottom: -54.133vw;
	}

	.header__obj--image {
		width: 115.733vw;
		height: 115.733vw;
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background-color: rgb(var(--red));
	width: 100%;
	line-height: 1;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__list {
	height: min(8rem, 6.25vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__list--item {
	margin: 0 min(1.5rem, 1.172vw);
}

.gnav__list--item a {
	color: rgb(var(--base));
	font-family: var(--im);
	font-size: min(2rem, 1.563vw);
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.gnav {
		padding-top: 26.667vw;
		width: 100%;
		height: 100%;
		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__list {
		text-align: center;
		display: block;
	}

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

	.gnav__list--item a {
		font-size: 6.4vw;
		display: inline-block;
	}

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

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

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

@media screen and (max-width: 768px) {
	.toggle {
		background-color: rgb(var(--red));
		width: 18.667vw;
		height: 18.667vw;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
	}

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

	.toggle__inner--item {
		background: rgb(var(--wht));
		width: 9.6vw;
		height: 0.533vw;
		border-radius: 0.533vw;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

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

	.toggle__inner--item:nth-child(2) {
		bottom: 6.667vw;
		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%);
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: min(8rem, 6.25vw) 0;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 21.333vw 0 8vw;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	margin-bottom: min(2rem, 1.563vw);
	line-height: 1;
	font-size: min(1.6rem, 1.25vw);
	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;
	font-family: var(--amiri);
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		margin-bottom: 5.333vw;
		font-size: 4.267vw;
		flex-direction: column;
	}

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

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

	.footer .hotel-nav__item {
		margin: 0 auto;
		text-align: center;
	}

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

	.footer .hotel-nav__item a {
		line-height: normal;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	font-size: min(1.2rem, 0.938vw);
	font-weight: 300;
	text-align: center;
}

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

/* ----------------------------------------------------
	bg-image
---------------------------------------------------- */
.bg-image {
	overflow: hidden;
	position: relative;
}

.bg-image {
	background-position: center top;
}

.bg-image1 {
	background-image: url(../img/bg1.webp);
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-image2 {
	background-image: url(../img/bg2.webp);
	background-repeat: repeat-y;
	background-size: 100% auto;
}

@media screen and (max-width: 768px) {
	.bg-image1 {
		background-repeat: repeat-y;
		background-size: 100% auto;
	}

	.bg-image2 {
		background-image: url(../img/bg2_sp.webp);
	}
}

/* ----------------------------------------------------
	section
---------------------------------------------------- */
.section {
	padding: min(9rem, 7.031vw) 0;
}

.section__container {
	margin: 0 auto;
	width: min(112rem, 87.5vw);
}

.section.category {
	padding-top: min(19.3rem, 15.078vw);
	position: relative;
}

.section__category {
	background-color: rgb(var(--red));
	width: min(13.6rem, 10.625vw);
	height: min(16.3rem, 12.734vw);
	line-height: normal;
	color: rgb(var(--base));
	font-family: var(--im);
	font-size: min(1.6rem, 1.25vw);
	font-weight: 400;
	text-align: center;
	border-radius: 0 0 min(13.6rem, 10.625vw) min(13.6rem, 10.625vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.section__category--inner {
	background-position: center top;
	background-repeat: no-repeat;
}

.section__category--title,
.section__category--date,
.section__category--text {
	text-align: center;
}

.section__category--title {
	font-family: var(--amiri);
	font-size: min(5.2rem, 4.063vw);
	font-weight: 400;
}

.section__category--title .jp {
	font-family: var(--mincho);
	font-size: min(2.2rem, 1.719vw);
	font-weight: 500;
	display: block;
}

.section__category--date {
	margin-bottom: min(4rem, 3.125vw);
	font-size: min(2.2rem, 1.719vw);
}

.section__category--image {
	margin: 0 auto min(4rem, 3.125vw);
	width: min(112rem, 87.5vw);
}

.section__category--text {
	margin: 0 auto min(8rem, 6.25vw);
	width: min(112rem, 87.5vw);
}

.section__category--text .text {
	font-size: min(1.8rem, 1.406vw);
}

.section__category--text .text.en {
	margin-top: 1em;
	line-height: 1.25;
	font-family: var(--amiri);
	font-size: min(2rem, 1.563vw);
}

.section__category--detail {
	margin-bottom: min(8rem, 6.25vw);
	border-top: solid 1px rgb(var(--red));
	border-bottom: solid 1px rgb(var(--red));
}

.section__category--container {
	margin: 0 auto;
	width: min(112rem, 87.5vw);
	display: flex;
}

.section__category--container .content {
	padding: min(3.6rem, 2.813vw) 0;
	width: calc(100% - min(49.3rem, 38.516vw));
	border-right: solid 1px rgb(var(--red));
}

.section__category--container .content__title {
	font-family: var(--gothic);
	font-size: min(1.4rem, 1.094vw);
	font-weight: 500;
}

.section__category--container .content__title .en {
	font-family: var(--amiri);
	font-weight: 400;
	display: block;
}

.section__category--container .content__table {
	font-size: min(1.4rem, 1.094vw);
}

.section__category--container .content__table--th {
	padding-right: 2em;
	font-family: var(--abel);
	vertical-align: top;
}

.section__category--container .content__table--td {
	font-family: var(--gothic);
}

.section__category--container .content__table--td .pc {
	display: inline-block;
}

.section__category--container .content__note {
	margin-top: min(1.6rem, 1.25vw);
}

.section__category--container .link {
	background: none;
	width: min(49.3rem, 38.516vw);
	color: rgb(var(--red));
	font-family: var(--abel);
	font-size: min(4rem, 3.125vw);
	font-weight: 400;
	border-radius: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section__category--container .link a {
	width: 100%;
	height: 100%;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.section__category--container .link a::after {
	background-color: rgb(var(--red));
	margin-left: min(3rem, 2.344vw);
	width: min(2.2rem, 1.719vw);
	height: min(2.2rem, 1.719vw);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	content: "";
}

.section__category--container .link a:hover {
	background-color: rgb(var(--red));
	color: rgb(var(--base));
	opacity: 1;
}

.section__category--container .link a:hover::after {
	background-color: rgb(var(--base));
}

.section__title {
	margin-bottom: min(3rem, 2.344vw);
	line-height: normal;
	font-family: var(--amiri);
	font-size: min(5.2rem, 4.063vw);
	font-weight: 400;
	text-align: center;
}

.section__title .jp {
	font-family: var(--mincho);
	font-size: min(2.2rem, 1.719vw);
	font-weight: 500;
	display: block;
}

.section__title .jp span {
	margin-left: 1em;
	display: inline-block;
}

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

	.section__container {
		width: 85.333vw;
	}

	.section.category {
		padding-top: 48.8vw;
	}

	.section__category {
		width: 36.267vw;
		height: 43.467vw;
		font-size: 4.267vw;
		border-radius: 0 0 36.267vw 36.267vw;
	}

	.section__category--title {
		line-height: 1.2;
		font-size: 10.667vw;
	}

	.section__category--title .jp {
		margin-bottom: 0.5em;
		font-size: 5.333vw;
	}

	.section__category--date {
		margin-bottom: 10.667vw;
		font-size: 5.867vw;
	}

	.section__category--image {
		margin-bottom: 10.667vw;
		width: 85.333vw;
	}

	.section__category--text {
		margin-bottom: 10.667vw;
		width: 85.333vw;
		text-align: left;
	}

	.section__category--text .text,
	.section__category--text .text.en {
		font-size: 3.467vw;
	}

	.section__category--detail {
		margin-bottom: 10.667vw;
	}

	.section__category--container {
		width: 100%;
		display: block;
	}

	.section__category--container .content {
		padding: 8vw 0;
		width: 100%;
		border-right: none;
		border-bottom: solid 1px rgb(var(--red));
	}

	.section__category--container .content__title {
		margin: 0 auto;
		width: 85.333vw;
		font-size: 3.467vw;
	}

	.section__category--container .content__title .en {
		letter-spacing: -0.005em;
	}

	.section__category--container .content__table {
		margin: 0 auto;
		width: 85.333vw;
		font-size: 3.467vw;
	}

	.section__category--container .content__table--th {
		vertical-align: top;
	}

	.section__category--container .content__table--td .pc {
		display: none;
	}

	.section__category--container .content__note {
		margin: 4.267vw auto 0;
		width: 85.333vw;
	}

	.section__category--container .link {
		padding: 0;
		width: 100%;
		font-size: 8.533vw;
	}

	.section__category--container .link a {
		padding: 8vw 0;
	}

	.section__category--container .link a::after {
		margin-left: 4vw;
		width: 4.8vw;
		height: 4.8vw;
	}

	.section__title {
		margin-bottom: 10.667vw;
		font-size: 10.667vw;
	}

	.section__title .jp {
		font-size: 4.8vw;
	}

	.section__title .jp span {
		margin-left: 0;
		display: block;
	}
}

/*
	section__slide
---------------------------------------------------- */
.section__container--title {
	margin-bottom: min(2rem, 1.563vw);
	font-family: var(--im);
	font-size: min(3rem, 2.344vw);
	font-weight: 400;
	text-align: center;
}

.section__slide {
	margin: 0 auto;
	width: min(90rem, 70.313vw);
}

.section__slide--item {
	line-height: normal;
}

.section__slide--image {
	margin-bottom: min(3rem, 2.344vw);
}

.section__slide--title {
	margin-bottom: min(3rem, 2.344vw);
	font-size: min(2.2rem, 1.719vw);
	text-align: center;
}

.section__slide--title .price,
.section__slide--title .en {
	font-family: var(--amiri);
	display: block;
}

.section__slide--text .text {
	font-size: min(1.6rem, 1.25vw);
	text-align: center;
}

.section__slide--text .text.en {
	margin-top: 1em;
}

.section__slide .slick-arrow {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: min(3.9rem, 3.047vw);
	height: min(7.8rem, 6.094vw);
	top: min(27rem, 21.094vw);
	z-index: 1;
}

.section__slide .slick-prev {
	background-image: url(../img/arrow-prev.svg);
	left: max(-12rem, -9.375vw);
}

.section__slide .slick-next {
	background-image: url(../img/arrow-next.svg);
	right: max(-12rem, -9.375vw);
}

@media screen and (max-width: 768px) {
	.section__container--title {
		margin-bottom: 5.333vw;
		font-size: 5.867vw;
	}

	.section__slide {
		width: 85.333vw;
	}

	.section__slide--item {
		line-height: normal;
	}

	.section__slide--image {
		margin-bottom: 5.333vw;
	}

	.section__slide--title {
		margin-bottom: 5.333vw;
		font-size: 5.867vw;
	}

	.section__slide--title .en {
		margin-top: 0.25em;
		line-height: 1.5;
	}

	.section__slide--text .text {
		font-size: 3.467vw;
	}

	.section__slide .slick-arrow {
		width: 2.667vw;
		height: 5.333vw;
		top: 26.933vw;
	}

	.section__slide .slick-prev {
		background-image: url(../img/arrow-prev_sp.svg);
		left: -4.8vw;
	}

	.section__slide .slick-next {
		background-image: url(../img/arrow-next_sp.svg);
		right: -4.8vw;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	background-image: url(../img/bg-about.webp);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.about__container {
	margin: 0 auto;
	padding: min(9rem, 7.031vw) 0;
	width: min(108rem, 84.375vw);
	display: flex;
	justify-content: space-between;
}

.about__image {
	width: min(40rem, 31.25vw);
}

.about__content {
	width: min(62rem, 48.438vw);
}

.about__logo {
	margin: 0 auto min(5rem, 3.906vw);
	width: min(28.6rem, 22.344vw);
}

.about__hotel {
	background-image: url(../img/cross.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: min(2.1rem, 1.641vw) auto;
	font-family: var(--im);
	font-size: min(2.2rem, 1.719vw);
	text-align: center;
}

.about__hotel--item:not(:last-of-type) {
	margin-bottom: min(4rem, 3.125vw);
}

.about__text {
	margin-top: min(4rem, 3.125vw);
	line-height: 1.6;
	font-size: min(1.6rem, 1.25vw);
}

.about__text.en {
	line-height: 1.2;
	font-family: var(--amiri);
	display: flex;
	justify-content: space-between;
}

.about__text.en .text {
	width: calc(100% - min(38rem, 29.688vw));
}

.about__text.en .image {
	width: min(36rem, 28.125vw);
}

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

	.about__container {
		padding: 13.333vw 0;
		width: 85.333vw;
		display: block;
	}

	.about__image,
	.about__content {
		width: 100%;
	}

	.about__image {
		margin-bottom: 8vw;
	}

	.about__logo {
		margin-bottom: 8vw;
		width: 70.667vw;
	}

	.about__hotel {
		background-size: 5.333vw auto;
		font-size: 4vw;
		letter-spacing: -0.005em;
	}

	.about__hotel--item:not(:last-of-type) {
		margin-bottom: 10.667vw;
	}

	.about__text {
		margin-top: 8vw;
		font-size: 3.467vw;
	}

	.about__text.en {
		line-height: 1.4;
		display: block;
	}

	.about__text.en .text,
	.about__text.en .image {
		width: 100%;
	}

	.about__text.en .image {
		margin-top: 8vw;
	}
}

/* ----------------------------------------------------
	collaboration
---------------------------------------------------- */
.collaboration__container {
	padding: min(9rem, 7.031vw) 0;
}

.collaboration__container:not(:last-of-type) {
	border-bottom: solid 1px rgb(var(--red));
}

.collaboration__content {
	margin: 0 auto;
	width: min(108rem, 84.375vw);
}

.collaboration__content--title {
	margin-bottom: min(3rem, 2.344vw);
	line-height: 1.25;
	font-family: var(--amiri);
	font-size: min(4.5rem, 3.516vw);
	font-weight: 400;
}

.collaboration__content--title .small,
.collaboration__content--title .name {
	font-family: var(--mincho);
	font-size: min(2.8rem, 2.188vw);
}

.collaboration__content--title .small {
	margin-bottom: 1em;
	display: block;
}

.collaboration__content--title .name {
	margin-left: 0.5em;
	display: inline-block;
}

.collaboration__content--text {
	font-size: min(1.6rem, 1.25vw);
}

.collaboration__content--text .text.en {
	margin-top: 1em;
	line-height: 1.25;
	font-family: var(--amiri);
}

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

	.collaboration__content {
		width: 85.333vw;
	}

	.collaboration__content--title {
		margin-bottom: 8vw;
		font-size: 8vw;
	}

	.collaboration__content--title .small,
	.collaboration__content--title .name {
		font-size: 3.467vw;
		display: block;
	}

	.collaboration__content--title .name {
		margin: 0 0 0.5em;
		display: block;
	}

	.collaboration__content--text {
		font-size: 3.467vw;
	}

	.collaboration__content--text .text.en {
		line-height: 1.4;
	}
}

/*
	hotel
------------------------------ */
.hotel {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.hotel__image {
	width: min(66rem, 51.563vw);
}

.hotel .collaboration__content--text {
	width: min(35rem, 27.344vw);
}

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

	.hotel__image,
	.hotel .collaboration__content--text {
		width: 100%;
	}

	.hotel__image {
		margin-bottom: 8vw;
	}
}

/*
	chef
------------------------------ */
.chef {
	display: grid;
	grid-template-columns: min(28.5rem, 22.266vw) min(79.5rem, 62.109vw);
	grid-template-rows: auto 1fr;
}

.chef__image {
	width: min(28.5rem, 22.266vw);
	grid-column: 1/2;
	grid-row: 1/3;
}

.chef .collaboration__content--title,
.chef .collaboration__content--text {
	padding-left: min(5rem, 3.906vw);
}

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

	.chef__image {
		margin-bottom: 8vw;
		width: 100%;
	}

	.chef .collaboration__content--title,
	.chef .collaboration__content--text {
		padding-left: 0;
	}
}

/* ----------------------------------------------------
	dinner
---------------------------------------------------- */
.dinner.section {
	background-color: rgb(var(--red));
	padding-top: 0;
	color: rgb(var(--base));
}

.dinner .section__category--inner {
	background-image: url(../img/icon-meal.svg);
	background-size: min(2.8rem, 2.188vw) auto;
	padding-top: min(5.6rem, 4.375vw);
}

.dinner__main-image {
	margin-bottom: min(9rem, 7.031vw);
}

.dinner .section__category--detail {
	border-top-color: rgb(var(--base));
	border-bottom-color: rgb(var(--base));
}

.dinner .section__category--detail .content {
	border-right-color: rgb(var(--base));
}

.dinner .section__category--detail .link a {
	background-color: rgb(var(--red));
	color: rgb(var(--base));
}

.dinner .section__category--detail .link a::after {
	background-color: rgb(var(--base));
}

.dinner .section__category--detail .link a:hover {
	background-color: rgb(var(--base));
	color: rgb(var(--red));
}

.dinner .section__category--detail .link a:hover::after {
	background-color: rgb(var(--red));
}

.dinner .section__container {
	width: min(108rem, 84.375vw);
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.dinner .section__category--inner {
		background-size: 7.467vw auto;
		padding-top: 14.933vw;
	}

	.dinner__main-image {
		margin-bottom: 13.333vw;
	}

	.dinner .section__category--detail .content {
		border-bottom-color: rgb(var(--base));
	}

	.dinner .section__container {
		display: block;
	}
}

/*
	modal
------------------------------ */
.menu-modal,
.overlay {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
}

.overlay {
	background: rgba(var(--blk), 0.5);
	z-index: 1000;
}

.menu-modal {
	background: rgb(var(--base));
	padding: min(8rem, 6.25vw);
	width: min(77.5rem, 60.547vw);
	height: auto;
	max-height: 80vh;
	color: rgb(var(--red));
	overflow-y: auto;
	top: 50%;
	left: 50%;
	z-index: 1001;
	transform: translate(-50%, -50%);
}

.close {
	width: min(4rem, 3.125vw);
	height: min(4rem, 3.125vw);
	display: block;
	position: absolute;
	top: min(2rem, 1.563vw);
	right: min(2rem, 1.563vw);
	transform: rotate(45deg);
	transition: all 0.5s ease 0s;
	cursor: pointer;
}

.close::before,
.close::after {
	background-color: rgb(var(--red));
	width: 100%;
	height: min(0.2rem, 0.156vw);
	border-radius: min(0.2rem, 0.156vw);
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
}

.close::after {
	transform: rotate(90deg);
}

.close:hover {
	opacity: 0.5;
}

.menu-modal .title {
	font-family: var(--amiri);
	font-size: min(4rem, 3.125vw);
	font-weight: 400;
	text-align: center;
}

.menu-modal .content {
	font-size: min(1.8rem, 1.406vw);
}

.menu-modal .content__title {
	font-family: var(--im);
	font-style: italic;
	font-weight: 700;
}

.menu-modal .content__text {
	font-weight: 500;
}

.menu-modal .content__text:not(:last-of-type) {
	margin-bottom: 2em;
}

.menu-modal .modal-list li {
	display: flex;
}

.menu-modal .modal-list li::before {
	content: "・";
}

.menu-modal .modal-list li.note::before {
	content: "※";
}

.menu-modal .modal-list li.note.en::before {
	content: "*";
}

.menu-modal .modal-list li.note {
	font-size: min(1.4rem, 1.025vw);
}

@media screen and (max-width: 768px) {
	.menu-modal {
		padding: 5.333vw;
		width: 90.667vw;
	}

	.close {
		width: 10.667vw;
		height: 10.667vw;
		top: 2.667vw;
		right: 2.667vw;
	}

	.close::before,
	.close::after {
		height: 0.533vw;
		border-radius: 0.533vw;
	}

	.menu-modal .title {
		font-size: 8vw;
	}

	.menu-modal .content {
		font-size: 4vw;
	}

	.menu-modal .modal-list li.note {
		font-size: 3.2vw;
	}
}

/*
	dinner__lead
------------------------------ */
.dinner__lead {
	margin-bottom: min(8rem, 6.25vw);
}

.dinner__lead--content {
	width: min(54rem, 42.188vw);
}

.dinner__lead--title {
	margin-bottom: min(3rem, 2.344vw);
	line-height: 1.25;
	font-family: var(--amiri);
	font-size: min(6.8rem, 5.313vw);
	font-weight: 400;
}

.dinner__lead--title span {
	font-size: min(4rem, 3.125vw);
	display: block;
}

.dinner__lead--date {
	margin-bottom: min(3rem, 2.344vw);
	font-family: var(--amiri);
	font-size: min(2.2rem, 1.719vw);
}

.dinner__lead--text {
	margin-bottom: min(5rem, 3.906vw);
	font-size: min(1.6rem, 1.25vw);
}

.dinner__lead--text .text.en {
	margin-top: 1em;
	font-family: var(--amiri);
}

.dinner__lead .link-button {
	background-color: rgb(var(--base));
	margin: 0;
	color: rgb(var(--red));
}

.dinner__lead--image {
	width: min(44rem, 34.375vw);
}

@media screen and (max-width: 768px) {
	.dinner__lead {
		margin-bottom: 13.333vw;
	}

	.dinner__lead--content {
		margin-bottom: 13.333vw;
		width: 100%;
	}

	.dinner__lead--title {
		margin-bottom: 2.667vw;
		font-size: 10.667vw;
	}

	.dinner__lead--title span {
		font-size: 8.533vw;
	}

	.dinner__lead--date {
		margin-bottom: 8vw;
		font-size: 5.867vw;
	}

	.dinner__lead--text {
		margin-bottom: 8vw;
		font-size: 3.467vw;
	}

	.dinner__lead .link-button {
		width: 100%;
	}

	.dinner__lead--image {
		width: 100%;
	}
}

/*
	dinner__wine
------------------------------ */
.dinner__wine {
	margin-bottom: min(8rem, 6.25vw);
	padding-bottom: min(8rem, 6.25vw);
	line-height: 1.5;
	border-bottom: solid 1px rgb(var(--wht));
}

.dinner__wine--image {
	width: min(50rem, 39.063vw);
}

.dinner__wine--content {
	width: min(52rem, 40.625vw);
}

.dinner__wine--title {
	margin-bottom: min(5rem, 3.906vw);
	line-height: 1;
	font-size: min(6.8rem, 5.313vw);
	font-weight: 400;
}

.dinner__wine--price dt {
	font-size: min(1.6rem, 1.25vw);
}

.dinner__wine--price dd {
	font-family: var(--gothic);
	font-size: min(1.4rem, 1.094vw);
}

.dinner__wine--price .pc {
	display: inline-block;
}

.dinner__wine--text {
	margin-top: min(5rem, 3.906vw);
	font-size: min(1.6rem, 1.25vw);
}

.dinner__wine--text .text.en {
	margin-top: 1em;
}

@media screen and (max-width: 768px) {
	.dinner__wine {
		margin-bottom: 13.333vw;
		padding-bottom: 13.333vw;
	}

	.dinner__wine--image {
		margin-bottom: 13.333vw;
		width: 100%;
	}

	.dinner__wine--content {
		width: 100%;
	}

	.dinner__wine--title {
		margin-bottom: 5.333vw;
		font-size: 10.667vw;
	}

	.dinner__wine--price dt {
		font-size: 4.267vw;
	}

	.dinner__wine--price dd {
		font-size: 3.467vw;
	}

	.dinner__wine--price .pc {
		display: none;
	}

	.dinner__wine--text {
		margin-top: 8vw;
		font-size: 3.467vw;
	}
}

/*
	dinner__message
------------------------------ */
.dinner__message.section__container {
	margin-bottom: min(8rem, 6.25vw);
	padding-bottom: min(8rem, 6.25vw);
	border-bottom: solid 1px rgb(var(--wht));
	display: grid;
	grid-template-columns: min(78rem, 60.938vw) min(30rem, 23.438vw);
	grid-template-rows: auto 1fr;
}

.dinner__message--title {
	padding-bottom: min(2rem, 1.563vw);
	line-height: 1.25;
	font-family: var(--im);
	font-size: min(4.5rem, 3.516vw);
	font-weight: 400;
	grid-column: 1/2;
	grid-row: 1/2;
}

.dinner__message--title .from {
	font-family: var(--amiri);
	font-size: min(2.5rem, 1.953vw);
	font-weight: 700;
	display: block;
}

.dinner__message--title .jp {
	margin-left: 0.5em;
	font-family: var(--mincho);
	font-size: min(2.2rem, 1.719vw);
	font-weight: 500;
}

.dinner__message--text {
	padding-right: min(5rem, 3.906vw);
	font-size: min(1.6rem, 1.25vw);
	grid-column: 1/2;
	grid-row: 2/3;
}

.dinner__message--text .text.en {
	margin-top: 1em;
	font-family: var(--amiri);
}

.dinner__message--image {
	width: min(30rem, 23.438vw);
	grid-column: 2/3;
	grid-row: 1/3;
}

@media screen and (max-width: 768px) {
	.dinner__message.section__container {
		margin-bottom: 13.333vw;
		padding-bottom: 13.333vw;
		display: block;
	}

	.dinner__message--title {
		padding-bottom: 5.333vw;
		font-size: 10.667vw;
	}

	.dinner__message--title .from {
		font-size: 5.333vw;
	}

	.dinner__message--title .jp {
		margin: 0;
		font-size: 5.867vw;
		display: block;
	}

	.dinner__message--text {
		padding-right: 0;
		font-size: 3.467vw;
	}

	.dinner__message--image {
		margin-bottom: 5.333vw;
		width: 100%;
	}
}

/*
	dinner__wl
------------------------------ */
.dinner__wl.section__container {
	justify-content: flex-start;
}

.dinner__wl--title {
	margin-right: min(6rem, 4.688vw);
	line-height: normal;
	font-family: var(--amiri);
	font-size: min(5.2rem, 4.063vw);
	font-weight: 400;
	white-space: nowrap;
}

.dinner__wl--text {
	margin-bottom: min(3rem, 2.344vw);
	font-size: min(1.6rem, 1.25vw);
}

.dinner__wl--text .text.en {
	margin-top: 1em;
	font-family: var(--amiri);
}

.official {
	font-family: var(--gothic);
	font-size: min(1.3rem, 1.016vw);
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.official__logo {
	margin-left: min(3rem, 2.344vw);
	width: min(23.2rem, 18.125vw);
}

@media screen and (max-width: 768px) {
	.dinner__wl--title {
		margin-right: 5.333vw;
		font-size: 10.667vw;
	}

	.dinner__wl--text {
		margin-bottom: 8vw;
		font-size: 3.467vw;
	}

	.official {
		font-size: 3.467vw;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
	}

	.official__logo {
		margin: 0 0 2.667vw;
		width: 47.2vw;
	}
}

/*
	dinner__movie
------------------------------ */
.dinner__movie {
	margin-top: min(12rem, 9.375vw);
}

.dinner__movie--title {
	margin-bottom: min(2rem, 1.563vw);
	font-family: var(--amiri);
	font-size: min(2.5rem, 1.953vw);
	font-weight: 700;
	text-align: center;
}

.dinner__movie--content {
	margin: 0 auto;
	width: min(45rem, 35.156vw);
}

@media screen and (max-width: 768px) {
	.dinner__movie {
		margin-top: 16vw;
	}

	.dinner__movie--title {
		margin-bottom: 5.333vw;
		font-size: 6.667vw;
	}

	.dinner__movie--content {
		width: 85.333vw;
	}
}

/* ----------------------------------------------------
	branch
---------------------------------------------------- */
.branch .section__category--inner {
	background-image: url(../img/icon-meal.svg);
	background-size: min(2.8rem, 2.188vw) auto;
	padding-top: min(5.6rem, 4.375vw);
}

.branch .section__category--detail {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.branch .section__category--inner {
		background-size: 7.467vw auto;
		padding-top: 14.933vw;
	}
}

/* ----------------------------------------------------
	lunch
---------------------------------------------------- */
.lunch {
	border-top: solid 1px rgb(var(--red));
	border-bottom: solid 1px rgb(var(--red));
}

.lunch .section__category--inner {
	background-image: url(../img/icon-meal.svg);
	background-size: min(2.8rem, 2.188vw) auto;
	padding-top: min(5.6rem, 4.375vw);
}

@media screen and (max-width: 768px) {
	.lunch .section__category--inner {
		background-size: 7.467vw auto;
		padding-top: 14.933vw;
	}
}

/* ----------------------------------------------------
	tea
---------------------------------------------------- */
.tea {
	border-bottom: solid 1px rgb(var(--red));
}

.tea .section__category--inner {
	background-image: url(../img/icon-tea.svg);
	background-size: min(5rem, 3.906vw) auto;
	padding-top: min(4.3rem, 3.359vw);
}

.tea .section__category--detail {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.tea .section__category--inner {
		background-size: 13.333vw auto;
		padding-top: 11.467vw;
	}
}

/* ----------------------------------------------------
	cocktails
---------------------------------------------------- */
.cocktails {
	border-bottom: solid 1px rgb(var(--red));
}

.cocktails .section__category--inner {
	background-image: url(../img/icon-cocktails.svg);
	background-size: min(3rem, 2.344vw) auto;
	padding-top: min(5.6rem, 4.375vw);
}

@media screen and (max-width: 768px) {
	.cocktails .section__category--inner {
		background-image: url(../img/icon-cocktails.svg);
		background-size: 8vw auto;
		padding-top: 14.933vw;
	}
}

/* ----------------------------------------------------
	inquiry
---------------------------------------------------- */
.inquiry {
	background-color: rgb(var(--red));
	color: rgb(var(--base));
	text-align: center;
}

.inquiry__tel {
	font-size: min(4rem, 3.125vw);
}

.inquiry__time {
	font-size: min(2.2rem, 1.719vw);
}

@media screen and (max-width: 768px) {
	.inquiry .section__title {
		margin-bottom: 4vw;
	}

	.inquiry__tel {
		font-size: 8vw;
	}

	.inquiry__time {
		font-size: 5.333vw;
	}
}

/* ----------------------------------------------------
	offer
---------------------------------------------------- */
.offer.section {
	padding-bottom: 0;
}

.offer .section__title {
	font-size: min(9.2rem, 7.188vw);
}

.offer .section__title .small {
	font-family: var(--im);
	font-size: min(3rem, 2.344vw);
	font-weight: 400;
	display: block;
}

.offer__lead {
	margin-bottom: min(8rem, 6.25vw);
	text-align: center;
}

.offer__lead--text {
	line-height: normal;
	font-size: min(3.3rem, 2.578vw);
	font-weight: 500;
}

.offer__lead--text.en {
	font-family: var(--amiri);
	font-size: min(4.2rem, 3.281vw);
	font-weight: 600;
}

.offer__logo {
	margin-bottom: min(8rem, 6.25vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.offer__logo--item {
	margin: 0 min(4rem, 3.125vw);
}

.offer__logo--item.nippon img {
	width: min(14.6rem, 11.406vw);
}

.offer__logo--item.ita img {
	width: min(14.1rem, 11.016vw);
}

.offer__qr {
	margin: 0 auto min(8rem, 6.25vw);
	width: min(16rem, 12.5vw);
}

.offer__text {
	margin-bottom: min(3rem, 2.344vw);
	font-family: var(--gothic);
	font-size: min(1.6rem, 1.25vw);
	text-align: center;
}

.offer__text .text.en {
	font-family: var(--abel);
	letter-spacing: -0.005em;
}

.offer__note {
	text-align: center;
}

.offer.section .bg {
	background-image: url(../img/bg-offer.webp);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 34.766vw;
	;
}

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

	.offer .section__title .small {
		font-size: 6.667vw;
	}

	.offer__lead {
		margin-bottom: 13.333vw;
		text-align: center;
	}

	.offer__lead--text {
		font-size: 6.4vw;
	}

	.offer__lead--text.en {
		margin-bottom: 5.333vw;
		line-height: 1.15;
		font-size: 8vw;
	}

	.offer__logo {
		margin-bottom: 13.333vw;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.offer__logo--item {
		margin: 0 5.333vw;
	}

	.offer__logo--item.nippon img,
	.offer__logo--item.ita img {
		width: 32vw;
	}

	.offer__qr {
		margin-bottom: 13.333vw;
		width: 42.667vw;
	}

	.offer__text {
		margin-bottom: 8vw;
		font-size: 3.467vw;
	}

	.offer__text .text.en {
		margin-top: 2.667vw;
	}

	.offer.section .bg {
		background-image: url(../img/bg-offer_sp.webp);
		height: 127.467vw;
	}
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation .section__container {
	padding: min(8rem, 6.25vw) 0;
	text-align: center;
	border: solid 1px rgb(var(--red));
	border-radius: min(56rem, 43.75vw);
}

.reservation__tel {
	margin-bottom: min(3rem, 2.344vw);
	font-family: var(--amiri);
	font-size: min(4rem, 3.125vw);
}

.reservation__time,
.reservation__note {
	margin-bottom: min(3rem, 2.344vw);
	font-family: var(--gothic);
	font-size: min(2rem, 1.563vw);
}

.reservation__time .en,
.reservation__note--text.en {
	font-family: var(--abel);
}

.reservation__time .en {
	padding-left: 1em;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.reservation .section__container {
		padding: 21.333vw 0;
		border-radius: 34.667vw;
	}

	.reservation__tel {
		margin-bottom: 4vw;
		font-size: 8vw;
	}

	.reservation__time,
	.reservation__note {
		font-family: var(--gothic);
		font-size: 3.467vw;
	}

	.reservation__time {
		margin-bottom: 4.8vw;
	}

	.reservation__note {
		margin-bottom: 8vw;
	}

	.reservation__time .en {
		padding-left: 0;
		display: block;
	}
}

/* ----------------------------------------------------
	corporation
---------------------------------------------------- */
.corporation.section {
	padding-bottom: 0;
}

.corporation__partner--list {
	line-height: 1.6;
	font-size: min(1.8rem, 1.406vw);
	text-align: center;
}

.corporation__partner--list.eng {
	margin-top: min(3rem, 2.344vw);
	line-height: 1.2;
	font-family: var(--amiri);
	font-size: min(1.6rem, 1.25vw);
}

.corporation__logo {
	margin: min(4rem, 3.125vw) 0 min(8rem, 6.25vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.corporation__logo--item {
	margin: 0 min(2.8rem, 2.188vw);
}

.corporation__logo--item.ita img {
	width: min(15.9rem, 12.422vw);
}

.corporation__logo--item.wine img {
	width: min(18.7rem, 14.609vw);
}

.corporation__logo--item.nippon img {
	width: min(13.5rem, 10.547vw);
}

.corporation__logo--item.bonvoy img {
	width: min(16.1rem, 12.578vw);
}

.corporation__logo--item.gentile img {
	width: min(6.7rem, 5.234vw);
}

.corporation__note {
	margin: 0 auto;
	width: min(66rem, 51.563vw);
}

.corporation__note .en {
	margin-top: 1.5em;
}

@media screen and (max-width: 768px) {
	.corporation__partner--list {
		line-height: 1.6;
		font-size: 3.467vw;
		text-align: center;
	}

	.corporation__partner--list.eng {
		margin-top: 8vw;
		font-size: 4.267vw;
	}

	.corporation__logo {
		margin: 10.667vw 0 21.333vw;
		display: block;
	}

	.corporation__logo--item {
		margin: 0;
		text-align: center;
	}

	.corporation__logo--item:not(:last-of-type) {
		margin-bottom: 13.333vw;
	}

	.corporation__logo--item.ita img {
		width: 42.4vw;
	}

	.corporation__logo--item.wine img {
		width: 49.867vw;
	}

	.corporation__logo--item.nippon img {
		width: 36vw;
	}

	.corporation__logo--item.bonvoy img {
		width: 42.933vw;
	}

	.corporation__logo--item.gentile img {
		width: 17.867vw;
	}

	.corporation__note {
		padding: 0;
		width: 85.333vw;
	}

	.corporation__note .eng {
		margin-top: 1.5em;
	}
}