/* ============================================================
  CSS RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #e8dcc8;
  background-color: #111111;
}

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

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

ul,
ol {
  list-style: none;
}

/* ============================================================
  CSS CUSTOM PROPERTIES（デザイントークン）
============================================================ */
:root {
  /* Header Colors */
  --color-header-bg:    #111111;          /* ヘッダー背景：ほぼ黒 */
  --color-header-bg-scroll: #0d0d0d;     /* スクロール後さらに深く */
  --color-gold:         #c9a84c;          /* 金色アクセント */
  --color-gold-hover:   #e0be6a;          /* 金色ホバー */
  --color-nav-text:     #e8dcc8;          /* ナビテキスト：温かみのある白 */
  --color-nav-hover:    #c9a84c;          /* ナビホバー色 */
  --color-border-dark:  rgba(201,168,76,0.2); /* ダーク系ボーダー（金の透過） */

  /* Body Colors（後続セクション用） */
  --color-bg:           #111111;
  --color-bg-section:   #1a1a1a;
  --color-bg-alt:       #0d0d0d;
  --color-text:         #e8dcc8;
  --color-text-muted:   #a09070;
  --color-white:        #ffffff;

  /* Emblem Colors */
  --color-emblem-bg:    #1e4030;          /* エンブレム盾：深緑 */
  --color-emblem-leaf:  #4a9a6a;          /* 葉：明るい緑 */

  /* Typography */
  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --header-height:    72px;
  --header-height-sp: 60px;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================================
  UTILITY
============================================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* スクロールフェードイン用 */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
  SITE HEADER / GLOBAL NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border-dark);
  transition: background-color var(--transition-base),
              box-shadow var(--transition-base);
}

.site-header.scrolled {
  background-color: var(--color-header-bg-scroll);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
  LOGO
============================================================ */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.logo-emblem {
  width: 40px;
  height: 46px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.25));
  transition: filter var(--transition-base);
}

.logo-link:hover .logo-emblem {
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.5));
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  transition: color var(--transition-base);
}

.logo-link:hover .logo-text {
  color: var(--color-gold-hover);
}

/* ============================================================
  GLOBAL NAV（PC）
============================================================ */
.global-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-nav-text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color var(--transition-base);
}

/* アンダーラインアニメーション */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* ご予約ボタン（ピル型・ゴールド） */
.nav-link--reserve {
  padding: 11px 28px;
  background-color: var(--color-gold);
  color: #1a1208;
  border-radius: 100px;           /* ピル形状 */
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 1.4rem;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.nav-link--reserve::after {
  display: none;
}

.nav-link--reserve:hover {
  background-color: var(--color-gold-hover);
  color: #0d0d0d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

/* ============================================================
  HAMBURGER BUTTON
============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background-color: var(--color-gold);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ハンバーガー → × 変形 */
.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
  DRAWER NAV（SP）
============================================================ */
.drawer-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background-color: #161616;
  padding: calc(var(--header-height-sp) + 48px) 40px 48px;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1050;
  overflow-y: auto;
  border-left: 1px solid var(--color-border-dark);
}

.drawer-nav.is-open {
  right: 0;
}

.drawer-list {
  display: flex;
  flex-direction: column;
}

.drawer-item {
  border-bottom: 1px solid var(--color-border-dark);
}

.drawer-item:first-child {
  border-top: 1px solid var(--color-border-dark);
}

.drawer-link {
  display: block;
  padding: 20px 4px;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-nav-text);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.drawer-link:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.drawer-link--reserve {
  display: block;
  margin-top: 36px;
  padding: 16px 0;
  background-color: var(--color-gold);
  color: #1a1208 !important;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  border: none;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.drawer-link--reserve:hover {
  background-color: var(--color-gold-hover);
  padding-left: 0;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

/* ============================================================
  OVERLAY
============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

/* ============================================================
  MAIN CONTENT OFFSET（fixed header 分）
============================================================ */
main {
  padding-top: 0; /* Hero は 100dvh で自己完結するため 0 */
}

/* ============================================================
  HERO SECTION
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* 背景画像（Unsplash フリー素材：和食・暗い食卓） */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/7d71212ef417cde73d6f096623ada2d3.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: hero-zoom 12s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0);  }
}

/* ダークオーバーレイ（中央を薄く、周囲を濃く） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* ---- 装飾縦線 ---- */
.hero-line {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201, 168, 76, 0.5) 20%,
    rgba(201, 168, 76, 0.5) 80%,
    transparent 100%
  );
  z-index: 2;
  animation: hero-fade-in 1.8s ease 0.5s both;
}

.hero-line--left  { left: 9%; }
.hero-line--right { right: 9%; }

/* ---- 右サイド縦書きテキスト ---- */
.hero-side-text {
  position: absolute;
  right: 5.5%;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  opacity: 0.75;
  z-index: 3;
  animation: hero-fade-in 1.8s ease 1.2s both;
}

/* ---- メインコンテンツ ---- */
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
}

/* タグラベル */
.hero-tag {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--color-gold);
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 28px;
  animation: hero-slide-up 1s ease 0.3s both;
}

/* メインタイトル */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(6.4rem, 12vw, 11.2rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.1;
  color: var(--color-gold);
  text-shadow:
    0 0 40px rgba(201, 168, 76, 0.4),
    0 2px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
  animation: hero-slide-up 1s ease 0.55s both;
}

/* サブタイトル */
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #f0e8d8;
  margin-bottom: 16px;
  animation: hero-slide-up 1s ease 0.75s both;
}

/* キーワードタグ */
.hero-keywords {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(232, 220, 200, 0.7);
  margin-bottom: 48px;
  animation: hero-slide-up 1s ease 0.9s both;
}

/* CTA ボタン */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 52px;
  background-color: var(--color-gold);
  color: #1a1208;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition:
    background-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
  animation: hero-slide-up 1s ease 1.1s both;
}

.hero-cta-arrow {
  font-size: 1.4rem;
  transition: transform var(--transition-base);
}

.hero-cta:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* ---- スクロールインジケーター ---- */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: hero-fade-in 1s ease 1.8s both;
}

.hero-scroll-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: rgba(201, 168, 76, 0.8);
}

.hero-scroll-chevron {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(201, 168, 76, 0.8);
  border-bottom: 1px solid rgba(201, 168, 76, 0.8);
  transform: rotate(45deg);
  animation: hero-bounce 1.8s ease-in-out infinite;
}

/* ---- Keyframes ---- */
@keyframes hero-slide-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.8; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.4; }
}

/* ============================================================
  RESPONSIVE
============================================================ */

/* Large tablet */
@media (max-width: 1100px) {
  .nav-list {
    gap: 20px;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-link--reserve {
    padding: 10px 22px;
    font-size: 1.3rem;
  }

  .header-inner {
    padding: 0 28px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .nav-list {
    gap: 16px;
  }
}

/* SP：ハンバーガー切替 */
@media (max-width: 768px) {
  .site-header {
    height: var(--header-height-sp);
  }

  .global-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    height: var(--header-height-sp);
    padding: 0 20px;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .logo-emblem {
    width: 34px;
    height: 40px;
  }

  .container {
    padding: 0 20px;
  }

  /* Hero SP */
  .hero-line--left  { left: 4%; }
  .hero-line--right { right: 4%; }

  .hero-side-text {
    display: none;
  }

  .hero-tag {
    font-size: 1.1rem;
    padding: 7px 16px;
    letter-spacing: 0.12em;
  }

  .hero-subtitle {
    letter-spacing: 0.12em;
  }

  .hero-keywords {
    letter-spacing: 0.1em;
  }

  .hero-cta {
    padding: 16px 40px;
    font-size: 1.5rem;
  }
}

/* Tablet Hero 調整 */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero-line--left  { left: 6%; }
  .hero-line--right { right: 6%; }
}

/* ============================================================
  KODAWARI SECTION
============================================================ */
.kodawari {
  background-color: #1b3d2a;  /* 深緑 */
  padding: 100px 0 110px;
  position: relative;
  /* 微細なテクスチャ感 */
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.015) 0%, transparent 50%);
}

/* ---- セクションヘッダー ---- */
.section-head {
  text-align: center;
  margin-bottom: 72px;
}

/* アイブロウ（装飾ライン付きラベル） */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background-color: var(--color-gold);
  opacity: 0.6;
}

/* セクションメインタイトル */
.section-title-main {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #f0e8d8;
  margin-bottom: 20px;
}

/* セクション説明文 */
.section-desc {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(232, 220, 200, 0.65);
  line-height: 1.9;
}

/* ---- 3カラムグリッド ---- */
.kodawari-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---- カード ---- */
.kodawari-card {
  background-color: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  padding: 44px 36px 48px;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.kodawari-card:hover {
  background-color: rgba(255, 255, 255, 0.085);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

/* アイコン円 */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--color-gold);
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.kodawari-card:hover .card-icon {
  background-color: rgba(201, 168, 76, 0.25);
  border-color: rgba(201, 168, 76, 0.6);
}

/* カードタイトル */
.card-title {
  font-family: var(--font-serif);
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #f0e8d8;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* カードテキスト */
.card-text {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(220, 208, 188, 0.75);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .kodawari-grid {
    gap: 20px;
  }

  .kodawari-card {
    padding: 36px 28px 40px;
  }
}

@media (max-width: 768px) {
  .kodawari {
    padding: 72px 0 80px;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .kodawari-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kodawari-card {
    padding: 36px 28px 40px;
  }

  .section-eyebrow {
    font-size: 1.2rem;
  }

  .eyebrow-line {
    width: 32px;
  }
}

/* ============================================================
  COURSE SECTION
============================================================ */
.course {
  background-color: #111111;
  /* ドットグリッドテクスチャ（+パターン） */
  background-image:
    linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 100px 0 110px;
}

/* ---- セクションヘッダ（左寄せ） ---- */
.course-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.course-label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.course-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #f0e8d8;
  margin-bottom: 20px;
}

.course-desc {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(220, 208, 188, 0.65);
}

/* ---- 3カラムグリッド ---- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- カード ---- */
.course-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow),
    border-color var(--transition-base);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.2);
}

/* 画像領域 */
.course-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card:hover .course-card-img img {
  transform: scale(1.06);
}

/* 本文領域 */
.course-card-body {
  padding: 32px 28px 36px;
}

.course-card-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #f0e8d8;
  margin-bottom: 6px;
}

.course-card-sub {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.8);
  margin-bottom: 20px;
}

.course-card-price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.price-note {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(201,168,76,0.65);
  letter-spacing: 0.05em;
  margin-left: 4px;
}

.course-card-text {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(220,208,188,0.65);
  margin-bottom: 24px;
}

/* 提供内容トグル */
.course-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  transition: opacity var(--transition-base);
}

.course-toggle:hover {
  opacity: 0.75;
}

.toggle-icon {
  display: inline-block;
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  line-height: 1;
}

.course-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

/* アコーディオン詳細 */
.course-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
}

.course-detail.is-open {
  max-height: 400px;
  padding-top: 20px;
}

.course-detail-list {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-detail-list li {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(220,208,188,0.7);
  padding-left: 14px;
  position: relative;
}

.course-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 1px;
  background-color: var(--color-gold);
  opacity: 0.6;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .course-grid {
    gap: 16px;
  }

  .course-card-body {
    padding: 24px 20px 28px;
  }
}

@media (max-width: 768px) {
  .course {
    padding: 72px 0 80px;
  }

  .course-head {
    margin-bottom: 48px;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-card-img {
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
  REASON SECTION
============================================================ */
.reason {
  background-color: #1b3d2a;
  padding: 100px 0 110px;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.015) 0%, transparent 50%);
}

/* ---- セクションヘッダー（左寄せ） ---- */
.reason-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.reason-label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.reason-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #f0e8d8;
}

/* ---- 統計バー ---- */
.reason-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 40px 0;
  margin-bottom: 72px;
}

.stats-item {
  flex: 1;
  text-align: center;
}

.stats-number {
  font-family: var(--font-serif);
  font-size: clamp(4.0rem, 6vw, 6.4rem);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.stats-label {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(220, 208, 188, 0.65);
}

.stats-divider {
  width: 1px;
  height: 72px;
  background: rgba(201,168,76,0.3);
  flex-shrink: 0;
}

/* ---- 2×2 アイテムグリッド ---- */
.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px 80px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* アイコン円 */
.reason-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.reason-icon svg {
  width: 24px;
  height: 24px;
}

.reason-item:hover .reason-icon {
  background-color: rgba(201,168,76,0.22);
  border-color: rgba(201,168,76,0.55);
}

.reason-body {
  flex: 1;
  padding-top: 4px;
}

.reason-item-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #f0e8d8;
  margin-bottom: 14px;
  line-height: 1.4;
}

.reason-item-text {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(220,208,188,0.65);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .reason-grid {
    gap: 44px 48px;
  }
}

@media (max-width: 768px) {
  .reason {
    padding: 72px 0 80px;
  }

  .reason-head {
    margin-bottom: 44px;
  }

  .reason-stats {
    padding: 32px 0;
    margin-bottom: 52px;
  }

  .stats-number {
    font-size: 3.6rem;
  }

  .stats-label {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .stats-divider {
    height: 52px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
  INTERIOR SECTION
============================================================ */
.interior {
  background-color: #111111;
  padding: 100px 0 110px;
}

/* ---- セクションヘッダー（左寄せ） ---- */
.interior-head {
  max-width: 600px;
  margin-bottom: 56px;
}

.interior-label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.interior-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 4.0rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #f0e8d8;
  margin-bottom: 16px;
}

.interior-desc {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: rgba(220, 208, 188, 0.6);
}

/* ---- 2×2 フォトグリッド ---- */
.interior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- 各写真アイテム ---- */
.interior-item {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.interior-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.interior-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.interior-item:hover .interior-img-wrap img {
  transform: scale(1.06);
}

/* ダークオーバーレイ（下部グラデーション） */
.interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.68) 100%
  );
  transition: opacity var(--transition-base);
}

.interior-item:hover .interior-overlay {
  opacity: 0.8;
}

/* キャプション（左下） */
.interior-caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #f0e8d8;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  z-index: 2;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .interior {
    padding: 72px 0 80px;
  }

  .interior-head {
    margin-bottom: 40px;
  }

  .interior-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .interior-img-wrap {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .interior-grid {
    gap: 12px;
  }
}

/* ============================================================
  VOICE SECTION
============================================================ */
.voice {
  background-color: #f0ebe3;   /* 明るいベージュ */
  padding: 100px 0 110px;
}

/* ---- セクションヘッダー ---- */
.voice-head {
  margin-bottom: 64px;
}

/* ダークグリーン ピル型タグ */
.voice-tag {
  display: inline-block;
  padding: 6px 18px;
  background-color: #1b3d2a;
  color: #f0e8d8;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.voice-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.55;
  color: #1a1a1a;
}

/* ---- 2×3 カードグリッド ---- */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---- カード ---- */
.voice-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 36px 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

/* カードヘッダー（アバター＋名前） */
.voice-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* アバター円 */
.voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1b3d2a;
  color: #c9a84c;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.voice-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.voice-usage {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #888;
}

/* レビューテキスト */
.voice-text {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: #4a4a4a;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .voice {
    padding: 72px 0 80px;
  }

  .voice-head {
    margin-bottom: 44px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .voice-card {
    padding: 28px 24px 32px;
  }
}

/* ============================================================
  FAQ SECTION
============================================================ */
.faq {
  background-color: #111111;
  padding: 100px 0 110px;
}

/* ---- セクションヘッダー（中央揃え） ---- */
.faq-head {
  text-align: center;
  margin-bottom: 64px;
}

.faq-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: clamp(3.0rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #f0e8d8;
  margin-bottom: 16px;
}

.faq-desc {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(220, 208, 188, 0.55);
}

/* ---- FAQリスト ---- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- 各アイテム ---- */
.faq-item {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(201,168,76,0.3);
}

/* 質問行 */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-base);
}

.faq-question:hover {
  background-color: rgba(255,255,255,0.03);
}

.faq-q-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #e8dcc8;
  line-height: 1.6;
}

/* シェブロン（∨） */
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  margin-left: auto;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 1.5px;
  background-color: rgba(201,168,76,0.8);
  border-radius: 1px;
  transition: transform var(--transition-base);
}

.faq-chevron::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
}

/* 開いた状態 */
.faq-question[aria-expanded="true"] .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

/* 回答エリア */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-answer.is-open {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: rgba(220, 208, 188, 0.65);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .faq {
    padding: 72px 0 80px;
  }

  .faq-head {
    margin-bottom: 44px;
  }

  .faq-question {
    padding: 20px 20px;
    gap: 12px;
  }

  .faq-q-text {
    font-size: 1.4rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer.is-open {
    padding: 0 20px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .voice-card {
    padding: 28px 24px 32px;
  }
}

/* ============================================================
  CONTACT / RESERVE SECTION
============================================================ */
.contact {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/f31c71bcb2dd8c6b1c5d17b2d1ae4819%20(1).jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.03);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.88), rgba(10, 8, 6, 0.8));
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.contact-head {
  text-align: center;
  margin-bottom: 34px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(4.0rem, 6.5vw, 6.0rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #f0e8d8;
  margin-bottom: 8px;
}

.contact-desc {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(240, 232, 216, 0.88);
  margin-bottom: 6px;
}

.contact-note {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.reserve-form {
  max-width: 620px;
  margin: 0 auto;
  padding: 38px 38px 34px;
  border-radius: 8px;
  background: rgba(24, 24, 24, 0.72);
  border: 1px solid rgba(201, 168, 76, 0.22);
  backdrop-filter: blur(3px);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: rgba(240, 232, 216, 0.9);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 5px;
  background: rgba(10, 10, 10, 0.68);
  color: rgba(240, 232, 216, 0.95);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 14px 14px;
  appearance: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 232, 216, 0.35);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(201,168,76,0.85) 50%),
    linear-gradient(135deg, rgba(201,168,76,0.85) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% + 1px), calc(100% - 11px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.8);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}

.form-help {
  margin-top: 7px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: rgba(240, 232, 216, 0.4);
}

.reserve-submit {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  border: none;
  border-radius: 999px;
  padding: 16px 16px;
  background-color: var(--color-gold);
  color: #16120c;
  font-family: var(--font-serif);
  font-size: 2.0rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.reserve-submit:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

.contact-tel {
  margin-top: 26px;
  text-align: center;
}

.contact-tel p {
  font-size: 1.3rem;
  color: rgba(240, 232, 216, 0.68);
  margin-bottom: 8px;
}

.contact-tel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  color: var(--color-gold);
}

.contact-tel a::before {
  content: '✆';
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .contact {
    padding: 72px 0 78px;
  }

  .contact-title {
    font-size: 4.6rem;
  }

  .contact-desc {
    font-size: 1.5rem;
  }

  .reserve-form {
    max-width: 100%;
    padding: 26px 18px 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1.4rem;
    padding: 12px 12px;
  }

  .form-group textarea {
    min-height: 110px;
  }

  .contact-tel a {
    font-size: 2.2rem;
  }
}

/* ============================================================
  FOOTER
============================================================ */
.site-footer {
  background-color: #0d0d0d;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-top {
  padding: 78px 0 64px;
}

.footer-brand {
  max-width: 620px;
  margin-bottom: 56px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-emblem {
  width: 54px;
  height: 62px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.footer-summary {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: rgba(232, 220, 200, 0.62);
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 0.7fr;
  gap: 36px;
}

.footer-block h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.footer-block p {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(232, 220, 200, 0.68);
}

.footer-sns {
  display: flex;
  gap: 12px;
  padding-top: 4px;
}

.sns-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.55);
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.sns-icon:hover {
  background-color: rgba(201, 168, 76, 0.14);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 26px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.copyright {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: rgba(232, 220, 200, 0.5);
}

.footer-legal {
  display: flex;
  gap: 26px;
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: rgba(232, 220, 200, 0.5);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

@media (max-width: 1200px) {
  .footer-logo-text {
    font-size: 4.2rem;
  }

  .footer-summary {
    font-size: 1.5rem;
  }

  .footer-block h3 {
    font-size: 3.0rem;
  }

  .footer-block p {
    font-size: 1.5rem;
  }
}

@media (max-width: 900px) {
  .footer-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .footer-summary {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 64px 0 48px;
  }

  .footer-brand {
    margin-bottom: 44px;
  }

  .footer-logo-text {
    font-size: 3.2rem;
  }

  .footer-summary {
    font-size: 1.6rem;
    line-height: 1.75;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-block h3 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }

  .footer-block p {
    font-size: 1.5rem;
  }

  .footer-bottom {
    padding: 18px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .copyright,
  .footer-legal a {
    font-size: 1.3rem;
  }
}
