/* =============================================
   ラビットお出かけサポート 共通スタイル v2
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* メインカラー */
  --c-primary: #3B7DC9;
  --c-primary-dark: #2E6FB8;
  --c-primary-soft: #E8F2FB;
  --c-primary-pale: #F2F8FE;

  /* アクセント */
  --c-orange: #F5A623;
  --c-orange-soft: #FFE9C7;
  --c-orange-pale: #FFF6E5;
  --c-yellow: #FFD56B;
  --c-yellow-soft: #FFF3CC;
  --c-pink: #F08FB9;
  --c-pink-soft: #FFE3EE;
  --c-pink-pale: #FFF5FA;
  --c-green: #6BCB77;
  --c-green-soft: #DCF2DE;
  --c-purple: #9B7BC9;
  --c-purple-soft: #ECE3F7;
  --c-mint: #4ECDC4;
  --c-mint-soft: #D6F5F2;
  --c-line: #06C755;

  /* テキスト */
  --c-text: #2A3B4D;
  --c-text-mid: #555E6B;
  --c-text-light: #7D8898;
  --c-text-soft: #B0B8C4;

  /* 背景 */
  --c-bg: #FFFFFF;
  --c-bg-cream: #FFFDF8;
  --c-bg-soft: #F7FBFF;
  --c-border: #E5EEF7;
  --c-border-soft: #F0F5FA;

  /* ゴールド(高級感アクセント) */
  --c-gold: #C9A961;
  --c-gold-light: #E0C97F;
  --c-gold-dark: #A88A47;
  --grad-gold: linear-gradient(135deg, #E0C97F 0%, #C9A961 50%, #A88A47 100%);

  /* ステータス */
  --c-success: var(--c-green);

  /* 旧変数名互換 */
  --color-primary: var(--c-primary);
  --color-primary-dark: var(--c-primary-dark);
  --color-primary-light: var(--c-primary-soft);
  --color-accent-orange: var(--c-orange);
  --color-accent-yellow: var(--c-yellow);
  --color-accent-pink: var(--c-pink);
  --color-text: var(--c-text);
  --color-text-light: var(--c-text-light);
  --color-bg: var(--c-bg);
  --color-bg-soft: var(--c-bg-soft);
  --color-border: var(--c-border);
  --color-success: var(--c-green);

  /* 形状 */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-soft: 0 4px 16px rgba(59, 125, 201, 0.08);
  --shadow-card: 0 6px 24px rgba(59, 125, 201, 0.10);
  --shadow-hover: 0 12px 32px rgba(59, 125, 201, 0.18);
  --shadow-warm: 0 6px 24px rgba(245, 166, 35, 0.18);
  --shadow-pink: 0 6px 24px rgba(240, 143, 185, 0.18);

  /* グラデーション */
  --grad-primary: linear-gradient(135deg, #3B7DC9 0%, #5BA3E0 100%);
  --grad-warm: linear-gradient(135deg, #FFB66B 0%, #F5A623 100%);
  --grad-pink: linear-gradient(135deg, #FFB6CE 0%, #F08FB9 100%);
  --grad-sunrise: linear-gradient(135deg, #FFE3B3 0%, #FFB6CE 50%, #C7DEFF 100%);
  --grad-sakura: linear-gradient(135deg, #FFF5FA 0%, #FFFDF8 50%, #E8F2FB 100%);

  --max-width: 1100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: var(--c-text);
  background: var(--c-bg-cream);
  background-image:
    radial-gradient(at 0% 0%, rgba(255, 213, 107, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(240, 143, 185, 0.10) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(59, 125, 201, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.8; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== Header — Luxury Bar ===== */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.25s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(15, 28, 45, 0.08);
  border-bottom-color: rgba(201, 169, 97, 0.25);
}
/* ヘッダー下にゴールドの細いライン */
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 169, 97, 0.4) 20%,
    rgba(201, 169, 97, 0.6) 50%,
    rgba(201, 169, 97, 0.4) 80%,
    transparent 100%);
  pointer-events: none;
}

.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}

/* ロゴ部分 */
.site-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: var(--c-text);
}
.site-logo:hover { opacity: 1; }
.site-logo .logo-icon {
  width: 56px; height: 56px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(15, 28, 45, 0.10);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
}
.site-logo .logo-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.5);
  pointer-events: none;
}
.site-logo .logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.site-logo .logo-text .brand-name {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-logo .logo-text small {
  display: block;
  font-size: 10px;
  color: var(--c-gold-dark);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ナビゲーション */
.site-nav {
  display: flex; align-items: center; gap: 2px;
  flex-wrap: nowrap;
}
.site-nav a {
  color: var(--c-text-mid); font-weight: 500;
  padding: 10px 12px; border-radius: 0; font-size: 13px;
  position: relative;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.site-nav a::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.site-nav a:hover {
  background: transparent; color: var(--c-gold-dark); opacity: 1;
}
.site-nav a:hover::before { width: 60%; }
.site-nav a.active {
  color: var(--c-gold-dark); background: transparent;
}
.site-nav a.active::before {
  width: 60%;
  background: var(--c-gold);
}

/* CTA ボタン */
.nav-cta {
  background: var(--grad-gold) !important;
  color: white !important;
  padding: 11px 22px !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
  margin-left: 12px;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.30);
  letter-spacing: 0.1em !important;
  font-size: 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-cta::before { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 1 !important;
  box-shadow: 0 6px 16px rgba(201, 169, 97, 0.40);
  color: white !important;
}

/* モバイル開閉ボタン */
.menu-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(201, 169, 97, 0.4);
  cursor: pointer;
  padding: 0; width: 44px; height: 44px;
  border-radius: 2px;
  color: var(--c-gold-dark);
  font-size: 22px; font-weight: 400;
  align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.menu-toggle:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--c-gold);
}

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, #2E6FB8 0%, #245699 100%);
  color: white;
  padding: 64px 0 24px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0; height: 30px;
  background: var(--c-bg-cream);
  -webkit-mask-image: radial-gradient(ellipse at top, transparent 0, transparent 14px, black 15px);
  mask-image: radial-gradient(ellipse at top, transparent 0, transparent 14px, black 15px);
}
.site-footer .container {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; align-items: start;
  position: relative;
}
.footer-brand h3 {
  font-size: 20px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  padding: 3px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  object-fit: contain;
}
.footer-brand p { color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.8; }
.footer-nav h4, .footer-contact h4 {
  font-size: 14px; margin-bottom: 16px; color: var(--c-yellow);
  letter-spacing: 0.5px;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255,255,255,0.88); font-size: 14px; }
.footer-nav a:hover { color: var(--c-yellow); opacity: 1; }
.footer-contact .phone-large {
  font-size: 24px; font-weight: 700; color: white; margin-bottom: 6px;
}
.footer-contact .phone-large a { color: white; }
.footer-contact .hours { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.7; }
.footer-bottom {
  text-align: center; padding-top: 32px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 13px; color: rgba(255,255,255,0.7);
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-cream { background: var(--c-bg-cream); }
.section-blue {
  background: linear-gradient(180deg, var(--c-primary-soft) 0%, var(--c-primary-pale) 100%);
  position: relative;
}
.section-yellow {
  background: linear-gradient(180deg, var(--c-orange-pale) 0%, var(--c-yellow-soft) 100%);
}
.section-pink {
  background: linear-gradient(180deg, var(--c-pink-pale) 0%, #FFFFFF 100%);
}
.section-mint {
  background: linear-gradient(180deg, var(--c-mint-soft) 0%, #FFFFFF 100%);
}

.section-title {
  text-align: center; margin-bottom: 16px;
  font-size: 34px; color: var(--c-primary); font-weight: 700;
  position: relative;
}
.section-title .accent-line {
  display: block; width: 80px; height: 5px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-orange), var(--c-pink));
  margin: 14px auto 0; border-radius: 3px;
}
.section-subtitle {
  text-align: center; color: var(--c-text-mid); margin-bottom: 48px; font-size: 16px;
}
.section-tag {
  display: inline-block;
  background: var(--grad-warm);
  color: white;
  padding: 8px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 14px;
  box-shadow: var(--shadow-warm);
  letter-spacing: 1px;
}
.section-tag-blue {
  background: var(--grad-primary); color: white;
  box-shadow: 0 4px 12px rgba(59, 125, 201, 0.25);
}
.section-tag-pink {
  background: var(--grad-pink); color: white;
  box-shadow: var(--shadow-pink);
}
.section-tag-mint {
  background: linear-gradient(135deg, #6FE7DC 0%, #4ECDC4 100%); color: white;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.25);
}

/* ===== Decorative section ornaments ===== */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.deco-blob.b1 {
  width: 240px; height: 240px;
  background: var(--c-yellow);
  top: -80px; left: -60px;
}
.deco-blob.b2 {
  width: 300px; height: 300px;
  background: var(--c-pink);
  bottom: -100px; right: -80px;
  opacity: 0.35;
}
.deco-blob.b3 {
  width: 200px; height: 200px;
  background: var(--c-mint);
  top: 30%; right: 10%;
  opacity: 0.3;
}
.section-blue, .section-yellow, .section-pink, .section-mint { position: relative; overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; font-weight: 700; font-size: 16px;
  cursor: pointer; border: none; transition: all 0.2s ease; text-decoration: none;
  min-height: 48px;
}
.btn-primary {
  background: var(--grad-warm); color: white;
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  transform: translateY(-2px); opacity: 1;
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
}
.btn-secondary {
  background: white; color: var(--c-primary);
  border: 2px solid var(--c-primary);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
  background: var(--c-primary); color: white; opacity: 1;
  transform: translateY(-2px);
}
.btn-line {
  background: var(--c-line); color: white;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}
.btn-line:hover { transform: translateY(-2px); opacity: 1; }
.btn-large { padding: 18px 40px; font-size: 18px; min-height: 56px; }

/* ===== Page hero ===== */
.page-hero {
  background: linear-gradient(135deg, #1a2d4a 0%, #2c4870 50%, #3B7DC9 100%);
  padding: 96px 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 10% 0%, rgba(201, 169, 97, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(201, 169, 97, 0.08) 0px, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 42px;
  color: white;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.page-hero h1::after {
  content: '';
  display: block;
  width: 60px; height: 2px;
  background: var(--grad-gold);
  margin: 22px auto 0;
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }
.page-hero .section-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--c-gold-light);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
}

/* ===== Cards ===== */
.card {
  background: white; border-radius: var(--radius-md);
  padding: 28px; box-shadow: var(--shadow-card); transition: all 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

/* ===== CTA Block ===== */
.cta-block {
  background: linear-gradient(135deg, #3B7DC9 0%, #5BA3E0 50%, #6FB3E8 100%);
  color: white; padding: 56px 32px;
  border-radius: var(--radius-xl);
  text-align: center; margin: 80px 0 60px;
  box-shadow: 0 16px 40px rgba(59, 125, 201, 0.30);
  position: relative;
  overflow: hidden;
}
.cta-block::before, .cta-block::after {
  content: ''; position: absolute;
  border-radius: 50%; filter: blur(40px);
  opacity: 0.6;
}
.cta-block::before {
  width: 240px; height: 240px;
  background: #FFD56B;
  top: -80px; left: -60px;
}
.cta-block::after {
  width: 280px; height: 280px;
  background: #F08FB9;
  bottom: -120px; right: -80px;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h3 {
  font-size: 26px; margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-block p { margin-bottom: 28px; opacity: 0.98; font-size: 16px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: white; color: var(--c-primary);
  padding: 20px 40px; border-radius: 999px;
  font-size: 30px; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  transition: transform 0.2s ease;
  letter-spacing: 1px;
}
.cta-phone:hover { transform: translateY(-3px); opacity: 1; }
.cta-phone .phone-icon {
  background: var(--grad-warm);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.4);
}
.cta-hours {
  margin-top: 18px; font-size: 14px; opacity: 0.92;
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 6px 16px;
  border-radius: 999px;
}

/* ===== Floating mobile CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 99;
  background: var(--grad-warm);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mobile-cta .phone-number { font-size: 18px; letter-spacing: 0.5px; }
.mobile-cta .ic {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-footer .container { grid-template-columns: 1fr; gap: 32px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 1024px) {
  /* モバイル時はヘッダーを不透明に — 画像と被って見えない問題を解消 */
  .site-header {
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  }
  .site-header.scrolled {
    background: var(--c-bg-cream);
  }
  /* ハンバーガーボタンを目立つゴールドに */
  .menu-toggle {
    background: var(--grad-gold) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 10px rgba(201, 169, 97, 0.35);
  }
  .menu-toggle:hover {
    background: linear-gradient(135deg, #D4B872 0%, #C9A961 100%) !important;
    box-shadow: 0 6px 14px rgba(201, 169, 97, 0.45);
  }

  /* ヘッダーをモバイル化 */
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 78%; max-width: 320px;
    background: white;
    flex-direction: column; align-items: stretch;
    padding: 80px 20px 24px;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 4px;
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a {
    padding: 16px 18px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    letter-spacing: 0.05em;
    white-space: normal;
  }
  .site-nav a::before { display: none; }
  .site-nav a.active {
    color: var(--c-gold-dark);
    background: rgba(201, 169, 97, 0.05);
  }
  .nav-cta { margin: 16px 0 0 !important; border-radius: 2px !important; border-bottom: none !important; }
}

@media (max-width: 768px) {
  body { font-size: 16px; line-height: 1.75; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; margin-bottom: 32px; }
  .page-hero { padding: 64px 0 56px; }
  .page-hero h1 { font-size: 28px; letter-spacing: 0.03em; }
  .page-hero h1::after { margin: 16px auto 0; }
  .page-hero p { font-size: 13px; }

  .site-header .container { height: 68px; }
  .site-logo { gap: 10px; }
  .site-logo .logo-icon { width: 44px; height: 44px; }
  .site-logo .logo-text .brand-name { font-size: 15px; letter-spacing: 0.04em; }
  .site-logo .logo-text small { font-size: 9px; margin-top: 2px; }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 78%; max-width: 320px;
    background: white;
    flex-direction: column; align-items: stretch;
    padding: 80px 20px 24px;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 4px;
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a {
    padding: 16px 18px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    letter-spacing: 0.05em;
  }
  .site-nav a::before { display: none; }
  .site-nav a.active {
    color: var(--c-gold-dark);
    background: rgba(201, 169, 97, 0.05);
  }
  .nav-cta { margin: 16px 0 0 !important; border-radius: 2px !important; border-bottom: none !important; }

  .nav-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 90;
  }
  .nav-backdrop.show { display: block; }

  .cta-block { padding: 40px 24px; margin: 56px 0 40px; }
  .cta-block h3 { font-size: 20px; }
  .cta-block p { font-size: 14px; }
  .cta-phone { font-size: 22px; padding: 14px 24px; gap: 10px; }
  .cta-phone .phone-icon { width: 36px; height: 36px; font-size: 18px; }

  .btn { padding: 14px 24px; font-size: 15px; }
  .btn-large { padding: 16px 28px; font-size: 16px; }

  .mobile-cta { display: flex; }

  /* スマホで余白を確保(固定CTAの被り回避) */
  body { padding-bottom: 80px; }
  .site-footer { margin-top: 60px; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 22px; }
  .section-title { font-size: 22px; }
  .cta-phone { font-size: 18px; padding: 12px 20px; }
}

/* ===== モバイルメニュー視認性 強制ルール(優先適用) ===== */
@media (max-width: 1024px) {
  /* ロゴテキスト非表示 — アイコンのみ表示 */
  .site-logo .logo-text { display: none !important; }
  .site-logo { gap: 0 !important; }

  /* メニューボタンを目立つゴールド + 確実に右端配置 */
  .menu-toggle {
    display: inline-flex !important;
    background: var(--grad-gold) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.45) !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    z-index: 5 !important;
    position: relative !important;
    border-radius: 8px !important;
  }

  /* メニューパネルを画面下まで確実に伸ばす(iOS Safari対応) */
  .site-nav {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    padding: 88px 22px 32px !important;
    gap: 6px !important;
  }
  /* ナビ項目を少しコンパクトに、最後にスペースを残してCTAを下に固定風に */
  .site-nav a {
    padding: 14px 16px !important;
    font-size: 15px !important;
  }

}
