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

.header__content {
	background-image: url(../img/header-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 51.098vw;
	position: relative;
}

.header__content--title {
	width: 36.823vw;
	position: absolute;
	top: 11.347vw;
	left: 50%;
	transform: translateX(-50%);
}

.header__slide {
	width: 48.902vw;
	line-height: 0;
}

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

	.header__content {
		background-image: url(../img/header-bg_sp.webp);
		width: 100%;
		height: 24.2rem;
	}

	.header__content--title {
		width: 30rem;
		top: 1.6rem;
	}

	.header__slide {
		width: 100%;
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: rgba(85, 50, 31, 0.8);
	margin-top: -6.8rem;
	width: 100%;
	line-height: 1;
	color: rgb(var(--wht));
	position: sticky;
	top: 0;
	z-index: 999;
}

.gnav__inner {
	margin: 0 auto;
	width: 136.6rem;
	height: 6.8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gnav__name {
	padding-left: 4.3rem;
	font-family: var(--mincho);
	font-size: 2.4rem;
}

.gnav__name a {
	text-decoration: none;
}

.gnav__name a:hover {
	color: rgb(var(--gld));
	opacity: 1;
}

.gnav__list {
	padding-right: 6.6rem;
	display: flex;
}

.gnav__item:not(:last-of-type) {
	margin-right: 4rem;
}

.gnav__item a {
	color: rgb(var(--body));
	font-size: 1.5rem;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gnav__item a:hover {
	color: rgb(var(--gld));
	opacity: 1;
}

.gnav__list--title {
	margin-bottom: 1.3rem;
	font-size: 1.4rem;
	position: relative;
}

.gnav__list--title::before {
	background-color: rgb(var(--body));
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -0.8rem;
	left: 0;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.5s ease;
	content: "";
}

.gnav__item:has(a:hover) .gnav__list--title::before,
.gnav__item:has(a:focus-visible) .gnav__list--title::before {
	transform: scaleX(1);
}

.restaurant-list {
	display: flex;
}

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


@media screen and (max-width: 768px) {
	.gnav--sp-toggle {
		margin: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__inner {
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.gnav__name {
		margin-bottom: 6rem;
		padding-left: 0;
		font-size: 2.4rem;
	}

	.gnav__list {
		padding-right: 0;
		text-align: center;
		display: block;
	}

	.gnav__item:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 4rem;
	}

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

	.gnav__list--title {
		margin-bottom: 2rem;
	}

	.gnav__list--title::before {
		display: none;
	}

	.restaurant-list {
		display: block;
	}

	.restaurant-list__item:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 2rem;
	}

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

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

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

	.toggle.is-over-light-area .toggle__line,
	.is-open .toggle__line {
		background: rgb(var(--wht));
	}

	.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 {
		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;
}

.main .main-obj {
	background-image: url(../img/obj-restaurant01.webp);
	background-position: right top;
	width: 29.4rem;
	height: 27.6rem;
	position: absolute;
	top: 0;
	right: 0;
	content: "";
}

@media screen and (max-width: 768px) {
	.main .main-obj {
		width: 10.8rem;
		height: 10.1rem;
	}
}

/* ----------------------------------------------------
	共通：プログラム詳細
---------------------------------------------------- */
.program {
	padding-bottom: 9rem;
	position: relative;
}

.program__heading {
	background-color: rgb(var(--brn));
	margin-bottom: 5rem;
	height: 5.7rem;
	color: rgb(var(--wht));
	font-family: var(--mincho);
	font-size: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.program__inner {
	margin: 0 auto;
	width: 114rem;
}

.program__layout {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.program__layout:not(:last-of-type) {
	margin-bottom: 7rem;
}

.program__content {
	width: 56.4rem;
}

.program__image {
	margin: 0 auto 3.5rem;
	width: 83.6rem;
	position: relative;
}

.program__image--slide figure {
	position: relative;
}

.program__image .caption,
.program__image--slide figcaption {
	color: rgb(var(--wht));
	font-size: 1.2rem;
	font-weight: 700;
	position: absolute;
	right: 1rem;
	bottom: 0.4em;
	z-index: 10;
}

.program__title {
	line-height: normal;
	font-family: var(--mincho);
	font-size: 2.4rem;
}

.program__date {
	margin-top: 1rem;
	line-height: normal;
	font-family: var(--mincho);
	font-size: 2rem;
	display: flex;
	align-items: center;
}

.program__date .notes {
	background-color: rgb(var(--blk));
	margin-left: 1rem;
	padding: 0.5rem 1rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.5rem;
	border-radius: 3rem;
}

.program__table {
	margin-top: 2rem;
	font-size: 1.6rem;
}

.program__label,
.program__value {
	vertical-align: top;
}

.program__label {
	padding-right: 2rem;
	font-weight: 700;
}

.price-table .price-category {
	padding: 0;
	min-width: 10rem;
	text-align: center;
}

.price-table th,
.price-table td {
	vertical-align: top;
}

.price-table th {
	padding-right: 2rem;
}

.time-table th {
	padding-right: 1rem;
}

.program__content .note .en {
	margin-left: 0.5em;
	text-indent: -0.5em;
}

.program__text {
	margin-top: 1.5rem;
	line-height: normal;
	font-size: 1.6rem;
}

.program__content .link-button {
	margin: 2.5rem auto 0;
	width: 33rem;
	height: 7.2rem;
	font-size: 1.6rem;
	border: solid 1px rgb(var(--blk));
	position: relative;
	z-index: 2;
}

.program__content .link-button svg {
	fill: none;
	stroke: #593939;
}

.program__content .link-button:hover {
	background-color: rgba(153, 127, 98, 1);
	color: rgb(var(--wht));
}

.program__content .link-button:hover svg {
	stroke: rgb(var(--wht));
}

.program__layout+.note {
	margin-top: 2.5rem;
	/* width: 55.4rem; */
}

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

	.program__heading {
		margin-bottom: 3rem;
		height: 3.8rem;
		font-size: 2rem;
	}

	.program__inner {
		width: 34.5rem;
	}

	.program__layout {
		display: block;
	}

	.program__content {
		width: 34.5rem;
	}

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

	.program__title,
	.program__date {
		font-size: 1.8rem;
	}

	.program__date {
		flex-wrap: wrap;
	}

	.program__date .notes {
		margin: 0.5rem 0 0;
		font-size: 1.3rem;
		display: inline-block;
	}

	.program__date .notes.short {
		margin: 0 0 0 0.5rem;
	}

	.program__table,
	.program__row,
	.program__label,
	.program__value {
		display: block;
	}

	.program__table {
		font-size: 1.4rem;
	}

	.program__label,
	.program__value {
		vertical-align: top;
	}

	.program__label {
		padding-right: 0;
	}

	.price-table .price-category {
		padding: 0 1rem;
		min-width: 0;
	}

	.price-table th,
	.price-table td {
		vertical-align: top;
	}

	.price-table th {
		padding-right: 0;
	}

	.price-table tbody th {
		padding-right: 1rem;
		white-space: nowrap;
	}

	.time-table,
	.time-table tr,
	.time-table th,
	.time-table td {
		display: block;
	}

	.time-table th {
		padding: 0;
	}

	.program__layout+.note {
		margin: 2.5rem auto 0;
		/* width: 33.4rem; */
	}
}

/*
	menu（アコーディオン）
--------------------------- */
.program__layout .menu {
	width: 50.5rem;
	position: relative;
}

.menu__content {
	font-size: 1.4rem;
}

.menu__content:not(:first-of-type) {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: solid 1px rgb(var(--blk));
}

.menu__content--title {
	color: rgb(var(--ppl));
	font-weight: 500;
}

.menu__content--detail {
	line-height: 1.6;
}

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

.menu__content--detail small {
	font-size: 1.2rem;
}

.accordion {
	border: solid 1px rgb(var(--blk));
}

.accordion__trigger {
	-webkit-appearance: none;
	appearance: none;
	background: rgba(182, 141, 160, 1);
	height: 4.8rem;
	color: rgb(var(--wht));
	font-family: var(--mincho);
	font-size: 2rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	position: relative;
	cursor: default;
}

.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;
	display: none;
	content: "";
}

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

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

.accordion__panel {
	padding: 1.8rem;
}

.accordion__panel--title {
	color: rgb(var(--ppl));
	font-family: var(--mincho);
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.program__layout .menu {
		margin-top: 4.5rem;
		width: 100%;
	}

	.accordion__trigger {
		cursor: pointer;
	}

	.accordion__trigger::before,
	.accordion__trigger::after {
		display: block;
	}

	.accordion__panel {
		display: none;
	}
}

/* ----------------------------------------------------
	restaurant
---------------------------------------------------- */
.restaurant__head {
	margin: 0 auto;
	padding: 8rem 0 6rem;
	width: 136.6rem;
	font-family: var(--mincho);
	text-align: center;
	overflow: hidden;
	position: relative;
}

.restaurant__head--obj {
	background-image: url(../img/obj-restaurant02.webp);
	width: 38.3rem;
	height: 39.5rem;
	top: 17.2rem;
	left: 6rem;
}

.restaurant__lead {
	margin-bottom: 9rem;
	line-height: 1.6;
	font-size: 3rem;
}

.restaurant__head--title {
	margin: 0 auto 3.5rem;
	width: 44.6rem;
}

.restaurant__head--lead {
	font-size: 2.4rem;
}

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

	.restaurant__head--obj {
		width: 15rem;
		height: 15.4rem;
		top: 18rem;
		left: -1.5rem;
	}

	.restaurant__lead {
		margin-bottom: 7.5rem;
		font-size: 2rem;
	}

	.restaurant__head--title {
		margin-bottom: 3rem;
		width: 26rem;
	}

	.restaurant__head--lead {
		padding: 0 1.5rem;
		font-size: 1.8rem;
	}
}

/*
	レストラン共通
--------------------------- */
.restaurant_lead {
	margin-bottom: 5rem;
	font-family: var(--mincho);
	font-size: 3.2rem;
	text-align: center;
}

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

}

/*
	banquet
--------------------------- */
.banquet__plan {
	margin: 3.5rem auto 0;
	width: 114rem;
	display: flex;
}

.banquet__plan .program__content {
	background-color: rgba(222, 212, 182, 1);
	padding: 0 3.5rem;
	width: calc(100% - 53.5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.banquet__plan-image {
	width: 53.5rem;
}

@media screen and (max-width: 768px) {
	.banquet__plan {
		margin-top: 2.5rem;
		width: 100%;
		display: block;
	}

	.banquet__plan .program__content {
		padding: 3rem 0;
		width: 100%;
		display: block;
	}

	.banquet__plan--inner {
		margin: 0 auto;
		width: 30rem;
	}

	.banquet__plan .program__content .link-button {
		width: 33rem;
	}

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

/*
	s-dining
--------------------------- */
.s-dining {
	background-color: rgba(234, 215, 179, 1);
}

.s-dining__nav {
	margin: 0 auto 8rem;
	width: 93rem;
	display: flex;
	justify-content: space-between;
}

.s-dining__nav--item {
	width: 30rem;
}

.s-dining .program__content .link-button:hover {
	background-color: rgba(130, 69, 97, 1);
	border-color: rgba(130, 69, 97, 1);
}

.s-dining .program__image.pc {
	width: 100%;
}

.s-dining-obj01 {
	background-image: url(../img/obj-dining01.webp);
	width: 31.9rem;
	height: 39.9rem;
	top: -68rem;
	left: -11rem;
}

.s-dining-obj02 {
	background-image: url(../img/obj-dining02.webp);
	width: 36.5rem;
	height: 39.1rem;
	bottom: -10rem;
	right: -8.2rem;
}

.s-dining-obj03 {
	background-image: url(../img/obj-dining03.webp);
	width: 18.3rem;
	height: 17.3rem;
	bottom: -9rem;
	right: 11rem;
}

.s-dining-obj04 {
	background-image: url(../img/obj-dining04.webp);
	width: 29.4rem;
	height: 40.6rem;
	bottom: 13.6rem;
	right: 0;
}

@media screen and (max-width: 768px) {
	.s-dining__nav {
		margin-bottom: 5rem;
		width: 34.5rem;
		display: block;
	}

	.s-dining__nav--item {
		width: 100%;
	}

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

	.s-dining-obj01 {
		display: none;
	}

	#s-dining02+.program__layout {
		margin-bottom: 14rem;
	}

	.s-dining-obj02 {
		width: 13.4rem;
		height: 14.4rem;
		bottom: -14rem;
		right: 0;
	}

	#s-dining03+.program__layout {
		/* margin-bottom: 16rem; */
	}

	#s-dining03+.program__layout+.note {
		margin: 0 0 16rem;
	}

	.s-dining-obj03 {
		width: 8.8rem;
		height: 9.3rem;
		/* bottom: -12rem; */
		bottom: -24rem;
		right: 18rem;
	}

	.s-dining-obj04 {
		width: 15.1rem;
		height: 20.9rem;
		/* bottom: -19rem; */
		bottom: -30rem;
		right: -1.5rem;
	}
}

/*
	sou
--------------------------- */
.sou {
	background-color: rgba(239, 229, 225, 1);
}

.sou__obj {
	background-image: url(../img/obj-sou.webp);
	width: 31.4rem;
	height: 32.4rem;
	right: -3.4rem;
	bottom: -5rem;
}

.sou .program__content .link-button:hover {
	background-color: rgba(164, 93, 77, 1);
	border-color: rgba(164, 93, 77, 1);
}

@media screen and (max-width: 768px) {
	.sou .program__layout {
		padding-bottom: 10rem;
	}

	.sou__obj {
		width: 17.1rem;
		height: 17.5rem;
		right: 0;
		bottom: -8rem;
	}
}

/*
	restaurant-info（共通）
--------------------------- */
.restaurant-info {
	margin-top: 8rem;
	padding-top: 8rem;
	border-top: solid 1px rgb(var(--blk));
	display: flex;
	justify-content: space-between;
}

.restaurant-info__image {
	width: 45.4rem;
}

.restaurant-info__content {
	width: 65rem;
}

.restaurant-info__title {
	margin-bottom: 2.5rem;
	line-height: 1;
	color: rgb(var(--brn));
	font-family: var(--mincho);
	font-size: 2.4rem;
	font-weight: bold;
}

.restaurant-info__detail {
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
}

.restaurant-info--sou .restaurant-info__logo {
	/* margin-right: 9rem;
	width: 16.3rem; */
	margin-right: 2rem;
	width: 10rem;
}

.restaurant-info--s-dining .restaurant-info__logo {
	/* margin-right: 1.8rem;
	width: 8rem; */
	margin-right: 2rem;
	width: 6.4rem;
}

.restaurant-info__name h4 {
	font-size: 2rem;
}

.restaurant-info__name a {
	color: rgb(var(--ppl));
	font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
	.restaurant-info {
		margin-top: 0;
		padding-top: 2.4rem;
		display: block;
	}

	.restaurant-info__image {
		margin-bottom: 2.4rem;
		width: 100%;
	}

	.restaurant-info__content {
		width: 100%;
	}

	.restaurant-info__title {
		text-align: center;
	}

	.restaurant-info__detail {
		margin-bottom: 3rem;
		justify-content: center;
	}

	.restaurant-info--sou .restaurant-info__logo {
		margin-right: 1.8rem;
		width: 8rem;
	}

	.restaurant-info--s-dining .restaurant-info__logo {
		margin-right: 1.8rem;
		width: 5rem;
	}

	.restaurant-info__name h4 {
		font-size: 1.8rem;
	}

	.restaurant-info__name a {
		font-size: 1.3rem;
	}
}

/* ----------------------------------------------------
	背景固定風
---------------------------------------------------- */
.bg-fixed {
	position: relative;
	isolation: isolate;
}

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

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

.bg-fixed__gradient {
	background: linear-gradient(180deg, #D3ECEF 0%, #E8D1B0 100%);
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}

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

.event__title {
	margin: 0 auto 4rem;
	width: 12.6rem;
}

.event__image {
	margin-bottom: 5.5rem;
}

.event .notes {
	background-color: rgb(var(--blk));
	margin-left: 1rem;
	padding: 0.5rem 1rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.5rem;
	border-radius: 3rem;
}

.event .program__title {
	display: flex;
	align-items: center;
}

.event .program__inner--title {
	display: none;
}

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

.event .program__content--title {
	margin: 2rem 0 0.5rem;
	padding-bottom: 0.5rem;
	width: 40rem;
	color: rgba(179, 127, 90, 1);
	font-size: 2rem;
	border-bottom: solid 1px rgba(0, 0, 0, 1);
	display: flex;
	align-items: center;
}

.program__content--title+.program__table {
	margin: 0;
}

.event .event__link--sp {
	display: none;
}

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

	.event__title {
		margin-bottom: 2.5rem;
		width: 8rem;
	}

	.event__image {
		margin-bottom: 2.5rem;
	}

	.event .program__title {
		display: block;
	}

	.event .program__title .notes {
		margin: 0.5rem 0 0;
		display: inline-flex;
	}

	.event .program__inner--title {
		margin-bottom: 2.5rem;
		width: 100%;
		display: block;
	}

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

	.event .program__table {
		display: table;
	}

	.event .program__row {
		display: table-row;
	}

	.event .program__label,
	.event .program__value {
		display: table-cell;
	}

	.event .program__label {
		padding-right: 1.5rem;
	}

	.event-right {
		margin-top: 2.5rem;
	}

	.event .program__content--title {
		width: 100%;
	}

	.event .event__link--pc {
		display: none;
	}

	.event .event__link--sp {
		margin-bottom: 2rem;
		display: block;
	}
}

/* ----------------------------------------------------
	spa
---------------------------------------------------- */
.spa {
	background-color: rgba(163, 119, 100, 1);
	color: rgb(var(--wht));
}

.spa .program__inner {
	padding-top: 7rem;
}

.spa__title {
	margin-bottom: 1.5rem;
	font-family: var(--mincho);
	font-size: 3.2rem;
	text-align: center;
}

.spa__lead {
	margin-bottom: 10rem;
}

.spa__lead--title {
	font-family: var(--mincho);
	font-size: 3.2rem;
	text-align: center;
}

.spa__lead--text {
	font-size: 1.6rem;
	text-align: center;
}

.spa__content:not(:first-of-type) {
	margin-top: 8rem;
}

.spa__content--title {
	margin-bottom: 3rem;
	font-family: var(--mincho);
	font-size: 3rem;
	text-align: center;
}

.spa__content--title span {
	width: 35rem;
	display: inline-flex;
	justify-content: space-between;
}

.spa__content--title span::before,
.spa__content--title span::after {
	content: "/";
}

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

.spa__content--inner.rev {
	flex-direction: row-reverse;
}

.spa__content--image {
	width: 41rem;
}

.spa__content--detail {
	width: 68rem;
}

.spa__content--detail .link-button {
	margin: 2.5rem auto 0;
	width: 33rem;
	height: 7.2rem;
	font-size: 1.6rem;
	border: solid 1px rgb(var(--wht));
	position: relative;
	z-index: 2;
}

.spa__content--detail .link-button svg {
	fill: none;
	stroke: rgb(var(--wht));
}

.spa__content--detail .link-button:hover {
	background-color: rgba(153, 127, 98, 1);
	color: rgb(var(--wht));
}

.spa__content--detail .link-button:hover svg {
	stroke: rgb(var(--wht));
}

.spa__content .title {
	line-height: normal;
	font-family: var(--mincho);
	font-size: 2.4rem;
}

.spa__content .title .notes {
	background-color: rgb(var(--blk));
	margin-left: 1rem;
	padding: 0 1rem;
	height: 2.5rem;
	line-height: 1;
	color: rgb(var(--wht));
	font-family: var(--gothic);
	font-size: 1.5rem;
	border-radius: 3rem;
}

.spa__content .text,
.spa__content .note,
.spa__content .circle,
.spa__content .link-button {
	margin-top: 2.5rem;
}

.spa__content .text,
.spa__content .circle {
	font-size: 1.6rem;
}

.spa__content .category {
	margin-top: 0.5rem;
}

.spa__content .category__item {
	background-color: rgb(var(--blk));
	padding: 0 1rem;
	height: 2.5rem;
	width: auto;
	font-weight: 400;
	border-radius: 2.5rem;
}

.spa__content .category__item.ppl {
	background-color: rgb(var(--ppl));
}

.spa__content .category__item:not(:last-of-type) {
	margin-right: 0.5rem;
}

.spa-info-table {
	margin-top: 2.5rem;
	font-size: 1.6rem;
	display: block;
}

.spa-info-table tbody {
	display: block;
}

.spa-info-table__row {
	width: fit-content;
	max-width: 100%;
	display: flex;
	align-items: flex-start;
	border-bottom: solid 1px currentColor;
}

.spa-info-table__label {
	padding-right: 2em;
	font-weight: 700;
	flex-shrink: 0;
}

.spa-info-table__value {
	padding-right: 1rem;
	min-width: 0;
}

.spa-info-table__text {
	padding-bottom: 0.5rem;
	display: block;
}

.spa__content+.note {
	margin-top: 4rem;
}

@media screen and (max-width: 768px) {
	.spa .program__inner {
		padding-top: 3rem;
	}

	.spa__title {
		font-size: 1.5rem;
	}

	.spa__lead {
		margin-bottom: 5rem;
	}

	.spa__lead--title {
		margin-bottom: 1rem;
		font-size: 1.8rem;
	}

	.spa__lead--text {
		font-size: 1.5rem;
	}

	.spa__content:not(:first-of-type) {
		margin-top: 4rem;
	}

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

	.spa__content--title span {
		width: 24rem;
	}

	.spa__content--inner {
		display: block;
	}

	.spa__content--image,
	.spa__content--detail {
		width: 100%;
	}

	.spa__content--image {
		margin-bottom: 2rem;
	}

	.spa__content--detail .link-button {
		margin-top: 4rem;
		width: 100%;
	}

	.spa__content .title {
		font-size: 1.8rem;
		text-align: center;
	}

	.spa__content .title .notes {
		margin: 1rem 0 0;
		display: inline-flex;
		align-items: center;
	}

	.spa__content .text,
	.spa__content .note,
	.spa__content .circle,
	.spa__content .link-button {
		margin-top: 2rem;
	}

	.spa__content .category {
		margin-top: 0.5rem;
		width: 100%;
		display: inline-flex;
		flex-direction: column;
	}

	.spa__content .category__item {
		margin: 0 auto;
	}

	.spa__content .category__item:not(:last-of-type) {
		margin-right: auto;
		margin-bottom: 0.5rem;
	}

	.spa-info-table {
		margin-top: 2rem;
		font-size: 1.5rem;
	}

	.spa-info-table__label {
		padding-right: 1em;
	}

	.spa-info-table__value {
		padding-right: 0;
	}

	.spa-info-table__text {
		padding-bottom: 0.5rem;
		display: block;
	}

	.spa__content+.note {
		margin-top: 3rem;
	}
}

/* 
	s-wave
------------------------------ */
.s-wave {
	background-color: rgba(222, 202, 182, 1);
	margin-top: 8rem;
	color: rgb(var(--blk));
	display: flex;
}

.s-wave__main {
	padding: 2.6rem 3.6rem;
	width: calc(100% - 49rem);
}

.s-wave__title {
	margin-bottom: 1rem;
	font-family: var(--mincho);
	font-size: 2.8rem;
}

.s-wave__title .place {
	font-family: var(--gothic);
	font-size: 1.6rem;
}

.s-wave .spa-info-table {
	margin-top: 0;
}

.s-wave__main--title {
	margin-top: 2rem;
	font-weight: 700;
	font-size: 1.6rem;
}

.s-wave__main .note {
	margin-top: 0.5rem;
}

.s-wave__sub {
	width: 49rem;
}

.s-wave__link {
	margin: 2rem 0 0;
	font-size: 1.6rem;
}

.s-wave__link a {
	color: rgb(var(--ppl));
}

@media screen and (max-width: 768px) {
	.s-wave {
		margin-top: 4rem;
		display: block;
	}

	.s-wave__main {
		margin-bottom: 2rem;
		padding: 2.2rem 3rem 0;
		width: 100%;
	}

	.s-wave__title {
		line-height: normal;
		font-size: 2rem;
		text-align: center;
	}

	.s-wave__title .place {
		display: block;
	}

	.s-wave__sub {
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
	}

	.s-wave__link {
		margin: 0;
		padding: 0 3rem 1.5rem;
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------
	contact
---------------------------------------------------- */
.contact {
	background-color: #F5F1E2;
	padding: 4vw 0;
	text-align: center;
}

.contact__title {
	margin-bottom: 3.5rem;
	font-family: var(--mincho);
	font-size: 3.2rem;
}

.contact__list {
	display: flex;
	justify-content: center;
}

.contact__list--item {
	padding: 0 7.5rem;
}

.contact__list--item:not(:last-of-type) {
	border-right: solid 1px rgb(var(--blk));
}

.contact__list--title {
	font-size: 1.6rem;
}

.contact__tel {
	line-height: normal;
	font-family: var(--mincho);
	font-size: 3.2rem;
}

.contact__tel--time {
	font-size: 1.6rem;
	display: block;
}

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

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

	.contact__list {
		display: block;
	}

	.contact__list--item {
		padding: 0;
	}

	.contact__list--item:not(:last-of-type) {
		margin-bottom: 2rem;
		border-right: none;
	}
}

/* ----------------------------------------------------
	page-notes
---------------------------------------------------- */
.page-notes {
	background-color: #F5F1E2;
	padding-bottom: 5rem;
}

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

.page-notes a {
	color: rgb(var(--ppl));
}

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

	.page-notes .note {
		width: 34.5rem;
	}
}

/* ----------------------------------------------------
	hotel
---------------------------------------------------- */
.hotel {
	background-color: #F5F1E2;
}

.hotel__logo {
	margin: 0 auto 1.5rem;
	width: 15.5rem;
}

.hotel__address {
	margin-bottom: 5rem;
	font-size: 1.6rem;
	text-align: center;
}

.hotel__sns {
	margin-bottom: 5rem;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.hotel__sns--item {
	margin: 0 1.8rem;
	width: 3.4rem;
}

.hotel__sns--item.shiawase {
	width: 5.6rem;
}

.hotel__link {
	margin-bottom: 6.4rem;
	display: flex;
	justify-content: center;
}

.hotel__link--item {
	margin: 0 2.5rem;
}

.hotel__link--item .link-button {
	width: 33.6rem;
	height: 5.7rem;
	font-size: 1.6rem;
	border: solid 1px rgb(var(--blk));
	border-radius: 5.7rem;
}

.hotel__link--item .link-button svg {
	fill: none;
	stroke: #593939;
}

.hotel__link--item .link-button:hover {
	background-color: rgba(153, 127, 98, 1);
	color: rgb(var(--wht));
}

.hotel__link--item .link-button:hover svg {
	stroke: rgb(var(--wht));
}

.hotel__map iframe {
	width: 100%;
	height: 36rem;
}

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

	.hotel__address {
		margin-bottom: 3rem;
	}

	.hotel__sns {
		margin-bottom: 4rem;
	}

	.hotel__sns--item {
		margin: 0 1.5rem;
	}

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

	.hotel__link--item {
		margin: 0;
	}

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

	.hotel__link--item .link-button {
		margin: 0 auto;
	}

	.hotel__map iframe {
		height: 21.5rem;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: #F5F1E2;
	padding: 5rem 0 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: 2em;
	line-height: normal;
	font-size: 1.1rem;
	text-align: center;
}

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