/* リキッドレイアウト対応 */

:root {
	--inner-value: 1080;
	--inner: 1080px;
	--padding-pc: 24px;
	--padding-sp: 24px;
}

:root {
	--base-font: "Zen Old Mincho", serif;
	--second-font: "Montserrat", sans-serif;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--fw-extrabold: 800;
	--fw-black: 900;
}

:root {
	--black: #38322C;
	--white: #fff;
	--primary: #963F3D;
	--secondary: #708877;
	--accent: #B4C1B8;
	--accent2: #D9D0C7;
	--ocher: #827655;
	--bg-base: #F0EDE5;
}

:root {
	--z-index-loader: 1000;
	--z-index-header: 100;
	--z-index-drawer: 90;
	--z-index-cta: 80;
}

:root {
	--header-width: 100%;
	--header-height: calc(86/16*1rem);
	--scrollbar-width: 0;
}

@property --scrollbar {
	syntax: "<length>";
	initial-value: 0;
	inherits: true;
}

:root:has(:modal[open],
.is-scroll-lock) {
	overflow: hidden;
	scrollbar-gutter: stable;
}

body {
	container-type: inline-size;
	background-color: var(--bg-base);
	font-family: var(--base-font);
	color: var(--black);
	font-weight: var(--fw-regular);
	line-height: 2;
	letter-spacing: 0.1em;
}

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	min-height: 100svh;
	text-rendering: optimizeLegibility;
	line-break: strict;
	overflow-wrap: anywhere;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}

/* Natural flow and rhythm in articles by default */

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* picture*/

picture {
	display: block;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

:where(dialog) {
	width: unset;
	max-width: unset;
	height: unset;
	max-height: unset;
	padding: unset;
	color: unset;
	background-color: unset;
	border: unset;
	overflow: unset;
}

:where(dialog:focus-visible) {
	outline: none;
}

/* フォームリセット */

input,
button,
select,
textarea {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: opacity 0.3s;
}

a[href^="tel:"] {
	pointer-events: none;
}

.inner {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	padding-inline: var(--padding-sp);
}

/* TOPレイアウト */

.l-top-news {
	margin-top: 5rem;
}

.l-top-intro {
	margin-top: 6rem;
}

.l-top-onsen {
	margin-top: 7.3125rem;
}

.l-top-rooms {
	margin-top: 6rem;
}

.l-scenery {
	margin-top: 4rem;
}

.l-top-cuisine {
	margin-top: 6rem;
}

.l-top-plan {
	margin-top: 1.5rem;
}

.l-top-access {
	margin-top: 6rem;
	padding-bottom: 12rem;
}

.outer {
	--scrollbar: calc(100vw - 100cqw);
	--padding-inline: minmax(24px, 1fr);
	--grid-side: calc(24/393*100%);
	display: grid;
	grid-template-columns: var(--padding-inline) var(--grid-side) minmax(0, 520px) var(--grid-side) var(--padding-inline);
}

.base-grid {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: span 5;
}

.bg-base {
	position: relative;
	display: inherit;
	grid-template-columns: inherit;
	grid-column: inherit;
}

.bg-base::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: -webkit-image-set(url(../images/common/bg.avif) type("image/avif"), url(../images/common/bg.png) type("image/png"));
	background-image: image-set(url(../images/common/bg.avif) type("image/avif"), url(../images/common/bg.png) type("image/png"));
	background-repeat: repeat;
	background-position: top;
	background-size: 100% auto;
}

.button-box {
	--icon-size: calc(7/16*1rem);
	display: inline-grid;
	grid-template-columns: var(--icon-size) 1fr var(--icon-size);
	gap: 0.5em;
	align-items: center;
	width: 100%;
	padding-block: 0.75rem 0.8125rem;
	padding-inline: 1.375rem;
	background-color: var(--ocher);
	color: var(--white);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.button-box::after {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 7/10;
	background-color: currentColor;
	-webkit-mask-image: url(../images/common/chevron.svg);
	mask-image: url(../images/common/chevron.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.button-box span {
	grid-column-start: 2;
	font-size: 1rem;
	line-height: 1.4375;
	letter-spacing: 0.08em;
	text-align: center;
}

.button-plan {
	display: inline-grid;
	grid-template-columns: 1.375rem auto;
	gap: 1rem;
	place-items: center;
	place-content: center;
	width: 100%;
	padding: 1.5rem min(1.6666666667vw, 24px);
	background-color: var(--primary);
	color: var(--white);
	transition: background-color 0.3s ease, color 0.3s ease;
}

.button-plan::before {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1/1;
	background-color: currentColor;
	-webkit-mask-image: url(../images/common/calendar.svg);
	mask-image: url(../images/common/calendar.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: background-color 0.3s ease;
}

.button-plan span {
	font-size: 1.25rem;
	line-height: 1.6;
	letter-spacing: 0.1em;
	transition: color 0.3s ease;
}

.button {
	position: relative;
	display: inline-grid;
	grid-template-columns: auto 3rem;
	gap: 1.5rem;
	align-items: center;
	line-height: 1.4375;
	letter-spacing: 0.08em;
	transition: color 0.3s ease-out;
}

.button::before {
	content: "";
	position: relative;
	z-index: 1;
	grid-column: 2/3;
	grid-row: 1/-1;
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: var(--accent);
	transition: scale 0.3s ease-out;
}

.button::after {
	content: "";
	grid-column: 2/3;
	grid-row: 1/-1;
	place-self: center;
	position: relative;
	z-index: 1;
	width: 16.6666666667%;
	aspect-ratio: 8/10;
	object-fit: cover;
	background-color: var(--white);
	-webkit-mask-image: url(../images/common/chevron.svg);
	mask-image: url(../images/common/chevron.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.button span::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	width: 3rem;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: var(--secondary);
	scale: 0.8;
	transition: scale 0.3s ease-out;
}

.card {
	width: 100%;
}

.card__link {
	display: grid;
	grid-template-columns: 173px 1fr;
	gap: 1rem;
	align-items: center;
}

.card__img {
	overflow: clip;
}

.card__img img {
	aspect-ratio: 173/112;
	object-fit: cover;
	transition: scale 0.5s ease;
}

.card__body {
	overflow: hidden;
	padding-top: 0.5rem;
}

.card__title {
	font-size: 1.125rem;
	font-weight: var(--fw-regular);
	font-family: var(--zen-font);
	line-height: 1.5;
	letter-spacing: 0.05em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.card__content {
	margin-top: 0.3125rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.en-title {
	font-size: 1.5rem;
	font-weight: var(--fw-regular);
	font-family: var(--second-font);
	line-height: 1.2083333333;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.footer {
	grid-column: 1/-1;
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: -webkit-image-set(url(../images/common/footer-bg-sp.avif) type("image/avif"), url(../images/common/footer-bg-sp.jpg) type("image/png"));
	background-image: image-set(url(../images/common/footer-bg-sp.avif) type("image/avif"), url(../images/common/footer-bg-sp.jpg) type("image/png"));
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	mix-blend-mode: luminosity;
	opacity: 0.5;
	z-index: 1;
}

.footer__cta {
	position: relative;
	padding-block: 2.375rem;
}

.footer__cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: color-mix(in srgb, var(--primary) 80%, transparent);
}

.footer__cta::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background-color: color-mix(in srgb, var(--primary) 50%, transparent);
	-webkit-backdrop-filter: blur(7.5px);
	backdrop-filter: blur(7.5px);
}

.footer__cta-inner.inner {
	grid-column: 2/5;
	position: relative;
	z-index: 2;
	max-width: 21.5625rem;
}

.footer__cta-title {
	padding-bottom: 2rem;
	border-bottom: 1px solid currentColor;
	font-size: 1.5rem;
	font-weight: var(--fw-semibold);
	color: var(--white);
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
	text-align: center;
}

.footer__cta-button {
	margin-top: 2rem;
	width: 100%;
	border: 1px solid var(--white);
}

.footer__cta-info {
	margin-top: 1.5rem;
	color: var(--white);
}

.footer__cta-info-head {
	font-size: 0.875rem;
	line-height: 2.2857142857;
}

.footer__cta-info-tel {
	display: inline-block;
	margin-top: 0.125rem;
	font-size: 1.5rem;
	font-family: var(--second-font);
	line-height: 1.3333333333;
	letter-spacing: 0.1em;
}

.footer__cta-info-tel .label {
	display: inline-block;
	margin-right: 0.5em;
	font-size: 1rem;
	line-height: 2;
}

.footer__cta-info-hour {
	margin-top: -0.25rem;
}

.footer__container {
	position: relative;
	display: inherit;
	grid-template-columns: inherit;
	grid-column: inherit;
	padding-block: 5rem 5.75rem;
}

.footer__container::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--ocher);
}

.footer__content.inner {
	grid-column: 2/5;
	position: relative;
	z-index: 2;
	color: var(--white);
}

.footer__logo {
	display: grid;
	gap: 1.25rem;
	margin-inline: auto;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
	transition: filter 0.3s ease;
}

.footer__logo-img {
	width: 12.3125rem;
}

.footer__logo-img img {
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.footer__logo-en {
	font-size: 0.75rem;
	font-family: var(--second-font);
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer__info {
	margin-top: 4rem;
}

:is(.footer__address-head,
.footer__contact-head) {
	font-size: 0.75rem;
	font-family: var(--second-font);
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer__address-head {
	grid-column: 1/2;
}

.footer__address-text {
	margin-top: 1.5rem;
}

.footer__contact {
	margin-top: 3rem;
}

.footer__contact-text {
	margin-top: 1.5rem;
	font-family: var(--second-font);
}

.footer__contact-text .large {
	font-size: 1.5rem;
	line-height: 1.3333333333;
	letter-spacing: 0.1em;
}

.footer__navigation {
	display: none;
}

.footer__nav-head {
	font-size: 12px;
	font-family: var(--second-font);
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer__nav-list {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.0625rem;
}

.footer__nav-link {
	display: block;
	position: relative;
}

.footer__nav-link::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	scale: 0;
	transition: scale 0.3s ease;
}

.footer__copyright {
	margin-top: 4rem;
	line-height: 1;
	text-align: center;
}

.footer__copyright small {
	font-size: 10px;
	font-weight: var(--fw-regular);
	font-family: var(--second-font);
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.gallery {
	overflow-x: clip;
	display: flex;
}

.gallery__inner {
	display: flex;
	animation: loop 40s linear infinite;
}

.gallery__img {
	margin-right: 2rem;
}

.gallery__img:nth-child(3n-2) {
	flex-shrink: 0;
	width: 17rem;
}

.gallery__img:nth-child(3n-1) {
	margin-top: 2.375rem;
	flex-shrink: 0;
	width: 15rem;
}

.gallery__img:nth-child(3n) {
	margin-top: 5.4375rem;
	flex-shrink: 0;
	width: 13.4375rem;
}

.gallery__img:nth-child(3n-2) img {
	aspect-ratio: 272/203;
	height: auto;
	object-fit: cover;
}

.gallery__img:nth-child(3n-1) img {
	aspect-ratio: 240/204;
	height: auto;
	object-fit: cover;
}

.gallery__img:nth-child(3n) img {
	aspect-ratio: 215/192;
}

.header {
	position: fixed;
	z-index: var(--z-index-header);
	top: 0;
	left: 0;
	width: var(--header-width);
	height: var(--header-height);
}

.header__inner {
	position: relative;
	z-index: var(--z-index-header);
	display: flex;
	align-items: center;
	padding-inline: var(--padding-sp);
	height: inherit;
}

.header__container {
	display: flex;
	gap: 1em;
	justify-content: space-between;
	width: 100%;
	height: inherit;
}

.header__logo {
	display: block;
	place-content: center;
	height: 100%;
	padding-bottom: 0.375rem;
	transition: opacity 0.3s ease;
}

.header__logo-sp {
	width: 9.6875rem;
}

.header__logo-link img {
	object-fit: contain;
}

.header__cta {
	display: none;
}

.header__cta-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	min-height: inherit;
	padding: 1.5rem 0.5rem;
	background-color: var(--primary);
	font-size: 1.125rem;
	color: var(--white);
	line-height: 1.3333333333;
	letter-spacing: 0.3em;
	writing-mode: vertical-rl;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.header__cta-button.confirm {
	background-color: var(--black);
	text-orientation: upright;
}

.header__cta-button::before {
	content: "";
	position: relative;
	left: 1px;
	width: 0.9375rem;
	aspect-ratio: 15/16;
	background-color: currentColor;
	-webkit-mask-image: url(../images/common/calendar.svg);
	mask-image: url(../images/common/calendar.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: background-color 0.3s ease;
}

.header__hamburger {
	position: relative;
	display: grid;
	gap: 0.4375rem;
	place-content: center;
	width: 2.9375rem;
	transition: rotate 0.4s ease-out;
	display: none;
}

.header__hamburger::before,
.header__hamburger::after {
	content: "";
	position: relative;
	width: inherit;
	height: 1px;
	background-color: var(--black);
	transition: rotate 0.3s ease, top 0.3s ease;
}

.header__hamburger-text {
	grid-row-start: 3;
	position: relative;
	font-size: max(10px, 0.75rem);
	font-family: var(--second-font);
	line-height: 1.25;
}

.header__hamburger-text::before {
	content: "MENU";
	transition: opacity 0.3s ease;
}

.header__hamburger-text::after {
	content: "CLOSE";
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50%;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.header__hamburger.is-open::before {
	top: 0.375rem;
	rotate: 190deg;
}

.header__hamburger.is-open::after {
	top: -0.125rem;
	rotate: -190deg;
}

.header__hamburger.is-open .header__hamburger-text::before {
	opacity: 0;
}

.header__hamburger.is-open .header__hamburger-text::after {
	opacity: 1;
}

.header__drawer {
	overflow-x: clip;
	position: fixed;
	z-index: var(--z-index-drawer);
	inset: 0;
	padding-top: calc(var(--header-height) + 1.3125rem);
	background-image: -webkit-image-set(url(../images/common/bg.avif) type("image/avif"), url(../images/common/bg.png) type("image/png")), linear-gradient(var(--accent2), var(--accent2));
	background-image: image-set(url(../images/common/bg.avif) type("image/avif"), url(../images/common/bg.png) type("image/png")), linear-gradient(var(--accent2), var(--accent2));
	background-repeat: repeat, no-repeat;
	background-position: center, center;
	background-size: cover, cover;
	translate: -100%;
	transition: translate 0.3s ease-out;
}

.header__drawer.is-open {
	translate: 0;
}

.header__drawer-wrapper {
	display: grid;
	grid-template-columns: var(--header-width) 1fr;
	overflow-y: auto;
	height: 100%;
}

.header__drawer-head {
	display: none;
}

.header__drawer-nav {
	margin-inline: auto;
	padding-inline: 2.5rem;
	max-width: 37.5rem;
}

.header__drawer-link {
	display: block;
	padding-block: 0.625rem;
	font-size: 1.125rem;
	letter-spacing: 0.15em;
	transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.header__drawer-cta {
	margin-top: 2.5rem;
	padding-block: 2.375rem;
	background-color: color-mix(in srgb, var(--primary) 80%, transparent);
	color: var(--white);
}

.header__drawer-cta-inner {
	margin-inline: auto;
	padding-inline: 1.5rem;
	max-width: 37.5rem;
}

.header__drawer-cta-title {
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--white);
	font-size: 1.5rem;
	font-weight: var(--fw-semibold);
	line-height: 1.6666666667;
	text-align: center;
}

.header__drawer-cta-button {
	margin-top: 2rem;
	border: 1px solid var(--white);
}

.header__drawer-cta-info {
	margin-top: 1.5rem;
}

.header__drawer-cta-head {
	font-size: 0.875rem;
	line-height: 2.2857142857;
}

.header__drawer-cta-tel {
	margin-top: 0.125rem;
	font-size: 1.5rem;
	font-family: var(--second-font);
	line-height: 1.3333333333;
}

.header__drawer-cta-tel .label {
	font-size: 1rem;
	line-height: 2;
}

.header__drawer-bottom {
	margin-inline: auto;
	padding-block: 2.5rem 1.875rem;
	padding-inline: 2.5rem;
	max-width: 37.5rem;
}

:is(.header__drawer-address-head,
.header__drawer-contact-head) {
	font-size: 12px;
	font-family: var(--second-font);
	line-height: 1.25;
	letter-spacing: 0.05em;
}

.header__drawer-address-text {
	margin-top: 1rem;
}

.header__drawer-contact {
	margin-top: 2.5rem;
}

.header__drawer-contact-text {
	margin-top: 1rem;
	font-family: var(--second-font);
}

.header__drawer-contact-text .large {
	font-size: 1.5rem;
	line-height: 1.3333333333;
	letter-spacing: 0.1em;
}

.mv {
	--padding-top: var(--header-height);
	--padding-bottom: calc(86/16*1rem);
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
	padding-block: var(--padding-top) var(--padding-bottom);
	background-image: -webkit-image-set(url(../images/top/mv-bg-sp.avif) type("image/avif"), url(../images/top/mv-bg-sp.png) type("image/png"));
	background-image: image-set(url(../images/top/mv-bg-sp.avif) type("image/avif"), url(../images/top/mv-bg-sp.png) type("image/png"));
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100% auto;
}

.mv::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--accent2);
	opacity: 0.2;
}

.mv__wrapper {
	display: contents;
}

.mv__inner {
	position: relative;
	grid-column: 2/5;
	grid-row: 2;
	margin-top: 2.5rem;
}

.mv__logo {
	width: 12.5rem;
}

.mv__logo img {
	object-fit: contain;
}

.mv__lead {
	font-size: clamp(18px, 5.0890585242vw, 20px);
	letter-spacing: 0.1em;
}

.mv__video {
	grid-column: 3/6;
	grid-row: 1;
	min-height: 0;
	position: relative;
}

.mv__video video {
	aspect-ratio: 9/16;
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.plan-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--bg-base);
	transition: box-shadow 0.3s ease;
}

.plan-card__img img {
	aspect-ratio: 297/200;
	height: 100%;
	object-fit: cover;
}

.plan-card__body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 100%;
	padding: 1.5rem;
}

.plan-card__title {
	flex: 1;
}

.rooms-card {
	position: relative;
	display: block;
	transition: box-shadow 0.3s ease;
	height: 100%;
	pointer-events: none;
}

.rooms-card__img {
	overflow: clip;
	width: 100%;
	height: inherit;
}

.rooms-card__img img {
	transition: scale 0.3s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rooms-card__body {
	position: absolute;
	bottom: 0;
	inset-inline: 0;
	padding-block: 1.5rem 0.75rem;
	padding-inline: 1.5rem;
}

.rooms-card__label {
	--label-color: var(--ocher);
	display: inline-block;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.375rem 1rem;
	background-color: var(--label-color);
	color: var(--white);
	line-height: 1;
}

.rooms-card__title {
	font-size: 1.25rem;
	font-weight: var(--fw-semibold);
	color: var(--white);
	letter-spacing: 0.1em;
	text-shadow: 0rem 0rem 0.3125rem rgba(0, 0, 0, 0.3);
}

.rooms-card__arrow {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	display: grid;
	place-items: center;
	width: 2.625rem;
	aspect-ratio: 1/1;
	display: none;
}

.rooms-card__arrow::before {
	content: "";
	grid-column: 1/2;
	grid-row: 1/2;
	width: 100%;
	height: 100%;
	border: 1px solid var(--white);
	border-radius: 50%;
}

.rooms-card__arrow::after {
	content: "";
	grid-column: 1/2;
	grid-row: 1/2;
	width: 0.5625rem;
	aspect-ratio: 7/9;
	background-color: var(--white);
	-webkit-mask-image: url(../images/common/chevron.svg);
	mask-image: url(../images/common/chevron.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.scenery {
	position: relative;
	grid-column: 2/6;
}

.scenery__img img {
	aspect-ratio: 369/200;
	object-fit: cover;
}

.section-title {
	display: grid;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: var(--fw-regular);
	font-family: var(--second-font);
	line-height: 1.2083333333;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.section-title__num {
	display: inline-block;
	font-size: 1.25rem;
	line-height: 1.2;
	letter-spacing: 0.1em;
}

.sp-cta {
	position: fixed;
	z-index: var(--z-index-cta);
	bottom: 0;
	inset-inline: 0;
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	align-items: center;
	min-height: 4rem;
	background-color: var(--white);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sp-cta.is-scrolled {
	opacity: 1;
	visibility: visible;
}

.sp-cta__access {
	display: grid;
	gap: 0.375rem;
	place-items: center;
	padding-block: 0.3125rem 0.625rem;
	padding-inline: 0.625rem;
	background-color: var(--white);
	line-height: 1;
	height: 100%;
}

.sp-cta__access::before {
	content: "";
	display: block;
	width: 1.5rem;
	aspect-ratio: 1/1;
	background-color: currentColor;
	-webkit-mask-image: url(../images/common/pin.svg);
	mask-image: url(../images/common/pin.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.sp-cta__reservation {
	display: grid;
	justify-items: center;
	padding-block: 0.5rem 0.125rem;
	background-color: var(--primary);
	font-size: 1.125rem;
	color: var(--white);
	height: 100%;
}

.sp-cta__reservation.confirm {
	background-color: var(--black);
	font-size: 0.8125rem;
	line-height: 1.5;
}

.sp-cta__reservation::before {
	content: "";
	display: block;
	width: 1.125rem;
	aspect-ratio: 1/1;
	background-color: currentColor;
	-webkit-mask-image: url(../images/common/calendar.svg);
	mask-image: url(../images/common/calendar.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.sp-cta__menu {
	position: relative;
	display: grid;
	gap: 0.4375rem;
	place-content: center;
	width: 100%;
	height: 100%;
	padding: 0.25rem 0.625rem;
	background-color: var(--white);
	transition: rotate 0.4s ease-out;
	display: none;
}

.sp-cta__menu::before,
.sp-cta__menu::after {
	content: "";
	position: relative;
	width: 3rem;
	height: 1px;
	background-color: var(--black);
	transition: rotate 0.3s ease, top 0.3s ease;
}

.sp-cta__menu-text {
	grid-row-start: 3;
	position: relative;
	font-size: max(10px, 0.75rem);
	font-family: var(--second-font);
	line-height: 1.25;
}

.sp-cta__menu-text::before {
	content: "MENU";
	transition: opacity 0.3s ease;
}

.sp-cta__menu-text::after {
	content: "CLOSE";
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50%;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sp-cta__menu.is-open::before {
	top: 0.375rem;
	rotate: 190deg;
}

.sp-cta__menu.is-open::after {
	top: -0.125rem;
	rotate: -190deg;
}

.sp-cta__menu.is-open .sp-cta__menu-text::before {
	opacity: 0;
}

.sp-cta__menu.is-open .sp-cta__menu-text::after {
	opacity: 1;
}

.text {
	font-size: 1rem;
	font-weight: var(--fw-regular);
	letter-spacing: 0.1em;
}

.top-access {
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
}

.top-access__inner {
	display: contents;
}

.top-access__content {
	grid-column: 2/5;
}

.top-access__text {
	margin-top: 3rem;
}

.top-access__button {
	display: none;
	margin-top: 2rem;
}

.top-access__map {
	grid-column: 1/-1;
	margin-top: -0.75rem;
	margin-inline: auto;
	max-width: 37.5rem;
}

.top-access__map img {
	aspect-ratio: 393/325;
	object-fit: contain;
}

.top-cuisine {
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
}

.top-cuisine__inner {
	display: contents;
}

.top-cuisine__content {
	display: contents;
}

.top-cuisine__title {
	grid-column: 2/5;
}

.top-cuisine__text {
	grid-column: 2/5;
	margin-top: 3rem;
}

.top-cuisine__button {
	display: none;
	grid-column: 2/5;
	grid-row-start: 5;
	margin-top: 3rem;
}

.top-cuisine__images {
	grid-column: 3/6;
	position: relative;
	display: grid;
	gap: 1rem;
	margin-top: 3rem;
}

.top-cuisine__img img {
	aspect-ratio: 345/120;
	object-fit: cover;
}

.top-cuisine__large-img {
	grid-column: 2/6;
	margin-top: -1.5625rem;
}

.top-cuisine__large-img img {
	aspect-ratio: 369/200;
	object-fit: cover;
}

.top-intro {
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
}

.top-intro__inner {
	display: contents;
}

.top-intro__img1 {
	grid-column: 1/5;
	grid-row: 2;
	margin-top: 2.5rem;
}

.top-intro__img1 img {
	aspect-ratio: 369/320;
	object-fit: cover;
}

.top-intro__content {
	display: contents;
}

.top-intro__title {
	grid-column: 2/5;
	font-size: 1.25rem;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.1em;
}

.top-intro__body {
	grid-column: 2/5;
	margin-top: 2.5rem;
	display: grid;
	gap: 1lh;
}

.top-intro__img2 {
	display: none;
}

.top-intro__img2 img {
	aspect-ratio: 244/354;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.top-intro__gallery {
	grid-column: 1/6;
	margin-top: 2.6875rem;
}

.top-news {
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
	row-gap: 2.5rem;
}

.top-news__title {
	grid-column: 2/5;
	justify-self: center;
	text-align: center;
}

.top-news__title .top-plan__title-en,
.top-news__title .top-plan__title-ja {
	color: var(--black);
}

.top-news__list {
	grid-column: 2/5;
	display: grid;
	gap: 1.875rem;
	margin-inline: auto;
	max-width: 400px;
}

.top-news__item img {
	aspect-ratio: 1/1;
	object-fit: contain;
}

.top-onsen {
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
}

.top-onsen__inner {
	display: contents;
}

.top-onsen__content {
	display: contents;
}

.top-onsen__title {
	grid-column: 2/5;
}

.top-onsen__text {
	grid-column: 2/5;
	margin-top: 3rem;
}

.top-onsen__button {
	display: none;
	grid-column: 2/5;
	grid-row-start: 5;
	margin-top: 3rem;
}

.top-onsen__images {
	grid-column: 2/5;
	position: relative;
	right: -0.875rem;
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(2, 40.7124681934%);
	gap: 1rem;
	justify-content: flex-end;
}

.top-onsen__large-img {
	grid-column: 2/-1;
	margin-top: -3rem;
}

.top-onsen__large-img img {
	aspect-ratio: 369/240;
	object-fit: cover;
}

.top-plan {
	position: relative;
	overflow-x: clip;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
	padding-block: 8.5rem 6rem;
}

.top-plan::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: -webkit-image-set(url(../images/top/plan-bg-sp.avif) type("image/avif"), url(../images/top/plan-bg-sp.png) type("image/png"));
	background-image: image-set(url(../images/top/plan-bg-sp.avif) type("image/avif"), url(../images/top/plan-bg-sp.png) type("image/png"));
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	mix-blend-mode: multiply;
}

.top-plan__inner.inner {
	grid-column: 1/-1;
}

.top-plan__title {
	position: relative;
	display: grid;
	gap: 1rem;
	text-align: center;
}

.top-plan__title-en {
	font-size: 1.5rem;
	font-weight: var(--fw-regular);
	font-family: var(--second-font);
	color: var(--white);
	line-height: 1.2083333333;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.top-plan__title-ja {
	font-size: 1.25rem;
	font-weight: var(--fw-semibold);
	color: var(--white);
	letter-spacing: 0.1em;
}

.top-plan__slider {
	overflow: initial;
	margin-top: 4rem;
}

.top-plan__item {
	width: 18.5625rem;
	height: auto;
}

.top-plan__nav {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 18.5625rem;
	height: 100%;
	pointer-events: none;
}

:is(.top-plan__nav-prev,
.top-plan__nav-next) {
	position: absolute;
	z-index: 1;
	top: calc(50% + 0.625rem);
	translate: 0 -50%;
	width: 2.25rem;
	pointer-events: auto;
	cursor: pointer;
}

:is(.top-plan__nav-prev,
.top-plan__nav-next) img {
	aspect-ratio: 36/81;
	object-fit: contain;
}

.top-plan__nav-prev {
	left: -1.75rem;
}

.top-plan__nav-next {
	right: -1.75rem;
	scale: -1;
}

.top-plan__cta {
	position: relative;
	margin-top: 3rem;
	padding: 1.5rem;
	background-color: var(--white);
}

.top-plan__cta-head {
	text-align: center;
}

.top-plan__cta-head-icon {
	margin-inline: auto;
	width: 5rem;
}

.top-plan__cta-head-icon img {
	aspect-ratio: 1/1;
	object-fit: contain;
}

.top-plan__cta-head-text {
	display: grid;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: 0.1em;
}

.top-plan__cta-head-text .large {
	font-size: 1.5rem;
	font-weight: var(--fw-semibold);
	line-height: 1.6666666667;
	letter-spacing: 0.1em;
}

.top-plan__cta-button {
	margin-top: 2rem;
	margin-inline: auto;
	max-width: 18.75rem;
	border: 1px solid var(--primary);
}

.top-plan__cta-info {
	margin-top: 2rem;
	text-align: center;
}

.top-plan__cta-info-tel {
	font-size: 1.5rem;
	font-family: var(--second-font);
	line-height: 1.3333333333;
	letter-spacing: 0.1em;
}

.top-plan__cta-info-tel span {
	font-size: 1rem;
	line-height: 2;
}

.top-plan__cta-info-text {
	margin-top: 0.5rem;
}

.top-rooms {
	position: relative;
	overflow-x: clip;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: inherit;
}

.top-rooms__inner {
	display: contents;
}

.top-rooms__content {
	grid-column: 2/5;
}

.top-rooms__text {
	margin-top: 3rem;
}

.top-rooms__button {
	display: none;
	grid-column: 2/5;
	grid-row-start: 3;
	margin-top: 3rem;
}

.top-rooms__slider {
	grid-column: 2/4;
	width: 100%;
	margin-top: 3rem;
	overflow: initial;
}

.top-rooms__slide {
	width: 20rem;
}

.top-rooms__nav {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	width: 20.0625rem;
	height: 100%;
	pointer-events: none;
}

:is(.top-rooms__nav-prev,
.top-rooms__nav-next) {
	position: absolute;
	z-index: 1;
	top: 50%;
	translate: 0 -50%;
	width: 2.25rem;
	pointer-events: auto;
	cursor: pointer;
}

:is(.top-rooms__nav-prev,
.top-rooms__nav-next) img {
	aspect-ratio: 36/81;
	object-fit: contain;
}

.top-rooms__nav-prev {
	left: -1rem;
}

.top-rooms__nav-next {
	right: -1rem;
	scale: -1;
}

.inline-block {
	display: inline-block;
}

.pagination .wp-pagenavi {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
}

.pagination :where(span,
a):not(.nextpostslink,
.previouspostslink,
.extend) {
	display: grid;
	place-items: center;
	width: 1.875rem;
	aspect-ratio: 1/1;
	border: 1px solid;
	border-radius: 50%;
	font-size: 0.9375rem;
	color: var(--white);
	line-height: 1;
}

.pagination--green :where(span,
a):not(.nextpostslink,
.previouspostslink,
.extend) {
	background-color: var(--white);
	border-color: var(--primary);
	color: var(--primary);
}

.pagination--yellow :where(span,
a):not(.nextpostslink,
.previouspostslink,
.extend) {
	background-color: var(--yellow2);
	border: none;
	color: var(--primary);
}

.pagination :where(.nextpostslink,
.previouspostslink,
.extend) {
	font-size: 0.875rem;
	color: var(--white);
	line-height: 1;
}

:is(.pagination--yellow,
.pagination--green) :where(.nextpostslink,
.previouspostslink,
.extend) {
	color: var(--primary);
}

.pagination .previouspostslink {
	order: -1;
	margin-right: 0.5rem;
}

.pagination .nextpostslink {
	order: 1;
	margin-left: 0.5rem;
}

.pagination .current {
	background-color: var(--white);
	border: 1px solid;
	color: var(--primary);
}

.pagination--green .current {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

.visually-hidden {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	position: absolute;
	inset: 0;
	white-space: nowrap;
}

@media (any-hover: hover) {

.plan-card:hover .button-box,
.button-box:hover {
	background-color: var(--white);
	color: var(--ocher);
}

.button-plan:hover {
	background-color: var(--white);
	color: var(--primary);
}

.button:hover::before {
	scale: 0.6666666667;
}

.button:hover span::before {
	scale: 1;
}

.card:hover .card__img img {
	scale: 1.1;
}

.footer__logo:hover {
	filter: drop-shadow(0 0 0.625rem var(--white));
}

.footer__nav-link:hover::before {
	scale: 1;
}

.header__logo:hover {
	opacity: 0.7;
}

.header__cta-button:hover {
	background-color: var(--white);
	color: var(--primary);
}

.header__drawer-link:hover {
	color: var(--primary);
	letter-spacing: 0.3em;
}

.plan-card:hover {
	box-shadow: 0 0 1rem var(--black);
}

.rooms-card:hover {
	box-shadow: 0 0 1rem var(--black);
}

.rooms-card:hover img {
	scale: 1.05;
}

}

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

:root {
	--header-width: calc(80/16*1rem);
	--header-height: 100vh;
}

html {
	font-size: calc(16 / var(--inner-value) * 100vw);
}

.inner {
	max-width: calc(var(--inner) + var(--padding-pc) * 2);
	padding-inline: var(--padding-pc);
}

.l-top-intro {
	margin-top: 5rem;
}

.l-top-onsen {
	margin-top: 7.5rem;
}

.l-top-rooms {
	margin-top: 7.5rem;
}

.l-scenery {
	margin-top: 5rem;
}

.l-top-cuisine {
	margin-top: 7.5rem;
}

.l-top-plan {
	margin-top: 3rem;
}

.l-top-access {
	margin-top: initial;
	padding-bottom: initial;
}

.outer {
	--grid-side: minmax(12px, 1fr);
	--grid-side-small: calc(46/1360*100%);
	grid-template-columns: var(--header-width) repeat(2, var(--grid-side)) var(--grid-side-small) minmax(0, 1080px) var(--grid-side-small) repeat(2, var(--grid-side));
}

.base-grid {
	grid-column: span 8;
}

.card__link {
	grid-template-columns: 102px 1fr;
}

.card__body {
	padding-top: initial;
}

.card__title {
	font-size: 0.9375rem;
	line-height: 1.3333333333;
}

.footer {
	grid-column: 2/-1;
}

.footer::before {
	background-image: -webkit-image-set(url(../images/common/footer-bg.avif) type("image/avif"), url(../images/common/footer-bg.jpg) type("image/png"));
	background-image: image-set(url(../images/common/footer-bg.avif) type("image/avif"), url(../images/common/footer-bg.jpg) type("image/png"));
}

.footer__cta {
	padding-block: 1.25rem;
}

.footer__cta-inner.inner {
	grid-column: initial;
	padding-left: initial;
	max-width: 1360px;
	min-height: 15rem;
	display: flex;
	align-items: center;
}

.footer__cta-title {
	padding-bottom: initial;
	border-bottom: initial;
	padding-top: 0.625rem;
	padding-inline: var(--padding-pc);
	border-right: 1px solid currentColor;
	width: 32.0359281437%;
	min-height: inherit;
	place-content: center;
}

.footer__cta-button {
	margin-top: 0.625rem;
	margin-left: min(6.6666666667vw, 96px);
	max-width: 29.9401197605%;
	flex-shrink: 0;
}

.footer__cta-info {
	margin-top: 0.625rem;
	margin-left: min(3.3333333333vw, 48px);
}

.footer__container {
	padding-block: 5rem;
}

.footer__content.inner {
	grid-column: initial;
	padding-right: min(9.7222222222vw, 140px);
	display: grid;
	grid-template-columns: 28.4280936455% auto 1fr;
	grid-template-rows: auto 1fr;
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
	row-gap: 2.5rem;
	max-width: 1360px;
}

.footer__logo {
	align-content: flex-start;
}

.footer__info {
	margin-top: initial;
	grid-column-start: 2;
	grid-row: 1/3;
}

.footer__navigation {
	margin-left: auto;
}

.footer__nav-button {
	margin-top: 2rem;
	margin-left: auto;
	max-width: 20rem;
}

.footer__copyright {
	margin-top: initial;
	align-self: flex-end;
	grid-column-start: 1;
}

.gallery__inner {
	animation-duration: 80s;
}

.gallery__img {
	margin-right: 3rem;
}

.gallery__img:nth-child(3n-2) {
	width: 28.125rem;
}

.gallery__img:nth-child(3n-1) {
	margin-top: 4rem;
	width: 25rem;
}

.gallery__img:nth-child(3n) {
	margin-top: 9.125rem;
	width: 22.5rem;
}

.gallery__img:nth-child(3n-2) img {
	aspect-ratio: 450/340;
}

.gallery__img:nth-child(3n-1) img {
	aspect-ratio: 400/340;
}

.gallery__img:nth-child(3n) img {
	aspect-ratio: 360/320;
}

.header {
	display: flex;
	flex-direction: column;
	background-color: color-mix(in srgb, var(--bg-base) 90%, transparent);
}

.header__inner {
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	padding-inline: initial;
	height: initial;
	border-right: 1px solid var(--black);
}

.header__container {
	flex-direction: column;
	justify-content: initial;
	align-items: center;
	padding: 1.5rem 1rem;
	width: 100%;
	height: 100%;
}

.header__logo {
	place-items: center;
	height: auto;
	padding-bottom: initial;
}

.header__logo-pc {
	font-size: 10px;
	font-family: var(--second-font);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.header__cta {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	min-height: 16.5625rem;
}

.header__hamburger {
	margin-top: 6.5625rem;
}

.header__drawer {
	inset-block: 0;
	left: 0;
	padding-block: 2.625rem 3rem;
	width: min(100%, 30rem);
	background-color: color-mix(in srgb, var(--accent2) 90%, transparent);
	background-image: none;
}

.header__drawer-inner {
	grid-column: 2/-1;
	padding-inline: 2.5rem;
}

.header__drawer-head {
	display: block;
	font-size: 10px;
	font-family: var(--second-font);
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.header__drawer-nav {
	margin-top: 1rem;
	padding-inline: initial;
	max-width: initial;
}

.header__drawer-cta {
	display: none;
}

.header__drawer-bottom {
	margin-top: 2rem;
	padding: initial;
	max-width: initial;
}

.mv {
	--padding-top: calc(48/16*1rem);
	--padding-bottom: calc(112/16*1rem);
	background-image: -webkit-image-set(url(../images/top/mv-bg.avif) type("image/avif"), url(../images/top/mv-bg.png) type("image/png"));
	background-image: image-set(url(../images/top/mv-bg.avif) type("image/avif"), url(../images/top/mv-bg.png) type("image/png"));
}

.mv__wrapper {
	grid-column: 2/-1;
	position: relative;
	display: flex;
}

.mv__inner {
	grid-column: initial;
	grid-row: initial;
	flex: 1;
	margin-top: max(48px, 3.5294117647vw);
	padding-inline: min(1.6666666667vw, 24px);
}

.mv__logo {
	margin-inline: auto;
}

.mv__lead {
	margin-top: 6.25rem;
	margin-inline: auto;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.25rem;
}

.mv__video {
	grid-column: initial;
	grid-row: initial;
	width: 57.3529411765%;
	max-height: clamp(700px, 60.2941176471vw, 1400px);
}

.plan-card__img img {
	aspect-ratio: 336/216;
}

.rooms-card__arrow {
	width: 3rem;
}

.rooms-card__arrow::after {
	width: 0.625rem;
}

.scenery {
	grid-column: 3/-1;
}

.scenery__img img {
	aspect-ratio: 1312/400;
}

.sp-cta {
	display: none;
}

.top-access__inner {
	grid-column: 4/8;
	display: grid;
	grid-template-columns: 16rem 1fr;
	gap: 3rem;
	align-items: center;
}

.top-access__content {
	grid-column: initial;
	padding-bottom: 3.125rem;
}

.top-access__button {
	margin-top: 1rem;
}

.top-access__map {
	grid-column: initial;
	margin-top: initial;
	max-width: initial;
}

.top-access__map img {
	aspect-ratio: 912/640;
}

.top-cuisine__inner {
	grid-column: 5/-1;
	display: grid;
	grid-template-columns: 25.625rem 1fr;
	gap: min(64px, 4.4444444444vw);
}

.top-cuisine__content {
	display: block;
	padding-bottom: 6.25rem;
}

.top-cuisine__title {
	grid-column: initial;
}

.top-cuisine__text {
	grid-column: initial;
}

.top-cuisine__button {
	grid-column: initial;
	grid-row: initial;
	margin-top: 1rem;
}

.top-cuisine__images {
	grid-column: initial;
	margin-top: initial;
}

.top-cuisine__img img {
	aspect-ratio: 746/280;
}

.top-cuisine__large-img {
	grid-column: 3/-1;
	margin-top: -4.1875rem;
}

.top-cuisine__large-img img {
	aspect-ratio: 1312/400;
}

.top-intro__inner {
	--img1: calc(520/1312*100%);
	--content: minmax(0, 420px);
	--img2: calc(244/1312*100%);
	grid-column: 3/-1;
	display: grid;
	grid-template-columns: var(--img1) var(--content) var(--img2);
	gap: 1.875rem;
	justify-content: space-between;
}

.top-intro__img1 {
	grid-column: initial;
	grid-row: initial;
	margin-top: 5rem;
}

.top-intro__img1 img {
	aspect-ratio: 520/490;
}

.top-intro__content {
	display: block;
	margin-top: 8rem;
}

.top-intro__body {
	margin-top: 2rem;
}

.top-intro__img2 {
	display: block;
}

.top-intro__gallery {
	grid-column: 1/-1;
	margin-top: max(10px, 0.6944444444vw);
}

.top-news__title {
	grid-column: 5/6;
}

.top-news__list {
	grid-column: 5/6;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	max-width: initial;
}

.top-onsen__inner {
	grid-column: 5/8;
	display: grid;
	grid-template-columns: 18.5rem 1fr;
	gap: min(64px, 4.4444444444vw);
}

.top-onsen__content {
	flex: 1;
	display: block;
	padding-bottom: 8.125rem;
}

.top-onsen__title {
	grid-column: initial;
}

.top-onsen__text {
	grid-column: initial;
}

.top-onsen__button {
	grid-column: initial;
}

.top-onsen__images {
	grid-column: initial;
	right: initial;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-top: 2.5rem;
}

.top-onsen__large-img {
	grid-column: 3/-1;
	margin-top: -5.625rem;
}

.top-onsen__large-img img {
	aspect-ratio: 1312/480;
}

.top-plan {
	padding-top: min(306px, 21.25vw);
}

.top-plan::before {
	background-image: -webkit-image-set(url(../images/top/plan-bg.avif) type("image/avif"), url(../images/top/plan-bg.png) type("image/png"));
	background-image: image-set(url(../images/top/plan-bg.avif) type("image/avif"), url(../images/top/plan-bg.png) type("image/png"));
	background-position: top;
}

.top-plan__inner.inner {
	grid-column: 2/-1;
}

.top-plan__item {
	width: 21rem;
}

.top-plan__nav {
	width: 100%;
}

:is(.top-plan__nav-prev,
.top-plan__nav-next) {
	top: 50%;
}

.top-plan__nav-prev {
	left: -1rem;
}

.top-plan__nav-next {
	right: -1rem;
}

.top-plan__cta {
	display: flex;
	align-items: center;
	padding: 2.5rem min(32px, 2.2222222222vw);
}

.top-plan__cta-head {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	text-align: left;
}

.top-plan__cta-head-text {
	margin-top: initial;
	font-size: clamp(12px, 1.3888888889vw, 20px);
}

.top-plan__cta-head-text .large {
	font-size: clamp(16px, 1.6666666667vw, 24px);
}

.top-plan__cta-button {
	flex-shrink: 0;
	margin: initial;
	margin-left: min(32px, 2.2222222222vw);
	max-width: initial;
	width: 31.4960629921%;
}

.top-plan__cta-info {
	margin-top: 0.3125rem;
	margin-left: min(27px, 1.875vw);
	text-align: left;
}

.top-plan__cta-info-tel {
	white-space: nowrap;
}

.top-plan__cta-info-text {
	margin-top: 0.125rem;
}

.top-rooms__inner {
	grid-column: 5/6;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4rem;
}

.top-rooms__content {
	grid-column: initial;
}

.top-rooms__button {
	grid-column: initial;
	grid-row: initial;
	margin-top: 2rem;
}

.top-rooms__slider {
	grid-column: 4/6;
	margin-top: 5rem;
}

.top-rooms__slide {
	width: 22.5rem;
}

.top-rooms__nav {
	width: 101.8050541516%;
}

.top-rooms__nav-prev {
	left: -1.5rem;
}

.top-rooms__nav-next {
	right: -1.5rem;
}

.pagination .wp-pagenavi {
	gap: 0.9375rem;
}

.pagination :where(span,
a):not(.nextpostslink,
.previouspostslink,
.extend) {
	width: 3.875rem;
	font-size: 1.125rem;
}

.pagination :where(.nextpostslink,
.previouspostslink,
.extend) {
	font-size: 1.75rem;
}

.pagination .previouspostslink {
	margin-right: 1.0625rem;
}

.pagination .nextpostslink {
	margin-left: 1.0625rem;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

}

@media (min-width: 1000px) {

html {
	font-size: 16px;
}

}

@media (max-width: 767px) {

a[href^="tel:"] {
	pointer-events: auto;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes loop {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-100%);
}

}

