:root {
  --nakaya-color-bg: #ddd9d3;
  --nakaya-color-surface: #ffffff;
  --nakaya-color-accent: #a58f6e;
  --nakaya-color-accent-dark: #8d5f3f;
  --nakaya-color-text: #48443e;
  --nakaya-color-text-soft: #666666;
  --nakaya-color-nav: rgba(15, 16, 16, 0.84);
  --nakaya-shadow-soft: 0 10px 22px rgba(10, 12, 16, 0.14);
  --nakaya-max: 1080px;
  --nakaya-reading: 760px;
  --nakaya-inline: clamp(20px, 4.8vw, 60px);
  --nakaya-gap: clamp(20px, 3vw, 42px);
  --nakaya-sp-footer-height: 64px;
  --nakaya-font:
    "Yu Mincho",
    "YuMincho",
    "游明朝",
    "Hiragino Mincho ProN",
    "Hiragino Serif",
    "MS PMincho",
    "Noto Serif JP",
    "Source Han Serif JP",
    "Yu Mincho",
    serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  padding: 0;
}

body {
  background: var(--nakaya-color-bg);
  color: var(--nakaya-color-text);
  font-family: var(--nakaya-font);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--nakaya-font);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.screen-reader-text {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.nakaya-page {
  min-height: 100vh;
}

.nakaya-page main {
  width: 100%;
}

.nakaya-section {
  margin: 0 auto;
  max-width: none;
  padding: clamp(40px, 6vw, 80px) var(--nakaya-inline);
  width: 100%;
}

.nakaya-section--narrow {
  max-width: calc(var(--nakaya-reading) + var(--nakaya-inline) * 2);
}

.nakaya-section--center {
  text-align: center;
}

.nakaya-section--full {
  max-width: none;
  padding-inline: 0;
}

.nakaya-section h1,
.nakaya-section h2,
.nakaya-section h3 {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 14px;
}

.nakaya-section h1 {
  font-size: clamp(28px, 4.2vw, 46px);
}

.nakaya-section h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.nakaya-section h3 {
  font-size: clamp(19px, 2.1vw, 27px);
}

.nakaya-section p {
  font-size: clamp(15px, 1.02vw, 18px);
  margin: 0 0 0.8em;
}

.nakaya-en-title {
  color: #8d5f3f;
  font-size: clamp(57px, 7.5vw, 123px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 14px;
  opacity: 0.34;
  pointer-events: none;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  white-space: normal;
}

.nakaya-button {
  align-items: center;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--nakaya-color-text);
  display: inline-flex;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  justify-content: flex-start;
  letter-spacing: 0.08em;
  min-height: 0;
  min-width: 0;
  overflow: visible;
  padding: 8px 124px 8px 0;
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nakaya-button:hover {
  opacity: 0.72;
  color: var(--nakaya-color-text);
}

.nakaya-button--reserve {
  background: none;
  color: var(--nakaya-color-text);
}

.nakaya-button--reserve:hover {
  background: none;
  color: var(--nakaya-color-text);
}

.nakaya-button::after {
  background: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 92px;
}

.nakaya-button::before {
  background: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(29deg);
  transform-origin: right center;
  width: 20px;
}

.nakaya-header {
  left: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.nakaya-header__inner {
  align-items: center;
  backdrop-filter: blur(14px);
  background: var(--nakaya-color-nav);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  display: flex;
  gap: 22px;
  margin: 0;
  max-width: none;
  min-height: 60px;
  padding: 6px var(--nakaya-inline);
  width: 100%;
}

.nakaya-header.is-over-hero .nakaya-header__inner {
  backdrop-filter: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.nakaya-brand {
  flex: 0 0 auto;
}

.nakaya-brand img {
  filter: none;
  height: 46px;
  object-fit: contain;
  width: auto;
}

.nakaya-global-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 18px;
  justify-content: space-between;
  min-width: 0;
}

.nakaya-global-nav ul {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.nakaya-global-nav li {
  margin: 0;
}

.nakaya-global-nav a {
  border-radius: 0;
  color: #ffffff;
  display: inline-flex;
  font-size: clamp(14px, 0.88vw, 16px);
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 10px 12px;
  transition: background-color 0.2s ease;
}

.nakaya-global-nav a:hover,
.nakaya-global-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
}

.nakaya-global-nav .nakaya-button--reserve {
  background: #9d823b;
  border: 0;
  color: #ffffff;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 44px;
  min-width: 178px;
  padding: 0 18px;
  text-align: center;
}

.nakaya-global-nav .nakaya-button--reserve::before,
.nakaya-global-nav .nakaya-button--reserve::after {
  display: none;
}

.nakaya-header__toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nakaya-header__toggle span {
  background: #ffffff;
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}

.nakaya-hero {
  height: 100vh;
  height: 100svh;
  margin-inline: auto;
  min-height: 0;
  max-height: none;
  max-width: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.nakaya-hero__slides,
.nakaya-hero__slides img {
  height: 100%;
  width: 100%;
}

.nakaya-hero__slides img {
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: scale(1);
  transition: opacity 0.9s ease, transform 5.2s ease-out;
  will-change: opacity, transform;
}

.nakaya-hero__slides img.is-active {
  opacity: 1;
  transform: scale(1.035);
}

.nakaya-hero__overlay {
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.14) 46%, rgba(0, 0, 0, 0.36));
  color: #ffffff;
  display: flex;
  inset: 0;
  justify-content: flex-start;
  padding: calc(120px + 6vh) var(--nakaya-inline) 8vh;
  position: absolute;
  text-align: left;
}

.nakaya-hero__overlay h1 {
  font-size: clamp(26px, 3.4vw, 50px);
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.35;
  margin: 0;
  max-width: 12em;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.nakaya-hero__scroll {
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  gap: 10px;
  min-height: 88px;
  left: auto;
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
  bottom: clamp(24px, 4vh, 44px);
  right: var(--nakaya-inline);
  z-index: 2;
}

.nakaya-hero__scroll span {
  font-size: 10px;
  margin-left: 14px;
}

.nakaya-hero__dots {
  display: flex;
  flex-direction: column;
  gap: 7px;
  left: -14px;
  position: absolute;
  top: 4px;
}

.nakaya-hero__dots span {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  display: block;
  height: 6px;
  margin: 0;
  width: 6px;
}

.nakaya-hero__dots span.is-active {
  background: #ffffff;
}

.nakaya-hero__scroll::before {
  background: rgba(255, 255, 255, 0.4);
  content: "";
  left: 0;
  height: 88px;
  position: absolute;
  top: 0;
  width: 1px;
}

.nakaya-hero__scroll::after {
  animation: nakaya-scroll-flow 2.8s ease-in-out infinite;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate(0, 0);
  width: 1px;
}

.nakaya-hero__overlay .nakaya-en-title,
.nakaya-page-hero .nakaya-en-title {
  color: rgba(255, 255, 255, 0.84);
}

.nakaya-intro {
  align-items: stretch;
  column-gap: clamp(26px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.nakaya-intro__body {
  align-items: flex-start;
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  justify-content: flex-start;
  position: relative;
}

.nakaya-intro__lead,
.nakaya-intro__copy p {
  font-size: clamp(16px, 1.05vw, 20px) !important;
  letter-spacing: 0.12em;
  line-height: 2.05;
  margin: 0 !important;
  text-orientation: mixed;
  writing-mode: vertical-rl;
}

.nakaya-intro__lead {
  font-size: clamp(20px, 1.35vw, 27px) !important;
  line-height: 1.95;
  order: 2;
  padding-block: 8px;
}

.nakaya-intro__copy {
  align-items: flex-start;
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(8px, 0.9vw, 14px);
  max-height: 24em;
  order: 1;
}

.nakaya-intro__copy p {
  font-size: clamp(14px, 0.95vw, 16px) !important;
  max-height: 22em;
}

.nakaya-intro__media img,
.nakaya-feature__media img,
.nakaya-page-hero img,
.nakaya-room-card img,
.nakaya-gallery-grid img,
.nakaya-footer__bottom img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.nakaya-feature {
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.nakaya-page--dining .nakaya-cuisine-copy {
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

.nakaya-page--dining .nakaya-dining-flow {
  padding-bottom: clamp(20px, 3vw, 34px);
}

.nakaya-page--dining .nakaya-dining-flow h1 {
  font-size: clamp(34px, 4.1vw, 52px);
  margin-bottom: 12px;
}

.nakaya-page--dining .nakaya-dining-course {
  padding-bottom: clamp(28px, 4vw, 52px);
  padding-top: clamp(24px, 3.6vw, 44px);
}

.nakaya-page--dining .nakaya-dining-course--wide {
  margin-inline: auto;
  max-width: 1480px;
  padding-inline: clamp(24px, 4vw, 56px);
}

.nakaya-page--dining .nakaya-dining-course h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: clamp(20px, 2.8vw, 34px);
}

.nakaya-page--dining .nakaya-dining-course__media {
  margin-bottom: clamp(20px, 2.8vw, 32px);
  margin-top: clamp(10px, 1.4vw, 16px);
  width: 100%;
}

.nakaya-page--dining .nakaya-dining-course__media img,
.nakaya-page--dining .nakaya-feature__media img {
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
}

.nakaya-page--dining .nakaya-dining-course__media img {
  aspect-ratio: 16 / 9;
}

.nakaya-page--dining .nakaya-cuisine-list {
  border-top: 1px solid rgba(141, 95, 63, 0.26);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nakaya-page--dining .nakaya-cuisine-list li {
  border-bottom: 1px solid rgba(141, 95, 63, 0.2);
  padding: 8px 0;
  position: relative;
}

.nakaya-page--dining .nakaya-cuisine-list li::before {
  color: #8d5f3f;
  content: "・";
  margin-right: 0.15em;
}

.nakaya-page--dining .nakaya-cuisine-note {
  color: var(--nakaya-color-text-soft);
  font-size: 15px;
}

.nakaya-page--dining .nakaya-feature {
  align-items: flex-start;
}

.nakaya-page--dining .nakaya-feature__body {
  max-width: 640px;
  padding-top: clamp(2px, 0.5vw, 8px);
}

.nakaya-page--dining .nakaya-feature__media {
  margin-inline: auto;
  max-width: 860px;
  width: 100%;
}

.nakaya-page--dining .nakaya-dining-breakfast,
.nakaya-page--dining .nakaya-dining-kids {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.nakaya-page--dining .nakaya-dining-breakfast .nakaya-feature__body,
.nakaya-page--dining .nakaya-dining-kids .nakaya-feature__body {
  max-width: 640px;
}

.nakaya-page--dining .nakaya-dining-breakfast .nakaya-en-title,
.nakaya-page--dining .nakaya-dining-kids .nakaya-en-title {
  margin-top: -4px;
}

.nakaya-page--spa .nakaya-spa-block,
.nakaya-page--spa .nakaya-spa-private {
  max-width: none;
  padding-inline: clamp(28px, 5vw, 76px);
}

.nakaya-page--spa .nakaya-spa-block {
  margin-inline: auto;
  max-width: 1480px;
  padding-bottom: clamp(44px, 5.2vw, 78px);
  padding-inline: clamp(24px, 4vw, 56px);
  padding-top: clamp(28px, 3.8vw, 48px);
}

.nakaya-page--spa .nakaya-spa-block h2,
.nakaya-page--spa .nakaya-spa-private h2 {
  font-size: clamp(26px, 3.1vw, 40px);
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.nakaya-page--spa .nakaya-spa-block__media {
  margin-bottom: clamp(20px, 2.8vw, 32px);
}

.nakaya-page--spa .nakaya-spa-block__media img,
.nakaya-page--spa .nakaya-spa-private__media img {
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
}

.nakaya-page--spa .nakaya-spa-private {
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding-bottom: clamp(70px, 7vw, 108px);
  padding-top: clamp(34px, 4.2vw, 54px);
}

.nakaya-page--spa .nakaya-spa-block--center {
  text-align: center;
}

.nakaya-page--spa .nakaya-spa-block--center .nakaya-spa-block__media {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.nakaya-page--spa .nakaya-spa-block--center p {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  text-align: left;
}

.nakaya-page--home .nakaya-feature--visual-switch {
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.nakaya-page--home .nakaya-feature--visual-switch::before {
  background-image: var(--nakaya-section-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  opacity: 0.5;
  position: absolute;
  transform: scale(1.04);
  z-index: 0;
}

.nakaya-page--home .nakaya-feature--visual-switch::after {
  background: linear-gradient(90deg, rgba(221, 217, 211, 0.74) 0%, rgba(221, 217, 211, 0.56) 42%, rgba(221, 217, 211, 0.32) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.nakaya-page--home .nakaya-feature--visual-switch.nakaya-feature--reverse::after {
  background: linear-gradient(270deg, rgba(221, 217, 211, 0.74) 0%, rgba(221, 217, 211, 0.56) 42%, rgba(221, 217, 211, 0.32) 100%);
}

.nakaya-page--home .nakaya-feature--visual-switch .nakaya-feature__body,
.nakaya-page--home .nakaya-feature--visual-switch .nakaya-feature__media {
  position: relative;
  z-index: 2;
}

.nakaya-home-interlude {
  margin: 0 auto;
  max-width: none;
  padding-inline: 0;
  position: relative;
  width: 100%;
}

.nakaya-home-interlude img {
  display: block;
  height: clamp(220px, 32vw, 520px);
  object-fit: cover;
  width: 100%;
}

.nakaya-home-interlude::after {
  background: linear-gradient(to bottom, rgba(221, 217, 211, 0.08), rgba(221, 217, 211, 0.4));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.nakaya-home-interlude--soft img {
  filter: saturate(0.88) brightness(0.94);
}

.nakaya-page--home .nakaya-feature--onsen {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.nakaya-page--home .nakaya-feature--onsen + .nakaya-access {
  margin-top: 0;
}

.nakaya-home-interlude--to-onsen::after {
  background: linear-gradient(
    to bottom,
    rgba(221, 217, 211, 0.08) 0%,
    rgba(221, 217, 211, 0.42) 45%,
    rgba(255, 255, 255, 0.96) 84%,
    #ffffff 100%
  );
}

.nakaya-page--home .nakaya-feature--onsen::before {
  background-image: none;
  opacity: 0;
}

.nakaya-page--home .nakaya-feature--onsen {
  background: #ffffff;
}

.nakaya-page--home .nakaya-feature--onsen::after {
  background: #ffffff;
}

.nakaya-home-news {
  background: #ffffff;
  margin: 0 auto;
  max-width: none;
}

.nakaya-page--home .nakaya-home-news {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-top: clamp(32px, 4.2vw, 72px);
  padding-bottom: clamp(32px, 4.2vw, 72px);
}

.nakaya-page--home .nakaya-footer {
  margin-top: 0;
}

.nakaya-page--home .nakaya-home-news + .nakaya-footer {
  margin-top: 0;
}

.nakaya-home-news__list {
  border-top: 1px solid rgba(72, 68, 62, 0.22);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nakaya-home-news__list li {
  border-bottom: 1px solid rgba(72, 68, 62, 0.18);
}

.nakaya-home-news__list a {
  align-items: baseline;
  display: grid;
  gap: 18px;
  grid-template-columns: 130px minmax(0, 1fr);
  padding: 15px 0;
}

.nakaya-home-news__list time {
  color: rgba(72, 68, 62, 0.74);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.nakaya-home-news__list span {
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.6;
}

.nakaya-home-news__more {
  align-self: flex-end;
  display: inline-flex;
  margin-top: 24px;
}

.nakaya-home-hotaru {
  align-items: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding-top: clamp(68px, 7vw, 112px);
  text-align: center;
}

.nakaya-home-hotaru__caption {
  margin-top: 12px;
  max-width: min(760px, 100%);
}

.nakaya-home-hotaru__media {
  margin: 12px auto 0;
  max-width: min(980px, 100%);
  width: 100%;
}

.nakaya-home-hotaru__media img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.nakaya-home-hotaru__more {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  margin-top: 0;
  padding-bottom: 8px;
}

.nakaya-home-hotaru__actions {
  align-items: flex-start;
  display: grid;
  gap: clamp(16px, 2.6vw, 42px);
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: center;
  margin-top: 22px;
}

.nakaya-home-hotaru__action {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.nakaya-home-hotaru__external-icon {
  color: currentColor;
  display: inline-flex;
  line-height: 1;
}

.nakaya-home-hotaru__external-icon svg {
  display: block;
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1em;
}

.nakaya-home-hotaru__note {
  color: var(--nakaya-color-text-soft);
  font-size: 13px;
  margin-top: 8px;
}

@media (min-width: 901px) {
  .nakaya-page--home .nakaya-home-news {
    --nakaya-news-list-left: clamp(150px, 11vw, 220px);
    --nakaya-news-list-right: clamp(220px, 22vw, 320px);
  }

  .nakaya-page--home .nakaya-home-news__list {
    margin-left: var(--nakaya-news-list-left);
    margin-right: var(--nakaya-news-list-right);
  }

  .nakaya-page--home .nakaya-home-news__more {
    align-self: flex-start;
    margin-left: calc(100% - var(--nakaya-news-list-right));
  }
}

.nakaya-news-index {
  max-width: min(1400px, calc(100% - (var(--nakaya-inline) * 2)));
}

.nakaya-news-index__list {
  border-top: 1px solid rgba(72, 68, 62, 0.22);
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.nakaya-news-index__list li {
  border-bottom: 1px solid rgba(72, 68, 62, 0.18);
}

.nakaya-news-index__list a {
  align-items: baseline;
  display: grid;
  gap: 18px;
  grid-template-columns: 130px minmax(0, 1fr);
  padding: 18px 0;
}

.nakaya-news-index__list time {
  color: rgba(72, 68, 62, 0.74);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.nakaya-news-index__list span {
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.6;
}

.nakaya-news-index__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.nakaya-news-index__pagination .page-numbers {
  border: 1px solid rgba(46, 46, 46, 0.3);
  color: inherit;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  min-width: 38px;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
}

.nakaya-news-index__pagination .page-numbers.current {
  background: #8d5f3f;
  border-color: #8d5f3f;
  color: #ffffff;
}

.nakaya-post-single {
  max-width: min(1540px, calc(100% - (var(--nakaya-inline) * 2)));
}

.nakaya-post-single__header {
  border-bottom: 1px solid rgba(72, 68, 62, 0.18);
  margin-bottom: 28px;
  padding-bottom: 20px;
}

.nakaya-post-single__header time {
  color: rgba(72, 68, 62, 0.74);
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

.nakaya-post-single__content {
  font-size: clamp(17px, 1.16vw, 22px);
  line-height: 2;
}

.nakaya-post-single__content > * {
  max-width: 100%;
}

.nakaya-post-single__content img {
  height: auto;
  max-width: 100%;
}

.nakaya-post-single__back {
  margin-top: 34px;
}

.nakaya-hotaru-embed {
  padding-top: clamp(28px, 3vw, 44px);
}

.nakaya-hotaru-embed__latest {
  margin: 0;
  padding: clamp(14px, 2vw, 24px) 0 0;
  text-align: center;
}

.nakaya-hotaru-embed__latest-note {
  color: var(--nakaya-color-text-soft);
  font-size: 13px;
  margin: 6px 0 18px;
  text-align: center;
}

.nakaya-hotaru-embed__frame {
  border: 0;
  display: block;
  height: min(78vh, 1300px);
  min-height: 780px;
  width: 100%;
}

.nakaya-hotaru-embed__scroll {
  overflow-x: visible;
}

.nakaya-hotaru-embed__link {
  margin-top: 14px;
  text-align: right;
}

.nakaya-room-types {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.nakaya-room-types figure {
  margin: 0;
}

.nakaya-room-types img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.nakaya-room-types figcaption {
  display: none;
}

.nakaya-feature__body {
  position: relative;
}

.nakaya-feature--reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.nakaya-feature--reverse .nakaya-feature__media {
  order: 2;
}

.nakaya-feature--reverse .nakaya-feature__body {
  order: 1;
}

.nakaya-page--home .nakaya-intro,
.nakaya-page--home .nakaya-feature {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

.nakaya-page--home .nakaya-intro {
  max-width: min(1400px, calc(100% - (var(--nakaya-inline) * 2)));
  padding-inline: 0;
}

.nakaya-page--home .nakaya-feature {
  align-items: stretch;
  column-gap: clamp(28px, 3.6vw, 58px);
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  padding-top: clamp(28px, 3.2vw, 52px);
}

.nakaya-page--home .nakaya-feature--dining {
  padding-top: clamp(58px, 6.4vw, 108px);
}

.nakaya-page--home .nakaya-feature.nakaya-feature--onsen {
  padding-top: clamp(18px, 2.2vw, 32px);
}

.nakaya-page--home .nakaya-feature .nakaya-feature__media {
  margin-top: clamp(44px, 5vw, 84px);
  order: 2;
}

.nakaya-page--home .nakaya-feature--onsen .nakaya-feature__media {
  margin-top: clamp(44px, 5vw, 84px);
}

.nakaya-page--home .nakaya-feature .nakaya-feature__body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  order: 1;
}

.nakaya-page--home .nakaya-feature__body > .nakaya-button {
  align-self: flex-start;
  margin-top: auto;
}

.nakaya-page--home .nakaya-feature__body > h2 {
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
}

.nakaya-page--home .nakaya-feature__body > h3 {
  font-size: clamp(13px, 1.55vw, 19px);
  font-weight: 500;
  line-height: 1.5;
}

.nakaya-page--home .nakaya-feature--reverse {
  grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.74fr);
}

.nakaya-page--home .nakaya-feature--reverse .nakaya-feature__media {
  order: 1;
}

.nakaya-page--home .nakaya-feature--reverse .nakaya-feature__body {
  order: 2;
}

.nakaya-page--home .nakaya-feature__media img {
  aspect-ratio: 16 / 10;
  min-height: clamp(240px, 26.7vw, 426px);
}

.nakaya-intro__body > .nakaya-en-title,
.nakaya-feature__body > .nakaya-en-title {
  margin-bottom: 12px;
  position: static;
}

.nakaya-page--home .nakaya-feature__body > .nakaya-en-title {
  margin-top: clamp(10px, 1.2vw, 20px);
}

.nakaya-page--home .nakaya-feature--reverse .nakaya-feature__body > .nakaya-en-title {
  margin-top: calc(clamp(10px, 1.2vw, 20px) + 8px);
}

.nakaya-page--home .nakaya-intro__body {
  padding-top: clamp(72px, 8.2vw, 122px);
}

.nakaya-page--home .nakaya-intro__body > .nakaya-en-title {
  left: 0;
  margin: 0;
  max-width: 100%;
  opacity: 0.3;
  position: absolute;
  top: clamp(12px, 1.8vw, 24px);
  white-space: nowrap;
}

.nakaya-page--home .nakaya-intro__lead,
.nakaya-page--home .nakaya-intro__copy {
  position: relative;
  z-index: 1;
}

.nakaya-page-hero {
  height: clamp(360px, 46vw, 620px);
  margin: 0;
  max-height: 620px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.nakaya-page-hero > img {
  inset: 0;
  position: absolute;
}

.nakaya-page-hero__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.56) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 52px);
  position: absolute;
}

.nakaya-page-hero__overlay h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.nakaya-page-hero__overlay p {
  font-size: clamp(17px, 1.2vw, 22px);
  margin: 0;
}

.nakaya-room-grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nakaya-room-card {
  background: var(--nakaya-color-surface);
  border: 1px solid rgba(160, 140, 88, 0.18);
  border-radius: 0;
  overflow: hidden;
}

.nakaya-room-card img {
  aspect-ratio: 4 / 3;
}

.nakaya-room-card div {
  padding: 18px 18px 14px;
}

.nakaya-room-card h3 {
  font-size: clamp(21px, 2vw, 28px);
  margin: 0 0 8px;
}

.nakaya-room-detail-list {
  display: grid;
  gap: clamp(28px, 4vw, 50px);
}

.nakaya-room-detail {
  background: var(--nakaya-color-surface);
  border: 1px solid rgba(160, 140, 88, 0.2);
  padding: clamp(20px, 3.2vw, 36px);
}

.nakaya-room-detail__layout {
  align-items: start;
  display: grid;
  gap: clamp(22px, 2.8vw, 40px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.nakaya-room-detail__head {
  margin-bottom: 16px;
}

.nakaya-room-detail__head h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  margin: 0 0 8px;
}

.nakaya-room-detail__head p {
  margin: 0;
}

.nakaya-room-detail__specs {
  border-top: 1px solid rgba(141, 95, 63, 0.26);
  display: grid;
  gap: 0;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.nakaya-room-detail__specs li {
  border-bottom: 1px solid rgba(141, 95, 63, 0.2);
  column-gap: 12px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 10px 0;
}

.nakaya-room-detail__specs li span:first-child {
  color: #8d5f3f;
  font-weight: 500;
}

.nakaya-room-detail__media {
  justify-self: end;
  width: 100%;
}

.nakaya-room-detail__carousel {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nakaya-room-detail__track {
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  max-width: 620px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.nakaya-room-detail__slide {
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 380ms ease;
}

.nakaya-room-detail__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.nakaya-room-detail__slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.nakaya-room-detail__nav {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(46, 46, 46, 0.28);
  color: var(--nakaya-color-text);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nakaya-room-detail__nav::before {
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}

.nakaya-room-detail__nav.is-prev::before {
  transform: rotate(-135deg);
}

.nakaya-room-detail__nav.is-next::before {
  transform: rotate(45deg);
}

.nakaya-room-detail__dots {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.nakaya-room-detail__dots button {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(141, 95, 63, 0.4);
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  height: 10px;
  min-width: 10px;
  padding: 0;
  width: 10px;
}

.nakaya-room-detail__dots button.is-active {
  background: #8d5f3f;
  border-color: #8d5f3f;
  color: transparent;
}

.nakaya-gallery-grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nakaya-gallery-grid figure {
  margin: 0;
}

.nakaya-gallery-grid img {
  aspect-ratio: 3 / 2;
}

.nakaya-photo-strip {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nakaya-photo-strip img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.nakaya-photo-belt {
  overflow: hidden;
  width: 100%;
}

.nakaya-photo-belt__track {
  animation: nakaya-photo-belt-slide 56s linear infinite;
  display: flex;
  gap: 12px;
  padding-right: 12px;
  width: max-content;
}

.nakaya-photo-belt__track img {
  aspect-ratio: 3 / 2;
  min-width: clamp(240px, 24vw, 380px);
  object-fit: cover;
  width: clamp(240px, 24vw, 380px);
}

.nakaya-photo-belt--stay .nakaya-photo-belt__track {
  animation-duration: 46s;
}

@keyframes nakaya-photo-belt-slide {
  0% {
    transform: translateX(0);
  }

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

@keyframes nakaya-scroll-flow {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  18% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(0, 82px);
  }
}

.nakaya-gallery-grid figcaption {
  color: var(--nakaya-color-text-soft);
  font-size: 15px;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.nakaya-contact-layout {
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nakaya-contact-card,
.nakaya-notice-card {
  background: var(--nakaya-color-surface);
  border: 1px solid rgba(160, 140, 88, 0.22);
  border-radius: 0;
  padding: clamp(18px, 2.2vw, 28px);
}

.nakaya-contact-card__tel {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.nakaya-form {
  display: grid;
  gap: 14px;
}

.nakaya-form label {
  color: var(--nakaya-color-text-soft);
  display: grid;
  font-size: 14px;
  gap: 8px;
  letter-spacing: 0.06em;
}

.nakaya-form input,
.nakaya-form textarea {
  background: #fff;
  border: 1px solid rgba(46, 46, 46, 0.2);
  border-radius: 0;
  color: var(--nakaya-color-text);
  font-family: var(--nakaya-font);
  font-size: 16px;
  padding: 10px 12px;
}

.nakaya-policy h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-top: 20px;
}

.nakaya-footer {
  margin-top: clamp(56px, 8vw, 120px);
}

.nakaya-access {
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.nakaya-access__bg {
  inset: 0;
  position: absolute;
}

.nakaya-access__bg::before {
  background: rgba(22, 22, 24, 0.56);
  content: "";
  inset: 0;
  position: absolute;
}

.nakaya-access__bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.nakaya-access__inner {
  margin: 0 auto;
  max-width: none;
  padding: clamp(34px, 6vw, 72px) var(--nakaya-inline);
  position: relative;
}

.nakaya-access h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 0.16em;
  margin: 0 0 clamp(16px, 2.6vw, 28px);
}

.nakaya-access .nakaya-en-title {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
}

.nakaya-access__columns {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.nakaya-access__copy p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 1.1vw, 20px);
  letter-spacing: 0.05em;
  margin: 0 0 1.2em;
}

.nakaya-access__map iframe {
  border: 0;
  border-radius: 0;
  min-height: 330px;
  width: 100%;
}

.nakaya-access__map a {
  color: #ffffff;
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
}

.nakaya-footer__main {
  background: transparent;
  color: var(--nakaya-color-text);
}

.nakaya-footer__inner {
  display: grid;
  gap: var(--nakaya-gap);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: none;
  padding: clamp(28px, 4vw, 56px) var(--nakaya-inline);
}

.nakaya-footer__name {
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.nakaya-footer__brand a {
  border-bottom: 1px solid rgba(72, 68, 62, 0.4);
  display: inline-block;
  margin-top: 10px;
}

.nakaya-footer__tel {
  font-size: clamp(24px, 3.2vw, 42px);
  letter-spacing: 0.08em;
  margin: 8px 0;
}

.nakaya-footer__bottom {
  background: transparent;
  position: relative;
}

.nakaya-footer__bottom img {
  max-height: 160px;
  object-fit: cover;
  opacity: 0.6;
}

.nakaya-footer__bottom p {
  bottom: 18px;
  color: #ffffff;
  font-size: 12px;
  left: 0;
  letter-spacing: 0.08em;
  margin: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.nakaya-sp-footer-nav {
  display: none;
}

@media (max-width: 900px) {
  .nakaya-header {
    padding: 0;
  }

  .nakaya-header__inner {
    min-height: 60px;
    padding: 6px var(--nakaya-inline);
  }

  .nakaya-brand img {
    height: 44px;
  }

  .nakaya-header__toggle {
    display: block;
    margin-left: auto;
  }

  .nakaya-global-nav {
    background: rgba(42, 42, 44, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: none;
    left: 0;
    margin-top: 10px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
  }

  .nakaya-global-nav.is-open {
    display: block;
  }

  .nakaya-global-nav ul {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
  }

  .nakaya-global-nav a {
    display: block;
    padding: 12px;
  }

  .nakaya-global-nav .nakaya-button--reserve {
    display: inline-flex;
    min-height: 42px;
    min-width: 0;
    width: 100%;
  }

  .nakaya-hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
  }

  .nakaya-hero__overlay {
    padding-top: 128px;
  }

  .nakaya-hero__scroll {
    bottom: 20px;
    left: auto;
    min-height: 72px;
    right: 14px;
  }

  .nakaya-hero__scroll::before {
    height: 72px;
  }

  .nakaya-intro,
  .nakaya-feature,
  .nakaya-feature--reverse,
  .nakaya-access__columns,
  .nakaya-footer__inner,
  .nakaya-contact-layout {
    grid-template-columns: 1fr;
  }

  .nakaya-intro__body,
  .nakaya-feature__body {
    display: contents;
  }

  .nakaya-intro__body > .nakaya-en-title,
  .nakaya-feature__body > .nakaya-en-title {
    order: 1;
  }

  .nakaya-intro__lead,
  .nakaya-feature__body > h1,
  .nakaya-feature__body > h2 {
    order: 2;
  }

  .nakaya-page--home .nakaya-feature__body > h3 {
    order: 3;
  }

  .nakaya-intro__media {
    order: 3;
  }

  .nakaya-page--home .nakaya-feature__media {
    order: 4;
  }

  .nakaya-intro__copy {
    order: 4;
  }

  .nakaya-page--home .nakaya-feature__body > p {
    order: 5;
  }

  .nakaya-intro__copy {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    max-height: none;
  }

  .nakaya-page--home .nakaya-intro__body > .nakaya-en-title,
  .nakaya-page--home .nakaya-intro__lead,
  .nakaya-page--home .nakaya-intro__copy {
    padding-inline: var(--nakaya-inline);
  }

  .nakaya-intro__copy p {
    line-height: 1.9;
    margin: 0;
    max-height: none;
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

  .nakaya-feature__body > .nakaya-button {
    margin-top: 6px;
    order: 6;
  }

  .nakaya-page--home .nakaya-intro,
  .nakaya-page--home .nakaya-feature {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    row-gap: 12px;
  }

  .nakaya-page--home .nakaya-feature__body > h2 {
    margin: 0;
  }

  .nakaya-page--home .nakaya-feature__body > h3 {
    margin: 0 0 4px;
  }

  .nakaya-page--home .nakaya-feature__body > p {
    margin: 0;
  }

  .nakaya-page--home .nakaya-feature__media img {
    min-height: 0;
  }

  .nakaya-en-title {
    font-size: clamp(54px, 13.8vw, 96px);
    margin-bottom: 8px;
    opacity: 0.24;
  }

  .nakaya-page--home .nakaya-intro__body > .nakaya-en-title {
    left: auto;
    margin-bottom: 8px;
    opacity: 0.24;
    position: static;
    top: auto;
  }

  .nakaya-feature--reverse .nakaya-feature__media,
  .nakaya-feature--reverse .nakaya-feature__body {
    order: unset;
  }

  .nakaya-page--home .nakaya-feature,
  .nakaya-page--home .nakaya-feature--reverse {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    padding-block: 0 34px;
  }

  .nakaya-page--home .nakaya-feature--dining {
    padding-top: 18px;
    padding-bottom: 0;
  }

  .nakaya-page--home .nakaya-feature--onsen {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .nakaya-page--dining .nakaya-dining-course {
    padding-bottom: 34px;
    padding-top: 18px;
  }

  .nakaya-page--spa .nakaya-spa-private {
    grid-template-columns: 1fr;
  }

  .nakaya-home-news {
    padding-inline: calc(var(--nakaya-inline) * 2);
    padding-top: 24px;
  }

  .nakaya-home-news__list a {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .nakaya-home-news__list time {
    font-size: 13px;
  }

  .nakaya-news-index__list a {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .nakaya-post-single {
    max-width: none;
  }

  .nakaya-hotaru-embed__frame {
    height: 82vh;
    min-height: 620px;
  }

  .nakaya-room-types {
    gap: 8px;
    margin-top: 14px;
  }

  .nakaya-room-types figcaption {
    font-size: 12px;
    margin-top: 4px;
  }

  .nakaya-home-interlude {
    margin: 0 auto;
  }

  .nakaya-home-interlude img {
    height: clamp(180px, 42vw, 300px);
  }

  .nakaya-page--home .nakaya-feature__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    order: 1;
    padding: 0 var(--nakaya-inline) 0;
  }

  .nakaya-page--home .nakaya-feature__body > .nakaya-en-title {
    margin: 14px 0 10px;
    opacity: 0.3;
    order: 0;
    text-align: left;
  }

  .nakaya-page--home .nakaya-feature--reverse .nakaya-feature__body > .nakaya-en-title {
    margin-top: 22px;
  }

  .nakaya-page--home .nakaya-feature__body > h2,
  .nakaya-page--home .nakaya-feature__body > h3 {
    display: block;
    margin: 0;
  }

  .nakaya-page--home .nakaya-feature__body > h2 {
    order: 1;
  }

  .nakaya-page--home .nakaya-feature__body > h3 {
    margin: 6px 0 0;
    order: 2;
  }

  .nakaya-page--home .nakaya-feature__media {
    margin: 26px calc(var(--nakaya-inline) * -1) 0;
    order: 3;
  }

  .nakaya-page--home .nakaya-feature--onsen .nakaya-feature__media {
    margin-top: 26px;
  }

  .nakaya-page--home .nakaya-feature__media img {
    aspect-ratio: 4 / 3;
    min-height: 0;
    width: 100%;
  }

  .nakaya-page--home .nakaya-feature__body > p {
    margin: 20px 0 0;
    order: 4;
  }

  .nakaya-page--home .nakaya-feature__body > .nakaya-button {
    align-self: flex-start;
    margin-top: 14px;
    order: 5;
  }

  .nakaya-room-grid,
  .nakaya-gallery-grid,
  .nakaya-photo-strip {
    grid-template-columns: 1fr;
  }

  .nakaya-room-detail {
    padding: 18px;
  }

  .nakaya-room-detail__layout {
    grid-template-columns: 1fr;
  }

  .nakaya-room-detail__media {
    justify-self: stretch;
  }

  .nakaya-room-detail__carousel {
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .nakaya-room-detail__head h3 {
    font-size: clamp(24px, 5.6vw, 30px);
  }

  .nakaya-page-hero {
    height: clamp(320px, 56vw, 460px);
    min-height: 360px;
  }

  .nakaya-access__map iframe {
    min-height: 260px;
  }

  .nakaya-footer__bottom p {
    bottom: 12px;
  }

  .nakaya-intro__body,
  .nakaya-feature__body,
  .nakaya-access__copy,
  .nakaya-contact-card,
  .nakaya-notice-card,
  .nakaya-page-hero__overlay {
    padding-inline: var(--nakaya-inline);
  }

  .nakaya-sp-footer-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(var(--nakaya-sp-footer-height) + env(safe-area-inset-bottom));
  }

  .nakaya-header__toggle,
  .nakaya-global-nav {
    display: none !important;
  }

  .nakaya-page .nakaya-header__inner {
    backdrop-filter: none;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nakaya-hero {
    height: calc(100svh - var(--nakaya-sp-footer-height) - env(safe-area-inset-bottom));
    min-height: 480px;
  }

  .nakaya-intro__body,
  .nakaya-feature__body,
  .nakaya-access__copy,
  .nakaya-contact-card,
  .nakaya-notice-card,
  .nakaya-page-hero__overlay {
    padding-inline: var(--nakaya-inline);
  }

  .nakaya-page--spa .nakaya-spa-intro,
  .nakaya-page--spa .nakaya-spa-block,
  .nakaya-page--spa .nakaya-spa-private {
    padding-inline: var(--nakaya-inline);
  }

  .nakaya-home-hotaru__actions {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nakaya-page--dining .nakaya-dining-breakfast,
  .nakaya-page--dining .nakaya-dining-kids,
  .nakaya-page--spa .nakaya-spa-private {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .nakaya-page--dining .nakaya-dining-breakfast .nakaya-feature__body,
  .nakaya-page--dining .nakaya-dining-kids .nakaya-feature__body {
    display: block;
    max-width: none;
    order: 1;
    padding-top: 0;
  }

  .nakaya-page--dining .nakaya-dining-breakfast .nakaya-feature__media,
  .nakaya-page--dining .nakaya-dining-kids .nakaya-feature__media {
    order: 2;
  }

  .nakaya-page--dining .nakaya-dining-breakfast .nakaya-cuisine-copy,
  .nakaya-page--dining .nakaya-dining-breakfast .nakaya-cuisine-note,
  .nakaya-page--dining .nakaya-dining-kids .nakaya-cuisine-copy,
  .nakaya-page--dining .nakaya-dining-kids .nakaya-cuisine-note {
    order: 3;
  }

  .nakaya-page--spa .nakaya-spa-private__body {
    display: contents;
  }

  .nakaya-page--spa .nakaya-spa-private__body h2 {
    margin-bottom: 0;
    order: 1;
  }

  .nakaya-page--spa .nakaya-spa-private__media {
    order: 2;
  }

  .nakaya-page--spa .nakaya-spa-private__body p {
    margin-top: 0;
    order: 3;
  }

  .nakaya-hotaru-embed__scroll {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .nakaya-hotaru-embed__frame {
    min-width: 720px;
    width: 720px;
  }

  .nakaya-sp-footer-nav {
    background: rgba(31, 31, 31, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    bottom: 0;
    display: block;
    left: 0;
    padding-bottom: env(safe-area-inset-bottom);
    position: fixed;
    right: 0;
    z-index: 70;
  }

  .nakaya-sp-footer-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nakaya-sp-footer-nav li {
    display: flex;
  }

  .nakaya-sp-footer-nav a,
  .nakaya-sp-footer-nav button {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    font-size: 11px;
    justify-content: flex-end;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin: 0;
    min-height: var(--nakaya-sp-footer-height);
    padding: 6px 4px 7px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
    word-break: keep-all;
  }

  .nakaya-sp-footer-nav__item span {
    display: block;
    margin-top: auto;
    padding-bottom: 1px;
    position: relative;
    z-index: 2;
  }

  .nakaya-sp-footer-nav__item::before {
    content: "";
    left: 50%;
    position: absolute;
    top: 11px;
    transform: translateX(-50%);
    z-index: 1;
  }

  .nakaya-sp-footer-nav__item--access::before {
    border: 1.6px solid currentColor;
    border-radius: 10px 10px 10px 0;
    height: 13px;
    transform: translateX(-50%) rotate(-45deg);
    width: 13px;
  }

  .nakaya-sp-footer-nav__item--reserve::before {
    border: 1.6px solid currentColor;
    border-radius: 2px;
    height: 12px;
    width: 14px;
  }

  .nakaya-sp-footer-nav__item--reserve::after {
    border-top: 1.6px solid currentColor;
    content: "";
    left: 50%;
    position: absolute;
    top: 17px;
    transform: translateX(-50%);
    width: 14px;
    z-index: 1;
  }

  .nakaya-sp-footer-nav__item--menu::before {
    background: currentColor;
    box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
    height: 1.6px;
    top: 16px;
    width: 15px;
  }

  .nakaya-sp-footer-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.14);
  }

  .nakaya-sp-footer-nav a.is-reserve {
    background: #9d823b;
  }

  .nakaya-sp-footer-menu {
    background: rgba(20, 20, 20, 0.96);
    bottom: calc(var(--nakaya-sp-footer-height) + env(safe-area-inset-bottom));
    left: 0;
    padding: 12px var(--nakaya-inline);
    position: fixed;
    right: 0;
    z-index: 69;
  }

  .nakaya-sp-footer-menu ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nakaya-sp-footer-menu a {
    color: #ffffff;
    display: block;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 10px 0;
    text-decoration: none;
  }

  .nakaya-sp-footer-menu a[aria-current="page"] {
    color: rgba(255, 255, 255, 0.65);
  }
}

@media (max-width: 560px) {
  :root {
    --nakaya-sp-footer-height: 60px;
  }

  .nakaya-section {
    padding-block: clamp(30px, 11vw, 56px);
  }

  .nakaya-section p {
    font-size: 18px;
  }

  .nakaya-hero__overlay h1 {
    font-size: clamp(23px, 8vw, 36px);
  }

  .nakaya-intro__lead,
  .nakaya-intro__copy p {
    text-orientation: initial;
    writing-mode: horizontal-tb;
  }

  .nakaya-intro__copy {
    max-height: none;
  }

  .nakaya-en-title {
    font-size: clamp(48px, 14.4vw, 78px);
    letter-spacing: 0.05em;
  }

  .nakaya-page--home .nakaya-intro__body > .nakaya-en-title {
    font-size: inherit;
  }

  .nakaya-page--home .nakaya-feature--reverse .nakaya-feature__body {
    order: 1;
  }

  .nakaya-page--home .nakaya-feature--reverse .nakaya-feature__media {
    order: 3;
  }

  .nakaya-photo-belt__track img {
    min-width: clamp(220px, 68vw, 320px);
    width: clamp(220px, 68vw, 320px);
  }

  .nakaya-room-types {
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
    width: 100%;
  }

  .nakaya-room-types img {
    aspect-ratio: 1 / 1;
  }

  .nakaya-page--home .nakaya-feature--reverse > .nakaya-room-types {
    margin: 10px var(--nakaya-inline) 0;
    order: 4;
    width: calc(100% - (var(--nakaya-inline) * 2));
  }

  .nakaya-room-detail__carousel {
    grid-template-columns: 1fr;
  }

  .nakaya-room-detail__nav {
    display: none;
  }

  .nakaya-room-detail__specs li {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .nakaya-home-news {
    padding-top: 20px;
    padding-inline: calc(var(--nakaya-inline) * 2);
  }

  .nakaya-home-news__more {
    margin-top: 16px;
  }

  .nakaya-news-index__pagination .page-numbers {
    min-width: 34px;
    padding: 9px 10px;
  }

  .nakaya-hotaru-embed__frame {
    height: 74vh;
    min-height: 520px;
  }

  .nakaya-home-interlude {
    margin: 0 auto;
  }

  .nakaya-home-interlude img {
    height: clamp(150px, 48vw, 220px);
  }

  .nakaya-button {
    min-width: 0;
    padding-right: 108px;
    width: auto;
  }

  .nakaya-access__copy p {
    font-size: 17px;
  }

  .nakaya-footer__bottom img {
    max-height: 116px;
  }

  .nakaya-sp-footer-nav a {
    font-size: 10px;
    min-height: var(--nakaya-sp-footer-height);
    padding-inline: 2px;
  }

  .nakaya-sp-footer-nav button {
    font-size: 10px;
    min-height: var(--nakaya-sp-footer-height);
    padding-inline: 2px;
  }

  .nakaya-sp-footer-nav__item::before {
    top: 10px;
  }
}
