/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.header__title {
	width: 29.236vw;
	position: absolute;
	top: 0;
	left: 3.194vw;
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 25.9rem;
		top: 6rem;
		left: 50%;
		transform: translateX(-50%);
	}
}

/*
	lang
------------------------------ */
.lang {
	background: linear-gradient(90deg, rgba(153, 108, 108, 0.50) 0%, rgba(104, 85, 116, 0.50) 100%);
	padding: 1.2rem 1.6rem;
	width: 12.2rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.6rem;
	border: solid 1px rgb(var(--wht));
	border-radius: 2rem;
	position: absolute;
	top: 4rem;
	right: 5rem;
}

.lang__button {
	width: 100%;
	display: block;
	text-align: left;
	position: relative;
	cursor: pointer;
}

.lang__button::after {
	width: 0.6rem;
	height: 0.6rem;
	border-right: solid 1px rgb(var(--wht));
	border-bottom: solid 1px rgb(var(--wht));
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	content: "";
}

.lang.is-open .lang__button::after {
	transform: translateY(-25%) rotate(225deg);
}

.lang__list {
	display: none;
}

.lang__list--item {
	margin-top: 1.2rem;
}

.lang__link {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.lang {
		padding: 1rem 1.2rem;
		width: 9.4rem;
		font-size: 1.2rem;
		top: 1.6rem;
		right: 1.6rem;
	}

	.lang__button::after {
		width: 0.4rem;
		height: 0.4rem;
	}
}

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

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background: linear-gradient(180deg, #CCB29F 0%, #957E95 100%);
		padding-top: 8rem;
		max-width: 37.5rem;
		width: 100%;
		height: 100%;
		overflow: auto;
		display: block;
		position: fixed;
		top: 0;
		right: auto;
		left: 0;
		z-index: 999;
		transform: translateX(-100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		padding: 0 5rem;
		display: block;
	}

	.gnav__item {
		margin: 0 0 1.5rem;
		font-size: 2rem;
	}

	.gnav__item a {
		color: rgb(var(--wht));
		text-decoration: 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: 3本線
---------------------------------------------------- */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 2.6rem;
		height: 2rem;
		display: block;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		position: fixed;
		top: 3.2rem;
		left: 1rem;
		z-index: 1000;
		transition: opacity 0.4s ease 0s, visibility 0.4s ease 0s;
	}

	.is-main-passed .toggle,
	.is-open .toggle {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

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

	.toggle__line {
		background: rgb(var(--dark-purple));
		width: 100%;
		height: 1px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
		transform: translateX(-50%);
		transform-origin: center;
	}

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

	.toggle__line:nth-child(2) {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.toggle__line:nth-child(3) {
		bottom: 0;
	}

	.is-open .toggle__line {
		background-color: rgb(var(--wht));
		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) {
		opacity: 0;
	}

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

/* ----------------------------------------------------
	main
---------------------------------------------------- */
.main {
	position: relative;
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation {
	width: 10.4rem;
	position: absolute;
	top: 4rem;
	right: 1rem;
	z-index: 10;
}

.reservation.is-fixed {
	position: fixed;
}

@media screen and (max-width: 768px) {
	.reservation {
		width: 7.4rem;
		top: 0.4rem;
		right: 0.4rem;
	}
}

/* ----------------------------------------------------
	sec
---------------------------------------------------- */
.sec {
	position: relative;
}

.sec__cont {
	background-color: rgba(var(--wht), 0.5);
	margin: 0 auto;
	padding: 10rem 0;
	width: 114rem;
	position: relative;
}

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

.bg-fixed__media {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.bg-crossfade-enabled .bg-fixed__media {
	width: 100vw;
	height: 100vh;
	position: fixed;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

.bg-crossfade-enabled .intro .bg-fixed__media {
	opacity: 1;
}

.bg-fixed__clip {
	height: 100%;
	overflow: hidden;
	position: relative;
	clip-path: inset(0 0 0 0);
}

.bg-fixed__clip picture {
	width: 100%;
	height: 100%;
	display: block;
}

.bg-fixed__clip img {
	width: 100vw;
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	object-fit: cover;
	pointer-events: none;
}

.bg-crossfade-enabled .bg-fixed__clip img {
	width: 100%;
	height: 100%;
	position: static;
}

/*
	about
------------------------------ */
.about .sec__cont {
	padding-bottom: 0;
}

.about__title {
	margin-bottom: 4rem;
	line-height: 1;
	font-size: 4.8rem;
	font-weight: 500;
	text-align: center;
}

.about__lead {
	margin-bottom: 5rem;
	font-size: 2rem;
	text-align: center;
}

.about__content {
	background-image: url(../img/about-top.svg), url(../img/about-bottom.svg);
	background-position: top right, bottom left;
	background-repeat: no-repeat;
	background-size: 100% auto;
	margin: 0 auto;
	padding: 5rem 0;
	width: 67.5rem;
}

.about__table {
	margin: 0 auto;
	width: 54.8rem;
	font-size: 1.6rem;
}

.about__table--row {
	border-bottom: solid 1px rgb(var(--blk));
}

.about__table--th,
.about__table--td {
	padding: 1.5rem 0;
	vertical-align: top;
}

.about__table--th {
	padding-right: 5.5rem;
}

.about__table--th.date {
	padding-top: 1.8rem;
}

.about__table--td.date {
	padding-top: 0;
	font-size: 2rem;
	vertical-align: baseline;
}

.about__table--td.date i {
	font-size: 3.2rem;
}

.about__list--title .line-box {
	margin-left: 1rem;
	padding: 0 0.5rem;
	line-height: normal;
	border: solid 1px rgb(var(--blk));
	border-radius: 0.5rem;
	display: inline-block;
}

.about__list--content:not(:last-of-type) {
	margin-bottom: 2em;
}

.about__list--content th {
	padding-right: 1rem;
}

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

	.about__lead {
		margin-bottom: 5rem;
		font-size: 1.6rem;
	}

	.about__content {
		background-image: url(../img/about-top_sp.svg), url(../img/about-bottom_sp.svg);
		padding: 3rem 0;
		width: 34.5rem;
	}

	.about__table {
		width: 30rem;
		font-size: 1.5rem;
	}

	.about__table--th {
		padding-right: 1rem;
	}

	.about__table--th.date {
		padding-top: 1rem;
	}

	.about__table--td.date {
		font-size: 1.5rem;
	}

	.about__table--td.date i {
		font-size: 2.4rem;
	}

	.about__list--content table,
	.about__list--content tbody,
	.about__list--content th,
	.about__list--content td {
		display: block;
	}
}

/*
	nav
------------------------------ */
.nav .sec__cont {
	padding: 5rem 0 0;
}

.nav__title {
	margin: 0 auto 8rem;
	width: 98rem;
	font-size: 2.4rem;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 3rem;
}

.nav__title::before,
.nav__title::after {
	background-color: rgb(var(--blk));
	height: 1px;
	flex: 1;
	min-width: 0;
	content: "";
}

.nav__list {
	margin: 0 auto;
	width: 98rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.nav__list--item {
	margin: 0 6rem 9rem 0;
	width: 19.2rem;
	position: relative;
}

.nav__list--item:nth-child(4n),
.nav__list--item:last-of-type {
	margin-right: 0;
}

.nav__list--item a {
	display: block;
}

.nav__list--item a:hover {
	opacity: 1;
}

.nav__list--item .wind-chime {
	position: absolute;
	pointer-events: none;
	transform-origin: 50% 0;
}

.nav__list--item:hover .wind-chime,
.nav__list--item:active .wind-chime {
	animation: wind-chime-sway 1.35s ease-out;
}

@keyframes wind-chime-sway {
	0% {
		transform: rotate(0);
	}

	20% {
		transform: rotate(14deg);
	}

	40% {
		transform: rotate(-10deg);
	}

	60% {
		transform: rotate(7deg);
	}

	80% {
		transform: rotate(-4deg);
	}

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

.nav01 .wind-chime {
	width: 14.4rem;
	top: -4.3rem;
	left: -6.1rem;
}

.nav02 .wind-chime {
	width: 8rem;
	top: -4.6rem;
	left: -1rem;
}

.nav03 .wind-chime {
	width: 7.2rem;
	top: -4.6rem;
	left: -1rem;
}

.nav04 .wind-chime {
	width: 14.1rem;
	top: -4.6rem;
	left: -5.2rem;
}

.nav05 .wind-chime {
	width: 7.2rem;
	top: -4.7rem;
	left: -3rem;
}

.nav06 .wind-chime {
	width: 14.1rem;
	top: -4.4rem;
	left: -7rem;
}

.nav07 .wind-chime {
	width: 8rem;
	top: -4.4rem;
	left: -0.4rem;
}

@media screen and (max-width: 768px) {
	.nav__title {
		margin-bottom: 4rem;
		width: 100%;
		font-size: 2rem;
		justify-content: center;
	}

	.nav__title::before,
	.nav__title::after {
		display: none;
	}

	.nav__list {
		width: 31.3rem;
	}

	.nav__list--item {
		margin: 0 2.5rem 2.5rem 0;
		width: 14.3rem;
	}

	.nav__list--item:nth-child(even),
	.nav__list--item:last-of-type {
		margin-right: 0;
	}

	.nav01 .wind-chime {
		width: 8.8em;
		top: -2.5rem;
		left: -2rem;
	}

	.nav02 .wind-chime {
		width: 5rem;
		top: -2.5rem;
		left: 1rem;
	}

	.nav03 .wind-chime {
		width: 4.5rem;
		top: -2.5rem;
		left: 0;
	}

	.nav04 .wind-chime {
		width: 8.8rem;
		top: -2.5rem;
		left: -1rem;
	}

	.nav05 .wind-chime {
		width: 4.5rem;
		top: -2.5rem;
		left: -1em;
	}

	.nav06 .wind-chime {
		width: 8.8rem;
		top: -2.5rem;
		left: -3rem;
	}

	.nav07 .wind-chime {
		width: 5rem;
		top: -2.5rem;
		left: 1em;
	}
}

/* ----------------------------------------------------
	seating
---------------------------------------------------- */
.seating .sec__cont {
	padding-top: 0;
}

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

#seating01.seating__content {
	flex-direction: row-reverse;
}

.seating__content--detail {
	width: calc(100% - 37.5rem);
	font-size: 1.6rem;
	position: relative;
}

.seating__content--title {
	margin-bottom: 1.6rem;
	padding-bottom: 1.6rem;
	border-bottom: solid 1px rgb(var(--wht));
}

.seating__content--title img {
	width: auto;
	height: 9.3rem;
}

.seating__content--lead {
	margin-bottom: 1.6rem;
}

.seating__content--price {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	width: 36.2rem;
	line-height: normal;
	border-bottom: solid 1px rgb(var(--dark-purple));
	border-left: solid 1px rgb(var(--dark-purple));
	display: flex;
}

.seating__content--price-title {
	padding: 0 2.4rem 0 1.6rem;
	color: rgb(var(--dark-purple));
}

.seating__content--image {
	position: absolute;
}

.seating__image {
	width: 37.5rem;
}

/* seating01 */
#seating01 .seating__content--detail {
	padding-right: 8rem;
	padding-left: 6rem;
}

#seating01 .seating__content--image {
	width: 26.7rem;
	top: 0;
	right: 0;
}

/* seating02 */
#seating02 .seating__content--detail {
	padding-left: 8rem;
}

#seating02 .benefit {
	width: 62.4rem;
}

#seating02 .seating__content--image {
	width: 23.2rem;
	top: 12.2rem;
	right: 6rem;
}

@media screen and (max-width: 768px) {
	.seating .sec__cont {
		padding-top: 2rem;
	}

	.seating__content {
		margin-bottom: 6rem;
		display: block;
	}

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

	.seating__content--title {
		margin: 0 auto 2rem;
		padding-bottom: 0;
		width: 34.5rem;
		border: none;
	}

	.seating__content--title img {
		width: 100%;
		height: auto;
	}

	.seating__content--lead {
		margin: 0 auto 2em;
		width: 34.5rem;
	}

	.seating__content--price {
		margin: 0 auto 2rem;
		width: 34.5rem;
	}

	.seating__content--price-title {
		padding: 0 1.6rem 0 1.2rem;
	}

	.benefit,
	.seating__content--image {
		margin: 0 auto 2rem;
		width: 34.5rem;
		position: static;
	}

	.seating__image {
		margin-top: 2rem;
		width: 100%;
	}

	/* seating01 */
	#seating01 .seating__content--detail {
		padding-right: 0;
		padding-left: 0;
	}

	#seating01 .seating__content--image {
		width: 34.5rem;
	}

	/* seating02 */
	#seating02 .seating__content--detail {
		padding-left: 0;
	}

	#seating02 .benefit,
	#seating02 .seating__content--image {
		width: 34.5rem;
	}
}

/*
	hospitality
------------------------------ */
.hospitality {
	margin: 0 auto 8rem;
	padding: 0.9rem;
	width: 95.6rem;
	border: solid 0.2rem rgb(var(--dark-purple));
	position: relative;
}

.hospitality::before,
.hospitality::after,
.hospitality__inner::before,
.hospitality__inner::after {
	background-image: url(../img/hospitality-bg.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 2.2rem;
	height: 2.2rem;
	position: absolute;
	content: "";
}

.hospitality::before,
.hospitality::after {
	top: -1rem;
}

.hospitality::before {
	left: -1rem;
}

.hospitality::after {
	right: -1rem;
}

.hospitality__inner {
	background-color: rgba(var(--wht), 0.5);
	padding: 4.5rem 7.7rem;
	border: solid 0.2rem rgb(var(--dark-purple));
	position: relative;
}

.hospitality__inner::before,
.hospitality__inner::after {
	bottom: -2.2rem;
}

.hospitality__inner::before {
	left: -2.2rem;
}

.hospitality__inner::after {
	right: -2.2rem;
}

.hospitality__title {
	margin-bottom: 1rem;
	line-height: normal;
	color: rgb(var(--dark-purple));
	font-size: 3.6rem;
	text-align: center;
}

.hospitality__title--small {
	font-size: 2.4rem;
	display: block;
}

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

.hospitality__content--detail {
	padding-right: 4.5rem;
	width: calc(100% - 35rem);
	font-size: 2rem;
}

.hospitality__content--detail .note {
	margin-top: 3rem;
}

.hospitality__content--image {
	width: 35rem;
}

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

	.hospitality__inner {
		padding: 2.4rem 1.8rem;
	}

	.hospitality__title {
		margin-bottom: 1.6rem;
		font-size: 2rem;
	}

	.hospitality__title--small {
		font-size: 1.2rem;
	}

	.hospitality__content {
		display: block;
	}

	.hospitality__content--detail {
		margin-bottom: 1.6rem;
		padding-right: 0;
		width: 100%;
		font-size: 1.4rem;
	}

	.hospitality__content--detail .note {
		margin-top: 1rem;
	}

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

/*
	traveling
------------------------------ */
.traveling__title {
	margin-bottom: 2rem;
	line-height: normal;
	color: rgb(var(--dark-purple));
	font-family: var(--title);
	font-size: 4rem;
	text-align: center;
}

.traveling__content {
	background-image: url("../img/traveling-bg-top.svg"), url("../img/traveling-bg-bottom.svg"), linear-gradient(#957E7E, #957E7E);
	background-position: center top, center bottom, 1.7rem 9.5rem;
	background-repeat: no-repeat;
	background-size: 100% auto, 100% auto, calc(100% - 3.4rem) calc(100% - 19rem);
	margin: 0 auto;
	padding: 5rem 12.3rem;
	width: 100rem;
	color: rgb(var(--wht));
}

.traveling__content--inner {
	position: relative;
}

.traveling__content--title {
	margin-bottom: 5rem;
	font-size: 3.6rem;
	text-align: center;
}

.traveling__content--detail {
	margin-bottom: 5rem;
	display: flex;
}

.traveling__content--detail:nth-of-type(even) {
	flex-direction: row-reverse;
}

.traveling__image {
	width: 35rem;
}

.traveling__content--detail .content {
	padding-right: 4rem;
	width: calc(100% - 35rem);
}


.traveling__content--detail .content__title {
	margin-bottom: 1rem;
	position: relative;
}

.traveling__content--detail .content__title::after {
	background-color: rgb(var(--wht));
	width: 44rem;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
	content: "";
}

.traveling__content--detail .content__title--inner {
	background-color: #957E7E;
	padding-right: 0.5em;
	font-size: 2.4rem;
	position: relative;
	z-index: 2;
}

.traveling__content--detail .content__text {
	margin-bottom: 2rem;
	font-size: 1.6rem;
}

.traveling__content--detail .content__sponsor {
	font-family: var(--gothic);
	font-size: 1.4rem;
	display: flex;
}

.traveling__content--detail .content__sponsor a {
	color: #ECD9FC;
}

.traveling__content--detail .content__sponsor--title {
	white-space: nowrap;
}

.traveling__content--detail .content__price {
	margin: 2.4rem 0;
	padding-bottom: 1rem;
	font-size: 1.6rem;
	border-bottom: solid 1px rgb(var(--wht));
	border-left: solid 1px rgb(var(--wht));
	display: flex;
}

.traveling__content--detail .content__price--title {
	padding: 0 2.4rem 0 1.6rem;
}

.traveling__content--detail .content__price--detail {
	font-family: var(--gothic);
}

/* even */
.traveling__content--detail:nth-of-type(even) .content {
	padding-right: 0;
	padding-left: 4rem;
}

.traveling__content--detail:nth-of-type(even) .content__title {
	text-align: right;
}

.traveling__content--detail:nth-of-type(even) .content__title::after {
	right: 0;
	left: auto;
}

.traveling__content--detail:nth-of-type(even) .content__title--inner {
	padding-right: 0;
	padding-left: 0.5em;
}

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

	.traveling__content {
		background-image: url("../img/traveling-bg-top_sp.svg"), url("../img/traveling-bg-bottom_sp.svg"), linear-gradient(#957E7E, #957E7E);
		background-position: center top, center bottom, 1.2rem 69.8rem;
		background-size: 100% auto, 100% auto, calc(100% - 2.4rem) calc(100% - 139.6rem);
		padding: 3rem 3rem 6rem;
		width: 100%;
	}

	.traveling__content--title {
		margin-bottom: 3rem;
		font-size: 2.4rem;
	}

	.traveling__content--detail {
		display: block;
	}

	.traveling__image {
		margin-top: 2rem;
		width: 100%;
	}

	.traveling__content--detail .content,
	.traveling__content--detail:nth-of-type(even) .content {
		padding: 0;
		width: 100%;
	}

	.traveling__content--detail .content__title::after {
		width: 100%;
	}

	.traveling__content--detail .content__title--inner {
		font-size: 2rem;
	}

	.traveling__content--detail .content__text {
		font-size: 1.4rem;
	}

	.traveling__content--detail .content__sponsor {
		font-size: 1rem;
	}

	.traveling__content--detail .content__price {
		margin: 1.6rem 0;
		font-size: 1.4rem;
	}

	.traveling__content--detail .content__price--title {
		padding: 0 1.6rem;
	}
}

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

.food .sec__cont {
	background: rgba(212, 170, 170, 0.50);
	padding-top: 20rem;
	padding-bottom: 0;
}

.food__content {
	margin: 0 auto 6rem;
	width: 79.4rem;
	position: relative;
}

.food__title {
	margin-bottom: 3rem;
	line-height: normal;
	font-family: var(--title);
	font-size: 4rem;
	text-align: center;
}

.food__title i {
	font-family: var(--lavishly);
}

@media screen and (max-width: 768px) {
	.food .sec__cont {
		padding-top: 10rem;
	}

	.food__content {
		width: 34.5rem;
	}

	.food__title {
		margin-bottom: 2rem;
		font-size: 2.8rem;
	}
}

/*
	fd
------------------------------ */
.fd {
	padding-bottom: 3rem;
	border-bottom: solid 1px rgb(var(--wht));
}

.fd::before,
.fd::after {
	background-color: rgb(var(--wht));
	position: absolute;
	top: -8rem;
	right: -8rem;
	content: "";
}

.fd::before {
	width: 63.1rem;
	height: 1px;
}

.fd::after {
	width: 1px;
	height: 17.8rem;
}

.food__content--detail {
	margin-bottom: 4rem;
	display: flex;
}

.food__content--detail.rev {
	flex-direction: row-reverse;
}

.food__detail {
	padding-right: 3rem;
	width: calc(100% - 40rem);
	font-size: 2rem;
}

.rev .food__detail {
	padding: 0 0 0 3rem;
}

.food__detail--title {
	margin-bottom: 2rem;
	line-height: normal;
	font-family: var(--lavishly);
	font-size: 4rem;
}

.rev .food__detail--title {
	text-align: right;
}

.drink {
	font-size: 2rem;
}

.drink__title {
	line-height: normal;
}

.drink__content {
	margin-bottom: 2rem;
}

.drink__content--price {
	font-family: var(--gothic);
	font-size: 1.6rem;
}

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

.food__image {
	width: 40rem;
}

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

	.fd::before,
	.fd::after {
		top: -4rem;
		right: 0;
	}

	.fd::before {
		width: 26rem;
	}

	.fd::after {
		height: 5.2rem;
	}

	.food__content--detail {
		margin-bottom: 3rem;
		display: block;
	}

	.food__detail,
	.rev .food__detail {
		padding: 0;
		width: 34.5rem;
		font-size: 1.6rem;
	}

	.food__detail--title,
	.rev .food__detail--title {
		margin-bottom: 1rem;
		font-size: 4rem;
		text-align: center;
	}

	.drink {
		font-size: 1.6rem;
	}

	.drink__title {
		line-height: normal;
	}

	.drink__content--inner {
		display: flex;
	}

	.drink__content--price {
		margin-left: 1em;
	}

	.food__image {
		margin-top: 2rem;
		width: 34.5rem;
	}
}

/*
	option
------------------------------ */
.option {
	padding-bottom: 16rem;
	position: relative;
}

.option::before,
.option::after {
	background-color: rgb(var(--wht));
	position: absolute;
	bottom: 8rem;
	left: -8rem;
	content: "";
}

.option::before {
	width: 63.1rem;
	height: 1px;
}

.option::after {
	width: 1px;
	height: 17.8rem;
}

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

.option__list--item {
	width: 37.1rem;
}

.option__image {
	margin-bottom: 2rem;
}

.option__title,
.option__price {
	margin-bottom: 1rem;
	line-height: normal;
}

.option__title {
	font-size: 2rem;
}

.option__price,
.option__text {
	font-size: 1.6rem;
}

.option__price {
	font-family: var(--gothic);
}

@media screen and (max-width: 768px) {
	.option {
		margin-bottom: 0;
		padding-bottom: 10rem;
		position: relative;
	}

	.option::before,
	.option::after {
		background-color: rgb(var(--wht));
		position: absolute;
		bottom: 5rem;
		left: 0;
		content: "";
	}

	.option::before {
		width: 100%;
		height: 1px;
	}

	.option::after {
		width: 1px;
		height: 4rem;
	}

	.option__list {
		width: 34.5rem;
		display: block;
	}

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

	.option__title {
		font-size: 1.6rem;
	}
}

/*
	omekashi
------------------------------ */
.omekashi {
	margin: 0 auto;
	padding: 0.9rem;
	width: 95.6rem;
	border: solid 0.2rem rgba(211, 200, 221, 1);
	position: relative;
}

.omekashi::before,
.omekashi::after,
.omekashi__inner::before,
.omekashi__inner::after {
	background-image: url(../img/omekashi-bg.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 2.2rem;
	height: 2.2rem;
	position: absolute;
	content: "";
}

.omekashi::before,
.omekashi::after {
	top: -1rem;
}

.omekashi::before {
	left: -1rem;
}

.omekashi::after {
	right: -1rem;
}

.omekashi__inner {
	background-color: rgba(211, 200, 221, 1);
	padding: 5rem;
	color: rgb(var(--blk));
	border: solid 0.2rem rgba(211, 200, 221, 1);
	position: relative;
}

.omekashi__inner::before,
.omekashi__inner::after {
	bottom: -2.2rem;
}

.omekashi__inner::before {
	left: -2.2rem;
}

.omekashi__inner::after {
	right: -2.2rem;
}

.omekashi__title {
	margin-bottom: 2rem;
	line-height: normal;
	color: rgb(var(--dark-purple));
	font-family: var(--title);
	font-size: 4rem;
	display: flex;
	align-items: center;
}

.omekashi__title i {
	margin: 0 0.5em;
	font-family: var(--lavishly);
}

.omekashi__title span,
.omekashi__title small {
	font-family: var(--mincho);
}

.omekashi__title span {
	margin-right: 0.5em;
	font-size: 2.4rem;
}

.omekashi__title small {
	padding: 0 0.5em;
	font-size: 1.5rem;
	border: solid 1px rgb(var(--dark-purple));
	border-radius: 0.5rem;
}

.omekashi__content {
	margin-bottom: 2rem;
	display: flex;
}

.omekashi__content--detail {
	padding-right: 5rem;
	width: calc(100% - 42rem);
}

.omekashi__content--detail a {
	color: rgb(var(--dark-purple));
	font-family: var(--gothic);
	font-size: 1.4rem;
	display: inline-block;
}

.omekashi__content--text {
	margin-bottom: 2.5rem;
	font-size: 1.6rem;
}

.omekashi__content--price {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	font-size: 1.6rem;
	border-bottom: solid 1px rgb(var(--dark-purple));
	border-left: solid 1px rgb(var(--dark-purple));
	display: flex;
}

.omekashi__content--price dt {
	padding: 0 2.4rem 0 1.6rem;
}

.omekashi__content--price dd {
	font-family: var(--gothic);
}

.omekashi__point {
	margin: 2rem 0;
}

.omekashi__sponsor {
	font-family: var(--gothic);
	font-size: 1.4rem;
}

.omekashi__image {
	width: 42rem;
}

.omekashi .link-button {
	background: linear-gradient(90deg, #996C6C 0%, #685574 100%);
	margin: 0 auto;
	width: 39rem;
	height: 7.8rem;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 2rem;
	border-radius: 7.8rem;
}

.omekashi .link-button svg {
	width: 4rem;
	position: absolute;
	top: 50%;
	right: 2.5rem;
	transform: translateY(-50%);
}

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

	.omekashi__inner {
		padding: 2.4rem 1.8rem;
	}

	.omekashi__title {
		margin-bottom: 2rem;
		font-size: 2rem;
		text-align: center;
		display: block;
	}

	.omekashi__title i {
		margin: 0 0 0 0.5em;
	}

	.omekashi__title span {
		margin: 0;
		font-size: 2.4rem;
		display: block;
	}

	.omekashi__title small {
		font-size: 1.5rem;
		display: inline-block;
	}

	.omekashi__content {
		text-align: center;
		display: block;
	}

	.omekashi__content--detail {
		padding-right: 0;
		width: 100%;
	}

	.omekashi__content--detail a {
		font-size: 1.2rem;
	}

	.omekashi__content--text {
		margin-bottom: 2.5rem;
		font-size: 1.6rem;
	}

	.omekashi__content--price {
		font-size: 1.4rem;
	}

	.omekashi__content--price dt {
		padding: 0 1.6rem;
	}

	.omekashi__content--price dd {
		text-align: left;
	}

	.omekashi__point {
		margin: 1rem 0;
	}

	.omekashi__image {
		margin-top: 2rem;
		width: 100%;
	}

	.omekashi .link-button {
		width: 100%;
		height: 6rem;
		font-size: 1.6rem;
		border-radius: 6rem;
	}
}

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

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

/* ----------------------------------------------------
	core-pc
---------------------------------------------------- */
.core-pc {
	margin: 0 auto;
	width: 97.5rem;
	display: flex;
}

.core-pc:not(:last-of-type) {
	margin-bottom: 10rem;
}

.core-pc__list {
	width: 41.2rem;
}

.core-pc__list--item {
	padding-bottom: 2rem;
	min-height: 10rem;
	font-size: 2rem;
	display: flex;
}

.core-pc__list--item:last-of-type {
	padding-bottom: 0;
	min-height: auto;
}

.core-pc__list--item .time {
	width: 10rem;
	position: relative;
}

.core-pc__list--item:not(:last-of-type) .time::after {
	background-color: rgb(var(--wht));
	width: 1px;
	position: absolute;
	top: 3.5rem;
	bottom: 0;
	left: 2.3rem;
	z-index: 1;
	content: "";
}

.core-pc__list--item .detail {
	line-height: normal;
}

.core-pc__list--item .detail small {
	font-size: 1.6rem;
	display: block;
}

.core-pc-switch {
	cursor: pointer;
}

.core-pc-switch .detail__inner {
	padding-bottom: 1rem;
	width: 100%;
	display: inline-block;
	position: relative;
}

.core-pc-switch .detail__inner::after {
	background-image: url(../img/arrow-core.svg);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: auto 1.5rem;
	width: 100%;
	height: 1.5rem;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: width 0.5s ease 0s;
	content: "";
}

.core-pc-switch:hover .detail__inner::after,
.core-pc-switch.is-active .detail__inner::after {
	width: 31.2rem;
}

.core-pc-switch .detail {
	width: 22rem;
}

.core-pc__cont {
	width: 56.3rem;
	position: relative;
	display: grid;
}

.core-pc__cont--detail {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s;
}

.core-pc__cont--detail.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

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

/* ----------------------------------------------------
	core-sp
---------------------------------------------------- */
.core-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.core-sp {
		margin-top: 2rem;
		display: block;
	}

	.core-sp__list {
		padding: 0 2.4rem;
	}

	.core-sp__list--item {
		font-size: 1.6rem;
	}

	.core-sp__list--item:not(:last-of-type) {
		margin-bottom: 2rem;
	}

	.core-sp__head {
		min-height: 6rem;
		display: flex;
		position: relative;
	}

	.core-sp__head .time {
		width: 8.5rem;
		position: relative;
	}

	.core-sp__list--item:not(:last-of-type) .core-sp__head .time::before {
		background-color: rgb(var(--wht));
		width: 1px;
		position: absolute;
		top: 3rem;
		bottom: 0;
		left: 1.8rem;
		content: "";
	}

	.core-sp__head .detail {
		padding-right: 5rem;
		width: calc(100% - 8.5rem);
	}

	.core-sp__head .detail small {
		font-size: 1.4rem;
		display: block;
	}

	.core-sp__body {
		padding-top: 2rem;
		display: none;
	}

	/* core-sp-switch */
	.core-sp-switch .core-sp__head {
		cursor: pointer;
	}

	.core-sp-switch .core-sp__head .detail {
		border-bottom: solid 1px rgb(var(--wht));
	}

	.core-sp__icon {
		background-color: rgb(var(--dark-purple));
		width: 4rem;
		height: 4rem;
		border-radius: 4rem;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		content: "";
	}

	.core-sp__icon::before,
	.core-sp__icon::after {
		background-color: rgb(var(--wht));
		width: 2.4rem;
		height: 1px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.5s ease 0s;
		content: "";
	}

	.core-sp__icon::before {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.core-sp-switch.is-open .core-sp__icon::before {
		opacity: 0;
	}
}

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

.evening .sec__cont {
	background: rgba(212, 170, 170, 0.50);
}

.evening__title {
	margin-bottom: 4rem;
	line-height: normal;
	color: rgb(var(--wht));
	font-family: var(--title);
	font-size: 4.8rem;
	text-align: center;
}

.evening__title .jp {
	margin-top: 3rem;
	font-family: var(--mincho);
	font-size: 4rem;
	display: block;
}

.evening__content {
	margin: 0 auto 10rem;
	width: 97.5rem;
}

@media screen and (max-width: 768px) {
	.evening__title {
		margin-bottom: 3rem;
		font-size: 2.8rem;
	}

	.evening__title .jp {
		margin-top: 2rem;
		font-size: 2.4rem;
	}

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

/*
	garden
------------------------------ */
.garden {
	background-color: rgb(var(--dark-purple));
	margin: 0 auto;
	width: 97.5rem;
	display: flex;
	align-items: center;
}

.garden__content {
	padding: 0 4rem 0 3rem;
	width: calc(100% - 31.1rem);
	position: relative;
}

.garden__content .logo {
	width: 12.1rem;
	position: absolute;
	top: 0;
	right: 3.5rem;
}

.garden__title {
	margin-bottom: 1rem;
	line-height: normal;
	font-size: 2.4rem;
}

.garden__title--small {
	font-size: 1.6rem;
	display: block;
}

.garden__date {
	margin-bottom: 1.5rem;
	font-family: var(--gothic);
	font-size: 1.6rem;
}

.garden__price {
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	display: flex;
	justify-content: space-between;
}

.garden__price--item {
	padding: 0 0 1rem 1.8rem;
	width: 27.8rem;
	border-bottom: solid 1px rgb(var(--wht));
	border-left: solid 1px rgb(var(--wht));
	display: flex;
	justify-content: space-between;
}

.garden__price--item .price {
	font-family: var(--gothic);
}

.garden__image {
	width: 31.1rem;
}

@media screen and (max-width: 768px) {
	.garden {
		padding: 0.8rem;
		width: 32.6rem;
		display: block;
	}

	.garden__content {
		margin-bottom: 2rem;
		padding: 8rem 1.6rem 0;
		width: 100%;
	}

	.garden__content .logo {
		width: 7rem;
		top: 2.4rem;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}

	.garden__title {
		line-height: 1.8;
		font-size: 2rem;
	}

	.garden__title--small {
		font-size: 1.6rem;
	}

	.garden__date {
		font-size: 1.4rem;
	}

	.garden__price {
		display: block;
	}

	.garden__price--item {
		margin-bottom: 1.5rem;
		width: 100%;
	}

	.garden__image {
		width: 100%;
	}
}

/* ----------------------------------------------------
	nighttime
---------------------------------------------------- */
.nighttime .sec__cont {
	background-color: rgba(14, 14, 14, 0.5);
	padding: 10rem 0;
	color: rgb(var(--wht))
}

.nighttime__title {
	color: rgb(var(--purple));
	font-family: var(--mincho);
	font-size: 4rem;
	font-weight: 400;
	text-align: center;
}

.nighttime__content {
	margin: 0 auto 14rem;
	width: 97.8rem;
}

@media screen and (max-width: 768px) {
	.nighttime .sec__cont {
		padding: 5rem 0;
	}

	.nighttime__title {
		font-size: 2.4rem;
	}

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

/*
	faq
------------------------------ */
.faq {
	margin: 0 auto;
	width: 97.8rem;
}

.faq .nighttime__title {
	font-family: var(--title);
}

.faq .nighttime__title .jp {
	font-family: var(--mincho);
	font-size: 3.2rem;
	display: block;
}

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

	.faq .nighttime__title,
	.faq .nighttime__title .jp {
		font-size: 2.4rem;
	}
}

/* 
	sponsor
------------------------------ */
.accordion {
	border-bottom: solid 1px rgb(var(--wht));
}

.accordion:not(:last-of-type) {
	margin-bottom: 10rem;
}

.accordion__trigger {
	-webkit-appearance: none;
	appearance: none;
	padding: 2rem 5rem 2rem 0;
	color: rgb(var(--wht));
	font: inherit;
	font-size: 2.8rem;
	text-align: left;
	cursor: pointer;
	border: none;
	position: relative;
}

.accordion__trigger:not(:first-of-type) {
	border-top: solid 1px rgb(var(--wht));
}

.accordion__trigger::before,
.accordion__trigger::after {
	background-color: rgb(var(--wht));
	width: 2rem;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	transition: all 0.5s ease 0s;
	content: "";
}

.accordion__trigger::after {
	transform: translateY(-50%) rotate(90deg);
}

.accordion__trigger.is-open::after {
	opacity: 0;
}

.accordion__trigger span {
	padding-left: 7.6rem;
	display: block;
	position: relative;
}

.accordion__trigger span::before {
	position: absolute;
	top: -0.2rem;
	left: 0;
	content: "Q";
}

.accordion__panel {
	padding: 0 5rem 3rem 7.6rem;
	font-family: var(--gothic);
	font-size: 1.6rem;
	display: none;
}

.accordion__panel--text:not(:last-of-type) {
	margin-bottom: 1.5em;
}

.accordion__panel .text small {
	font-size: 1.3rem;
}

.accordion__panel a {
	color: rgb(var(--purple));
}

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

	.accordion:not(:last-of-type) {
		margin-bottom: 10rem;
	}

	.accordion__trigger {
		font-size: 2rem;
	}

	.accordion__trigger span {
		padding-left: 3rem;
	}

	.accordion__panel {
		padding: 0 0 3rem 0;
		font-size: 1.4rem;
	}

	.accordion__panel .text small {
		font-size: 1.3rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: linear-gradient(180deg, #CCB29F 0%, #957E95 100%);
	padding: 8.5rem 0 5rem;
	color: rgb(var(--wht));
	font-family: var(--gothic);
}

.footer .note {
	margin: 0 auto 5rem;
	width: 95.4rem;
}

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

	.footer .note {
		margin-bottom: 2.5rem;
		width: 34.5rem;
	}
}

/* 
	sponsor
------------------------------ */
.sponsor {
	background-color: rgb(var(--wht));
	margin: 0 auto 5rem;
	padding: 5rem 12rem;
	width: 97.8rem;
	color: rgb(var(--blk));
	text-align: center;
}

.sponsor__list--title {
	margin-bottom: 2rem;
	font-size: 2rem;
}

.sponsor__list--content {
	font-size: 1.6rem;
	display: flex;
	justify-content: center;
}

.sponsor__list--content a {
	text-decoration: none;
}

.sponsor__list--content:not(:last-of-type) {
	margin-bottom: 5rem;
}

.sponsor__list--content .wrap a {
	padding-bottom: 3.6rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.sponsor__list--content .wrap.fuji,
.sponsor__list--content .wrap.shikoku {
	width: 50%;
}

.sponsor__list--content .wrap.kddi img {
	width: 17.7rem;
}

.sponsor__list--content .wrap.fuji img {
	width: 12.9rem;
}

.sponsor__list--content .wrap.shikoku img {
	width: 14.2rem;
}

.sponsor__list--content .wrap figcaption {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 768px) {
	.sponsor {
		margin: 0 auto 5rem;
		padding: 3rem 0;
		width: 34.5rem;
	}

	.sponsor__list--title {
		margin-bottom: 1.2rem;
		font-size: 1.7rem;
	}

	.sponsor__list--content {
		font-size: 1.2rem;
		display: block;
	}


	.sponsor__list--content:not(:last-of-type) {
		margin-bottom: 4rem;
	}

	.sponsor__list--content .wrap {
		width: 100%;
	}

	.sponsor__list--content .wrap a {
		padding-bottom: 3.6rem;
		display: inline-block;
	}

	.sponsor__list--content .wrap.fuji,
	.sponsor__list--content .wrap.shikoku {
		width: 100%;
	}

	.sponsor__list--content .wrap.fuji {
		margin-bottom: 4rem;
	}

	.sponsor__list--content .wrap figcaption {
		width: 100vw;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* 
	photo
------------------------------ */
.photo {
	margin-bottom: 8rem;
}

.photo .link-button {
	background-color: rgba(var(--wht), 0.5);
	margin: 0 auto;
	width: 23.4rem;
	height: 5.2rem;
	color: rgb(var(--dark-purple));
	font-family: var(--gothic);
	font-size: 1.6rem;
	border: solid 1px rgb(var(--dark-purple));
	border-radius: 5.2rem;
}

@media screen and (max-width: 768px) {
	.photo {
		margin-bottom: 4rem;
	}
}

/* 
	access
------------------------------ */
.footer .access {
	margin: 0 auto 3rem;
	width: 95.4rem;
	text-align: center;
}

.footer .access__title {
	margin: 0 auto 2rem;
	line-height: 1;
	font-family: var(--mincho);
	font-size: 4rem;
	font-weight: 500;
}

.footer .access__logo {
	margin: 0 auto 4rem;
	width: 24.6rem;
}

.footer .sns {
	margin-bottom: 4rem;
	display: flex;
	justify-content: center;
}

.footer .sns__item {
	margin: 0 1.3rem;
	width: 3.4rem;
}

.footer .access__hotel {
	margin-bottom: 5rem;
	font-size: 1.8rem;
}

.footer .access__hotel--name {
	margin-bottom: 3rem;
	font-size: 2rem;
}

.footer .access__hotel--content address {
	margin-bottom: 1.5em;
}

.footer .access__map {
	margin-bottom: 3rem;
}

.footer .access__map iframe {
	width: 100%;
	height: 28.8rem;
}

@media screen and (max-width: 768px) {
	.footer .access {
		margin-bottom: 2.4rem;
		width: 100%;
	}

	.footer .access__title {
		font-size: 2.4rem;
	}

	.footer .access__logo {
		margin-bottom: 2.4rem;
	}

	.footer .access__hotel {
		margin-bottom: 2.4rem;
		font-size: 1.2rem;
	}

	.footer .access__hotel--name {
		margin-bottom: 2.4rem;
		font-size: 1.6rem;
	}

	.footer .access__hotel--content address {
		margin-bottom: 1.5em;
	}

	.footer .access__map {
		margin-bottom: 2.4rem;
	}

	.footer .access__map iframe {
		width: 100%;
		height: 12rem;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-size: 1.6rem;
	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: 4.267vw;
		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;
	}

	.footer .hotel-nav__item a {
		padding: 0 1em;
		text-decoration: none;
	}
}

/* 
	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: 1rem;
		letter-spacing: -0.005em;
	}
}