/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* カラーテーマ */
  --color-bg-dark: #2b2621;
  --color-bg-muted: #464646;
  --color-cream: #f9f6f3;
  --color-accent: #a66e52;
  --slide-duration: 6000ms; /* 1枚あたりの表示時間 */
  --fade-duration: 800ms; /* 切替フェード時間 */
  --zoom-scale-from: 1.25; /* 開始ズーム（大きめ→引く） */
  --zoom-scale-to: 1; /* 終了ズーム */
  --pagination-size: 8px;
}
body,
html {
  height: 100%;
  font-family: serif;
  margin: 0;
  padding: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Noto Sans JP",
    sans-serif;
}
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: var(--color-cream);
  background-color: var(--color-bg-dark);
}
a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
section {
  padding-top: 100px;
}
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
@media (max-width: 768px) {
  section {
    padding-top: 50px;
  }
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
}
.btn {
  margin-top: 50px;
}
.btn a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 270px;
  padding: 10px 25px;
  color: var(--color-bg-dark);
  transition: 0.3s ease-in-out;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--color-cream);
}
.btn a:before,
.btn a:after {
  content: "";
  width: 18px;
  height: 18px;
  border-color: var(--color-accent);
  box-sizing: border-box;
  border-style: solid;
  display: block;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.btn a:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}
.btn a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}
.btn a:hover:before,
.btn a:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: var(--color-cream);
}
.btn a:hover {
  color: var(--color-bg-dark);
  background-color: var(--color-cream);
  border-color: var(--color-cream);
}
.btn-reservation {
  margin-top: 50px;
}
.btn-reservation a {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-accent);
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 285px;
  padding: 10px 50px;
  color: var(--color-cream);
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
}
.btn-reservation a:hover {
  background: var(--color-cream);
  color: var(--color-bg-dark);
}
.btn-reservation a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid var(--color-cream);
  border-right: 3px solid var(--color-cream);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.btn-reservation a:hover:after {
  border-color: var(--color-bg-dark);
}

.contentsBox {
  width: 88%;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  height: 100svh; /* スマホの安全なビューポート高 */
  min-height: 480px;
  overflow: hidden;
  color: var(--color-cream);
  background: var(--color-bg-dark); /* 読み込み前の下地 */
  isolation: isolate;
}
.hero__intro {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: rgba(43, 38, 33, 0.7);
  backdrop-filter: blur(1px);
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}
.hero__intro-logo {
  width: min(56vw, 360px);
  max-width: 82%;
  height: auto;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: introLogoFadeIn 1300ms ease forwards;
}
.hero.hero--intro-done .hero__intro {
  opacity: 0;
  visibility: hidden;
}
@keyframes introLogoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.header-container {
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  padding-top: 4px;
  padding-bottom: 4px;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 74px;
  background-color: rgba(249, 246, 243, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    visibility 0.35s ease,
    background-color 0.3s ease;
}
header.scrolled {
  background-color: rgba(249, 246, 243, 0.95);
}
/* トップ：ヒーロー（スライダー）表示中はメニュー非表示、スクロールでヒーローが終わったら表示 */
header.header--await-hero:not(.header--revealed) {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-container {
  width: 84px;
  padding-left: 10px;
  margin-right: 18px;
}
.logo-container a {
  color: var(--color-bg-dark);
  display: block;
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  transform: none;
  box-shadow: none;
}
.logo-container p {
  font-size: 1.5rem;
  padding-left: 1em;
  color: var(--color-bg-dark);
}
.logo-container img {
  width: 100%;
  display: block;
}
.menu-icon {
  display: none;
}
nav ul {
  max-width: 1200px;
  margin: 0 1em 0 auto;
  display: flex;
  align-items: center;
  letter-spacing: 0.175rem;
}
nav ul li {
  list-style-type: none;
  padding-left: 1.25em;
}
nav ul li.nav-btn a {
  text-decoration: none;
  transition: opacity 0.5s;
  color: var(--color-bg-dark);
  position: relative;
  display: inline-block;
  text-decoration: none;
}
nav ul li.nav-btn a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
nav ul li.nav-btn a:hover::after {
  transform: scale(1, 1);
}

.contact-btn a {
  background: var(--color-accent);
  padding: 0.5em 1em;
  color: var(--color-cream);
  border-radius: 5px;
}
.contact-btn a:hover {
  background: var(--color-bg-dark);
}
.contact-fix {
  display: none;
}
@media (max-width: 768px) {
  header {
    height: 62px;
  }
  .header-container {
    position: relative;
    justify-content: center;
  }
  .menu-icon {
    width: 30px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1200;
    margin-top: 0;
    margin-right: 0;
  }
  .logo-container {
    width: 72px;
    padding-left: 0;
    margin-right: 0;
  }
  .logo-container a {
    padding: 0;
    transform: none;
  }
  .menu-icon span {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
  }
  .menu-icon span:nth-child(1) {
    top: 0;
  }
  .menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-icon span:nth-child(3) {
    bottom: 0;
  }
  /* バツマーク表示時のアニメーション */
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    background: #000;
  }
  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 50%;
    background: #000;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 246, 243, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.8s ease,
      visibility 1.2s ease;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .overlay nav ul {
    list-style: none;
    text-align: center;
    flex-direction: column;
  }

  .overlay nav ul li {
    margin: 20px 0;
  }

  .overlay nav ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--color-bg-dark);
  }
  .overlay nav ul li.contact-btn a {
    color: var(--color-cream);
  }

  .overlay.hiding {
    opacity: 0;
    visibility: hidden;
  }

  /* メニュー（ハンバーガー） */
  nav {
    position: fixed;
    transition: right 0.3s ease;
    padding-top: 20px;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    list-style: none;
    padding: 0;
  }

  nav ul li {
    margin: 20px;
  }

  nav ul li a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 1.2rem;
  }

  .menu-icon {
    display: flex;
  }

  nav {
    top: 62px;
  }
  .contact-fix {
    display: block;
    position: fixed;
    top: unset;
    bottom: 0;
    right: auto;
    background: rgba(249, 246, 243, 0.92);
    color: var(--color-bg-dark);
    transform: translateY(0);
    writing-mode: horizontal-tb;
    padding: 7px 0 0;
    height: 35px;
    font-size: 0.875rem;
    width: 100%;
    border-radius: 15px 15px 0 0;
    text-align: center;
    z-index: 1;
  }
}

/* スライドラッパー（同位置に重ねてフェード） */
.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--fade-duration) ease;
  will-change: opacity;
}
.slide.is-active {
  opacity: 1;
}

/* 画像は<figure>内のimgをフルカバー */
.slide__media {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  animation: none;
  will-change: transform;
}
.slide__media img,
.slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
.slide.is-active .slide__media {
  animation: none;
}
.hero:not(.hero--intro-done) .slide__media {
  animation: none;
}
.hero:not(.hero--intro-done) .slide__media img,
.hero:not(.hero--intro-done) .slide__media video {
  transform: scale(1);
}

/* テキストレイヤー */
.hero__content {
  position: absolute;
  top: 50%;
  right: clamp(20px, 6vw, 84px);
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  text-align: right;
  text-shadow: 1px 2px 3px rgba(43, 38, 33, 0.85);
  padding-right: clamp(8px, 1.6vw, 20px);
}
.hero__content::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 0;
  width: 1px;
  height: calc(100% + 48px);
  background: linear-gradient(
    180deg,
    rgba(249, 246, 243, 0) 0%,
    rgba(249, 246, 243, 0.55) 15%,
    rgba(249, 246, 243, 0.55) 85%,
    rgba(249, 246, 243, 0) 100%
  );
}
.hero__title {
  margin: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(10px, 1.6vw, 16px);
}
.hero__title-main {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.18em;
}
.hero__title-sub {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  opacity: 0.9;
}
.hero__lead {
  font-size: clamp(10px, 0.95vw, 13px);
  letter-spacing: 0.32em;
  opacity: 0.95;
  margin: 0;
}
.hero__cta {
  display: inline-block;
  padding: 0.9em 1.2em;
  border: 1px solid rgba(249, 246, 243, 0.55);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-cream);
  backdrop-filter: blur(4px);
  background: rgba(249, 246, 243, 0.12);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.hero__cta:hover {
  transform: translateY(-1px);
  background: rgba(249, 246, 243, 0.2);
  border-color: var(--color-cream);
}

/* ページネーション（ドット） */
.pagination {
  position: absolute;
  inset: auto 50% 24px auto;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 10px;
  height: 10px;
  background: rgba(249, 246, 243, 0.35);
  outline: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  box-shadow: 1px 2px 3px rgba(43, 38, 33, 0.5);
}
.dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}

/* 動きを減らす環境設定に追従 */
@media (prefers-reduced-motion: reduce) {
  .hero__intro-logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__intro {
    transition: none;
  }
  .slide__media {
    animation: none;
    transform: none !important;
  }
  .slide {
    transition: none;
  }
}
@media (max-width: 768px) {
  .hero__content {
    right: 50%;
    top: auto;
    bottom: 11%;
    transform: translateX(50%);
    align-items: center;
    text-align: center;
    padding-right: 0;
    gap: 8px;
  }
  .hero__content::before {
    display: none;
  }
  .hero__title {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .hero__title-main,
  .hero__title-sub {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .hero__title-main {
    letter-spacing: 0.1em;
  }
  .hero__title-sub {
    font-size: 0.75rem;
    line-height: 1.6;
  }
  .hero__lead {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
}

.about-catch,
.access-catch,
.room-catch {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 50px;
  position: relative;
}

.about-catch-en,
.access-catch-en,
.room-catch-en {
  font-size: 3em;
  letter-spacing: 0.25rem;
}
.about-catch-ja,
.access-catch-ja,
.room-catch-ja {
  font-size: 1em;
}
.room-catch-ja {
  text-align: right;
}
.room-catch {
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.access-catch {
  align-items: center;
}
@media (max-width: 768px) {
  .room-catch,
  .access-catch,
  .about-catch {
    align-items: center;
    flex-direction: column-reverse;
  }
  .room-catch::after,
  .access-catch::after,
  .about-catch::after {
    display: none;
  }
  .room-catch-en,
  .access-catch-en,
  .about-catch-en {
    font-size: 0.825rem;
  }
  .about-catch-ja,
  .access-catch-ja,
  .room-catch-ja {
    font-size: 1.5em;
  }
  .room-catch-ja {
    text-align: center;
  }
  .room-catch-container {
    text-align: center;
    flex-direction: column-reverse;
    display: flex;
  }
}

.about-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 52px);
}

.about-text {
  flex: 1 1 58%;
  min-width: 0;
  max-width: 36rem;
  letter-spacing: 0.2rem;
}
.about-text p {
  padding-bottom: 25px;
}
.about-text ul {
  margin: 0.35rem 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}
.about-text ul li {
  line-height: 1.7;
}
.about-text ul li:last-child {
  margin-bottom: 0;
}
.about-text__sightseeing {
  margin: 0.25rem 0 25px;
  padding: 1rem 1.1rem 1.05rem 1.15rem;
  background: rgba(249, 246, 243, 0.07);
  border-radius: 6px;
}
.about-text__sightseeing p {
  padding-bottom: 0.6rem;
  margin: 0;
}
.about-text__sightseeing ul {
  margin: 0;
  padding-left: 1.35rem;
  padding-bottom: 0;
}
.about-text__sightseeing ul li {
  padding-left: 0.65em;
  margin-bottom: 0.45em;
}
.about-text__sightseeing ul li:last-child {
  margin-bottom: 0;
}
.about-gallery-hint {
  margin: 0;
  padding-top: 14px;
  letter-spacing: 0.2rem;
}
.about-gallery {
  flex: 0 1 38%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 0.35rem;
}
.about-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
/* トップ about：PC は img05 のみ、SP は 2 枚 */
.about-gallery--intro > img:first-of-type {
  display: none;
}
.about-img {
  margin-top: 50px;
  width: 100%;
  height: 500px;
  min-height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      180deg,
      rgba(43, 38, 33, 0.5) 0%,
      rgba(43, 38, 33, 0.25) 42%,
      rgba(43, 38, 33, 0.72) 100%
    ),
    url("../img/img17.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 42%;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-text {
    width: 100%;
    max-width: none;
    flex: none;
  }
  .about-gallery {
    width: 100%;
    max-width: none;
    flex: none;
    padding-top: 0;
    margin-top: 8px;
    flex-direction: row;
    gap: 12px;
  }
  .about-gallery--intro > img:first-of-type {
    display: block;
  }
  .about-gallery img {
    flex: 1 1 50%;
    min-width: 0;
    aspect-ratio: 1 / 1;
  }
  .about-img {
    height: auto;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    max-height: 52vw;
    background-position: center 38%;
  }
  .about-content {
    flex-direction: column;
    gap: 0;
  }
  .about-text__sightseeing {
    padding: 0.85rem 0.85rem 0.95rem 0.95rem;
    margin-bottom: 20px;
  }
  .about-text__sightseeing-note {
    display: block;
  }
  .about-gallery.about-gallery--lead {
    display: none;
  }
}

.page section {
  padding-top: 50px;
}
.about-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1; /* 正方形に固定 */
  object-fit: cover; /* はみ出す部分は切り取る */
}

.about-gallery-grid img:hover {
  transform: scale(1.05);
}
.page-about-img {
  width: 100%;
  height: 350px;
  min-height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      135deg,
      rgba(43, 38, 33, 0.72) 0%,
      rgba(43, 38, 33, 0.42) 45%,
      rgba(43, 38, 33, 0.78) 100%
    ),
    url("../img/img02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  color: var(--color-cream);
}
.page .about-content {
  flex-direction: row;
}

.page .about-gallery {
  width: 100%;
}
.page-room-img {
  width: 100%;
  height: 350px;
  min-height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      135deg,
      rgba(43, 38, 33, 0.72) 0%,
      rgba(43, 38, 33, 0.42) 45%,
      rgba(43, 38, 33, 0.78) 100%
    ),
    url("../img/img27.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  color: var(--color-cream);
}
.page .room-content {
  flex-direction: column;
}
.page .room-text {
  width: 100%;
}
.page .room-gallery-title {
  margin-top: 50px;
}
.page .room-gallery {
  width: 100%;
}
.page .room-gallery-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
}
.page .about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 50px;
  gap: 20px;
}
.page-about-bg {
  width: 50%;
}
.page-about-bg img {
  width: 100%;
}

@media (max-width: 768px) {
  .page .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .about-content {
    flex-direction: column;
  }
  .page-about-bg {
    width: 100%;
  }
}

.room {
  background: linear-gradient(
    180deg,
    var(--color-bg-dark) 0%,
    var(--color-bg-muted) 45%,
    var(--color-bg-dark) 100%
  );
  padding-bottom: 165px;
}
.room-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.room-text {
  width: 48%;
  letter-spacing: 0.15rem;
}
.room-text dl {
  margin-bottom: 25px;
}
.room-text dl dt {
  line-height: 2;
  padding: 12px 0 2px;
}
.room-text dl dt:first-child {
  padding: 0 0 6px 0;
}
.room-text dl dd span {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding-top: 5px;
}
.room-text ul li {
  list-style-position: inside;
}
.room-gallery {
  width: 50%;
}
.room-gallery p {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 5px;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.room-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1; /* 正方形に固定 */
  object-fit: cover; /* はみ出す部分は切り取る */
}

.room-gallery-grid img:hover {
  transform: scale(1.05);
}
.room-img {
  margin-top: 50px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .room-content {
    flex-direction: column;
  }
  .room-text {
    width: 100%;
  }
  .room-gallery {
    width: 100%;
  }
  .room-img {
    height: auto;
  }
  .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* モーダルスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  overflow: hidden;
}

.modal.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.room-modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  object-fit: contain;
}

/* ▼ 閉じるボタン */
.close {
  position: absolute;
  top: 60px;
  right: 90px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 768px) {
  .close {
    top: 80px;
    right: 23px;
  }
}
/* ▼ 矢印（左右） */
.arrow {
  position: absolute;
  top: 50%;
  font-size: 48px;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  z-index: 1000;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}
.room-bg {
  width: 85%;
  display: flex;
  padding-top: 80px;
}
.room-bg-imgarea {
  width: 100%;
}
.room-bg-img {
  width: 100%;
}
@media (max-width: 768px) {
  .room {
    padding-bottom: 80px;
  }
  .room-bg {
    width: 100%;
  }
}

.access {
  padding-bottom: 100px;
}

.access-text h3 {
  padding-bottom: 5px;
}
.access-text h3 span {
  font-size: 0.875rem;
}
.access-text p {
  padding-bottom: 25px;
}
.access-text ul {
  margin: 0.35rem 0 0;
  padding-left: 1.5rem;
  list-style-position: outside;
}
.access-text ul li {
  padding-left: 0.65em;
  margin-bottom: 0.45em;
  line-height: 1.7;
}
.access-text ul li:last-child {
  margin-bottom: 0;
}

.access-text-ad {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--color-bg-muted);
  border-bottom: 1px solid var(--color-bg-muted);
  padding: 50px 0px;
  margin-bottom: 50px;
}
.access-text-ad h3 {
  width: 30%;
  max-width: 30%;
}
.movie-title,
.access-title {
  margin: 50px auto 20px;
  text-align: center;
  border-bottom: 2px solid var(--color-accent);
  padding: 0.25em 0;
  letter-spacing: 0.125rem;
}
.movie-title__brand {
  font-size: 0.82em;
  letter-spacing: 0.06em;
}
.movie-title__sp-only {
  display: none;
}
.movie-container {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.reservation-container {
  width: 100%;
  height: 350px;
  min-height: 220px;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reservation-text {
  color: var(--color-cream);
  text-align: center;
  text-shadow: 0 1px 2px rgba(43, 38, 33, 0.35);
  margin-bottom: 0.5em;
}
.reservation {
  padding-top: 0;
  margin-top: clamp(40px, 6vw, 80px);
  background-color: var(--color-bg-dark);
  background-image:
    linear-gradient(
      160deg,
      rgba(43, 38, 33, 0.78) 0%,
      rgba(43, 38, 33, 0.4) 42%,
      rgba(43, 38, 33, 0.75) 100%
    ),
    url("../img/img30.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 768px) {
  .access {
    padding-bottom: 50px;
  }
  .access-text-ad {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 25px 0px;
  }
  .access-text-ad h3 {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .movie-title,
  .access-title {
    width: 100%;
  }
  .movie-title__brand {
    font-size: 0.74em;
  }
  .movie-title__sp-only {
    display: inline;
  }
}
/************************** 
フッター 
***************************/
footer {
  background: var(--color-bg-dark);
}
footer ul li {
  list-style-type: none;
  padding: 0.25em;
}
.footer-logo-container {
  margin-bottom: 20px;
}
.footer-logo-container a {
  color: var(--color-cream);
}
.footer-logo-container img {
  width: 100%;
}
.footer-box {
  color: var(--color-cream);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: space-between;
}

.footer-info {
  width: 33%;
}
.footer-info > p {
  margin: 0 0 1.15em;
  line-height: 1.75;
}
.footer-info > p:last-of-type {
  margin-bottom: 1.35em;
}
.footer-info ul {
  list-style-type: none;
}
.footer-nav {
  margin-top: 50px;
}
.footer-nav a {
  text-decoration: none;
  color: var(--color-cream);
}
@media (max-width: 768px) {
  .footer-box {
    flex-direction: column;
  }
  .footer-info {
    width: 100%;
  }
  .footer-nav {
    margin-top: 25px;
  }
}
.copy {
  margin-top: 50px;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-cream);
  opacity: 0.85;
}
.footer-nav a:hover,
.footer-info a:hover {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .copy {
    margin-bottom: 40px;
  }
}
