/* ============================================================
   カラーパレット（#343D40 / #BDC9CE / #EBE5DB / #F5F4F1）
   ============================================================ */
:root {
  --c-slate: #343d40;
  --c-blue-gray: #bdc9ce;
  --c-beige: #ebe5db;
  --c-ivory: #f5f4f1;
  --c-bg: var(--c-ivory);
  --c-bg-muted: var(--c-beige);
  --c-text: var(--c-slate);
  --c-text-muted: rgba(52, 61, 64, 0.68);
  --c-line: var(--c-blue-gray);
  --hero-cream: #f2eee6;
  --hero-pag-active: #e8c4c4;
  /* 固定ヘッダー高さ（scroll-menu の padding＋1行ナビと整合。hero の padding-top と一致） */
  --header-height: calc(env(safe-area-inset-top, 0px) + 60px);
  /* 下端波形（SVG viewBox 1920×80）— 表示高さと一致させる */
  --wave-view-w: 1920;
  --wave-view-h: 80;
  --section-bottom-wave-h: min(
    calc(100vw * var(--wave-view-h) / var(--wave-view-w)),
    80px
  );
  --wave-section-pull: 2px;
  /* ブラウザ差のサブピクセルで波形下に隙間が出るのを防ぐ（::after をわずかに下へ） */
  --wave-bottom-overlap: 4px;
  --wave-img-default: url("../img/bottom_wave.svg");
  --wave-img-about: url("../img/bottom_wave02.svg");
  --wave-img-access: url("../img/bottom_wave03.svg");
  --wave-img-reservation: url("../img/bottom_wave04.svg");
  /* メインカラム（contentsBox とヒーローコピー列で共通） */
  --layout-inner-width: 88%;
  --layout-inner-max: 1080px;
}

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Noto Sans JP",
    sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: var(--c-text);
  background-color: var(--c-bg);
  background-image: none;
}

.sp-only {
  display: none;
}

/* ページ読み込み中はコンテンツを非表示（背景画像のみ表示）
   初期状態はHTMLのインラインスタイルで制御 */

/* 下端波形付きブロックの共通土台 */
section.about,
section.room,
section.access,
section.reservation {
  position: relative;
}

section.about {
  background-color: var(--c-bg);
  padding-bottom: calc(60px + var(--section-bottom-wave-h));
}

section.room {
  background-color: var(--c-bg);
  padding-bottom: calc(80px + var(--section-bottom-wave-h));
}

section.room.section-fade {
  background-color: var(--c-beige);
}

section.access {
  background-color: var(--c-bg-muted);
  padding-bottom: calc(100px + var(--section-bottom-wave-h));
}

section.access.section-fade {
  background-color: var(--c-ivory);
}

/* 波形付きセクション同士の縦のすき間を詰める */
section + section {
  margin-top: calc(-1 * var(--wave-section-pull));
}

section.hero {
  margin-top: 0;
  position: relative;
  background-color: var(--hero-cream);
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* 左右下は 0。上だけヘッダー直下に接するよう確保（追加の隙間なし） */
  padding: 0;
  padding-top: var(--header-height);
}

/* ----- メインビジュアル（画面全体スライダー＋縦書き＋番号ページネーション） ----- */
.hero-oval {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* メインビジュアル・各セクション下端の波形（viewBox と --wave-view-* を同期） */
.hero-oval::after,
section.about::after,
section.room::after,
section.access::after,
section.reservation::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-1 * var(--wave-bottom-overlap));
  z-index: 2;
  pointer-events: none;
  width: 100%;
  aspect-ratio: var(--wave-view-w) / var(--wave-view-h);
  height: auto;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.hero-oval::after {
  background-image: var(--wave-img-default);
}

section.about::after {
  background-image: var(--wave-img-about);
}

/* aboutページのみ：セクション末尾の波形をbottom_wave03に変更 */
body.page-about section.about::after {
  background-image: var(--wave-img-access);
}

/* 下層ページ（about/room）：メインsection上部の余白 */
body.page-about section.about {
  margin-top: 24px;
}

body.page-room section.room {
  margin-top: 0;
  padding-top: calc(80px + 24px);
}

section.room::after {
  background-image: var(--wave-img-default);
}

/* roomページのみ：section.room末尾の波形はbottom_wave03を維持 */
body.page-room section.room::after {
  background-image: var(--wave-img-access);
}

section.access::after {
  background-image: var(--wave-img-access);
}

section.reservation::after {
  background-image: var(--wave-img-reservation);
}

.hero-visual {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.hero-splide {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--hero-cream);
}

.hero-splide .splide__slider {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-splide .splide__track {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-height: none;
  height: 100%;
  overflow: hidden;
  background-color: var(--hero-cream);
}

.hero-splide .splide__list,
.hero-splide .splide__slide {
  height: 100%;
}

.hero-splide .splide__slide {
  background-color: var(--hero-cream);
}

.hero-splide .splide__slide picture,
.hero-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-oval .hero-oval-overlay {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  max-height: none;
  min-width: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* 下：スライド番号帯の上に収める */
  padding: 0 env(safe-area-inset-right, 0)
    max(4.5rem, env(safe-area-inset-bottom, 0)) env(safe-area-inset-left, 0);
  pointer-events: none;
}

/* contentsBox と同じ幅のカラム内でコピーを右下に配置 */
.hero-oval-overlay__column {
  box-sizing: border-box;
  width: var(--layout-inner-width);
  max-width: var(--layout-inner-max);
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-oval-copy {
  box-sizing: border-box;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  color: #fff;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  background: none;
}

.hero-oval-copy__lead {
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  white-space: nowrap;
  text-align: right;
  width: max-content;
  max-width: 100%;
  flex-shrink: 0;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 2px 18px rgba(0, 0, 0, 0.55),
    0 4px 28px rgba(0, 0, 0, 0.4);
}

/* 本文幅に合わせる。親幅を超えない（<br /> のみ改行・行内は折り返さない） */
.hero-oval-copy__panel {
  display: block;
  box-sizing: border-box;
  width: min(100%, max-content);
  max-width: 100%;
  min-width: 0;
  padding: 0.55rem 0.7rem 0.6rem;
  border-radius: 8px;
  background: rgba(52, 61, 64, 0.4);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-oval-copy__text {
  display: block;
  font-size: clamp(0.7rem, 1.55vw, 0.8125rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  opacity: 0.92;
  white-space: nowrap;
  text-align: right;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.hero-oval-copy__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  margin-top: 0.15rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  width: 100%;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  letter-spacing: 0.12em;
  opacity: 1;
}

.hero-oval-copy__brand-en {
  font-weight: 500;
  text-transform: lowercase;
}

.hero-oval-copy__brand-ja {
  font-size: 0.9em;
  font-weight: 400;
}

/* Splide本体CSS（CDN）のページネーション表示を上書きして非表示 */
.hero-splide .splide__pagination {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }

  /* 画面下部に固定表示する予約ボタン（SPのみ） */
  .contact-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 35px;
    padding: 7px 0 0;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border-radius: 15px 15px 0 0;
    font-size: 0.875rem;
    z-index: 10020;
  }

  .contact-fix::after {
    display: none;
    content: none;
  }

  body.page-about section.about {
    margin-top: 16px;
  }

  body.page-room section.room {
    margin-top: 0;
    padding-top: calc(80px + 16px);
  }

  :root {
    --header-height: calc(env(safe-area-inset-top, 0px) + 64px);
  }

  section.hero {
    padding-top: 0;
  }

  .hero-oval .hero-oval-overlay {
    /* 下端の余白を確保 */
    padding-bottom: max(4.25rem, env(safe-area-inset-bottom, 0px));
  }

  .hero-oval-copy {
    gap: 0.3rem;
  }

  .hero-oval-copy__panel {
    padding: 0.5rem 0.6rem 0.55rem;
  }

}
.contentsBox {
  width: var(--layout-inner-width);
  max-width: var(--layout-inner-max);
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
img {
  width: 100%;
  height: auto;
}
p {
  letter-spacing: 0.125rem;
  line-height: 1.5rem;
  padding: 1rem 0;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border-top: 1px solid var(--c-line);
  border-right: none;
  border-bottom: 1px solid var(--c-line);
  border-left: none;
  color: var(--c-text);
  font-size: 1em;
}
.btn::before,
.btn::after {
  position: absolute;
  width: 1px;
  height: 140%;
  background-color: var(--c-line);
  content: "";
}
.btn::before {
  left: calc(3.1em / 5 - 1px);
}
.btn::after {
  right: calc(3.1em / 5 - 1px);
}
.btn-aria {
  margin-top: 50px;
}

/* roomページのbtn-aria内のbtnのwidthを変更 */
body.page-room .btn-aria .btn {
  width: 300px;
}

/* ================================
   ▼ ヘッダー（上部固定・常時表示・スクロール追従）
================================ */
.scroll-menu {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(245, 244, 241, 0.92);
  color: var(--c-text);
  padding: 10px 20px;
  padding-top: calc(env(safe-area-inset-top, 0px) + 10px);
  z-index: 10050;
  opacity: 1;
  pointer-events: auto;
}
.scroll-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.menu-container {
  display: flex;
  justify-content: end;
  align-items: center;
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ ハンバーガーアイコン
================================ */
.menu-toggle {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー → X アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   ▼ スライドインメニュー（全画面）
================================ */
/* スライドインメニュー（全画面） - 初期は非表示 */
.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(52, 61, 64, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.4s ease;
  z-index: 10040;
  padding: 70px 20px 80px;
  box-sizing: border-box;
}
.menu-overlay.show {
  right: 0;
  /* 固定ヘッダー（10050）より上にし、閉じるボタンがクリック可能になる */
  z-index: 10070;
}
.menu-overlay ul {
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-overlay ul li {
  margin: 8px 0;
}
.menu-overlay ul li a {
  color: var(--c-ivory);
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: bold;
  display: block;
  padding: 8px;
}
.menu-overlay ul li a.contact-fix {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  transform: none;
  writing-mode: horizontal-tb;
  letter-spacing: 0.06em;
  width: auto;
  max-width: 280px;
  height: auto;
  margin: 18px auto 0;
  padding: 14px 36px;
  text-align: center;
  z-index: auto;
  background-color: var(--c-slate);
  color: var(--c-ivory);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.menu-overlay ul li a.contact-fix::after {
  display: none;
  content: none;
}

.menu-overlay ul li a.contact-fix:hover {
  opacity: 1;
  background-color: #2a3235;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* PC用タイトル */
.menu-title-pc {
  display: block;
}

.menu-title-pc a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.menu-title-pc img {
  display: block;
  width: clamp(88px, 8.6vw, 90px);
  height: auto;
}

.menu-title-pc a:hover {
  opacity: 0.8;
}

/* PC用ナビゲーション（常時表示） */
.menu-pc {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-pc li {
  display: flex;
  align-items: center;
}
.menu-pc li a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9375rem;
  line-height: 1.25;
}

/* PCヘッダー内「ご予約」（ナビに常時表示・固定ボタンは使わない） */
.menu-pc li a.contact-fix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.2rem;
  padding: 0.55em 1.2em;
  background-color: var(--c-slate);
  color: var(--c-ivory);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 12px rgba(52, 61, 64, 0.22);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.menu-pc li a.contact-fix:hover {
  opacity: 1;
  background-color: #2a3235;
  box-shadow: 0 4px 16px rgba(52, 61, 64, 0.32);
}

.menu-pc li a.contact-fix:focus-visible {
  outline: 2px solid var(--c-slate);
  outline-offset: 3px;
}

/* ハンバーガーアイコン（SP用） */
.menu-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10060;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--c-slate);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* ハンバーガー → Xアニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 閉じるボタン（右向き矢印） */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--c-ivory);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10060;
}
.menu-close:after {
  content: "➔";
}

.scroll-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-sizing: border-box;
  min-height: var(--header-height);
  background-color: rgba(245, 244, 241, 0.92);
  z-index: 10050;
  display: flex;
  justify-content: center;
  align-items: center;
  /* ヒーローオーバーレイ（.hero-oval-overlay）と同じ左右：セーフエリアのみ */
  padding: 10px env(safe-area-inset-right, 0px) 10px
    env(safe-area-inset-left, 0px);
  padding-top: calc(env(safe-area-inset-top, 0px) + 10px);
  opacity: 1;
  pointer-events: auto;
}

/* PC用メニューコンテナ（contentsBox / ヒーローコピー列と同一インナー幅） */
.menu-pc-container {
  box-sizing: border-box;
  width: var(--layout-inner-width);
  max-width: var(--layout-inner-max);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.scroll-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===============================
   モバイル専用スタイル（〜768px）
================================= */
@media (max-width: 768px) {
  /* PCメニュー非表示 */
  .menu-pc {
    display: none;
  }

  /* ロゴはSPでも表示 */
  .menu-title-pc {
    display: block;
  }

  /* ハンバーガー表示 */
  .menu-toggle {
    display: flex;
  }

  /* モバイル固定ナビ（ハンバーガーは右端に余白を確保） */
  .scroll-menu {
    min-height: calc(env(safe-area-inset-top, 0px) + 52px);
    padding: 8px max(16px, env(safe-area-inset-right, 0px)) 8px
      max(16px, env(safe-area-inset-left, 0px));
    padding-top: calc(env(safe-area-inset-top, 0px) + 8px);
    justify-content: flex-start;
  }

  .menu-pc-container {
    width: 100%;
    max-width: none;
    padding-right: 54px;
    justify-content: flex-start;
  }

  .menu-title-pc img {
    width: 84px;
  }

  /* 関連ナビ（例：固定ボタンなど） */
  .nav-contact {
    display: block;
  }
  .scroll-menu {
    background-color: rgba(245, 244, 241, 0.96);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ===============================
   PC専用スタイル（769px以上）
   モバイル専用メニューを非表示
================================= */
@media (min-width: 769px) {
  /* ハンバーガー非表示 */
  .menu-toggle {
    display: none !important;
  }

  /* スライドインメニュー非表示 */
  .menu-overlay {
    display: none !important;
  }

  /* メインビジュアル（ヒーローコピー列）と左右位置を揃える */
  .scroll-menu {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
}

/* ================================
   ▼ その他既存スタイル
================================ */

.main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  text-shadow:
    0 0 12px rgba(52, 61, 64, 0.45),
    0 0 28px rgba(245, 244, 241, 0.35);
}
.main-title-en {
  color: var(--c-ivory);
  font-size: 5rem;
  letter-spacing: 1.25rem;
  display: inline-block;
  margin-right: -1.25rem;
}
.main-title-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ivory);
  font-size: 1.25rem;
  letter-spacing: 1.125rem;
}
.main-title-ja::before,
.main-title-ja::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--c-blue-gray);
  box-shadow: none;
}
.main-title-ja::before {
  margin-right: 1em;
}
.main-title-ja::after {
  margin-left: 0.25em;
}
@media (max-width: 768px) {
  .main-title-en {
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    margin-right: -0.5rem;
  }
  .main-title-ja {
    font-size: 1rem;
    letter-spacing: 0.5rem;
    justify-content: center;
  }
  .main-title-ja::before,
  .main-title-ja::after {
    width: 1.5em;
    height: 1px;
    background: var(--c-blue-gray);
  }
  .main-title-ja::before {
    margin-right: 1em;
  }
  .main-title-ja::after {
    margin-left: 0.5em;
  }
}

.content-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}
.content-catch-en {
  font-size: 2.5rem;
  color: var(--c-text);
  text-shadow: none;
}
.content-catch-ja {
  font-size: 1rem;
  color: var(--c-text);
  text-shadow: none;
}
.content-catch-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.125rem;
}
.content-catch-ja::before,
.content-catch-ja::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--c-line);
  box-shadow: none;
}
.content-catch-ja::before {
  margin-right: 1em;
}
.content-catch-ja::after {
  margin-left: 1em;
}
@media (max-width: 768px) {
  .content-catch-ja {
    font-size: 0.875rem;
  }
  .content-catch-en {
    font-size: 1.5rem;
  }
}
/* ================================
   ▼ aboutページコンテンツ
================================ */
.about-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.about-text {
  flex: 1;
  width: 50%;
  letter-spacing: 0.2rem;
  line-height: 2;
}

.about-text p {
  padding-bottom: 25px;
  font-size: 1rem;
}

.page-about-bg {
  flex: 1;
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(52, 61, 64, 0.1);
}

.page-about-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* TOPページ用のabout-galleryスタイル（既存のまま） */
.about-content .about-gallery {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.about-content .about-gallery img {
  width: 100%;
  border-radius: 8px;
}

/* aboutページ本文：左テキスト / 右画像2枚（縦並び） */
body.page-about .about-content {
  align-items: flex-start;
}

body.page-about .about-media-column {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.page-about .about-media-column .page-about-bg {
  width: 100%;
}

/* ギャラリーセクション（aboutページ専用） */
.about-gallery-section {
  margin-top: 80px;
  margin-bottom: 60px;
}

.about-gallery-section .about-gallery {
  width: 100%;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.about-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
}

.about-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(52, 61, 64, 0.15);
}

.about-gallery-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-top: 20px;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  .about-text {
    width: 100%;
    padding: 0;
  }

  .page-about-bg {
    width: 100%;
  }

  .about-content .about-gallery {
    width: 100%;
  }

  body.page-about .about-media-column {
    width: 100%;
    gap: 16px;
  }

  .about-gallery-section {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .about-text p {
    padding-bottom: 20px;
    font-size: 0.9375rem;
  }
}

.slider {
  overflow: hidden;
  width: 100%;
}

.slider .slide-track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scroll 30s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.slider .slide-track li {
  flex-shrink: 0;
  width: 350px;
  padding: 30px 5px;
}

.slider .slide-track img {
  width: 100%;
  display: block;
}

/* 横スクロールアニメーション */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ▼ スマホ（768px以下）用：速度を15秒に短縮 */
@media (max-width: 768px) {
  .slider .slide-track {
    animation: scroll 15s linear infinite;
  }
  .slider .slide-track li {
    flex-shrink: 0;
    width: 150px;
    padding: 30px 5px;
  }
  .about-content {
    flex-direction: column-reverse;
  }
}

.room-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 0;
}
.room-text {
  flex: 1;
  width: 50%;
  letter-spacing: 0.15rem;
}
.room-text dl dt {
  line-height: 2;
  padding: 25px 0 5px;
}
.room-text dl dt:first-child {
  padding: 0 0 5px 0;
}
.room-text dl dd span,
.text-note {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding-top: 5px;
}
.room-text ul li {
  list-style-position: inside;
}

/* roomページの画像エリア（aboutページのpage-about-bgと同様） */
.page-room-bg {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-room-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(52, 61, 64, 0.1);
}

.room-gallery {
  width: 100%;
  margin-bottom: 0;
}

/* TOPページのroom-content内のgalleryは50%（TOPページのみ） */
.room-content .room-gallery {
  width: 50%;
}

.room-gallery-section {
  margin-top: 50px;
  margin-bottom: 40px;
}

.room-gallery-title {
  margin-bottom: 20px;
}

/* ご宿泊予約はこちらの下にスペース（2室目以降の見出し） */
.room-gallery + .room-gallery-title {
  margin-top: 40px;
}

.room-gallery-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 20px;
}

.room-gallery-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
}
.room-gallery-note-sub {
  margin-top: 0;
  line-height: 1.7;
}

.room-gallery-reserve {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

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

/* TOPページのroomセクション内のgalleryは3列 */
/* TOPページのroom-content内のgalleryは3列（TOPページのみ） */
.room-content .room-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* roomページのroom-gallery-section内のgalleryは4列 */
.room-gallery-section .room-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.room-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
}

.room-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(52, 61, 64, 0.15);
}
.room-img {
  margin-top: 50px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-bg {
  display: none;
}
.room-bg-imgarea {
  width: 100%;
}
.room-bg-img {
  width: 100%;
}

@media (max-width: 768px) {
  .room-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
  }
  .room-text {
    width: 100%;
  }

  .page-room-bg {
    width: 100%;
  }

  .room-gallery {
    width: 100%;
    margin-bottom: 0;
  }

  /* TOPページのroom-content内のgalleryもスマホでは100% */
  .room-content .room-gallery {
    width: 100%;
  }

  .room-gallery-section {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .room-gallery-title h3 {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
  .room-gallery-reserve {
    gap: 12px;
    margin-top: 16px;
  }
  .room-gallery-note-sub {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .room-img {
    height: auto;
  }
  .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
  }

  .room-content .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* roomページのroom-gallery-section内のgalleryもスマホでは2列 */
  .room-gallery-section .room-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section.room {
    padding-bottom: calc(80px + var(--section-bottom-wave-h));
  }
  .room-bg {
    width: 100%;
  }
  .reservation-container {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 20px;
  }

  .reservation-media__collage {
    min-height: 360px;
    max-width: min(100%, 500px);
    margin-left: auto;
    margin-right: auto;
  }

  .reservation-media__item--1 {
    width: 76%;
    left: -8%;
    top: 8%;
  }

  .reservation-media__item--2 {
    width: 62%;
    right: -4%;
    top: -7%;
  }

  .reservation-media__item--3 {
    width: 58%;
    left: -3%;
    bottom: -8%;
  }

  .reservation-media__item--4 {
    width: 50%;
    right: 0;
    bottom: -6%;
  }

  .reservation-copy {
    align-items: center;
  }

  .reservation-text {
    text-align: center;
  }

  section.reservation .reservation-copy .btn-reservation a {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-reservation {
    margin-bottom: 20px;
  }
  .btn-reservation a {
    max-width: 100%;
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  .room-gallery .btn-reservation {
    margin-top: 12px;
  }
  .room-gallery .btn-reservation a {
    padding: 10px 45px 10px 18px;
    font-size: 0.85rem;
  }
  .room-gallery .btn-reservation a:after {
    right: 20px;
  }
}

/* モーダルスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(52, 61, 64, 0.88);
  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: 10001;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@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: 10001;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

.access-text h3 {
  padding-bottom: 5px;
}
.access-text h3 span {
  font-size: 0.875rem;
}
.access-text p {
  padding-bottom: 25px;
}

.access-text-ad {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 50px 0px;
  margin-bottom: 50px;
}
.access-text-ad h3 {
  width: 30%;
  max-width: 30%;
}
@media (max-width: 768px) {
  section.access {
    padding-bottom: calc(50px + var(--section-bottom-wave-h));
  }

  .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-container {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.movie-title {
  margin: 44px 0 18px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(52, 61, 64, 0.24);
  color: var(--c-text);
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 1.6;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  .movie-title {
    margin: 28px 0 14px;
    padding: 0 0 6px;
    font-size: 0.9375rem;
    letter-spacing: 0.02rem;
  }
}

.reservation-container {
  box-sizing: border-box;
  width: var(--layout-inner-width);
  max-width: var(--layout-inner-max);
  margin-left: auto;
  margin-right: auto;
  min-height: 340px;
  padding: 36px 20px;
  overflow: visible;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.reservation-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-width: 0;
}

.reservation-media {
  position: relative;
  min-width: 0;
  overflow: visible;
  align-self: center;
}

/* 4枚をずらして重ねるコラージュ */
.reservation-media__collage {
  position: relative;
  width: 100%;
  min-height: 300px;
  margin: 0;
  padding: 0;
}

.reservation-media__item {
  position: absolute;
  margin: 0;
  padding: 5px;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(52, 61, 64, 0.45);
  box-shadow:
    0 10px 24px rgba(52, 61, 64, 0.14),
    0 2px 8px rgba(52, 61, 64, 0.08);
}

.reservation-media__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reservation-media__item--1 {
  width: 34%;
  aspect-ratio: 4 / 3;
  left: 6%;
  top: -8%;
  z-index: 6;
  transform: rotate(-0.8deg);
}

.reservation-media__item--2 {
  width: 70%;
  aspect-ratio: 4 / 3;
  right: 4%;
  top: 4%;
  z-index: 2;
  transform: rotate(0.4deg);
}

.reservation-media__item--3 {
  width: 33%;
  aspect-ratio: 1;
  right: 0;
  top: -12%;
  z-index: 4;
  transform: rotate(-0.3deg);
}

.reservation-media__item--4 {
  width: 35%;
  aspect-ratio: 4 / 3;
  left: 2%;
  bottom: -16%;
  z-index: 3;
  transform: rotate(0.4deg);
}

@media (prefers-reduced-motion: reduce) {
  .reservation-media__item--1,
  .reservation-media__item--2,
  .reservation-media__item--3,
  .reservation-media__item--4 {
    transform: none;
  }
}

.reservation-text {
  color: var(--c-text);
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .reservation-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .reservation-media {
    display: none;
  }

  .reservation-text {
    font-size: 1.2rem;
    margin-bottom: 0;
    letter-spacing: 0.05em;
  }
}

.reservation {
  padding-top: 0;
  padding-bottom: var(--section-bottom-wave-h);
  background-color: var(--c-blue-gray);
  overflow: visible;
}
.btn-reservation {
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0 20px;
}
.btn-reservation a {
  background: var(--c-slate);
  border: 1px solid var(--c-slate);
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 380px;
  padding: 10px 50px;
  color: var(--c-ivory);
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.btn-reservation a:hover {
  background: var(--c-ivory);
  color: var(--c-text);
}
.btn-reservation a:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid var(--c-ivory);
  border-right: 3px solid var(--c-ivory);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 30px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

/* 予約ブロック：左カラムのボタンは中央寄せ指定を打ち消す */
section.reservation .reservation-copy .btn-reservation {
  margin-bottom: 0;
  padding: 0;
}

section.reservation .reservation-copy .btn-reservation a {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 768px) {
  section.reservation .reservation-copy {
    align-items: center;
    text-align: center;
  }

  section.reservation .reservation-copy .reservation-text {
    text-align: center;
  }

  section.reservation .reservation-copy .btn-reservation a {
    margin-left: auto;
    margin-right: auto;
  }
}

.room-gallery .btn-reservation a {
  padding-right: 50px;
}
.room-gallery .btn-reservation a:after {
  right: 25px;
}
.btn-reservation a:hover:after {
  border-color: var(--c-slate);
}

/************************** 
フッター 
***************************/
footer {
  background: var(--c-slate);
}
footer ul li {
  list-style-type: none;
  padding: 0.25em;
}
.footer-logo-container {
  margin-bottom: 20px;
}
.footer-logo-container a {
  display: inline-flex;
  align-items: center;
  color: var(--c-ivory);
}
.footer-logo-container img {
  display: block;
  width: clamp(88px, 8.6vw, 90px);
  height: auto;
}
.footer-box {
  color: var(--c-ivory);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: space-between;
}

.footer-info {
  width: 30%;
}
.footer-info ul {
  list-style-type: none;
}
.footer-nav {
  margin-top: 50px;
}
.footer-nav a {
  text-decoration: none;
  color: var(--c-ivory);
}
@media (max-width: 768px) {
  .footer-logo-container img {
    width: 84px;
  }

  .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: rgba(245, 244, 241, 0.75);
}
@media (max-width: 768px) {
  .copy {
    margin-bottom: 40px;
  }
}

/* ================================
   ▼ ページ専用ヒーロー画像セクション
================================ */
.page-about-img {
  position: relative;
  width: 100%;
  height: calc(50vh - var(--header-height));
  min-height: calc(400px - var(--header-height));
  margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--c-slate);
  background-image: none;
  overflow: hidden;
  text-align: center;
}

/* roomページ用 */
body.page-room .page-about-img {
  position: relative;
  background-color: var(--c-slate);
  background-image: url("../img/img11.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.page-room .page-about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(52, 61, 64, 0.58),
    rgba(52, 61, 64, 0.46)
  );
  z-index: 0;
}

body.page-room .page-about-img .about-catch-en,
body.page-room .page-about-img .about-catch-ja {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* aboutページ用 */
body.page-about .page-about-img {
  position: relative;
  background-color: var(--c-slate);
  background-image: url("../img/img01.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.page-about .page-about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(52, 61, 64, 0.62),
    rgba(52, 61, 64, 0.5)
  );
  z-index: 0;
}

body.page-about .page-about-img .about-catch-en,
body.page-about .page-about-img .about-catch-ja {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* accessページ用 */
body.page-access .page-about-img {
  position: relative;
  background-color: var(--c-slate);
  background-image: url("../img/img01.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.page-access .page-about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(52, 61, 64, 0.62),
    rgba(52, 61, 64, 0.5)
  );
  z-index: 0;
}

body.page-access .page-about-img .access-catch-en,
body.page-access .page-about-img .access-catch-ja {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.page-about-img .about-catch-en,
.page-about-img .access-catch-en {
  font-size: 3.5rem;
  color: var(--c-ivory);
  font-weight: 400;
  letter-spacing: 0.5rem;
  margin-bottom: 30px;
  text-shadow: none;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.page-about-img .about-catch-ja,
.page-about-img .access-catch-ja {
  font-size: 1.25rem;
  color: var(--c-ivory);
  font-weight: 400;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.page-about-img .about-catch-ja::before,
.page-about-img .about-catch-ja::after,
.page-about-img .access-catch-ja::before,
.page-about-img .access-catch-ja::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--c-blue-gray);
  box-shadow: none;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

.page-about-img .about-catch-ja::before,
.page-about-img .access-catch-ja::before {
  margin-right: 1.5em;
}

.page-about-img .about-catch-ja::after,
.page-about-img .access-catch-ja::after {
  margin-left: 1.5em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .page-about-img {
    height: calc(40vh - var(--header-height));
    min-height: calc(350px - var(--header-height));
    margin-top: var(--header-height);
    background-attachment: scroll;
  }

  body.page-room .page-about-img,
  body.page-about .page-about-img,
  body.page-access .page-about-img {
    margin-top: calc(var(--header-height) + 0);
  }

  .page-about-img .about-catch-en,
  .page-about-img .access-catch-en {
    font-size: 2rem;
    letter-spacing: 0.3rem;
    margin-bottom: 20px;
  }

  .page-about-img .about-catch-ja,
  .page-about-img .access-catch-ja {
    font-size: 1rem;
    letter-spacing: 0.15rem;
  }

  .page-about-img .about-catch-ja::before,
  .page-about-img .about-catch-ja::after,
  .page-about-img .access-catch-ja::before,
  .page-about-img .access-catch-ja::after {
    width: 50px;
  }

  .page-about-img .about-catch-ja::before,
  .page-about-img .access-catch-ja::before {
    margin-right: 1em;
  }

  .page-about-img .about-catch-ja::after,
  .page-about-img .access-catch-ja::after {
    margin-left: 1em;
  }
}
