:root {
      /* Core Colors - 重厚感のあるネイビー×ゴールド */
      --navy-dark: #0f1419;
      --navy: #1a2332;
      --navy-medium: #2d3e50;
      --navy-light: #3d4f63;
      --navy-soft: #4a5f7a;
      
      --gold: #c9a961;
      --gold-dark: #a68948;
      --gold-light: #d4b876;
      --gold-pale: #f5ead8;
      
      --slate: #64748b;
      --slate-light: #94a3b8;
      --slate-pale: #cbd5e1;
      
      --bg: #fafbfc;
      --bg-warm: #fdfcfa;
      --surface: #ffffff;
      --border: #e8ecef;
      --border-strong: #d4dce3;
      
      --text: #1e293b;
      --text-medium: #475569;
      --text-light: #64748b;
      
      /* Shadows */
      --shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.08);
      --shadow: 0 4px 12px rgba(15, 20, 25, 0.12);
      --shadow-lg: 0 8px 24px rgba(15, 20, 25, 0.15);
      --shadow-xl: 0 16px 48px rgba(15, 20, 25, 0.2);
      
      /* Radius */
      --radius: 4px;
      --radius-lg: 8px;
      --radius-xl: 12px;
      
      /* Container（v5と同じ1120px） */
      --container: 1120px;
      --max-width: 1120px;

      --r: 8px;
      --r2: 12px;

      /* ===== Spacing Scale (v5ベース) ===== */
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 20px;
      --space-6: 24px;
      --space-7: 32px;
      --space-8: 40px;
      --space-9: 56px;
      --space-10: 72px;
      --container-pad: clamp(16px, 3vw, 28px);

      /* ===== フォント定義（v5ベース） ===== */
      --font-sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
      --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: var(--font-sans);
      background: 
        radial-gradient(900px 520px at 10% 0%, rgba(201,169,97,.08), transparent 60%),
        radial-gradient(900px 520px at 90% 10%, rgba(26,35,50,.08), transparent 60%),
        var(--bg);
      color: var(--text);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* ===== 字体統一（v5ベース：見出しは明朝、本文はゴシック） ===== */
    h1, h2, .h1, .h2 {
      font-family: var(--font-serif);
    }

    h3, h4, h5, h6 {
      font-family: var(--font-sans);
    }

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

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-7);
      padding: var(--space-5) 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    
    /* Brand logo sizing (prevent oversized logo) */
    .brand img{
      height: 34px;
      width: auto;
      max-width: none;
      flex: 0 0 auto;
      object-fit: contain;
    }
    @media (min-width: 768px){
      .brand img{ height: 40px; }
    }

.brand-mark {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-weight: 800;
      font-size: 22px;
      position: relative;
      box-shadow: var(--shadow);
    }

    .brand-mark::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      border: 1px solid rgba(201, 169, 97, 0.2);
    }

    .nav {
      display: none;
      gap: 4px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .nav { display: flex; }
    }

    .nav a {
      padding: 10px 18px;
      color: var(--text-medium);
      font-size: 14px;
      font-weight: 500;
      border-radius: var(--radius);
      transition: all 0.2s ease;
      letter-spacing: 0.01em;
    }

    .nav a:hover {
      color: var(--navy);
      background: var(--gold-pale);
    }

    .header-contact {
      display: flex;
      align-items: center;
      gap: var(--space-5);
    }


    /* Mobile header phone link (mobile only) */
    .header-phone{
      display: none;
      align-items: center;
      justify-content: center;
      height: 44px;
      padding: 0 12px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201,169,97,.35);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-sm);
      font-weight: 700;
      font-size: 14px;
      color: var(--navy);
      letter-spacing: 0.02em;
      -webkit-tap-highlight-color: transparent;
    }

    @media (max-width: 768px){
      .header-phone{ display: inline-flex; }
      /* Mobile: remove the "無料相談" button next to hamburger */
      .header-cta{ display: none !important; }
      .header-contact{ gap: 10px; }
    }

    /* Hamburger (mobile only) */
    .hamburger{
      display: none;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201,169,97,.35);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex-direction: column;
      -webkit-tap-highlight-color: transparent;
    }
    .hamburger span{
      display:block;
      width: 20px;
      height: 2px;
      background: var(--navy);
      border-radius: 99px;
    }

    @media (max-width: 768px){
      .hamburger{ display: inline-flex; }
    }

    .tel {
      display: none;
      flex-direction: column;
      align-items: flex-end;
    }

    @media (min-width: 1024px) {
      .tel { display: flex; }
    }

    .tel-number {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.02em;
    }

    .tel-hours {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
      letter-spacing: 0.02em;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-lg);
      font-weight: 700;
      font-size: 15px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
      letter-spacing: 0.02em;
      font-family: inherit;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: var(--gold);
      border-color: var(--navy);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--navy);
      border-color: var(--gold);
      box-shadow: var(--shadow);
    }

    .btn-gold:hover {
      background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-large {
      padding: 18px 36px;
      font-size: 16px;
    }

    /* Hero */
    .hero{
      
      background-image: url("../img/hero_bg.webp");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      padding: var(--space-9) 0 var(--space-8);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(600px 400px at 20% 50%, rgba(201,169,97,.15), transparent 70%),
        radial-gradient(500px 350px at 80% 30%, rgba(26,35,50,.05), transparent 60%);
      pointer-events: none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: var(--space-8);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .kdot{ width:10px; height:10px; border-radius: 99px; background: var(--gold); }

    h1{
      margin: var(--space-3) 0 var(--space-3);
      font-size: clamp(26px, 3.4vw, 42px);
      line-height: 1.15;
      letter-spacing: -.01em;
      color: var(--navy);
    }
    .hero p{
      margin:0;
      color: var(--text-medium);
      font-size: 15px;
      line-height: 1.85;
    }

    .hero-ctas{ display:flex; gap: var(--space-3); flex-wrap:wrap; margin-top: var(--space-4); }
    .micro{
      margin-top: var(--space-3);
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.65;
    }

    .chips{
      display:flex; gap: var(--space-3); flex-wrap:wrap;
      margin-top: var(--space-4);
    }
    .chip{
      display:inline-flex; align-items:center; gap: var(--space-2);
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.90);
      color: var(--text);
      font-size: 13px;
      font-weight: 700;
    }
    .chip svg{ width:16px; height:16px; }
    .chip:hover{ border-color: var(--gold); box-shadow: var(--shadow); }

    
    /* ===== Hero: よくあるお悩み（悩みチップ） ===== */
    .worry-block{
      margin-top: var(--space-4);
    }
    .worry-label{
      font-size: 12px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: 0.06em;
      margin-bottom: var(--space-2);
    }
    .worry-chips{
      display:flex;
      flex-wrap:wrap;
      gap: var(--space-3);
    }
    .worry-chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(201,169,97,.32);
      background: rgba(255,255,255,.92);
      color: var(--text);
      font-size: 13px;
      font-weight: 800;
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .worry-chip:hover{
      border-color: var(--gold);
      box-shadow: var(--shadow);
      transform: translateY(-1px);
    }
    .worry-chip:focus-visible{
      outline: 3px solid rgba(201,169,97,.45);
      outline-offset: 2px;
    }
    .worry-block + .hero-ctas{
      margin-top: var(--space-3);
    }
    @media (max-width: 640px){
      .worry-chip{
        width: 100%;
        justify-content: flex-start;
      }
    }
/* 修正箇所: hero-cardを廃止し、画像コンテナのみに */
    .hero-illus { 
      width: 100%; 
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      /* 枠線や背景を削除し、画像が浮かび上がるように調整 */
    }
    .hero-illus img { 
      width: 100%; 
      height: auto; 
      display: block;
      /* 必要に応じて少し角を丸めるのみ */
      border-radius: var(--radius-xl);
    }

    /* スマホ表示用の画像：デフォルトで非表示 */
    .hero-illus-mobile {
      display: none;
    }

    /* PC表示用の画像：デフォルトで表示 */
    .hero-illus-desktop {
      display: flex;
    }

    @media (max-width: 768px){
      .hero-grid{ grid-template-columns: 1fr; }

      
/* モバイル時：ファーストビューのタグ群（添付箇所）を非表示 */
      .micro,
      .chips{
        display: none;
      }
      
      /* スマホ表示時：モバイル用画像を表示、デスクトップ用画像を非表示 */
      .hero-illus-mobile {
        display: flex;
        margin: var(--space-5) 0 var(--space-6) 0;
      }
      
      .hero-illus-desktop {
        display: none;
      }
    }

    /* Sections */
    .section, .section-soft {
      padding: var(--space-10) 0;
    }

    .section-soft {
      background: var(--bg-warm);
    }

    .section-header {
      text-align: center;
      margin-bottom: var(--space-8);
    }

    .section-label {
      display: inline-block;
      padding: 6px 16px;
      background: var(--gold-pale);
      color: var(--gold-dark);
      font-size: 11px;
      font-weight: 700;
      border-radius: 999px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: var(--space-4);
    }

    .section-header h2 {
      font-family: var(--font-serif);
      font-size: 36px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: var(--space-4);
      line-height: 1.4;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Grid layout & Cards */
    .issue-grid, .service-grid {
      display: grid;
      gap: var(--space-6);
      margin-top: var(--space-8);
    }

    .issue-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    @media (max-width: 900px){ .service-grid { grid-template-columns: 1fr; } }

    .issue-card, .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: var(--space-7) var(--space-6);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .issue-card:hover, .service-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .service-tag {
      display: inline-block;
      padding: 4px 12px;
      background: var(--gold-pale);
      color: var(--gold-dark);
      font-size: 11px;
      font-weight: 700;
      border-radius: 999px;
      margin-bottom: var(--space-4);
    }

    /* Footer - v5スタイル */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      padding: var(--space-10) 0;
    }

    /* ===== Footer Grid (v5ベース) ===== */
    .site-footer {
      padding: var(--space-10) 0;
      background: #071a2e;
      color: rgba(255,255,255,.92);
    }

    .footer-grid {
      display: grid;
      gap: var(--space-8);
    }

    @media (min-width: 900px) {
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    }

    .footer-title {
      font-weight: 900;
      margin: 0 0 var(--space-3);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,.88);
    }

    .footer-links a:hover { text-decoration: underline; }

    .footer-note {
      color: rgba(255,255,255,.70);
      font-size: 12px;
      margin-top: var(--space-6);
    }

    /* Additional UI details */
    .issue-icon {
      width: 56px; height: 56px; background: var(--gold-pale); font-size: 28px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto var(--space-5); border-radius: 50%;
    }

    /* Floating CTA */
    .floating-cta {
      position: fixed; bottom: var(--space-6); right: var(--space-6);
      display: flex; gap: var(--space-3); z-index: 90;
    }

    @media (max-width: 640px) {
      .floating-cta { left: var(--space-6); right: var(--space-6); flex-direction: column; }
    }
  
/* =========================================================
   Friendly UI overrides (layout/テキスト/配置は変更しない)
   - palette: gold & navy keep
   - only: design / buttons / icons
   ========================================================= */
:root{
  /* shadows: soften to reduce 'luxury pressure' */
  --shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow:    0 6px 16px rgba(15, 20, 25, 0.10);
  --shadow-lg: 0 10px 28px rgba(15, 20, 25, 0.12);
  --shadow-xl: 0 18px 52px rgba(15, 20, 25, 0.16);
}

/* Buttons: keep size/padding, make them more 'approachable' */
.btn{
  border-radius: 999px;
  border-width: 1px;
  letter-spacing: 0.01em;
}
.btn-primary{
  color: #fff;
  border-color: rgba(201,169,97,.35);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  box-shadow: 0 10px 22px rgba(26,35,50,.14);
  position: relative;
}
.btn-primary::after{
  content:"";
  position:absolute; inset: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201,169,97,.26), rgba(201,169,97,.10));
  opacity: .95;
  pointer-events:none;
}
.btn-primary > *{ position: relative; z-index: 1; }
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(26,35,50,.16);
}

.btn-gold{
  color: var(--navy);
  border-color: rgba(26,35,50,.12);
  background: linear-gradient(135deg, rgba(201,169,97,.92) 0%, rgba(212,184,118,.92) 100%);
  box-shadow: 0 10px 22px rgba(15,20,25,.08);
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15,20,25,.10);
}

/* Chips: keep layout, refine icon & border */
.chip{
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,.28);
  background: rgba(255,255,255,.88);
}
.chip svg{
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Issue icons: replace emoji with consistent outline icons */
.issue-icon{
  background: rgba(245,234,216,.70);
  border: 1px solid rgba(201,169,97,.35);
  box-shadow: 0 10px 20px rgba(15,20,25,.06);
  color: var(--navy);
  font-size: 0; /* hide emoji sizing if any left */
}
.issue-icon svg{
  width: 26px;
  height: 26px;
  display:block;
}
.issue-icon svg *{
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Minor: keep headings but reduce 'formal' feel */
.section-label{
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,.28);
  background: rgba(245,234,216,.55);
}


    .hero::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(90deg, rgba(253,252,250,.90) 0%, rgba(253,252,250,.78) 45%, rgba(253,252,250,.65) 100%);
      pointer-events:none;
    }
    .hero > .container{ position: relative; z-index: 1; }

    /* Services: 2-column (目的：子ページ誘導) */
    .service-card{ display:flex; flex-direction:column; }

    /* PCではカード全体をリンク化（スマホはCTAのみ） */
    .service-card{ position: relative; }
    @media (hover:hover) and (pointer:fine){
      .service-card{ cursor: pointer; }
    }
    .service-card-overlay{
      position:absolute;
      inset:0;
      border-radius: inherit;
      z-index: 2;
      display:block;
    }
    /* スマホ（タッチ）ではカード全体リンクを無効化 */
    @media (hover:none) and (pointer:coarse){
      .service-card-overlay{ display:none; }
    }
    /* 画面幅ベースでもスマホを判定（保険） */
    @media (max-width: 768px){
      .service-card-overlay{ display:none; }
      .service-card{ cursor: default; }
    }
    /* レイヤー順：本文(1) < overlay(2) < CTA(3) */
    .service-card > *{ position: relative; z-index: 1; }
    .service-card > .service-card-overlay{ z-index: 2; }
    .service-card > .service-cta{ position: relative; z-index: 3; }

    /* サービスカードの見出し：左（3行テキスト）＋右（3段イラスト） */
    .service-card-head{
      display:flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: var(--space-3);
    }
    .service-card-head-text{ min-width: 0; flex: 1; }
    .service-card-head .service-tag{ margin-bottom: 6px; }
    .service-card-head h3{ margin: 0; line-height: 1.25; }

        /* サービスカードのイラスト：3段→1つ（縦長ブロック） */
    .service-card-illus{
      flex: 0 0 auto;
      width: 54px;
      height: 106px; /* 30*3 + gap(8)*2 相当 */
      border-radius: 16px;
      background: rgba(245,234,216,.60);
      border: 1px solid rgba(201,169,97,.35);
      box-shadow: 0 10px 20px rgba(15,20,25,.06);
      display:flex;
      align-items:center;
      justify-content:center;
      padding: 10px;
      margin-top: 2px;
    }
    .service-card-illus img{
      width: 100%;
      height: auto;
      max-height: 48px;
      object-fit: contain;
      display:block;
    }

.service-lead{
      margin: 0 0 var(--space-4);
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-medium);
    }
    /* 旧：3行の枠（service-points / service-point）は削除（HTML側で出さない） */
    .service-cta{
      margin-top: auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: var(--space-2);
      width: 100%;
      padding: 12px 14px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(201,169,97,.55);
      background: rgba(245,234,216,.65);
      color: var(--navy);
      font-weight: 800;
      text-decoration:none;
      transition: all .25s ease;
    }
    .service-cta:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      background: rgba(245,234,216,.78);
    }

/* ===== Mobile Drawer Menu（モバイルのみ表示） ===== */
@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 25, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 9998;
  }
  .mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88vw, 380px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.22s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 48px rgba(15, 20, 25, 0.18);
    border-left: 1px solid rgba(201, 169, 97, 0.18);
  }
  .mobile-menu.is-open { transform: translateX(0); }

  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-bottom: 1px solid rgba(15, 20, 25, 0.08);
  }
  .mobile-menu__title {
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--navy);
  }
  .mobile-menu__close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,169,97,.28);
    border-radius: var(--radius-lg);
    background: rgba(245,234,216,.35);
    color: var(--navy);
    font-size: 26px;
    line-height: 42px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu__body {
    overflow: auto;
    padding: var(--space-3) 14px var(--space-5);
  }

  .mobile-menu__section + .mobile-menu__section {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(15, 20, 25, 0.08);
  }

  .mobile-menu__heading {
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 var(--space-3);
    color: var(--navy);
  }

  .mobile-menu__list { list-style: none; margin: 0; padding: 0; }
  .mobile-menu__list li + li { margin-top: var(--space-2); }

  .mobile-menu__list a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(201,169,97,.20);
    background: rgba(245,234,216,.28);
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
  }
}

/* Desktop: force-hide drawer elements */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-overlay { display: none !important; }
}

/* ===== サービス一覧v2（3列グリッド・2ボタン） ===== */
.service-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (max-width: 1024px) {
  .service-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.service-card-v2 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-v2:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-v2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.service-badge-gray {
  background: var(--slate);
}

.service-card-v2-illus {
  flex: 0 0 auto;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background: rgba(245,234,216,.50);
  border: 1px solid rgba(201,169,97,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.service-card-v2-illus img {
  width: 100%;
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.service-card-v2-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 var(--space-3);
}

.service-card-v2-desc {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0 0 var(--space-5);
  flex: 1;
}

.service-card-v2-actions {
  display: flex;
  gap: var(--space-3);
}

.service-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(26,35,50,.12);
  transition: all 0.25s ease;
}

.service-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: all 0.25s ease;
}

.service-btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== Utility ===== */
.m0 { margin: 0 !important; }
