/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
@media screen and (max-width: 768px) {
	.header::before {
		background: rgba(var(--blk), 1);
		width: 100%;
		height: 4rem;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 4;
		content: "";
		animation: headerOverlayFade 4s ease forwards;
		pointer-events: none;
	}
}

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

@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		background: rgba(var(--red), 0.95);
		padding-top: 5rem;
		width: 100%;
		height: 100%;
		display: block;
		overflow: auto;
		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__item {
		padding: 0.5em 1.5em;
		color: rgb(var(--wht));
		font-family: var(--en);
		font-size: 2.4rem;
	}

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

	.gnav__item a {
		text-decoration: none;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.gnav__item a.reserve {
		font-size: 1.8rem;
	}

	.gnav__item .reserve__jp {
		background-color: rgb(var(--wht));
		margin-left: 1rem;
		padding: 0 1em;
		color: rgb(var(--red));
		font-family: var(--gothic);
		font-size: 1.2rem;
		font-weight: 500;
		display: inline-block;
	}

	.gnav__item a .and {
		margin: 0 0.5rem;
		font-family: var(--mincho);
		font-size: 2.1rem;
		position: relative;
		top: -1px;
	}

	.room-nav {
		margin-top: 0.2em;
	}

	.room-nav__item a::before {
		font-family: var(--gothic);
		font-weight: 100;
		content: "ー";
	}

	.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: 4.2rem;
		height: 1.2rem;
		display: block;
		position: fixed;
		top: 1.6rem;
		right: 1.2rem;
		z-index: 1000;
	}

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

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

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

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

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

/* ----------------------------------------------------
	collaboration
---------------------------------------------------- */
.collaboration {
	background-color: rgb(var(--blk));
	background-image: url(../img/bg.webp);
	background-position: top 5.5rem center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 31.7rem 0 22.7rem;
	color: rgb(var(--wht));
	text-align: center;
	position: relative;
}

.collaboration::before {
	background-image: url(../img/bg-dots-gld.webp);
	background-position: top center;
	background-repeat: repeat-x;
	background-size: 1.6rem auto;
	width: 100%;
	height: 2.1rem;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
}

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

.collaboration__title {
	color: rgb(var(--gld));
	font-family: var(--en);
	font-size: 3rem;
}

.collaboration__title--inner {
	display: inline-block;
	position: relative;
}

.collaboration__title--inner::before,
.collaboration__title--inner::after {
	background-image: url(../img/obj-star-gld.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 3rem;
	height: 1.7rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
}

.collaboration__title--inner::before {
	left: -5rem;
}

.collaboration__title--inner::after {
	right: -5rem;
	transform: translateY(-50%) rotate(180deg);
}

.collaboration__date {
	background-image: url(../img/collaboration-bg-date.svg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 57.1rem auto;
	margin-bottom: 5rem;
	padding-bottom: 4rem;
	color: rgb(var(--gld));
	font-family: var(--en);
	font-size: 7.7rem;
}

.collaboration__date--week {
	font-size: 6.6rem;
}

@media screen and (max-width: 768px) {
	.collaboration {
		background-image: url(../img/bg_so.webp);
		background-position: top 6.2rem center;
		padding: 12.8rem 0;
	}

	.collaboration__logo {
		width: 23rem;
	}

	.collaboration__title {
		font-size: 2.5rem;
	}

	.collaboration__title--inner::before,
	.collaboration__title--inner::after {
		width: 2.3rem;
		height: 1.3rem;
	}

	.collaboration__title--inner::before {
		left: -3rem;
	}

	.collaboration__title--inner::after {
		right: -3rem;
	}

	.collaboration__date {
		background-size: 26.1rem auto;
		margin-bottom: 5rem;
		padding-bottom: 2rem;
		font-size: 4rem;
	}

	.collaboration__date--week {
		font-size: 2.9rem;
	}
}

/* 
	welcome
------------------------------ */
.welcome {
	background-image: url(../img/welcom-bg-star.svg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 4.5rem auto;
	margin-bottom: 8rem;
	padding-bottom: 8rem;
}

.welcome__title {
	margin-bottom: 3rem;
	line-height: normal;
	font-size: 4rem;
	font-weight: 600;
}

.welcome__lead {
	font-weight: 500;
}

.welcome__lead .text {
	margin-bottom: 1em;
	line-height: 2.27;
	font-size: 2.2rem;
}

.welcome__lead .text:last-child {
	margin-bottom: 0;
	font-size: 2.7rem;
}

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

	.welcome__title {
		font-size: 2rem;
		letter-spacing: -0.005em;
	}

	.welcome__lead {
		font-weight: 500;
	}

	.welcome__lead .text {
		font-size: 1.6rem;
	}

	.welcome__lead .text:last-child {
		font-size: 1.8rem;
	}
}

/* 
	reservation
------------------------------ */
.reservation__title {
	margin-bottom: 5rem;
	line-height: normal;
	color: rgb(var(--gld));
	font-size: 3.5rem;
	font-weight: 600;
}

.reservation__title--date {
	font-size: 2.5rem;
	display: block;
}

.reservation__content {
	margin: 0 auto;
	width: 73.5rem;
	font-family: var(--gothic);
}

.reservation__content--title {
	margin-bottom: 2rem;
	font-size: 1.8rem;
	font-weight: 500;
}

.reservation__list {
	margin-bottom: 3rem;
}

.reservation__list--item {
	padding: 3rem 0;
	border: solid 1px rgb(var(--wht));
}

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

.reservation__list--title {
	margin-bottom: 1rem;
	font-size: 2rem;
	font-weight: 500;
}

.reservation__table {
	margin: 0 auto;
}

.reservation__table--th {
	padding-right: 1rem;
	font-size: 2.5rem;
	font-weight: 700;
}

.reservation__table--td {
	font-size: 3rem;
	font-weight: 700;
}

.reservation__table--td .yen {
	font-size: 2.5rem;
}

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

.reservation .spgr {
	margin-top: 7rem;
	line-height: normal;
	border: solid 1px rgb(var(--gld));
	position: relative;
}

.reservation .spgr__inner {
	padding: 6rem 0;
	position: relative;
}

.reservation .spgr::before,
.reservation .spgr::after,
.reservation .spgr__inner::before,
.reservation .spgr__inner::after {
	background-color: rgb(var(--gld));
	width: 2rem;
	height: 2rem;
	position: absolute;
	content: "";
}

.reservation .spgr::before {
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	top: 0;
	left: 0;
}

.reservation .spgr::after {
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	top: 0;
	right: 0;
}

.reservation .spgr__inner::before {
	clip-path: polygon(0 100%, 100% 100%, 0 0);
	bottom: 0;
	left: 0;
}

.reservation .spgr__inner::after {
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	right: 0;
	bottom: 0;
}

.reservation .spgr__title {
	margin-bottom: 1.6rem;
	color: rgb(var(--gld));
	font-size: 2rem;
	font-weight: 500;
}

.reservation .spgr__lead {
	margin-bottom: 3rem;
	font-size: 1.5rem;
}

.reservation .spgr .link-button {
	background-color: rgb(var(--gld));
	margin: 0 auto;
	color: rgb(var(--blk));
}

.reservation .spgr .link-button svg {
	fill: rgb(var(--blk));
}

@media screen and (max-width: 768px) {
	.reservation__title {
		letter-spacing: -0.005em;
	}

	.reservation__title,
	.reservation__title--date {
		font-size: 2.3rem;
	}

	.reservation__title--date span {
		font-size: 1.5rem;
	}

	.reservation__content {
		width: 34rem;
	}

	.reservation__list--title {
		font-size: 1.8rem;
	}

	.reservation__table,
	.reservation__table tbody,
	.reservation__table--row,
	.reservation__table--th,
	.reservation__table--td {
		display: block;
	}

	.reservation__table--th {
		padding-right: 0;
		font-size: 2rem;
		text-align: center;
	}

	.reservation__table--td {
		font-size: 2.5rem;
	}

	.reservation__table--td .yen {
		font-size: 1.8rem;
	}

	.reservation .spgr {
		margin-top: 4rem;
	}

	.reservation .spgr__inner {
		padding: 3rem 0;
	}

	.reservation .spgr::before,
	.reservation .spgr::after,
	.reservation .spgr__inner::before,
	.reservation .spgr__inner::after {
		width: 1.3rem;
		height: 1.3rem;
	}

	.reservation .spgr__title {
		margin-bottom: 1rem;
		font-size: 1.8rem;
	}

	.reservation .spgr__lead {
		margin-bottom: 3rem;
		line-height: 1.8;
		font-size: 1.5rem;
	}

	.reservation .spgr .link-button {
		background-color: rgb(var(--gld));
		margin: 0 auto;
		color: rgb(var(--blk));
	}

	.reservation .spgr .link-button svg {
		fill: rgb(var(--blk));
	}
}

/* ----------------------------------------------------
	plan
---------------------------------------------------- */
.plan {
	background-color: rgb(var(--gld));
	padding-bottom: 2.3rem;
	font-family: var(--gothic);
	position: relative;
}

.plan::before {
	background-image: url(../img/bg-dots-blk.webp);
	background-position: top center;
	background-repeat: repeat-x;
	background-size: 1.6rem auto;
	width: 100%;
	height: 2.3rem;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
}

.plan__head {
	background-image: url(../img/bg-line-gld.webp);
	background-position: top center;
	background-repeat: repeat;
	background-size: 5.2rem auto;
	padding: 14.5rem 0 11rem;
}

.plan__head--title {
	margin: 0 auto 7.5rem;
	width: 50.4rem;
}

.plan__head--nav {
	margin: 0 auto 5rem;
	width: 93rem;
	display: flex;
	justify-content: space-between;
}

.plan__head--item {
	width: 25.7rem;
}

.plan__head .note {
	margin: 0 auto;
	width: 93rem;
}

@media screen and (max-width: 768px) {
	.plan__head {
		background-image: url(../img/bg-line-gld.webp);
		background-position: top center;
		background-repeat: repeat;
		/* background-size: 1.7rem auto; */
		background-size: 1.7rem 1px;
		padding: 10rem 0;
	}

	.plan__head--title {
		width: 33rem;
	}

	.plan__head--nav {
		width: 32rem;
		display: block;
	}

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

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

	.plan__head .note {
		width: 34rem;
	}
}

/* 
	plan__body
------------------------------ */
.plan__room {
	padding: 10rem 0;
	border-top: double 6px rgb(var(--blk));
	position: relative;
}

.plan__room::before,
.plan__room::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15.9rem;
	height: 15.9rem;
	position: absolute;
	top: 0;
	content: "";
}

.plan__room::before {
	background-image: url(../img/room-bg-left.webp);
	left: 0;
}

.plan__room::after {
	background-image: url(../img/room-bg-right.webp);
	right: 0;
}

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

.plan__room--title span {
	font-size: 9.8rem;
}

.plan__room--content {
	margin: 0 auto;
	width: 80rem;
}

.plan__room--image {
	margin-bottom: 8rem;
}

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

.plan .amenity__title--inner {
	display: inline-block;
	position: relative;
}

.plan .amenity__title--inner::before,
.plan .amenity__title--inner::after {
	background-image: url(../img/obj-star-blk.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 3rem;
	height: 1.7rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
}

.plan .amenity__title--inner::before {
	left: -5rem;
}

.plan .amenity__title--inner::after {
	right: -5rem;
	transform: translateY(-50%) rotate(180deg);
}

.plan .amenity .note {
	text-align: center;
}

.plan .amenity__list {
	margin: 3rem auto 8rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.plan .amenity__list--item {
	margin: 0 3rem 2.4rem;
	width: 28rem;
	text-align: center;
}

.plan .amenity__image {
	height: 23.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.plan .amenity01 img {
	width: 28rem;
}

.plan .amenity02 img {
	width: 21.7rem;
}

.plan .amenity03 img {
	width: 14.2rem;
}

.plan .amenity04 img {
	width: 28rem;
}

.plan .amenity__caption {
	margin-top: 1.3rem;
	line-height: normal;
	font-size: 1.8rem;
	font-weight: 500;
}

.plan .amenity__caption .size {
	margin-top: 0.5rem;
	font-size: 1.4rem;
	display: block;
}

.plan__link {
	margin: 0 auto 3rem;
	display: flex;
	justify-content: space-between;
}

.plan__link--item {
	width: 37rem;
}

.plan__link--item .link-button {
	width: 100%;
	height: 8.8rem;
	line-height: normal;
	font-family: var(--mincho);
	font-size: 1.6rem;
	text-align: center;
	border-radius: 8.8rem;
}

.plan__link+.note {
	text-align: center;
}

.plan .novelty {
	background-color: rgb(var(--wht));
	margin: 10rem auto 0;
	padding: 0.6rem;
	width: 100rem;
	color: rgb(var(--blk));
	border: solid 1px rgb(var(--blk));
}

.plan .novelty__inner {
	padding: 7rem 5rem;
	border: solid 1px rgb(var(--blk));
	display: flex;
	justify-content: space-between;
}

.plan .novelty__content {
	width: 35.2rem;
	text-align: center;
}

.plan .novelty__title {
	margin-bottom: 2rem;
	line-height: normal;
	color: rgb(var(--gld));
	font-family: var(--en);
	font-size: 6rem;
}

.plan .novelty__lead {
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
	text-align: left;
}

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

.plan .novelty__image {
	width: 48.4rem;
}

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

	.plan__room::before,
	.plan__room::after {
		width: 8.4rem;
		height: 8.4rem;
	}

	.plan__room--title {
		font-size: 5.4rem;
	}

	.plan__room--title span {
		font-size: 7rem;
	}

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

	.plan .amenity {
		margin: 0 auto;
		width: 34rem;
	}

	.plan .amenity__title {
		font-size: 4rem;
	}

	.plan .amenity__title--inner::before,
	.plan .amenity__title--inner::after {
		width: 2.5rem;
		height: 1.4rem;
	}

	.plan .amenity__title--inner::before {
		left: -3rem;
	}

	.plan .amenity__title--inner::after {
		right: -3rem;
	}

	.plan .amenity__list {
		margin: 3rem auto 6rem;
		width: 28rem;
		display: block;
	}

	.plan .amenity__list--item {
		margin: 0;
		width: 100%;
	}

	.plan .amenity__list--item:not(:last-of-type) {
		margin-bottom: 5rem;
	}

	.plan .amenity__image {
		height: auto;
	}

	.plan__link {
		display: block;
	}

	.plan__link--item {
		margin: 0 auto;
		width: 34rem;
	}

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

	.plan__link--item .link-button {
		letter-spacing: -0.005em;
	}

	.plan .novelty {
		width: 34rem;
	}

	.plan .novelty__inner {
		padding: 4rem 2.5rem;
		display: block;
	}

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

	.plan .novelty__title {
		font-size: 4rem;
	}

	.plan .novelty__lead {
		font-size: 1.6rem;
	}

	.plan .novelty__size {
		font-size: 1.4rem;
	}

	.plan .novelty__image {
		width: 100%;
	}
}

/* ----------------------------------------------------
	food
---------------------------------------------------- */
.food {
	background-image: url(../img/bg-line-blk.webp);
	background-position: center;
	background-repeat: repeat;
	background-size: 5.2rem auto;
	padding: 15rem 0 19rem;
	color: rgb(var(--wht));
	position: relative;
}

.food::before {
	background-image: url(../img/bg-dots-gld.webp);
	background-position: top center;
	background-repeat: repeat-x;
	background-size: 1.6rem auto;
	width: 100%;
	height: 2.1rem;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
}

.food__head {
	margin-bottom: 8rem;
}

.food__head--title {
	margin: 0 auto 8rem;
	width: 53rem;
}

.food__head--content {
	text-align: center;
}

.food__head--content .title {
	color: rgb(var(--gld));
	font-size: 2.5rem;
	font-weight: 700;
}

.food__head--content .detail {
	margin-bottom: 3.3rem;
	font-family: var(--gothic);
	font-size: 1.8rem;
}

.food__head--list {
	margin: 0 auto 6rem;
	width: 69rem;
}

.food__head--item {
	background-color: rgb(var(--wht));
	padding: 1rem;
	line-height: normal;
	color: rgb(var(--blk));
	font-family: var(--gothic);
	font-size: 2rem;
	text-align: center;
}

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

.food__head--item b {
	font-weight: 500;
}

.food__head--item .text__small {
	margin-top: 0.2rem;
	font-size: 1.6rem;
	display: block;
}

.food__head .note {
	margin: 0 auto;
	width: 100rem;
	font-family: var(--gothic);
}

.food__body {
	margin: 0 auto;
	padding-top: 8rem;
	width: 100rem;
	border-top: solid 1px rgb(var(--wht));
}

.food__title {
	font-family: var(--en);
	font-size: 6rem;
	text-align: center;
}

.food__price {
	margin-bottom: 3rem;
	font-family: var(--gothic);
	font-size: 1.8rem;
	text-align: center;
}

.food__list,
.food__list+.note {
	margin-bottom: 5rem;
}

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

.food__list--item {
	width: 30rem;
}

.food__image {
	margin-bottom: 2rem;
}

.food__name {
	font-family: var(--en);
	font-size: 4rem;
}

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

.food .novelty {
	margin-top: 20rem;
}

.food .novelty__item {
	background-color: rgb(var(--blk));
	margin-bottom: 4rem;
	padding: 0.6rem;
	border: solid 1px rgb(var(--gld));
}

.food .novelty__item--inner {
	padding: 5rem 3.6rem 5rem 6rem;
	border: solid 1px rgb(var(--gld));
	display: flex;
	justify-content: space-between;
}

.food .novelty__content {
	width: 32.8rem;
	font-family: var(--gothic);
	text-align: center;
}

.food .novelty__title {
	color: rgb(var(--gld));
	font-family: var(--en);
	font-size: 6rem;
}

.food .novelty__lead {
	line-height: 2;
	font-size: 1.8rem;
	text-align: left;
}

.food .novelty__content .note {
	margin-top: 1rem;
}

.food .novelty__size {
	margin-top: 1rem;
	font-size: 1.6rem;
}

.food .novelty__image {
	width: 51.2rem;
	text-align: center;
}

.food .cake .novelty__image img {
	width: 44.3rem;
}

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

@media screen and (max-width: 768px) {
	.food {
		/* background-size: 1.7rem auto; */
		background-size: 1.7rem 1px;
		padding: 10rem 0;
	}

	.food__head {
		margin-bottom: 8rem;
	}

	.food__head--title {
		margin-bottom: 6rem;
		width: 33rem;
	}

	.food__head--content {
		margin-bottom: 4rem;
	}

	.food__head--content .detail {
		margin-bottom: 2.5rem;
	}

	.food__head--list {
		margin-bottom: 3rem;
		width: 34rem;
	}

	.food__head--item {
		padding: 2rem;
		font-size: 1.6rem;
	}

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

	.food__head--item .text__small {
		font-size: 1.4rem;
	}

	.food__head .note {
		width: 34rem;
	}

	.food__body {
		padding-top: 5rem;
		width: 34rem;
	}

	.food__list {
		margin-bottom: 8rem;
	}

	.food__list.alcohol {
		margin-bottom: 4rem;
	}

	.food__list {
		display: block;
	}

	.food__list--item {
		margin: 0 auto;
		width: 30rem;
	}

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

	.food__image {
		margin-bottom: 0;
	}

	.food__list+.note {
		margin: 0 auto 8rem;
		width: 30rem;
	}

	.food .novelty {
		margin-top: 0;
	}

	.food .novelty__item {
		padding: 0.2rem;
	}

	.food .novelty__item--inner {
		padding: 4rem 1.5rem;
		display: block;
	}

	.food .novelty__content {
		width: 100%;
	}

	.food .novelty__title {
		font-size: 4.5rem;
	}

	.food .novelty__lead {
		font-size: 1.6rem;
	}

	.food .novelty__size {
		font-size: 1.4rem;
	}

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

	.food .cake .novelty__image img {
		width: 100%;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--gld));
	padding-top: 7rem;
	font-family: var(--gothic);
}

.footer__notice {
	margin-bottom: 6rem;
	font-size: 1.2rem;
	text-align: center;
}

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

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

.official__logo {
	margin: 0 auto 1.4rem;
	width: 40.6rem;
}

.official__site {
	font-size: 2rem;
}

.official__site a {
	text-decoration: none;
}

.official__copy {
	margin-bottom: 7rem;
	font-size: 1.1rem;
	font-weight: 300;
}

.official__sns {
	margin-bottom: 3rem;
}

.official__sns--title {
	margin-bottom: 3rem;
	line-height: normal;
	font-family: var(--mincho);
	font-size: 3.2rem;
	font-weight: 700;
}

.official__sns--title-small,
.official__sns--title-jp {
	display: block;
}

.official__sns--title-small {
	font-size: 1.6rem;
}

.official__sns--title-jp {
	font-family: var(--gothic);
	font-size: 1.5rem;
	font-weight: 400;
}

.official__sns--list {
	display: flex;
	justify-content: center;
}

.official__sns--item {
	margin: 0 1.3rem;
}

.official__sns--item a {
	line-height: normal;
	font-size: 1.2rem;
	text-decoration: none;
}

.official__sns--item img {
	margin-bottom: 0.5rem;
	width: auto;
	height: 4.6rem;
	display: block;
}

@media screen and (max-width: 768px) {
	.official__logo {
		margin-bottom: 2rem;
		width: 27.2rem;
	}

	.official__site {
		margin-bottom: 0;
		font-size: 1.7rem;
	}

	.official__sns--list {
		margin: 0 auto;
		width: 25rem;
		flex-wrap: wrap;
	}

	.official__sns--item {
		margin-bottom: 3rem;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	padding-bottom: 3rem;
	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 {
	background-color: rgb(var(--wht));
	padding: 2em 0;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

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