/* ══════════════════════════════════════════════
   バギー体験ページ専用スタイル
   ・common.css を読み込んだ「後」に読むこと
   ・すべての指定が .buggy-page の中だけに効くので、
     トップページや他のページには影響しない
   ・色は common.css の配色を参照している
   ══════════════════════════════════════════════ */

.buggy-page{
  --bg-0:      var(--ink);
  --bg-1:      var(--forest);
  --bg-2:      var(--forest);
  --bg-card:   var(--forest);
  --line-soft: rgba(233,228,214,.10);
  --ink-dim:   #C4C1B6;
  --sage:      var(--moss);
  --accent:    var(--mud);
  --accent-dim:#B8621F;
  --danger:    #D5573B;
  --radius:    3px;
}
  .buggy-page *{box-sizing:border-box;margin:0;padding:0;}
  
  body.buggy-page{
    background:var(--bg-0);
    color:var(--sand);
    font-family:"Zen Kaku Gothic New",system-ui,sans-serif;
    line-height:1.75;
    -webkit-font-smoothing:antialiased;
  }
  .buggy-page .mono{font-family:"Roboto Mono",monospace;}
  .buggy-page h1, .buggy-page h2, .buggy-page h3{font-family:"Zen Kaku Gothic New",system-ui,sans-serif;letter-spacing:0.01em;}
  .buggy-page a{text-decoration:none}
  .buggy-page img{max-width:100%;display:block;}

  .buggy-page /* ---------- topo texture ---------- */
  .topo-bg{
    position:absolute;inset:0;
    background-image:
      repeating-radial-gradient(circle at 15% 25%, transparent 0, transparent 38px, var(--line-soft) 39px, transparent 40px, transparent 78px, var(--line-soft) 79px, transparent 80px),
      repeating-radial-gradient(circle at 85% 70%, transparent 0, transparent 46px, var(--line-soft) 47px, transparent 48px, transparent 94px, var(--line-soft) 95px, transparent 96px);
    opacity:0.35;
    pointer-events:none;
  }

  .buggy-page .bgy-wrap{max-width:1080px;margin:0 auto;padding:0 28px;}

  

  

  
  

  .buggy-page /* ---------- hero ---------- */
  .hero{
    position:relative;
    min-height:88vh;
    display:flex;flex-direction:column;justify-content:center;
    padding:120px 28px 80px;
    overflow:hidden;
    background:
      radial-gradient(ellipse 900px 500px at 75% 20%, rgba(232,128,46,0.16), transparent 60%),
      linear-gradient(180deg, var(--ink) 0%, var(--forest) 60%, var(--forest) 100%);
    border-bottom:1px solid var(--line-soft);
  }
  .buggy-page .hero-content{position:relative;z-index:3;max-width:1080px;margin:0 auto;width:100%;}
  @media (min-width:1400px){
    .buggy-page .hero-content{margin:0;}
    .buggy-page .tag-row{margin:0;}
  }
  .buggy-page .tag-row{
    position:absolute;top:52px;left:28px;right:28px;
    max-width:1080px;margin:0 auto;
    display:flex;flex-wrap:wrap;gap:10px;z-index:3;
  }
  .buggy-page .tag{
    font-family:"Roboto Mono",monospace;
    font-size:14px;letter-spacing:0.04em;
    color:var(--sand);
    border:1px solid var(--line-soft);
    background:rgba(13,23,16,0.55);
    backdrop-filter:blur(3px);
    padding:8px 14px;border-radius:var(--radius);
  }
  .buggy-page .tag b{color:var(--accent);font-weight:700;}
  .buggy-page .tag-lg{
    font-size:18px;
    padding:10px 18px;
    border-color:var(--accent);
  }
  .buggy-page .hero h1{
    font-size:clamp(52px,9vw,104px);
    font-weight:900;
    line-height:1.1;
    letter-spacing:-0.01em;
    color:var(--sand);
    margin-bottom:24px;
    text-shadow:0 4px 32px rgba(0,0,0,0.6), 0 2px 12px rgba(0,0,0,0.5);
  }
  .buggy-page .hero h1 em{
    font-style:normal;color:var(--accent);
    text-shadow:0 0 40px rgba(232,128,46,0.55), 0 4px 32px rgba(0,0,0,0.6);
  }
  .buggy-page .hero-sub{
    font-size:17px;
    color:var(--ink-dim);
    max-width:520px;
    margin-bottom:40px;
    text-shadow:0 1px 12px rgba(0,0,0,0.4);
  }
  .buggy-page .hero-ctas{display:flex;flex-wrap:wrap;gap:14px;}
  .buggy-page .bgy-btn{
    display:inline-flex;align-items:center;gap:8px;
    padding:15px 28px;
    border-radius:var(--radius);
    font-weight:700;font-size:15px;
    border:1px solid transparent;
  }
  .buggy-page .btn-primary{background:var(--accent);color:#1A0E04;}
  .buggy-page .btn-ghost{border-color:var(--line-soft);color:var(--sand);}
  .buggy-page .hero-reticle{
    position:absolute;right:-60px;top:50%;transform:translateY(-50%);
    width:420px;height:420px;
    opacity:0.5;z-index:1;
  }

  .buggy-page /* ---------- hero photo slideshow ---------- */
  .hero-photo{position:absolute;inset:0;z-index:1;}
  .buggy-page .hero-slide{
    position:absolute;inset:0;
    background-size:cover;background-position:center;
    opacity:0;transition:opacity 1.4s ease;
  }
  .buggy-page .hero-slide.active{opacity:1;}
  .buggy-page .hero-dots{
    position:absolute;left:0;right:0;bottom:22px;z-index:4;
    display:flex;justify-content:center;gap:10px;
  }
  .buggy-page .hero-dot{
    width:9px;height:9px;border-radius:50%;
    background:rgba(242,237,222,0.35);
    border:1px solid rgba(242,237,222,0.5);
    cursor:pointer;padding:0;
    transition:background .25s ease, transform .25s ease;
  }
  .buggy-page .hero-dot:hover{background:rgba(242,237,222,0.6);}
  .buggy-page .hero-dot.active{background:var(--accent);border-color:var(--accent);transform:scale(1.2);}
  .buggy-page .hero-slide.empty{
    background:linear-gradient(160deg,var(--bg-2),var(--bg-1));
    display:flex;align-items:center;justify-content:center;
  }
  .buggy-page .hero-slide.empty span{
    font-family:"Roboto Mono",monospace;font-size:12px;letter-spacing:.04em;
    color:var(--sage);border:1px dashed var(--line-soft);padding:14px 24px;border-radius:4px;
  }
  .buggy-page .hero-overlay{
    position:absolute;inset:0;z-index:2;
    background:
      /* 見出しが占める幅(約684px)に合わせて px 固定。大画面ほど写真が広く見える */
      linear-gradient(100deg,
        rgba(13,23,16,0.74) 0px,
        rgba(13,23,16,0.52) 420px,
        rgba(13,23,16,0.16) 760px,
        rgba(13,23,16,0) 980px),
      linear-gradient(180deg, rgba(13,23,16,0.28) 0%, rgba(13,23,16,0) 20%, rgba(13,23,16,0) 58%, rgba(13,23,16,0.52) 100%),
      radial-gradient(ellipse 900px 500px at 80% 24%, rgba(232,128,46,0.08), transparent 62%);
  }
  /* 狭い画面では見出しが中央寄りになるため割合ベースに戻す */
  @media (max-width:1200px){
    .buggy-page .hero-overlay{
      background:
        linear-gradient(100deg, rgba(13,23,16,0.72) 0%, rgba(13,23,16,0.50) 40%, rgba(13,23,16,0.18) 70%, rgba(13,23,16,0.06) 100%),
        linear-gradient(180deg, rgba(13,23,16,0.30) 0%, rgba(13,23,16,0) 22%, rgba(13,23,16,0) 55%, rgba(13,23,16,0.58) 100%);
    }
  }
  @media (max-width:700px){
    .buggy-page .hero-overlay{
      background:linear-gradient(180deg, rgba(13,23,16,0.34) 0%, rgba(13,23,16,0.22) 30%, rgba(13,23,16,0.46) 62%, rgba(13,23,16,0.80) 100%);
    }
  }
  @media (prefers-reduced-motion: reduce){
    .buggy-page .hero-slide{transition:none;}
  }

  .buggy-page /* ---------- stat strip ---------- */
  .stats{
    border-bottom:1px solid var(--line-soft);
    background:var(--bg-1);
  }
  .buggy-page .stats-inner{
    max-width:1080px;margin:0 auto;padding:0 28px;
    display:grid;grid-template-columns:repeat(4,1fr);
  }
  .buggy-page .stat{
    padding:28px 20px;
    border-right:1px solid var(--line-soft);
  }
  .buggy-page .stat:last-child{border-right:none;}
  .buggy-page .stat-num{font-family:"Roboto Mono",monospace;font-weight:700;font-size:26px;color:var(--accent);}
  .buggy-page .stat-label{font-size:12px;color:var(--sage);margin-top:6px;letter-spacing:0.02em;}

  .buggy-page /* ---------- section shell ---------- */
  section{padding:100px 0;position:relative;}
  .buggy-page .section-head{margin-bottom:56px;max-width:640px;}
  .buggy-page .bgy-eyebrow{
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.08em;color:var(--accent);
    margin-bottom:14px;display:block;
  }
  .buggy-page .section-head h2{font-size:clamp(28px,4vw,38px);color:var(--sand);line-height:1.4;}
  .buggy-page .section-head p{color:var(--ink-dim);margin-top:16px;font-size:15px;max-width:520px;}

  .buggy-page /* ---------- intro ---------- */
  .intro{background:var(--bg-0);}
  .buggy-page .intro-grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:48px;align-items:start;}
  .buggy-page .intro-text p{color:var(--ink-dim);font-size:15.5px;margin-bottom:18px;}
  .buggy-page .intro-text p b{color:var(--sand);font-weight:500;}
  .buggy-page .intro-card{
    background:var(--bg-card);border:1px solid var(--line-soft);
    border-radius:6px;padding:26px;
  }
  .buggy-page .intro-card h3{font-size:14px;color:var(--accent);font-family:"Roboto Mono",monospace;margin-bottom:16px;letter-spacing:0.03em;}
  .buggy-page .intro-list{list-style:none;}
  .buggy-page .intro-list li{
    display:flex;justify-content:space-between;
    padding:11px 0;border-bottom:1px solid var(--line-soft);
    font-size:14px;color:var(--ink-dim);
  }
  .buggy-page .intro-list li:last-child{border-bottom:none;}
  .buggy-page .intro-list li span:last-child{color:var(--sand);font-weight:500;}

  .buggy-page /* ---------- courses ---------- */
  .courses{background:var(--bg-1);border-top:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft);}
  .buggy-page .course-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
  @media (max-width:1100px){.buggy-page .course-grid{grid-template-columns:1fr 1fr;}}
  .buggy-page .course-card{
    background:var(--bg-card);border:1px solid var(--line-soft);
    border-radius:6px;padding:28px;
    position:relative;
    transition:border-color .2s ease;
  }
  .buggy-page .course-card:hover{border-color:var(--accent-dim);}
  .buggy-page .course-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:14px;}
  .buggy-page .course-id{font-family:"Roboto Mono",monospace;font-size:13px;font-weight:700;color:var(--ink-dim);}
  .buggy-page .course-card h3{font-size:21px;color:var(--sand);margin:6px 0 10px;}
  .buggy-page .course-card p{font-size:14px;color:var(--ink-dim);margin-bottom:18px;}
  .buggy-page .diff-row{display:flex;align-items:center;gap:10px;margin-bottom:8px;}
  .buggy-page .diff-label{font-family:"Roboto Mono",monospace;font-size:12.5px;font-weight:500;color:var(--ink-dim);width:72px;flex-shrink:0;}
  .buggy-page .diff-bar{flex:1;height:6px;background:var(--line-soft);border-radius:3px;overflow:hidden;display:flex;gap:2px;}
  .buggy-page .diff-seg{flex:1;background:var(--line-soft);}
  .buggy-page .diff-seg.bgy-on{background:var(--accent);}
  .buggy-page .diff-seg.bgy-on.mud{background:var(--accent-dim);}
  .buggy-page .course-note{
    font-family:"Roboto Mono",monospace;font-size:12.5px;font-weight:700;color:var(--accent);
    margin-top:16px;padding-top:14px;border-top:1px dashed var(--line-soft);
  }

  .buggy-page /* ---------- pricing ---------- */
  .pricing{background:var(--bg-0);}
  .buggy-page .ledger{
    border:1px solid var(--line-soft);border-radius:6px;overflow:hidden;
    background:var(--bg-card);
  }
  .buggy-page .ledger-row{
    display:grid;grid-template-columns:1fr auto auto;gap:16px;align-items:center;
    padding:22px 26px;border-bottom:1px solid var(--line-soft);
  }
  .buggy-page .ledger-row:last-child{border-bottom:none;}
  .buggy-page .ledger-row.head{background:var(--bg-1);}
  .buggy-page .ledger-name{font-size:16px;color:var(--sand);font-weight:500;}
  .buggy-page .ledger-desc{font-size:13px;color:var(--sage);margin-top:4px;}
  .buggy-page .ledger-time{font-family:"Roboto Mono",monospace;font-size:12px;color:var(--sage);text-align:right;min-width:70px;}
  .buggy-page .ledger-price{font-family:"Roboto Mono",monospace;font-size:22px;color:var(--accent);font-weight:700;text-align:right;min-width:120px;}
  .buggy-page .ledger-price small{font-size:12px;color:var(--sage);font-weight:400;display:block;margin-top:2px;}
  .buggy-page .addon-note{
    margin-top:18px;font-size:13px;color:var(--ink-dim);
    padding:16px 20px;border-left:2px solid var(--accent);background:var(--bg-1);
  }

  .buggy-page /* ---------- loadout / facilities ---------- */
  .two-col{background:var(--bg-1);border-top:1px solid var(--line-soft);}
  .buggy-page .two-col-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
  .buggy-page .panel{background:var(--bg-card);border:1px solid var(--line-soft);border-radius:6px;padding:30px;}
  .buggy-page .panel h3{font-family:"Roboto Mono",monospace;font-size:13px;color:var(--accent);letter-spacing:0.04em;margin-bottom:20px;}
  .buggy-page .chip-row{display:flex;flex-wrap:wrap;gap:8px;}
  .buggy-page .chip{
    font-size:13px;color:var(--ink-dim);border:1px solid var(--line-soft);
    padding:8px 14px;border-radius:20px;
  }
  .buggy-page .chip.free{border-color:var(--accent-dim);color:var(--sand);}
  .buggy-page .chip.free::before{content:"無料 ";color:var(--accent);font-family:"Roboto Mono",monospace;font-size:11px;}
  .buggy-page .chip.paid::before{content:"有料 ";color:var(--sage);font-family:"Roboto Mono",monospace;font-size:11px;}

  .buggy-page /* ---------- access ---------- */
  .bgy-sec{background:var(--bg-0);}
  .buggy-page .access-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
  .buggy-page .coord-list{list-style:none;}
  .buggy-page .coord-list li{
    display:grid;grid-template-columns:120px 1fr;gap:16px;
    padding:16px 0;border-bottom:1px solid var(--line-soft);
  }
  .buggy-page .coord-list li:first-child{border-top:1px solid var(--line-soft);}
  .buggy-page .coord-key{font-family:"Roboto Mono",monospace;font-size:13px;font-weight:700;color:var(--accent);letter-spacing:0.02em;}
  .buggy-page .coord-val{font-size:14.5px;color:var(--sand);}
  .buggy-page .coord-val small{display:block;color:var(--sage);font-size:13.5px;margin-top:3px;}
  .buggy-page .map-frame{
    aspect-ratio:1/1;border:1px solid var(--line-soft);border-radius:6px;
    background:var(--bg-card);
    display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;
  }

  .buggy-page /* ---------- photo slots ---------- */
  .photo-slot{
    position:relative;
    aspect-ratio:var(--ar,16/9);
    border:1px dashed var(--line-soft);
    border-radius:4px;
    background:var(--bg-card);
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
    overflow:hidden;
  }
  .buggy-page .photo-slot::before, .buggy-page .photo-slot::after{
    content:"";position:absolute;width:14px;height:14px;
    border:1.5px solid var(--accent-dim);
  }
  .buggy-page .photo-slot::before{top:8px;left:8px;border-right:none;border-bottom:none;}
  .buggy-page .photo-slot::after{bottom:8px;right:8px;border-left:none;border-top:none;}
  .buggy-page .photo-slot svg{width:24px;height:24px;stroke:var(--sage);opacity:.6;}
  .buggy-page .photo-slot span{
    font-family:"Roboto Mono",monospace;font-size:12px;letter-spacing:.03em;
    color:var(--ink-dim);text-align:center;padding:0 16px;
  }
  .buggy-page .photo-slot.filled{border-style:solid;border-color:var(--line-soft);}
  .buggy-page .photo-slot.filled img{width:100%;height:100%;object-fit:cover;display:block;}
  .buggy-page .gallery-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
  .buggy-page .course-card .photo-slot{margin-bottom:16px;}
  .buggy-page .panel .photo-slot{margin-top:18px;}

  .buggy-page /* ---------- final cta ---------- */
  .final-cta{
    background:linear-gradient(180deg,#182B1D,var(--ink));
    border-top:1px solid var(--line-soft);
    text-align:center;padding:110px 28px;
  }
  .buggy-page .final-cta h2{font-size:clamp(30px,5vw,46px);color:var(--sand);margin-bottom:18px;}
  .buggy-page .final-cta p{color:var(--ink-dim);font-size:15.5px;margin-bottom:38px;}
  .buggy-page .final-ctas{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;}

  .buggy-page .reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
  .buggy-page .reveal.in{opacity:1;transform:translateY(0);}

  @media (max-width:820px){
    .buggy-page .intro-grid, .buggy-page .course-grid, .buggy-page .two-col-grid, .buggy-page .access-grid{grid-template-columns:1fr;}
    .buggy-page .stats-inner{grid-template-columns:repeat(2,1fr);}
    .buggy-page .stat{border-right:1px solid var(--line-soft);border-bottom:1px solid var(--line-soft);}
    .buggy-page .stat:nth-child(2n){border-right:none;}
    .buggy-page .ledger-row{grid-template-columns:1fr;text-align:left;gap:6px;}
    .buggy-page .ledger-price{text-align:left;}
    .buggy-page .ledger-time{text-align:left;}
    .buggy-page .hero-reticle{display:none;}
    .buggy-page .gallery-strip{grid-template-columns:1fr;}
    .buggy-page section{padding:64px 0;}
  }
  .buggy-page /* ---------- target sections ---------- */
  .target{background:var(--bg-0);border-top:1px solid var(--line-soft);}
  .buggy-page .target-alt{background:var(--bg-1);}
  .buggy-page .target-head{max-width:720px;margin-bottom:56px;}
  .buggy-page .target-head h2{
    font-size:clamp(28px,4.4vw,44px);
    line-height:1.35;color:var(--sand);margin-bottom:20px;
  }
  .buggy-page .target-head h2 em{font-style:normal;color:var(--accent);}
  .buggy-page .target-lead{color:var(--ink-dim);font-size:16px;}

  .buggy-page .target-grid{
    display:grid;grid-template-columns:0.85fr 1.15fr;
    gap:44px;align-items:start;margin-bottom:52px;
  }
  .buggy-page .target-photo{position:sticky;top:120px;}

  .buggy-page .target-points{display:flex;flex-direction:column;gap:26px;}
  .buggy-page .point{display:flex;gap:20px;align-items:flex-start;}
  .buggy-page .point-num{
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.06em;
    color:var(--accent);
    border:1px solid var(--accent-dim);
    border-radius:var(--radius);
    padding:6px 10px;flex-shrink:0;line-height:1;
  }
  .buggy-page .point-body h4{
    font-family:"Zen Kaku Gothic New",system-ui,sans-serif;
    font-size:18px;font-weight:700;color:var(--sand);
    margin-bottom:8px;line-height:1.5;
  }
  .buggy-page .point-body p{color:var(--ink-dim);font-size:14.5px;line-height:1.8;}

  .buggy-page .target-note{
    background:var(--bg-card);
    border:1px solid var(--line-soft);
    border-left:3px solid var(--accent);
    border-radius:6px;
    padding:32px 34px;
  }
  .buggy-page .note-label{
    display:block;
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.06em;
    color:var(--accent);margin-bottom:12px;
  }
  .buggy-page .target-note p{color:var(--ink-dim);font-size:15px;margin-bottom:24px;}

  @media (max-width:860px){
    .buggy-page .target-grid{grid-template-columns:1fr;gap:32px;}
    .buggy-page .target-photo{position:static;}
    .buggy-page .point{gap:14px;}
    .buggy-page .target-note{padding:26px 22px;}
  }

  .buggy-page /* ---------- target picker ---------- */
  .picker{background:var(--bg-0);}
  .buggy-page .picker-head{max-width:720px;margin-bottom:48px;}
  .buggy-page .picker-head h2{font-size:clamp(28px,4.2vw,42px);line-height:1.35;color:var(--sand);margin-bottom:18px;}
  .buggy-page .picker-head h2 em{font-style:normal;color:var(--accent);}
  .buggy-page .picker-lead{color:var(--ink-dim);font-size:16px;}

  .buggy-page .picker-grid{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:22px;margin-bottom:48px;
  }
  .buggy-page .picker-card{
    display:flex;flex-direction:column;
    background:var(--bg-card);
    border:1px solid var(--line-soft);
    border-radius:6px;overflow:hidden;
    transition:border-color .25s ease, transform .25s ease;
  }
  .buggy-page .picker-card:hover{border-color:var(--accent);transform:translateY(-4px);}
  .buggy-page .picker-photo{border:none;border-radius:0;margin:0;}
  .buggy-page .picker-body{padding:24px 24px 26px;display:flex;flex-direction:column;gap:10px;flex:1;}
  .buggy-page .picker-tag{
    font-family:"Roboto Mono",monospace;
    font-size:12px;font-weight:700;letter-spacing:0.08em;color:var(--accent);
  }
  .buggy-page .picker-body h3{
    font-family:"Zen Kaku Gothic New",system-ui,sans-serif;
    font-size:22px;font-weight:700;color:var(--sand);line-height:1.4;
  }
  .buggy-page .picker-body p{color:var(--ink-dim);font-size:14.5px;line-height:1.8;flex:1;}
  .buggy-page .picker-more{
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.04em;color:var(--accent);
    margin-top:4px;
  }

  .buggy-page .picker-facts{
    display:flex;flex-wrap:wrap;gap:0;
    border:1px solid var(--line-soft);border-radius:6px;
    background:var(--bg-1);overflow:hidden;
  }
  .buggy-page .pf{
    flex:1 1 180px;
    padding:18px 22px;
    border-right:1px solid var(--line-soft);
    display:flex;flex-direction:column;gap:6px;
  }
  .buggy-page .pf:last-child{border-right:none;}
  .buggy-page .pf-k{
    font-family:"Roboto Mono",monospace;
    font-size:12px;letter-spacing:0.05em;color:var(--ink-dim);
  }
  .buggy-page .pf-v{font-size:16px;font-weight:700;color:var(--sand);}

  @media (max-width:900px){
    .buggy-page .picker-grid{grid-template-columns:1fr;gap:18px;}
    .buggy-page .pf{flex:1 1 50%;border-bottom:1px solid var(--line-soft);}
  }

  .buggy-page /* ---------- anchor offset for sticky nav ---------- */
  #picker, .buggy-page #corporate, .buggy-page #family, .buggy-page #couple, .buggy-page #courses, .buggy-page #pricing, .buggy-page #access, .buggy-page #booking, .buggy-page #top{
    scroll-margin-top:96px;
  }

  .buggy-page [data-scroll]{cursor:pointer;}

  .buggy-page /* ---------- google map ---------- */
  .map-frame{
    display:flex;flex-direction:column;gap:14px;
    align-items:stretch;justify-content:flex-start;
  }
  .buggy-page .map-card{
    position:relative;display:block;overflow:hidden;
    border:1px solid var(--line-soft);border-radius:6px;
    transition:border-color .25s ease, transform .25s ease;
  }
  .buggy-page .map-card:hover{border-color:var(--accent);transform:translateY(-2px);}
  .buggy-page .map-card-bg{display:block;width:100%;height:auto;}
  .buggy-page .map-card-info{
    position:absolute;left:0;right:0;bottom:0;
    padding:16px 18px;
    display:flex;flex-direction:column;gap:3px;
    background:linear-gradient(180deg, rgba(15,26,19,0), rgba(15,26,19,0.94));
  }
  .buggy-page .map-card-label{
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.05em;color:var(--accent);
  }
  .buggy-page .map-card-addr{font-size:15px;font-weight:700;color:var(--sand);}
  .buggy-page .map-card-coord{
    font-family:"Roboto Mono",monospace;
    font-size:12px;color:var(--ink-dim);
  }
  .buggy-page .map-actions{display:flex;gap:10px;flex-wrap:wrap;}
  .buggy-page .map-btn{
    flex:1 1 auto;text-align:center;
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.03em;
    color:var(--sand);
    border:1px solid var(--line-soft);
    border-radius:var(--radius);
    padding:12px 18px;
    transition:border-color .2s ease,color .2s ease;
  }
  .buggy-page .map-btn:hover{border-color:var(--accent);color:var(--accent);}
  .buggy-page .map-btn-primary{
    background:var(--accent);color:#1A0E04;border-color:var(--accent);
  }
  .buggy-page .map-btn-primary:hover{color:#1A0E04;opacity:.9;}

  /* ---------- large screens: full-bleed layout ---------- */
  @media (min-width:1400px){
    .buggy-page .bgy-wrap{max-width:none;padding:0 60px;}
    
    .buggy-page .final-cta .bgy-wrap{max-width:900px;}
  }
  @media (min-width:1900px){
    .buggy-page .bgy-wrap{padding:0 90px;}
    
  }

  .buggy-page /* ---------- course caution ---------- */
  .course-caution{
    margin-top:28px;
    background:var(--bg-card);
    border:1px solid var(--line-soft);
    border-left:3px solid var(--accent-dim);
    border-radius:6px;
    padding:22px 26px;
  }
  .buggy-page .caution-label{
    display:block;
    font-family:"Roboto Mono",monospace;
    font-size:13px;font-weight:700;letter-spacing:0.06em;
    color:var(--accent);margin-bottom:10px;
  }
  .buggy-page .course-caution p{color:var(--ink-dim);font-size:14.5px;line-height:1.8;}
  .buggy-page .course-caution p b{color:var(--sand);font-weight:700;}

  .buggy-page /* ---------- gallery slideshow ---------- */
  .gal-frame{position:relative;}
  .buggy-page .gal-frame .gal-img{
    position:absolute;inset:0;
    width:100%;height:100%;object-fit:cover;
    opacity:0;transition:opacity 1.1s ease;
  }
  .buggy-page .gal-frame .gal-img.active{opacity:1;}

  .buggy-page /* ---------- per-photo crop anchors ---------- */
  .fp-gallery-13{object-position:50% 50%;}
  .buggy-page .fp-gallery-12{object-position:50% 50%;}
  .buggy-page .fp-card-corporate{object-position:40% 54%;}
  .buggy-page .fp-card-couple{object-position:69% 22%;}
  .buggy-page .fp-card-family{object-position:44% 31%;}
  .buggy-page .fp-course-forest{object-position:37% 20%;}
  .buggy-page .fp-course-mud{object-position:29% 19%;}
  .buggy-page .fp-course-stroll{object-position:59% 15%;}
  .buggy-page .fp-gallery-1{object-position:50% 50%;}
  .buggy-page .fp-gallery-10{object-position:50% 50%;}
  .buggy-page .fp-gallery-11{object-position:50% 50%;}
  .buggy-page .fp-gallery-2{object-position:50% 50%;}
  .buggy-page .fp-gallery-3{object-position:50% 39%;}
  .buggy-page .fp-gallery-4{object-position:50% 50%;}
  .buggy-page .fp-gallery-5{object-position:50% 50%;}
  .buggy-page .fp-gallery-6{object-position:50% 50%;}
  .buggy-page .fp-gallery-7{object-position:50% 50%;}
  .buggy-page .fp-gallery-8{object-position:50% 50%;}
  .buggy-page .fp-gallery-9{object-position:50% 50%;}
  .buggy-page .fp-sec-corporate{object-position:54% 41%;}
  .buggy-page .fp-sec-couple{object-position:36% 18%;}
  .buggy-page .fp-sec-family{object-position:47% 22%;}

  .buggy-page /* ---------- course pricing ---------- */
  .course-price{
    margin:14px 0 4px;
    padding:12px 14px;
    background:rgba(232,128,46,0.07);
    border:1px solid var(--accent-dim);
    border-radius:4px;
  }
  .buggy-page .cp-main{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;}
  .buggy-page .cp-yen{
    font-family:"Roboto Mono",monospace;
    font-size:26px;font-weight:700;color:var(--accent);line-height:1.1;
  }
  .buggy-page .cp-unit{
    font-family:"Roboto Mono",monospace;
    font-size:13px;color:var(--ink-dim);
  }
  .buggy-page .cp-season{
    margin-top:6px;padding-top:6px;
    border-top:1px dashed var(--accent-dim);
    font-family:"Roboto Mono",monospace;
    font-size:13.5px;color:var(--ink-dim);
  }
  .buggy-page .cp-season b{color:var(--accent);font-size:15px;}
  .buggy-page .cp-note{
    margin-top:6px;
    font-size:13.5px;line-height:1.7;color:var(--ink-dim);
  }

  

  /* ロゴと長い表記を両立できるのは 1260px 以上だけ */

  

  .buggy-page .course-id-feature{
    color:var(--bg-0);
    background:var(--accent);
    padding:3px 8px;border-radius:3px;
  }

  .buggy-page .btn-solo{font-size:16.5px;padding:17px 34px;}

  
  
  
  

  
  

  
  
  
  
  

  
  
  
  
  
  

  
  
  
  
  

  
  

  

/* 右下の追随メニューに統合したので、旧「質問する」ボタンは出さない。
   （パネル自体は使う。メニューの「よくある質問」から開く） */

/* ── 背景の装飾ライン（等高線）を活かす ──────────────────
   このページの面は元々ベタ塗りだったので、そのままだと
   共通の等高線が完全に隠れてしまう。トップと同じ見え方に
   なるよう、わずかに透かす。色味は変わらない。 */
.buggy-page .stats,
.buggy-page .target-alt,
.buggy-page .courses,
.buggy-page .pricing,
.buggy-page .two-col,
.buggy-page .bgy-sec,
.buggy-page .final-cta{background-color:rgba(23,48,31,.74)}
.buggy-page .intro{background-color:rgba(16,32,26,.62)}

/* 営業時間タグの補足（※季節により変動） */
.buggy-page .tag .tag-note{
  font-size:.78em;
  font-weight:400;
  color:var(--ink-dim,#C9CBB8);
  margin-left:2px;
}
@media (max-width:520px){
  .buggy-page .tag .tag-note{display:block;margin-left:0;}
}
