/* ----------------------------------------------------
	pagenav
---------------------------------------------------- */
.pagenav {
	background-color: rgb(var(--yel));
	position: sticky;
	top: 0;
	z-index: 10;
}

.pagenav__list {
	height: 10rem;
	color: rgb(var(--wht));
	font-family: var(--title);
	font-size: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagenav__item:not(:last-of-type) {
	margin-right: 1em;
}

.pagenav__item a {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.pagenav__list {
		padding: 1.5rem;
		font-size: 2.2rem;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.pagenav__item:not(:last-of-type) {
		margin-right: 0;
	}
}

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

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background-color: rgba(var(--red), 0.8);
		padding-top: 9.5rem;
		max-width: 37.5rem;
		width: 100%;
		height: 100%;
		overflow: auto;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		z-index: 999;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		margin: 0 auto;
		width: 30rem;
		display: block;
	}

	.gnav__item:not(:last-of-type) {
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: solid 1px rgb(var(--yel));
	}

	.gnav__item a {
		color: rgb(var(--yel));
		font-family: var(--title);
		font-size: 3rem;
		text-align: center;
		text-decoration: none;
		display: block;
	}

	.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), 0.8);
		width: 3.5rem;
		height: 3.5rem;
		display: block;
		position: fixed;
		top: 1rem;
		right: 1.1rem;
		z-index: 1000;
	}

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

	.toggle__line {
		background: rgb(var(--red));
		width: 2.2rem;
		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.9rem;
	}

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

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

	.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) {
		opacity: 0;
	}

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

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

.sec__inner {
	margin: 0 auto;
	width: 136.6rem;
	position: relative;
}

.sec__inner::before {
	background-image: url(../img/sec-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 69rem;
	height: 33.3rem;
	position: absolute;
	top: -7rem;
	left: 6rem;
	z-index: 1;
	content: "";
}

.sec__title {
	margin-bottom: 5rem;
	line-height: normal;
	font-family: var(--title);
	font-size: 10rem;
	text-align: center;
	position: relative;
	z-index: 2;
}

.sec__title--small {
	font-size: 3rem;
	display: block;
}

.sec__lead {
	margin-bottom: 8rem;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	position: relative;
	z-index: 2;
}

.sec__content {
	margin: 0 auto;
	width: 114rem;
	position: relative;
	z-index: 2;
}

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

	.sec__inner {
		width: 100%;
	}

	.sec__inner::before {
		background-image: url(../img/sec-bg_sp.webp);
		width: 18.9rem;
		height: 9.2rem;
		top: -0.7rem;
		left: 1.7rem;
	}

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

	.sec__title--small {
		font-size: 1.8rem;
	}

	.sec__lead {
		margin-bottom: 3rem;
		font-size: 1.4rem;
	}

	.sec__content {
		width: 100%;
	}
}

/* ----------------------------------------------------
	areamap
---------------------------------------------------- */
.areamap {
	background-image: url(../img/areamap-bg.svg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: 2.928vw;
}

.areamap .sec__title {
	margin-bottom: 3.66vw;
	color: rgb(var(--wht));
	display: flex;
	justify-content: center;
	align-items: center;
}

.areamap .sec__title--small {
	margin-left: 3.8rem;
	font-size: 2rem;
	text-align: left;
}

.areamap__main {
	margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
	.areamap {
		background-image: url(../img/areamap-bg_sp.svg);
		padding-top: 1.2rem;
	}

	.areamap .sec__title {
		display: block;
	}

	.areamap .sec__title--small {
		margin: 0 0 6rem;
		font-size: 1.8rem;
		text-align: center;
	}

	.areamap__main {
		margin: 0 auto 3rem;
		width: 34.5rem;
	}

	.areamap__chara img {
		width: 36.5rem;
		display: inline-block;
	}
}

/* ----------------------------------------------------
	event
---------------------------------------------------- */
.event {
	background-image: url(../img/event-bg.svg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: 5.124vw;
}

.event .sec__title {
	margin-bottom: 14.641vw;
	color: rgb(var(--wht));
}

.event__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: calc(100% - 108rem);
	row-gap: 5rem;
}

.event__list--item {
	background-color: rgb(var(--wht));
	box-shadow: 1rem 1rem 0.4rem 0 rgba(122, 164, 203, 0.25);
	width: 54rem;
}

.event__list--item.full {
	width: 100%;
}

.event__title {
	background-color: rgb(var(--yel));
	padding-left: 3rem;
	height: 8rem;
	line-height: 8rem;
	color: rgb(var(--wht));
	font-size: 3.5rem;
	font-weight: 700;
	border-radius: 0 0 8rem 0;
	display: flex;
	align-items: center;
}

.event__title--plan {
	background-color: rgb(var(--red));
	margin-left: 2rem;
	width: 27rem;
	height: 5rem;
	color: rgb(var(--wht));
	font-size: 2.5rem;
	border: solid 2px rgb(var(--wht));
	border-radius: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.event__title--inner {
	line-height: 1.2;
	display: flex;
	align-items: baseline;
}

.event__title--small {
	font-size: 2rem;
}

@media screen and (max-width: 768px) {
	.event {
		background-image: url(../img/event-bg_sp.svg);
		padding-top: 2rem;
	}

	.event .sec__title {
		margin-bottom: 7.2rem;
	}

	.event__list {
		margin: 0 auto;
		width: 28.8rem;
		display: block;
	}

	.event__list--item {
		width: 100%;
	}

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

	.event__title {
		padding-left: 2.4rem;
		height: 6rem;
		font-size: 1.8rem;
		border-radius: 0 0 6rem 0;
	}

	.event__title--plan {
		margin-left: 1rem;
		width: 13rem;
		height: 3rem;
		font-size: 1.2rem;
		border-radius: 3rem;
	}

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

/*
	event__content
------------------------------ */
.event__content {
	padding: 6rem;
}

.event__image {
	margin-bottom: 3rem;
	height: 30rem;
	display: flex;
	align-items: center;
}

.event__date,
.event__place {
	margin-bottom: 1.6rem;
	line-height: 1.5;
	font-size: 2rem;
	font-weight: 700;
}

.event__place--small {
	margin-top: 0.5rem;
	display: block;
}

.event__place::before {
	background-color: rgb(var(--yel));
	padding: 0 0.5rem;
	color: rgb(var(--wht));
	display: inline-block;
	content: "場所";
}

.event__lead {
	font-size: 1.6rem;
	font-weight: 500;
}

.event__lead .right {
	text-align: right;
}

/* full */
.full .event__content {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	column-gap: 3rem;
}

.full .event__image {
	margin-bottom: 0;
	height: auto;
	flex-shrink: 0;
}

.full .event__detail {
	min-width: 0;
	flex: 1;
}

.full .event__detail--title {
	margin-bottom: 1rem;
	font-size: 3rem;
	font-weight: 700;
}

.full .event__detail--title rt,
.full .event__detail--cast rt {
	font-size: 1.2rem;
}

.full .event__detail--cast {
	margin-bottom: 2.4rem;
	line-height: 1.5;
	font-size: 2.5rem;
	font-weight: 700;
}

.full .event__detail+.note {
	margin-top: 3rem;
	width: 100%;
	white-space: nowrap;
	display: flex;
	justify-content: center;
}

.full .event__detail+.note li:not(:last-of-type) {
	margin-right: 1em;
}

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

	.event__image {
		margin: 0 auto 2rem;
		width: 22.6rem;
		height: auto;
		display: block;
	}

	.event__date,
	.event__place {
		margin: 0 auto 1rem;
		width: 22.6rem;
		font-size: 1.4rem;
	}

	.event__lead {
		margin: 0 auto;
		width: 22.6rem;
		font-size: 1.4rem;
	}

	/* full */
	.full .event__content {
		display: block;
	}

	.full .event__image {
		margin-bottom: 2rem;
	}

	.full .event__detail--title {
		margin: 0 auto 1rem;
		width: 22.6rem;
		font-size: 2rem;
	}

	.full .event__detail--title rt,
	.full .event__detail--cast rt {
		font-size: 0.9rem;
	}

	.full .event__detail--cast {
		margin: 0 auto 1rem;
		width: 22.6rem;
		font-size: 1.4rem;
	}

	.full .event__detail+.note {
		margin: 2rem auto 0;
		width: 22.6rem;
		white-space: wrap;
		display: block;
	}

	.full .event__detail+.note li:not(:last-of-type) {
		margin-right: 0;
	}
}

/* event01 */
.event01 .event__image {
	width: 37.3rem;
}

.event01 .event__detail {
	background-image: url(../img/event01-circle.webp);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: 20rem auto;
}

.event01 .event__lead {
	background-color: rgb(var(--red));
	margin-bottom: 3rem;
	padding: 1rem 3rem;
	color: rgb(var(--wht));
	font-weight: 700;
}

.event01 .profile {
	background-color: rgba(195, 175, 30, 0.3);
	padding: 2rem;
	font-size: 1.4rem;
}

.event01 .profile__title,
.event01 .profile__table--th {
	color: rgb(var(--red));
	font-weight: 700;
}

.event01 .profile__title {
	margin-bottom: 2rem;
}

.event01 .profile__table--th,
.event01 .profile__table--td {
	vertical-align: top;
}

.event01 .profile__table--th {
	padding-right: 2rem;
	white-space: nowrap;
}

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

		width: 22.6rem;
	}

	.event01 .event__detail {
		background-position: top right 3rem;
		background-size: 10rem auto;
	}

	.event01 .event__lead {
		margin-bottom: 2rem;
		padding: 1rem;
	}

	.event01 .profile {
		padding: 2rem;
		font-size: 1.2rem;
	}

	.event01 .profile__title {
		margin-bottom: 1rem;
	}

	.event01 .profile__table--th {
		padding-right: 1rem;
	}
}

/* event02 */
.event02 .event__image {
	width: 50rem;
}

/* event03 */
.event03 .event__image {
	width: 40rem;
}

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

	.event02 .event__image,
	.event03 .event__image {
		margin: 0 auto 2rem;
		width: 22.6rem;
	}
}

/* ----------------------------------------------------
	entertainment
---------------------------------------------------- */
.entertainment {
	background-color: rgb(var(--red));
	margin-bottom: 10rem;
	color: rgb(var(--wht));
}

.entertainment__slide {
	margin: 0 auto;
	width: 97.5rem;
}

.entertainment__slide--item {
	display: grid !important;
	grid-template-columns: 47.5rem auto;
}

.entertainment__title {
	margin-bottom: 2rem;
	font-size: 3rem;
	font-weight: 500;
	text-align: center;
	grid-column: 1/3;
	grid-row: 1/2;
}

.entertainment__image {
	margin-right: 3rem;
	grid-column: 1/2;
	grid-row: 2/3;
}

.entertainment__content {
	font-size: 1.6rem;
	font-weight: 500;
	grid-column: 2/3;
	grid-row: 2/3;
	display: flex;
	flex-direction: column;
}

.entertainment__content .text {
	margin-bottom: 5rem;
}

.entertainment__content .link-button {
	margin-top: auto;
}

.entertainment__slide .slick-arrow {
	background-image: url(../img/arrow-slide.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 5.35rem;
	height: 9.35rem;
}

.entertainment__slide .slick-next {
	right: calc((5.35rem + 5cqb) * -1);
	transform: translate(0, -50%) scaleX(-1);
}

.entertainment__slide .slick-prev {
	left: calc((5.35rem + 5rem) * -1);
}

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

	.entertainment__slide {
		width: 100%;
	}

	.entertainment__slide--item {
		display: block !important;
	}

	.entertainment__title {
		line-height: 1.5;
		font-size: 1.8rem;
	}

	.entertainment__image {
		margin: 0 auto 2rem;
		width: 28.8rem;
	}

	.entertainment__content {
		margin: 0 auto;
		width: 28.8rem;
		font-size: 1.4rem;
		display: block;
	}

	.entertainment__content .text {
		margin-bottom: 3rem;
	}

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

	.entertainment__slide .slick-arrow {
		width: 1.7rem;
		height: 2.9rem;
		top: calc(28.8rem * 486 / 768 / 2);
	}

	.entertainment__slide .slick-next {
		right: 1rem;
	}

	.entertainment__slide .slick-prev {
		left: 1rem;
	}
}

/* ----------------------------------------------------
	restaurant
---------------------------------------------------- */
.restaurant {
	background-color: rgb(var(--red));
	color: rgb(var(--wht));
}

.restaurant__dinner {
	margin-bottom: 7rem;
	padding: 3rem 0;
	font-weight: 600;
	text-align: center;
	border: solid 3px rgb(var(--wht));
}

.restaurant__dinner--title {
	line-height: normal;
	font-size: 5rem;
}

.restaurant__dinner--content {
	font-size: 1.8rem;
}

.restaurant__dinner--content .date {
	font-size: 3rem;
}

.restaurant__list {
	margin: 0 auto 8rem;
	width: 111rem;
	display: flex;
	flex-wrap: wrap;
	column-gap: calc(100% - 108rem);
	row-gap: 5rem;
}

.restaurant__list--item {
	width: 54rem;
}

.restaurant__list--head {
	background-image: url(../img/restaurant-bg.svg);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 10.3rem auto;
	margin-bottom: 3rem;
	min-height: 11.8rem;
	line-height: normal;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.restaurant__title {
	margin-right: 7rem;
	font-size: 4rem;
	text-align: center;
}

.restaurant__title--plan {
	background-color: rgb(var(--yel));
	margin-top: 2rem;
	width: 20rem;
	height: 5rem;
	font-size: 2.5rem;
	border-radius: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.restaurant__date {
	font-size: 2rem;
}

.restaurant__image--name {
	margin-top: 1em;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
}

.restaurant__image--name small {
	display: block;
	font-size: 1.8rem;
}

.restaurant__list--item.full {
	margin: 0 auto;
	width: 98rem;
}

.full .restaurant__image {
	margin-bottom: 0;
}

.restaurant__soba {
	background-color: rgba(44, 112, 112, 1);
	background-image: url(../img/soba.webp);
	background-position: center right 2rem;
	background-repeat: no-repeat;
	background-size: 18rem auto;
	margin: 0 auto 7rem;
	padding: 0 3rem;
	width: 98rem;
	min-height: 27rem;
	line-height: normal;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.restaurant__soba--title {
	margin-right: 3rem;
	font-size: 4rem;
}

.restaurant__soba--plan {
	background-color: rgb(var(--yel));
	margin-top: 2rem;
	width: 27rem;
	height: 5rem;
	color: rgb(var(--wht));
	font-size: 2.5rem;
	border-radius: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.restaurant__soba--date {
	font-size: 2rem;
}

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

	.restaurant__dinner--title {
		font-size: 2.5rem;
	}

	.restaurant__dinner--content {
		font-size: 1.4rem;
	}

	.restaurant__dinner--content .date {
		font-size: 1.8rem;
	}

	.restaurant__list {
		margin: 0 auto 3rem;
		width: 28.8rem;
		display: block;
	}

	.restaurant__list--item {
		width: 100%;
	}

	.restaurant__image {
		display: flex;
		align-items: flex-start;
		column-gap: 1rem;
	}

	.restaurant__image img {
		width: 14rem;
	}

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

	.restaurant__list--head {
		background-size: 8rem auto;
		margin-bottom: 2rem;
		display: block;
	}

	.restaurant__title {
		margin: 0 0 1rem;
		font-size: 1.8rem;
		text-align: left;
		display: flex;
		align-items: center;
	}

	.restaurant__title--plan {
		margin: 0 0 0 2rem;
		width: 10rem;
		height: 2rem;
		font-size: 1.2rem;
		border-radius: 2rem;
	}

	.restaurant__date {
		font-size: 1.4rem;
	}

	.restaurant__image--name {
		margin-top: 0;
		font-size: 1.4rem;
		text-align: left;
	}

	.restaurant__image--name small {
		font-size: 1.2rem;
	}

	.restaurant__list--item.full {
		width: 100%;
		display: block;
	}

	.full .restaurant__image {
		margin-bottom: 0;
		display: block;
	}

	.full .restaurant__image img {
		width: 100%;
	}

	.restaurant__soba {
		background-position: center right 4rem;
		background-size: 12.6rem auto;
		margin-bottom: 3rem;
		padding: 3rem 4rem;
		width: 100%;
		min-height: 0;
		display: block;
	}

	.restaurant__soba--title {
		margin: 0 0 1.5rem;
		font-size: 1.8rem;
	}

	.restaurant__soba--plan {
		margin-top: 1rem;
		width: 12.6rem;
		height: 2rem;
		font-size: 1.2rem;
		border-radius: 2rem;
	}

	.restaurant__soba--date {
		font-size: 1.4rem;
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.plan {
	background-color: rgb(var(--yel));
}

.plan .sec__inner::before {
	background-image: url(../img/plan-bg.webp);
}

.plan .sec__title {
	color: rgb(var(--wht));
}

.plan__content {
	background-color: rgba(235, 245, 245, 1);
	padding: 10rem 8rem;
}

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

	.plan__content {
		padding: 2rem 1.5rem;
		overflow-x: auto;
	}

	.plan__content img {
		width: 77rem;
	}
}

/* ----------------------------------------------------
	reservation
---------------------------------------------------- */
.reservation {
	background-color: rgb(var(--red));
	color: rgb(var(--wht));
}

.reservation .sec__lead {
	position: relative;
}

.reservation .sec__lead::before,
.reservation .sec__lead::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
}

.reservation .sec__lead::before {
	background-image: url(../img/restaurant-obj01.webp);
	width: 13.5rem;
	height: 10.2rem;
	left: 7rem;
}

.reservation .sec__lead::after {
	background-image: url(../img/restaurant-obj02.webp);
	width: 8.3rem;
	height: 9.6rem;
	right: 12.8rem;
}

.reservation__content {
	margin-bottom: 10rem;
}

.reservation__content--title {
	background-color: rgba(236, 210, 85, 1);
	margin-bottom: 4rem;
	height: 10rem;
	line-height: 1.2;
	color: rgb(var(--red));
	font-size: 4rem;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.reservation__content--title span {
	font-size: 2.5rem;
}

.reservation__content--date {
	margin-bottom: 3rem;
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
}

.reservation__tel {
	margin-bottom: 5rem;
	line-height: 1.2;
	font-size: 7rem;
	font-weight: 600;
	text-align: center;
}

.reservation__tel .telephone {
	font-size: 10rem;
}

.reservation__tel--time {
	font-size: 2.5rem;
	font-weight: 500;
	display: block;
}

.reservation .note {
	margin: 0 auto;
	width: 98rem;
}

.reservation .note.center {
	text-align: center;
}

.reservation .note li {
	font-size: 2rem;
}

.reservation .link-button {
	background: rgb(var(--wht));
	margin: 5rem auto 10rem;
	width: 54rem;
	height: 9rem;
	color: rgb(var(--red));
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.reservation .link-button__inner {
	padding: 0;
	width: 100%;
	line-height: normal;
}

.reservation .link-button__inner::after {
	background-color: rgb(var(--yel));
	width: 2rem;
	height: 5.2rem;
	right: 4rem;
}

.reservation__lead {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
}

.reservation__list {
	margin: 10rem auto 0;
	width: 111rem;
	display: flex;
	flex-wrap: wrap;
	column-gap: calc(100% - 108rem);
	row-gap: 5rem;
}

.reservation__list--item {
	width: 54rem;
}

.reservation__image--name {
	margin-top: 1rem;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.reservation .sec__lead::before {
		width: 7rem;
		height: 5.3rem;
		left: 1.5rem;
	}

	.reservation .sec__lead::after {
		width: 4.7rem;
		height: 5.5rem;
		right: 1.3rem;
	}

	.reservation__content {
		margin-bottom: 5rem;
	}

	.reservation__content--title {
		margin: 0 auto 3rem;
		padding: 1.6rem 0;
		width: 28.8rem;
		height: auto;
		font-size: 1.8rem;
		text-align: center;
	}

	.reservation__content--title span {
		font-size: 1.4rem;
	}

	.reservation__content--date {
		margin-bottom: 2rem;
		font-size: 1.4rem;
	}

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

	.reservation__tel .telephone {
		font-size: 3rem;
	}

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

	.reservation .note {
		width: 28.8rem;
	}

	.reservation .note li {
		font-size: 1.2rem;
	}

	.reservation .note.center li {
		text-align: left;
	}

	.reservation .link-button {
		margin: 3rem auto;
		width: 28.8rem;
		height: 6rem;
		font-size: 1.4rem;
		border-radius: 1rem;
	}

	.reservation .link-button__inner {
		padding: 0;
		width: 100%;
		line-height: normal;
	}

	.reservation .link-button__inner::after {
		width: 2rem;
		height: 4rem;
		right: 2rem;
	}

	.reservation__lead {
		margin: 0 auto;
		width: 28.8rem;
		font-size: 1.2rem;
		text-align: left;
	}

	.reservation__list {
		margin: 5rem auto 0;
		width: 28.8rem;
		justify-content: space-between;
		row-gap: 2rem;
	}

	.reservation__list--item {
		width: 14rem;
	}

	.reservation__image--name {
		margin-top: 1rem;
		line-height: 1.5;
		font-size: 1.2rem;
	}
}

/* ----------------------------------------------------
	pamphlet
---------------------------------------------------- */
.pamphlet {
	margin: 0 auto;
	width: 92rem;
}

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

/* ----------------------------------------------------
	page-note
---------------------------------------------------- */
.page-note {
	background-color: rgb(var(--red));
	padding-bottom: 10rem;
	color: rgb(var(--wht));
}

.page-note .note {
	margin: 0 auto;
	width: 115.2rem;
}

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

	.page-note .note {
		width: 32rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--wht));
	padding: 10rem 0 5rem;
}

.footer__info {
	margin-bottom: 10rem;
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
}

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

	.footer__info {
		margin-bottom: 3rem;
		font-size: 1.2rem;
	}
}

/* 
	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: 3em;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		margin-top: 2em;
		font-size: 2.933vw;
	}
}