/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	height: 100dvh;
	background: url(../img/kv.webp) center / cover no-repeat;
	overflow: hidden;
	position: relative;
}

.header__title-wrap,
.header__logo {
	position: absolute;
	z-index: 1;
}

.header__title-wrap {
	width: 25.476vw;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.header__title {
	width: 100%;
}

.header__logo {
	width: 16%;
	right: 2.93vw;
	bottom: 2.93vw;
}

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

	.header__title-wrap {
		width: 26.1rem;
	}

	.header__logo {
		width: 16rem;
		right: auto;
		bottom: 3rem;
		left: 50%;
		transform: translateX(-50%);
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	padding: 0 4.2rem;
	width: 100%;
	height: 10rem;
	line-height: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.gnav__logo {
	width: 17rem;
}

.gnav svg path {
	fill: rgb(var(--wht));
}

.gnav__link {
	display: flex;
}

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

.gnav__item {
	margin-right: 4rem;
}

.gnav__item a {
	color: rgb(var(--wht));
	font-family: var(--button);
	font-size: 1.4rem;
	font-weight: 400;
	text-decoration: none;
}

.gnav__sns {
	display: flex;
}

.gnav__sns--item {
	width: 1.6rem;
}

.gnav__sns--item:not(:last-of-type) {
	margin-right: 2rem;
}

@media screen and (min-width: 769px) {

	.gnav,
	.gnav__item a,
	.gnav svg path {
		transition: background-color 0.4s ease, color 0.4s ease, fill 0.4s ease;
	}

	.gnav.is-main-overlap {
		background-color: rgba(var(--wht), 0.9);
	}

	.gnav.is-main-overlap .gnav__item a {
		color: rgb(var(--gld));
	}

	.gnav.is-main-overlap svg path {
		fill: rgb(var(--gld));
	}
}

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background: rgba(var(--grn), 0.8);
		height: 100%;
		text-align: center;
		overflow: auto;
		flex-direction: column;
		justify-content: center;
		right: 0;
		left: auto;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__logo {
		margin: 0 auto 6rem;
		width: 28.3rem;
	}

	.gnav__link,
	.gnav__list {
		display: block;
	}

	.gnav__list {
		margin: 0 auto 6rem;
		width: 26rem;
	}

	.gnav__item {
		width: 100%;
	}

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

	.gnav__item a {
		font-size: 2.4rem;
	}

	.gnav__sns {
		justify-content: center;
	}

	.gnav__sns--item {
		width: 3.6rem;
	}

	.overlay.is-gnav-overlay {
		background: rgba(var(--blk), 0.5);
		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(--grn), 0.8);
		width: 7rem;
		height: 7rem;
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		transition: all 0.6s;
	}

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

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

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

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

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

	.is-open .toggle {
		background: rgba(var(--grn), 0);
	}

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

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

/* ----------------------------------------------------
	main
---------------------------------------------------- */
.main {}

.eng-sans {
	font-family: var(--eng-sans);
	font-weight: 300;
}

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

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

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

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	background-color: rgb(var(--lgy));
	padding: 16.6rem 0;
}

.about__inner {
	margin: 0 auto 5rem;
	width: 103.4rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.about__content {
	width: calc(100% - 55rem);
}

.about__title {
	margin-bottom: 3rem;
	line-height: normal;
	color: rgb(var(--gld));
	font-family: var(--title);
	font-size: 3.6rem;
	display: flex;
	flex-direction: column;
}

.about__title .eng-sans {
	font-size: 5rem;
}

.about__lead {
	margin-bottom: 3rem;
	font-size: 2rem;
}

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

.about__text {
	line-height: 2;
	font-size: 1.3rem;
}

.about__text .en {
	margin-top: 2.4rem;
	font-size: 1.2rem;
}

.about__image {
	width: 50rem;
	position: sticky;
	top: 10rem;
}

.about__link {
	margin: 0 auto;
	width: 103.4rem;
}

.about__link .link-button {
	background-color: rgb(var(--gld));
	color: rgb(var(--wht));
	border-color: rgb(var(--gld));
}

.about__link .link-button::after {
	background-color: rgb(var(--wht));
}

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

	.about__inner {
		margin-bottom: 3rem;
		width: 30rem;
		display: block;
	}

	.about__content {
		margin-bottom: 3rem;
		width: 100%;
		text-align: center;
	}

	.about__title {
		margin-bottom: 1.8rem;
		font-size: 2rem;
	}

	.about__title .eng-sans {
		font-size: 3rem;
	}

	.about__lead {
		margin-bottom: 2rem;
		font-size: 1.5rem;
	}

	.about__text {
		line-height: 1.8;
		font-size: 1.1rem;
	}

	.about__text .en {
		margin-top: 2.4rem;
		font-size: 1rem;
	}

	.about__image {
		width: 100%;
		position: static;
	}

	.about__link {
		width: 23rem;
	}
}

/* ----------------------------------------------------
	experiences
---------------------------------------------------- */
.experiences {
	background-color: rgb(var(--grn));
	padding-bottom: 16.6rem;
	padding-bottom: 8.3rem;
	color: rgb(var(--wht));
}

.experiences__inner {
	margin: 0 auto;
	padding-top: 16.6rem;
	padding-top: 8.3rem;
	width: 103.4rem;
	position: relative;
}

.experiences__title {
	margin-bottom: 2rem;
	line-height: normal;
	font-family: var(--title);
	font-size: 4rem;
	display: flex;
	flex-direction: column;
}

.experiences__title .eng-sans {
	font-size: 6.2rem;
}

.experiences__lead,
.experiences__text {
	display: flex;
	justify-content: space-between;
}

.experiences__lead .text,
.experiences__text .text {
	width: 50rem;
}

.experiences__lead {
	margin-bottom: 3rem;
	font-size: 1.8rem;
}


.experiences__text {
	line-height: 2.2;
	font-size: 1.3rem;
}

.experiences__logo {
	width: 42.7rem;
	position: absolute;
	top: 23.1rem;
	right: 3.6rem;
}

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

	.experiences__inner {
		padding-top: 6rem;
		width: 30rem;
		text-align: center;
	}

	.experiences__title {
		font-size: 2rem;
	}

	.experiences__title .eng-sans {
		font-size: 3rem;
	}

	.experiences__lead .text,
	.experiences__text .text {
		width: 100%;
	}

	.experiences__lead {
		margin-bottom: 2rem;
		font-size: 1.5rem;
		display: block;
	}

	.experiences__text {
		margin-bottom: 3rem;
		line-height: 1.8;
		font-size: 1.1rem;
		text-align: left;
		display: block;
	}

	.experiences__text .en {
		margin-top: 2rem;
		font-size: 1rem;
	}

	.experiences__logo {
		width: 100%;
		position: static;
	}
}

/* ----------------------------------------------------
	chef
---------------------------------------------------- */
.chef {
	background-color: rgb(var(--lgy));
	padding: 16.6rem 0;
}

.chef__inner {
	margin: 0 auto;
	width: 103.4rem;
}

.chef__profile {
	margin-bottom: 11rem;
	display: flex;
	justify-content: space-between;
}

.chef__profile--image {
	width: 50rem;
}

.chef__profile--content {
	width: calc(100% - 60rem);
}

.chef__profile--name {
	margin-bottom: 3rem;
	line-height: 1;
	color: rgb(var(--gld));
	font-family: var(--title);
	font-weight: 400;
	font-size: 3.6rem;
	display: flex;
	flex-direction: column;
}

.chef__profile--name .eng-sans {
	font-size: 5rem;
}

.chef__profile--name .name {
	display: flex;
	align-items: baseline;
}

.chef__profile--name .eng-sans {
	margin-left: 1rem;
}

.chef__profile--lead {
	margin-bottom: 3rem;
	line-height: normal;
	font-size: 2rem;
}

.chef__profile--lead .text:not(:last-of-type) {
	margin-bottom: 1rem;
}

.chef__profile--lead .text__small {
	font-size: 1.3rem;
	display: block;
}

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

.chef__profile--text .en {
	margin-top: 2.4rem;
	font-size: 1.2rem;
}

.chef__message {
	margin: 0 auto;
	width: 70rem;
}

.chef__message--title {
	margin-bottom: 1rem;
	color: rgb(var(--gld));
	font-size: 2rem;
	text-align: center;
}

.chef__message .video {
	background-color: rgba(var(--grn), 0.2);
}

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

	.chef__inner {
		width: 30rem;
	}

	.chef__profile {
		margin-bottom: 4rem;
		display: block;
	}

	.chef__profile--image,
	.chef__profile--content {
		width: 100%;
		text-align: center;
	}

	.chef__profile--image {
		margin-bottom: 3rem;
	}

	.chef__profile--name {
		margin-bottom: 3rem;
		font-size: 2rem;
		justify-content: center;
	}

	.chef__profile--name .eng-sans {
		font-size: 3rem;
	}

	.chef__profile--name .name {
		justify-content: center;
	}

	.chef__profile--lead {
		margin-bottom: 1.5rem;
		font-size: 2rem;
	}

	.chef__profile--lead .text__small {
		font-size: 1rem;
	}

	.chef__profile--text {
		font-size: 1.1rem;
		text-align: left;
	}

	.chef__profile--text .en {
		margin-top: 1.8rem;
		font-size: 1rem;
	}

	.chef__message {
		margin: 0 auto;
		width: 100%;
	}

	.chef__message--title {
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------
	guest
---------------------------------------------------- */
.guest {
	background-color: rgb(var(--grn));
	padding-bottom: 16.6rem;
	color: rgb(var(--wht));
}

.guest__inner {
	margin: 0 auto 8rem;
	padding-top: 16.6rem;
	width: 103.4rem;
}

.guest__title {
	margin-bottom: 3.6rem;
	line-height: normal;
	font-family: var(--title);
	font-size: 5.2rem;
	display: flex;
	align-items: center;
}

.guest__title--name {
	margin-left: 3.6rem;
	font-family: var(--mincho);
	font-size: 2rem;
}

.guest__title--name .eng-sans {
	display: block;
}

.guest__text {
	line-height: 2.16;
	font-size: 1.3rem;
	display: flex;
	justify-content: space-between;
}

.guest__text .text {
	width: 50rem;
}

.guest__text .text.en {
	font-size: 1.2rem;
}

.guest__image {
	margin: 0 auto;
	width: 68.6rem;
}

.guest__image--pic {
	margin-bottom: 3rem;
}

.guest__image .link-button {
	margin-left: auto;
	width: 23rem;
	color: rgb(var(--wht));
	border-color: rgb(var(--wht));
}

.guest__image .link-button::after {
	display: none;
}

.guest__image .link-button::before {
	background-color: rgba(var(--wht), 0);
	background-image: url(../img/icon-blank.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 1.8rem;
	height: 1.5rem;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translateY(-50%);
	content: "";
}

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

	.guest__inner {
		margin-bottom: 3rem;
		padding-top: 6rem;
		width: 30rem;
	}

	.guest__title {
		font-size: 3.4rem;
		text-align: center;
		flex-direction: column;
	}

	.guest__title--name {
		margin-left: 0;
		font-size: 1.5rem;
	}

	.guest__text {
		line-height: 1.8;
		font-size: 1.2rem;
		display: block;
	}

	.guest__text .text {
		width: 100%;
	}

	.guest__text .text.en {
		margin-top: 2.4rem;
		font-size: 1.1rem;
	}

	.guest__image {
		width: 30rem;
	}

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

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

.menu::after {
	height: 100dvh;
	display: block;
	content: "";
}

.menu__bg {
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 0;
}

.menu__bg picture,
.menu__bg img {
	width: 100%;
	height: 100%;
	display: block;
}

.menu__bg img {
	object-fit: cover;
	object-position: center;
}

.menu__inner {
	background-color: rgba(var(--gld), 0.9);
	margin: 0 auto 16.6rem;
	padding: 8rem 0;
	width: 70.4rem;
	color: rgb(var(--wht));
	border-radius: 0.5rem;
	position: relative;
	z-index: 1;
}

.menu__list {
	margin: 0 auto;
	width: 58rem;
}

.menu__list--item {
	display: flex;
}

.menu__list--item:not(:last-of-type) {
	margin-bottom: 7rem;
	padding-bottom: 7rem;
	border-bottom: solid 1px rgb(var(--wht));
}

.menu__list--title {
	width: 21.2rem;
	line-height: normal;
	font-family: var(--title);
	font-size: 3.6rem;
	font-weight: 400;
	position: relative;
	display: flex;
	flex-direction: column;
	top: -2rem;
}

.menu__list--title .eng-sans {
	font-size: 5rem;
}

.menu__list--content {
	width: calc(100% - 21.2rem);
}

.menu__lead {
	margin-bottom: 5rem;
	font-size: 1.2rem;
}

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

.menu__detail--title {
	margin-bottom: 0.5rem;
	font-family: var(--title);
	font-size: 1.3rem;
	font-weight: 400;
}

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

.menu__detail--text .en {
	font-size: 1.2rem;
}

/* option */
.option .menu__list--title {
	font-size: 2.2rem;
	top: -0.2rem;
}

.option .menu__list--title .eng-sans {
	font-size: 2rem;
}

.option__list--item {
	display: flex;
}

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

.option__content {
	padding-right: 2rem;
	width: calc(100% - 13rem);
}

.option__content--title {
	margin-bottom: 1.3rem;
	font-family: var(--title);
	font-size: 1.3rem;
	font-weight: 400;
}

.option__content--detail .text:not(:last-of-type) {
	margin-bottom: 1.3rem;
}

.option__image {
	width: 13rem;
}

@media screen and (max-width: 768px) {
	/* .menu::after {
		height: 25dvh;
	} */

	.menu__inner {
		margin-bottom: 6rem;
		padding: 4rem 0;
		width: 30rem;
	}

	.menu__list {
		width: 26rem;
	}

	.menu__list--item {
		text-align: center;
		display: block;
	}

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

	.menu__list--title,
	.menu__list--content {
		width: 100%;
	}

	.menu__list--title {
		margin-bottom: 2rem;
		font-size: 2rem;
		position: static;
	}

	.menu__list--title .eng-sans {
		font-size: 3rem;
		display: block;
	}

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

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

	.menu__detail--title {
		font-size: 1.2rem;
	}

	.menu__detail--text {
		font-size: 1.1rem;
	}

	.menu__detail--text .en {
		font-size: 1rem;
	}

	/* option */
	.option .menu__list--title {
		font-size: 1.8rem;
	}

	.option .menu__list--title .eng-sans {
		font-size: 1.6rem;
	}

	.option__list--item {
		display: block;
	}

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

	.option__content {
		padding: 0 0 1rem;
		width: 100%;
	}

	.option__content--title {
		margin-bottom: 1rem;
		font-size: 1.2rem;
	}

	.option__content--detail .text:not(:last-of-type) {
		margin-bottom: 1rem;
	}

	.option__image {
		margin: 0 auto;
	}
}

/* ----------------------------------------------------
	information
---------------------------------------------------- */
.information {
	background-color: rgb(var(--lgy));
	margin-top: -100dvh;
	padding: 16.6rem 0;
	position: relative;
	z-index: 2;
}

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

.information__content {
	width: 50rem;
}

.information__title {
	margin-bottom: 4rem;
	line-height: normal;
	color: rgb(var(--gld));
	font-weight: 400;
	display: flex;
	flex-direction: column;
}

.information__title--small {
	font-family: var(--button);
	font-size: 1.4rem;
}

.information__title--the {
	font-family: var(--eng-sans);
	font-size: 5rem;
	font-weight: 300;
}

.information__title--main {
	font-family: var(--title);
	font-size: 3.6rem;
}

.information__cont {
	font-size: 1.3rem;
}

.information__cont--title {
	font-family: var(--button);
	font-weight: 400;
}

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

.information__cont--detail .text.small,
.information__cont--detail .note {
	margin-top: 1rem;
	font-size: 1rem;
}

.information__cont--detail .note.en {
	margin-top: 0;
}

.information__cont--detail.price {
	display: flex;
}

.information__cont--detail .price__content:not(:last-of-type) {
	margin-right: 3.6rem;
}

.price__content--title {
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
	display: flex;
	align-items: baseline;
}

.price__content--title .option {
	margin-left: 1rem;
	font-size: 1rem;
}

.price__content--th {
	padding-right: 0.5em;
}

.information__image {
	width: 52rem;
}

.information__image figcaption {
	margin-top: 0.5rem;
	font-size: 1rem;
	text-align: right;
}

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

	.information__inner {
		width: 30rem;
		display: block;
	}

	.information__content {
		margin-bottom: 3rem;
		width: 100%;
		text-align: center;
	}

	.information__title {
		margin-bottom: 3rem;
	}

	.information__title--small {
		font-size: 1.3rem;
	}

	.information__title--the {
		font-size: 3rem;
	}

	.information__title--main {
		font-size: 2rem;
	}

	.information__cont--detail.price {
		display: block;
	}

	.information__cont--detail .price__content:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 3rem;
	}

	.price__content--title {
		display: block;
	}

	.price__content--title .option {
		margin-left: 0;
		display: block;
	}

	.price__content--table {
		margin: 0 auto;
	}

	.information__image {
		width: 100%;
	}
}

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

.reservation__bg {
	background-color: rgb(var(--grn));
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	z-index: 0;
}

.reservation__bg video {
	width: 100%;
	height: 100%;
	opacity: 0.2;
	display: block;
	object-fit: cover;
}

.reservation__inner {
	margin: 0 auto;
	padding: 16.6rem 0;
	width: 103.4rem;
	color: rgb(var(--wht));
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.reservation__content {
	margin: 0 auto;
	width: 47.5rem;
}

.reservation__title {
	margin-bottom: 2rem;
	font-family: var(--title);
	font-size: 3rem;
	font-weight: 400;
}

.reservation__content--inner {
	display: flex;
}

.reservation__content--inner .online {
	margin-right: 5rem;
}

.reservation__content--inner .title {
	margin-bottom: 1rem;
	line-height: normal;
	font-family: var(--button);
	font-size: 1.3rem;
}

.reservation__content--inner .link-button {
	border-color: rgb(var(--wht));
}

.reservation__content--inner .link-button::after {
	background-color: rgb(var(--wht));
}

.reservation__content--inner .tel__number {
	line-height: normal;
	font-size: 2rem;
}

.reservation__content--inner .tel__time {
	margin-top: 0.5rem;
	font-size: 1rem;
}

.reservation__content.cooperation {
	width: 35rem;
}

.reservation__content .cooperation__logo img {
	width: 10.5rem;
}

.reservation__content .cooperation__logo figcaption {
	margin-top: 1rem;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.reservation__inner {
		padding: 6rem 0;
		width: 100%;
		text-align: center;
		display: block;
	}

	.reservation__content {
		width: 100%;
	}

	.reservation__title {
		font-size: 2rem;
		text-align: center;
	}

	.reservation__content--inner {
		display: block;
	}

	.reservation__content--inner .online {
		margin: 0 0 3rem;
	}

	.reservation__content--inner .title {
		text-align: center;
	}

	.reservation__content--inner .link-button {
		margin: 0 auto;
		width: 20.5rem;
	}

	.reservation__content.cooperation {
		margin-top: 6rem;
		width: 100%;
	}
}

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

.anniversary::after {
	height: var(--footer-overlap, 100dvh);
	display: block;
	content: "";
}

.anniversary__bg {
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	position: sticky;
	top: 0;
	z-index: 0;
}

.anniversary__bg picture,
.anniversary__bg img {
	width: 100%;
	height: 100%;
	display: block;
}

.anniversary__bg img {
	object-fit: cover;
	object-position: center;
}

.anniversary__inner {
	padding: 15rem 0;
	position: relative;
	z-index: 1;
}

.anniversary__content {
	background-color: rgba(var(--wht), 0.9);
	margin: 0 auto;
	padding: 11rem 0;
	width: 105rem;
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.anniversary__content--logo {
	margin-right: 9rem;
	width: 33.1rem;
}

.anniversary__content--detail {
	width: 42.4rem;
}

.anniversary__title {
	margin-bottom: 2rem;
	line-height: 1.4;
	font-family: var(--title);
	font-size: 2.5rem;
	font-weight: 400;
}

.anniversary__lead {
	margin-bottom: 3rem;
	line-height: 2.16;
	font-size: 1.3rem;
}

.anniversary__lead .en {
	margin-top: 1.5rem;
}

.anniversary__content--detail .link-button {
	color: rgb(var(--blk));
	border-color: rgb(var(--blk));
}

.anniversary__content--detail .link-button::after {
	background-color: rgb(var(--blk));
}

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

	.anniversary__content {
		padding: 4rem 0;
		width: 30rem;
		display: block;
	}

	.anniversary__content--logo {
		margin: 0 auto 5rem;
		width: 20.1rem;
	}

	.anniversary__content--detail {
		margin: 0 auto;
		width: 23rem;
	}

	.anniversary__title {
		line-height: 1.7;
		font-size: 1.4rem;
		text-align: center;
		letter-spacing: -0.005em;
	}

	.anniversary__lead {
		line-height: 1.7;
		font-size: 1rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--lgy));
	margin-top: calc(-1 * var(--footer-overlap, 100dvh));
	padding: 16.6rem 0 2rem;
	position: relative;
	z-index: 2;
}

.footer__notes {
	margin: 0 auto 9rem;
	width: 58rem;
}

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

.footer__logo {
	margin: 0 auto 4rem;
	width: 13rem;
}

.footer .partner {
	margin-bottom: 5rem;
	text-align: center;
}

.footer .partner__title {
	font-family: var(--title);
	font-size: 2.5rem;
}

.footer .partner__list {
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
}

.footer .partner__list.en {
	margin-bottom: 3rem;
}

.footer .partner__list--title {
	padding-right: 0.5rem;
}

.footer .partner__list--title::after {
	content: ":";
}

.footer .partner__list--name {
	padding-left: 0.5rem;
}

.footer .partner__logo {
	margin: 0 auto;
	width: 14rem;
}

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

	.footer__notes {
		margin-bottom: 7rem;
		width: 30rem;
	}

	.footer__logo {
		width: 11rem;
	}

	.footer .partner__title {
		font-size: 1.4rem;
	}

	.footer .partner__list {
		font-size: 1rem;
	}

	.footer .partner__logo {
		width: 10rem;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	line-height: 1;
	font-family: var(--button);
	font-size: 1.3rem;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		font-size: 0.9rem;
		text-align: center;
		display: block;
	}

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

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

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

	.footer .hotel-nav__item a {
		padding: 0 0.5em;
		text-decoration: none;
		letter-spacing: -0.005em;
	}
}

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

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