:root {
    --ink:#22262c;
    --ground:#ffffff;
    --greige:#f5f3ef;
    --charcoal:#20242a;
    --charcoal-2:#282d34;
    --gold:#8f7d55;
    --gold-soft:#b3a37c;
    --line:#e3dfd7;
    --muted:#6f6a60;
    --on-dark:#eceae5;
    --on-dark-muted:#a2a4a8;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }
  body {
    font-family:'Noto Sans JP','Hiragino Kaku Gothic ProN',sans-serif;
    background:var(--ground); color:var(--ink);
    font-size:15px; font-weight:400; line-height:2.05;
    letter-spacing:.05em;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img { max-width:100%; display:block; }
  a { color:inherit; }
  .mincho { font-family:'Shippori Mincho','Hiragino Mincho ProN','Yu Mincho',serif; }
  .en { font-family:'Cormorant Garamond','Times New Roman',serif; }

  /* ---------- header ---------- */
  header {
    position:fixed; inset:0 0 auto 0; z-index:100;
    background:rgba(252,251,249,.94); color:var(--ink);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(34,38,44,.08);
    transition:box-shadow .35s;
  }
  header.scrolled { box-shadow:0 6px 24px rgba(34,38,44,.08); }
  .util {
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    height:32px; padding:0 clamp(18px,3vw,36px);
    background:var(--greige); color:var(--muted);
    border-bottom:1px solid rgba(34,38,44,.06);
    font-size:10px; letter-spacing:.12em;
  }
  .util a { color:var(--ink); text-decoration:none; }
  .util a:hover { text-decoration:underline; text-underline-offset:.25em; }
  .util .u-r { display:flex; gap:20px; align-items:center; white-space:nowrap; }
  @media (max-width:700px){ .util .u-l { display:none; } .util { justify-content:flex-end; } }
  .hmain {
    display:flex; align-items:center; gap:clamp(16px,2.2vw,32px);
    height:64px; padding:0 clamp(18px,3vw,36px);
  }
  header .hbrand { display:flex; flex-direction:column; line-height:1.5; text-decoration:none; flex-shrink:0; }
  header .hbrand .n { font-size:13px; letter-spacing:.2em; font-weight:500; }
  header .hbrand .s { font-size:9px; letter-spacing:.16em; color:var(--muted); }
  header nav { display:flex; gap:clamp(12px,1.7vw,26px); margin:0 auto; }
  header nav a.nv {
    display:flex; flex-direction:column; align-items:center; gap:2px;
    text-decoration:none; padding:4px 0; border-bottom:2px solid transparent;
  }
  header nav a.nv .e {
    font-family:'Cormorant Garamond',serif; font-size:13px; letter-spacing:.16em;
    color:var(--ink); line-height:1.2; transition:color .2s;
  }
  header nav a.nv .j { font-size:8.5px; letter-spacing:.08em; color:var(--muted); line-height:1.2; white-space:nowrap; }
  header nav a.nv:hover .e { color:var(--gold); }
  header nav a.nv[aria-current="page"] { border-bottom-color:var(--gold); }
  header nav a.nv[aria-current="page"] .e { color:var(--gold); }
  header .hcta {
    font-size:11.5px; letter-spacing:.18em; text-decoration:none; white-space:nowrap;
    background:var(--charcoal); color:#fff; border:1px solid var(--charcoal);
    padding:11px 26px; border-radius:999px; transition:all .25s; flex-shrink:0; margin-left:auto;
  }
  header .hcta:hover { opacity:.82; }
  header nav ~ .hcta { margin-left:0; }
  .burger {
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:40px; height:40px; padding:9px; flex-shrink:0;
    background:none; border:1px solid var(--line); cursor:pointer;
  }
  .burger span { display:block; height:1px; background:var(--ink); transition:transform .3s, opacity .3s; }
  .burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }
  @media (max-width:1230px){
    header nav { display:none; }
    .burger { display:flex; }
  }
  @media (max-width:520px){ header .hcta { display:none; } }
  .drawer {
    position:fixed; inset:0; z-index:99; background:#fcfbf9;
    color:var(--ink); padding:120px clamp(28px,8vw,80px) 40px;
    overflow-y:auto; display:none;
  }
  .drawer.open { display:block; }
  .drawer ul { list-style:none; }
  .drawer li + li { border-top:1px solid var(--line); }
  .drawer a.dv {
    display:flex; align-items:baseline; gap:16px; text-decoration:none;
    padding:14px 2px; color:var(--ink);
  }
  .drawer a.dv .e { font-family:'Cormorant Garamond',serif; font-size:20px; letter-spacing:.2em; color:var(--gold); min-width:9.5em; }
  .drawer a.dv .j { font-size:12px; letter-spacing:.14em; color:var(--muted); }
  .drawer .d-foot { margin-top:30px; font-size:12px; color:var(--muted); line-height:2.1; letter-spacing:.06em; }
  .drawer .d-foot a { color:var(--gold); text-decoration:none; }
  @media (max-width:520px){ .drawer a.dv { flex-direction:column; gap:2px; } .drawer a.dv .e { min-width:0; } }

  /* ---------- ページ切り替え ---------- */
  .pg { display:none; }
  .pg.active { display:block; }

  /* ---------- 下層ページの見出し帯 ---------- */
  .page-hero {
    background:var(--greige);
    color:var(--ink);
    padding:150px 0 54px;
  }
  .page-hero .bc { font-size:10.5px; letter-spacing:.14em; color:var(--muted); margin-bottom:20px; }
  .page-hero .bc a { color:var(--gold); text-decoration:none; }
  .page-hero .bc a:hover { text-decoration:underline; text-underline-offset:.25em; }
  .page-hero h1.pt { font-family:'Cormorant Garamond',serif; font-size:clamp(34px,4.6vw,52px); letter-spacing:.18em; font-weight:500; line-height:1.15; }
  .page-hero .pj { font-size:13px; letter-spacing:.28em; color:var(--muted); margin-top:8px; }
  .page-lede { padding:clamp(44px,6vw,64px) 0 0; }
  .page-lede p { max-width:44em; color:var(--muted); font-size:14px; line-height:2.15; }

  /* 写真背景の見出し帯 */
  .page-hero.php { position:relative; overflow:hidden; padding:190px 0 74px; color:#fff; }
  .page-hero.php .bc { color:rgba(255,255,255,.72); }
  .page-hero.php .bc a { color:#fff; }
  .page-hero.php .pj { color:rgba(255,255,255,.85); }
  .page-hero.php .bgimg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 38%; }
  .page-hero.php::after {
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(26,29,35,.46) 0%, rgba(26,29,35,.28) 45%, rgba(26,29,35,.82) 100%);
  }
  .page-hero.php .wrap { position:relative; z-index:1; }
  .page-hero.php h1.pt, .page-hero.php .pj, .page-hero.php .bc { text-shadow:0 1px 14px rgba(0,0,0,.45); }
  .page-hero .pcap { position:absolute; right:12px; bottom:8px; z-index:1; font-size:9px; letter-spacing:.06em; color:rgba(255,255,255,.65); }

  /* ---------- common ---------- */
  section { position:relative; }
  .wrap { max-width:1240px; margin:0 auto; padding:0 clamp(24px,5vw,60px); }
  .sec-head { margin-bottom:clamp(40px,6vw,64px); }
  .sec-head .no-en { display:flex; align-items:baseline; gap:18px; margin-bottom:14px; }
  .sec-head .no-en .num { font-family:'Cormorant Garamond',serif; font-size:15px; letter-spacing:.2em; color:var(--gold); }
  .sec-head .no-en .line { width:44px; height:1px; background:var(--gold); align-self:center; }
  .sec-head .no-en .en-t { font-family:'Cormorant Garamond',serif; font-size:clamp(30px,4vw,44px); letter-spacing:.16em; line-height:1.1; color:var(--ink); }
  .sec-head .ja-t { font-size:13px; letter-spacing:.3em; color:var(--muted); }
  .dark .sec-head .no-en .en-t { color:var(--ink); }
  .dark .sec-head .ja-t { color:var(--muted); }

  .copy-l { font-family:'Shippori Mincho',serif; font-size:clamp(21px,2.6vw,28px); font-weight:500; line-height:2.1; letter-spacing:.12em; text-wrap:balance; }
  .body-t { color:var(--muted); font-size:14px; line-height:2.15; max-width:38em; }
  .dark .body-t { color:var(--muted); }
  .cap { font-size:10px; letter-spacing:.08em; color:var(--muted); margin-top:10px; }
  .dark .cap { color:var(--muted); }

  /* reveal */
  .rv { opacity:0; transform:translateY(28px); transition:opacity .9s ease, transform .9s ease; }
  .rv.on { opacity:1; transform:none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    .rv { opacity:1; transform:none; transition:none; }
    .hero img.bg { animation:none; }
  }

  h1, h2, h3, .copy-l, .sec-head .ja-t, .pcard h4, .cta h3 { word-break:auto-phrase; }
  p, li, td, th, dd, dt { word-break:auto-phrase; text-wrap:pretty; }
  .sp { display:none; }
  @media (max-width:640px){
    .sp { display:inline; }
    .copy-l { letter-spacing:.08em; }
    .ot th { width:110px; }
  }

  /* ---------- hero（TOPのみ） ---------- */
  .hero { position:relative; min-height:100svh; overflow:hidden; }
  .hero img.bg {
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; object-position:24% 72%;
  }
  @keyframes heroZoom { from { transform:scale(1.055); } to { transform:scale(1); } }
  .hero img.bg { animation:heroZoom 3.2s ease-out both; }
  .hero-inner {
    position:absolute; inset:0 0 84px 0;
    display:flex; align-items:center; justify-content:flex-end;
    max-width:1360px; margin:0 auto;
    padding:96px clamp(24px,5vw,72px) 0;
    color:var(--ink);
  }
  .hero-copy { max-width:600px; padding-left:36px; border-left:1px solid rgba(34,38,44,.28); }
  .hero .eyebrow-en {
    font-size:12px; letter-spacing:.4em; margin-bottom:28px; color:var(--muted);
    text-transform:uppercase; font-weight:500;
  }
  .hero h1 {
    font-size:clamp(28px,3.2vw,44px); font-weight:500; line-height:1.8;
    letter-spacing:.13em; margin-bottom:36px; color:var(--ink); white-space:nowrap;
  }
  @media (max-width:560px){ .hero h1 { white-space:normal; text-wrap:balance; } }
  .hero .pname { font-size:clamp(12px,1.4vw,14.5px); letter-spacing:.3em; margin-bottom:7px; color:var(--ink); }
  .hero .pname-ja { font-size:11px; letter-spacing:.22em; color:var(--muted); }
  .hero-facts {
    position:absolute; right:0; bottom:0; left:0;
    background:rgba(252,251,249,.93); backdrop-filter:blur(8px);
    border-top:1px solid rgba(34,38,44,.08);
    display:grid; grid-template-columns:repeat(4,auto); justify-content:center;
  }
  .hero-facts div {
    padding:17px clamp(20px,4vw,52px); text-align:center; color:var(--muted);
    font-size:11px; letter-spacing:.14em; line-height:1.7;
  }
  .hero-facts div + div { border-left:1px solid rgba(34,38,44,.1); }
  .hero-facts strong { display:block; font-size:18px; font-weight:600; color:var(--ink); font-family:'Shippori Mincho',serif; letter-spacing:.06em; }
  .hero-facts strong .u { font-size:11px; font-family:'Noto Sans JP',sans-serif; font-weight:400; margin-left:1px; }
  @media (max-width:880px){
    .hero img.bg { object-position:32% 78%; }
    .hero-inner { align-items:flex-end; justify-content:flex-start; inset:0 0 132px 0; padding-bottom:34px; }
    .hero-inner::before {
      content:""; position:absolute; left:0; right:0; bottom:-140px; top:32%;
      background:linear-gradient(to top, rgba(250,249,246,.97) 34%, rgba(250,249,246,.88) 58%, rgba(250,249,246,.42) 82%, rgba(250,249,246,0) 100%);
      pointer-events:none;
    }
    .hero .eyebrow-en { font-size:10.5px; letter-spacing:.32em; margin-bottom:18px; }
    .hero-copy { position:relative; padding-left:22px; }
    .hero h1 { letter-spacing:.1em; margin-bottom:24px; }
    .hero-facts { grid-template-columns:1fr 1fr; }
    .hero-facts div + div { border-left:none; }
    .hero-facts div:nth-child(even) { border-left:1px solid rgba(34,38,44,.1); }
    .hero-facts div:nth-child(n+3) { border-top:1px solid rgba(34,38,44,.1); }
  }

  /* ---------- intro ---------- */
  .intro { padding:clamp(90px,13vw,150px) 0; text-align:center; }
  .intro .copy-l { margin-bottom:34px; }
  .intro .body-t { margin:0 auto; }

  /* ---------- TOP：コンテンツ誘導 ---------- */
  .digest { padding:0 0 clamp(80px,11vw,120px); }
  .dg-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  @media (max-width:960px){ .dg-grid { grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .dg-grid { grid-template-columns:1fr; } }
  a.dg {
    display:block; text-decoration:none; background:var(--ground);
    border:1px solid var(--line); overflow:hidden;
    transition:box-shadow .3s, transform .3s;
  }
  a.dg:hover { box-shadow:0 16px 44px rgba(34,38,44,.13); transform:translateY(-3px); }
  a.dg .ph { aspect-ratio:16/10; overflow:hidden; background:#fff; }
  a.dg .ph img { width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
  a.dg:hover .ph img { transform:scale(1.05); }
  a.dg .bd { padding:20px 24px 24px; }
  a.dg .e { font-family:'Cormorant Garamond',serif; font-size:21px; letter-spacing:.18em; color:var(--ink); display:flex; align-items:center; gap:12px; }
  a.dg .e::after { content:""; width:26px; height:1px; background:var(--gold); transition:width .3s; }
  a.dg:hover .e::after { width:44px; }
  a.dg .j { font-size:11.5px; color:var(--muted); letter-spacing:.1em; margin-top:4px; }
  .dg-sub { display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
  .dg-sub a {
    flex:1; min-width:200px; text-align:center; text-decoration:none;
    border:1px solid var(--line); padding:16px 10px;
    font-size:12px; letter-spacing:.16em; color:var(--ink);
    transition:border-color .25s, color .25s;
  }
  .dg-sub a .en2 { font-family:'Cormorant Garamond',serif; letter-spacing:.2em; margin-right:10px; color:var(--gold); }
  .dg-sub a:hover { border-color:var(--gold); color:var(--gold); }

  /* ---------- town ---------- */
  .town { padding:0 0 clamp(80px,10vw,120px); }
  .town-grid { display:grid; grid-template-columns:1.25fr 1fr; gap:clamp(32px,5vw,72px); align-items:center; }
  @media (max-width:880px){ .town-grid { grid-template-columns:1fr; } }
  .town-grid .ph { overflow:hidden; }
  .town-grid .ph img { transition:transform 1.2s ease; }
  .town-grid .ph:hover img { transform:scale(1.03); }
  .town-copy .copy-l { margin-bottom:26px; }
  .night {
    margin-top:clamp(70px,9vw,110px);
    position:relative; min-height:64vh; display:flex; align-items:center; overflow:hidden;
  }
  .night img.bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
  .night .scrim { position:absolute; inset:0; background:rgba(16,18,24,.45); }
  .night .inner { position:relative; width:100%; max-width:1240px; margin:0 auto; padding:80px clamp(24px,5vw,60px); color:#fff; }
  .night .copy-l { color:#fff; margin-bottom:18px; text-shadow:0 2px 26px rgba(0,0,0,.5); }
  .night p.sub { font-size:13px; letter-spacing:.12em; opacity:.85; max-width:34em; line-height:2.1; }
  .town-more { padding:clamp(70px,9vw,110px) 0 0; }
  .town-more .copy-l { margin-bottom:22px; }

  /* ---------- access ---------- */
  .access { background:var(--greige); padding:clamp(64px,9vw,110px) 0; }
  .access-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(32px,5vw,72px); align-items:center; }
  @media (max-width:880px){ .access-grid { grid-template-columns:1fr; } }
  .access-copy .copy-l { margin-bottom:26px; }
  .stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:38px; }
  @media (max-width:700px){ .stats { grid-template-columns:repeat(2,1fr); } }
  .stats div { background:var(--ground); padding:22px 10px; text-align:center; }
  .stats strong { display:block; font-family:'Shippori Mincho',serif; font-size:27px; font-weight:600; color:var(--ink); line-height:1.3; letter-spacing:.02em; }
  .stats strong .u { font-size:12px; font-family:'Noto Sans JP',sans-serif; letter-spacing:.05em; color:var(--muted); }
  .stats span { font-size:11px; letter-spacing:.1em; color:var(--muted); word-break:keep-all; }
  .note-s { font-size:10px; color:var(--muted); margin-top:14px; }

  .sub-h { font-family:'Shippori Mincho',serif; font-size:clamp(16px,2.2vw,19px); font-weight:600; letter-spacing:.1em; color:var(--ink); margin-bottom:18px; }
  .dark .sub-h { color:var(--ink); }

  /* ---------- 主要駅への所要時間 ---------- */
  .dest-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:8px; }
  @media (max-width:820px){ .dest-grid { grid-template-columns:repeat(2,1fr); } }
  .dest-grid > div { background:var(--ground); padding:0 0 clamp(18px,2.6vw,24px); text-align:center; }
  .dest-grid .dph { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; margin-bottom:16px; }
  .dest-grid .to { display:block; font-size:11px; letter-spacing:.16em; color:var(--muted); margin-bottom:8px; }
  .dest-grid .st { display:block; font-family:'Shippori Mincho',serif; font-size:clamp(17px,2.2vw,20px); font-weight:600; color:var(--ink); margin-bottom:6px; letter-spacing:.08em; }
  .dest-grid .tm { display:block; font-family:'Shippori Mincho',serif; font-size:clamp(22px,3vw,27px); font-weight:600; color:var(--ink); line-height:1.3; letter-spacing:.02em; }
  .dest-grid .tm .u { font-size:12px; font-family:'Noto Sans JP',sans-serif; font-weight:400; letter-spacing:.05em; color:var(--muted); }
  .dest-grid .via { display:block; font-size:10.5px; color:var(--muted); margin-top:7px; letter-spacing:.05em; word-break:keep-all; }

  /* ---------- 写真つき周辺施設カード ---------- */
  .shop-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(20px,3vw,36px); margin-top:8px; }
  @media (max-width:760px){ .shop-grid { grid-template-columns:1fr; } }
  .shop-grid figure { margin:0; background:var(--ground); border:1px solid var(--line); }
  .shop-grid img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
  .shop-grid figcaption { padding:clamp(16px,2.4vw,22px) clamp(16px,2.4vw,24px) clamp(18px,2.6vw,26px); }
  .shop-grid .sname { display:flex; justify-content:space-between; align-items:baseline; gap:10px; flex-wrap:wrap; margin-bottom:9px; }
  .shop-grid .sname b { font-family:'Shippori Mincho',serif; font-size:15.5px; font-weight:600; letter-spacing:.05em; color:var(--ink); }
  .shop-grid .sname .dist { font-size:11px; color:var(--gold); letter-spacing:.06em; white-space:nowrap; }
  .shop-grid p { font-size:12.5px; line-height:2; color:var(--muted); margin:0; }

  /* ---------- 図版 ---------- */
  .fig { margin:0; }
  .fig img { width:100%; display:block; border:1px solid var(--line); }
  .fig figcaption { font-size:10px; color:var(--muted); letter-spacing:.06em; margin-top:8px; }
  .fig .fttl { display:block; font-family:'Shippori Mincho',serif; font-size:14px; font-weight:600; letter-spacing:.08em; color:var(--ink); margin-top:12px; }
  .fig-duo { display:grid; grid-template-columns:1fr 1fr; gap:clamp(20px,3vw,36px); }
  @media (max-width:760px){ .fig-duo { grid-template-columns:1fr; } }
  .pano { margin:clamp(40px,6vw,60px) 0 0; }
  .pano img { width:100%; display:block; }
  .pano figcaption { font-size:10px; color:var(--muted); letter-spacing:.06em; margin-top:8px; text-align:right; }

  /* ---------- 汎用データテーブル（周辺施設・タイプ一覧） ---------- */
  .dtab-wrap { overflow-x:auto; margin-top:8px; }
  table.dtab { width:100%; min-width:520px; border-collapse:collapse; font-size:13px; }
  table.dtab th, table.dtab td { padding:12px 10px; border-bottom:1px solid var(--line); text-align:left; line-height:1.8; }
  table.dtab thead th { font-size:11px; font-weight:500; color:var(--muted); letter-spacing:.14em; border-bottom:1px solid var(--ink); }
  table.dtab tbody th { font-weight:600; color:var(--ink); white-space:nowrap; letter-spacing:.04em; }
  table.dtab .n { font-family:'Shippori Mincho',serif; font-weight:600; color:var(--ink); font-size:15px; white-space:nowrap; }
  table.dtab td.c { white-space:nowrap; }

  /* ---------- タイプ一覧（3列グループ） ---------- */
  .type-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,3vw,34px); margin-top:8px; }
  @media (max-width:820px){ .type-cols { grid-template-columns:1fr; } }
  .type-col h4 { font-family:'Shippori Mincho',serif; font-size:17px; font-weight:600; letter-spacing:.1em; color:var(--ink); border-bottom:1px solid var(--ink); padding-bottom:10px; margin-bottom:2px; display:flex; justify-content:space-between; align-items:baseline; }
  .type-col h4 .ct { font-size:11px; font-family:'Noto Sans JP',sans-serif; font-weight:400; color:var(--muted); letter-spacing:.1em; }
  .type-col table { width:100%; border-collapse:collapse; font-size:12.5px; }
  .type-col th, .type-col td { padding:9px 4px; border-bottom:1px solid var(--line); }
  .type-col th { text-align:left; font-weight:500; color:var(--body); letter-spacing:.06em; white-space:nowrap; }
  .type-col td { text-align:right; font-family:'Shippori Mincho',serif; font-weight:600; color:var(--ink); white-space:nowrap; }
  .type-col td .u2 { font-size:10.5px; font-family:'Noto Sans JP',sans-serif; font-weight:400; color:var(--muted); margin-left:2px; }
  .type-col .pr { color:var(--gold); font-size:10px; letter-spacing:.14em; font-family:'Noto Sans JP',sans-serif; font-weight:500; margin-left:6px; vertical-align:1px; }

  /* ---------- フロア構成 ---------- */
  .floors { max-width:640px; margin:8px auto 0; list-style:none; padding:0; }
  .floors li { display:flex; align-items:center; gap:clamp(14px,2.5vw,24px); padding:16px clamp(14px,2.5vw,22px); border:1px solid var(--line); border-top:none; background:var(--ground); }
  .floors li:first-child { border-top:1px solid var(--line); }
  .floors li.hl { background:#faf7f0; }
  .floors .fl { font-family:'Shippori Mincho',serif; font-size:15px; font-weight:600; color:var(--gold); min-width:6.2em; letter-spacing:.04em; white-space:nowrap; }
  .floors .fn { font-size:12.5px; letter-spacing:.06em; line-height:1.8; color:var(--ink); }
  .floors .fn small { display:block; font-size:10.5px; color:var(--muted); letter-spacing:.05em; }

  /* ---------- 共用施設カード ---------- */
  .fac-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:30px; }
  @media (max-width:700px){ .fac-grid { grid-template-columns:1fr; } }
  .fac-grid > div { background:var(--ground); padding:clamp(20px,3vw,28px); }
  .fac-grid .fph { width:calc(100% + 2*clamp(20px,3vw,28px)); margin:calc(-1*clamp(20px,3vw,28px)) calc(-1*clamp(20px,3vw,28px)) 18px; display:block; aspect-ratio:16/10; object-fit:cover; }
  .fac-grid .fcap { display:block; font-size:9.5px; color:var(--muted); letter-spacing:.06em; margin-top:12px; }
  .fac-grid .fe { display:block; font-family:'Cormorant Garamond',serif; font-size:12px; letter-spacing:.24em; color:var(--gold); margin-bottom:8px; }
  .fac-grid h4 { font-family:'Shippori Mincho',serif; font-size:16px; font-weight:600; letter-spacing:.08em; margin:0 0 10px; color:var(--ink); }
  .fac-grid p { font-size:12.5px; line-height:2; color:var(--muted); letter-spacing:.03em; margin:0; }
  .rail { padding:clamp(64px,9vw,100px) 0 0; }
  .rail-table { width:100%; max-width:760px; border-collapse:collapse; font-size:13.5px; margin-top:8px; }
  .rail-table th, .rail-table td { padding:14px 10px; border-bottom:1px solid var(--line); text-align:left; }
  .rail-table th { font-weight:500; color:var(--muted); letter-spacing:.1em; white-space:nowrap; width:200px; }
  .rail-table strong { font-family:'Shippori Mincho',serif; color:var(--ink); font-size:19px; font-weight:600; }

  /* ---------- residence ---------- */
  .dark { background:var(--greige); color:var(--ink); }
  .residence { padding:clamp(64px,9vw,110px) 0; }
  .res-hero { position:relative; overflow:hidden; margin-bottom:clamp(40px,6vw,70px); }
  .res-hero img { width:100%; height:auto; }
  .res-hero .tag { position:absolute; left:0; bottom:0; background:rgba(252,251,249,.9); padding:12px 26px; font-size:11px; letter-spacing:.2em; color:var(--ink); }
  .res-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(32px,5vw,72px); align-items:center; }
  @media (max-width:880px){ .res-grid { grid-template-columns:1fr; } }
  .res-copy .copy-l { color:var(--ink); margin-bottom:26px; }
  .facilities { list-style:none; margin-top:30px; border-top:1px solid var(--line); }
  .facilities li {
    display:flex; justify-content:space-between; gap:16px; align-items:baseline;
    padding:13px 2px; border-bottom:1px solid var(--line);
    font-size:13px; letter-spacing:.08em;
  }
  .facilities li .en-f { font-family:'Cormorant Garamond',serif; font-size:13px; letter-spacing:.18em; color:var(--gold); white-space:nowrap; }

  /* ---------- plan ---------- */
  .plan { padding:clamp(64px,9vw,110px) 0; }
  .plan-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
  @media (max-width:1000px){ .plan-grid { grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .plan-grid { grid-template-columns:1fr; } }
  .pcard { border:1px solid var(--line); background:var(--ground); display:flex; flex-direction:column; transition:box-shadow .3s, transform .3s; }
  .pcard:hover { box-shadow:0 14px 40px rgba(34,38,44,.12); transform:translateY(-3px); }
  .pcard .pimg { background:#fff; border-bottom:1px solid var(--line); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; padding:14px; }
  .pcard .pimg img { max-height:100%; width:auto; object-fit:contain; }
  .pcard .pbody { padding:20px 22px 24px; text-align:center; }
  .pcard h4 { font-family:'Cormorant Garamond',serif; font-size:25px; font-weight:500; letter-spacing:.14em; margin-bottom:2px; }
  .pcard .sz { font-size:11.5px; color:var(--muted); letter-spacing:.06em; margin-bottom:12px; }
  .pcard .rent { font-size:12px; color:var(--muted); }
  .pcard .rent strong { font-family:'Shippori Mincho',serif; font-size:21px; color:var(--ink); font-weight:600; margin:0 2px; }
  .pcard .pd { font-size:12px; color:var(--muted); text-align:left; line-height:1.95; margin-top:14px; border-top:1px solid var(--line); padding-top:14px; }

  /* ---------- movie ---------- */
  .movie { background:var(--greige); padding:clamp(64px,9vw,110px) 0; }
  .movie-grid { display:grid; grid-template-columns:1.15fr 1fr; gap:clamp(32px,5vw,72px); align-items:center; }
  @media (max-width:880px){ .movie-grid { grid-template-columns:1fr; } }
  .movie .ph { position:relative; overflow:hidden; }
  .movie .play {
    position:absolute; inset:0; margin:auto; width:70px; height:70px; border-radius:50%;
    border:1px solid rgba(255,255,255,.9); background:rgba(22,26,32,.35); backdrop-filter:blur(3px);
    display:flex; align-items:center; justify-content:center;
  }
  .movie .play::after { content:""; border-style:solid; border-width:9px 0 9px 15px; border-color:transparent transparent transparent #fff; margin-left:4px; }
  .movie-copy .copy-l { margin-bottom:24px; }

  /* ---------- agent (恵比寿不動産の強み) ---------- */
  .agent { background:var(--ground); color:var(--ink); border-top:1px solid var(--line); padding:clamp(64px,9vw,100px) 0; }
  .agent .lead-wrap { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.35fr); gap:clamp(28px,5vw,64px); align-items:start; }
  @media (max-width:820px){ .agent .lead-wrap { grid-template-columns:1fr; } }
  .agent h3 { font-family:'Shippori Mincho',serif; font-size:clamp(19px,2.6vw,25px); font-weight:600; line-height:1.9; letter-spacing:.06em; }
  .ag-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); margin-top:clamp(34px,5vw,48px); }
  @media (max-width:700px){ .ag-stats { grid-template-columns:repeat(2,1fr); } }
  .ag-stats div { background:var(--ground); padding:22px 10px; text-align:center; }
  .ag-stats strong { display:block; font-family:'Shippori Mincho',serif; font-size:clamp(21px,2.8vw,27px); font-weight:600; color:var(--ink); line-height:1.3; letter-spacing:.02em; }
  .ag-stats strong .u { font-size:12px; font-family:'Noto Sans JP',sans-serif; letter-spacing:.05em; color:var(--muted); }
  .ag-stats span { font-size:10.5px; letter-spacing:.08em; color:var(--muted); word-break:keep-all; }
  .ag-more { display:inline-block; margin-top:26px; font-size:11px; letter-spacing:.14em; text-decoration:none; color:var(--gold); border-bottom:1px solid var(--gold); padding-bottom:4px; }
  .ag-more:hover { opacity:.75; }

  /* ---------- instagram ---------- */
  .insta { background:var(--greige); padding:clamp(64px,9vw,96px) 0; }
  .ig-card { max-width:620px; margin:0 auto; background:var(--ground); border:1px solid var(--line); box-shadow:0 18px 50px rgba(34,38,44,.07); }
  .ig-head { display:flex; align-items:center; gap:clamp(14px,2.2vw,20px); padding:clamp(16px,2.5vw,22px) clamp(16px,2.5vw,26px); }
  .ig-head img.av { width:clamp(46px,6vw,58px); height:auto; border-radius:50%; border:1px solid var(--line); flex-shrink:0; }
  .ig-id { min-width:0; }
  .ig-id .h { font-size:13.5px; font-weight:700; letter-spacing:.04em; margin-bottom:2px; }
  .ig-id .h .vf { display:inline-block; width:11px; height:11px; margin-left:5px; border-radius:50%; background:#3897f0; position:relative; vertical-align:-1px; }
  .ig-id .h .vf::after { content:""; position:absolute; left:3.5px; top:2.5px; width:2.5px; height:5px; border:solid #fff; border-width:0 1.5px 1.5px 0; transform:rotate(45deg); }
  .ig-id .b { font-size:10px; color:var(--muted); letter-spacing:.04em; line-height:1.6; }
  .ig-stats { display:flex; gap:clamp(10px,1.8vw,20px); margin-top:6px; }
  .ig-stats span { font-size:10px; color:var(--muted); letter-spacing:.05em; }
  .ig-stats strong { font-family:'Shippori Mincho',serif; font-size:12.5px; color:var(--ink); font-weight:600; margin-right:2px; }
  .ig-follow {
    margin-left:auto; align-self:center; flex-shrink:0;
    font-size:10px; letter-spacing:.12em; text-decoration:none; white-space:nowrap;
    border:1px solid var(--ink); color:var(--ink);
    padding:7px 16px; border-radius:999px; transition:all .25s;
  }
  .ig-follow:hover { background:var(--ink); color:#fff; }
  .ig-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; padding:0 2px 2px; }
  .ig-grid a { display:block; overflow:hidden; aspect-ratio:3/4; }
  .ig-grid img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease, opacity .3s; }
  .ig-grid a:hover img { transform:scale(1.04); opacity:.92; }
  .insta .cap { text-align:center; margin-top:16px; }
  @media (max-width:640px){
    .ig-head { flex-wrap:wrap; }
    .ig-follow { margin-left:0; width:100%; text-align:center; align-self:auto; }
  }

  /* ---------- faq ---------- */
  .faq { padding:clamp(64px,9vw,110px) 0; }
  .qa-list { max-width:820px; margin:0 auto; }
  .qa { border-bottom:1px solid var(--line); padding:26px 4px; }
  .qa:first-child { border-top:1px solid var(--line); }
  .qa dt {
    display:flex; gap:16px; align-items:baseline;
    font-weight:500; font-size:15.5px; letter-spacing:.06em; color:var(--ink);
  }
  .qa dt::before { content:"Q"; font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--gold); flex-shrink:0; }
  .qa dd { display:flex; gap:16px; align-items:baseline; margin-top:12px; }
  .qa dd::before { content:"A"; font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--muted); flex-shrink:0; }
  .qa dd p { color:var(--muted); font-size:13.5px; line-height:2.1; max-width:none; }

  /* ---------- cta（TOPのみ表示） ---------- */
  body.subpg .cta { display:none; }
  .cta { background:var(--greige); color:var(--ink); border-top:1px solid var(--line); text-align:center; padding:clamp(70px,9vw,100px) 0; }
  .cta .en-t { font-family:'Cormorant Garamond',serif; font-size:15px; letter-spacing:.4em; color:var(--gold); margin-bottom:18px; }
  .cta h3 { font-family:'Shippori Mincho',serif; font-size:clamp(20px,2.6vw,26px); font-weight:500; letter-spacing:.16em; margin-bottom:16px; }
  .cta p { font-size:13px; color:var(--muted); max-width:40em; margin:0 auto 34px; line-height:2.1; }
  .btn {
    display:inline-block; text-decoration:none;
    background:var(--charcoal); border:1px solid var(--charcoal); color:#fff;
    padding:17px 62px; font-size:13px; letter-spacing:.24em; border-radius:999px; transition:opacity .3s;
  }
  .btn:hover { opacity:.82; }
  .cta small { display:block; margin-top:16px; font-size:10px; color:var(--muted); letter-spacing:.06em; }

  /* ---------- outline ---------- */
  .outline { padding:clamp(64px,9vw,110px) 0; }
  .ot-wrap { max-width:820px; margin:0 auto; overflow-x:auto; }
  .ot { width:100%; border-collapse:collapse; font-size:13.5px; line-height:1.9; }
  .ot th, .ot td { padding:14px 8px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; }
  .ot th { width:170px; font-weight:500; letter-spacing:.14em; color:var(--muted); white-space:nowrap; }
  .outline .note-s { max-width:820px; margin:18px auto 0; font-size:10px; color:var(--muted); line-height:1.9; }

  /* ---------- contact ---------- */
  .contact { background:var(--greige); text-align:center; padding:clamp(64px,9vw,100px) 0; }
  .contact .en-t { font-family:'Cormorant Garamond',serif; font-size:15px; letter-spacing:.4em; color:var(--gold); margin-bottom:22px; }
  .contact .cname { font-family:'Shippori Mincho',serif; font-size:19px; letter-spacing:.3em; margin-bottom:4px; }
  .contact .csub { font-size:11px; color:var(--muted); letter-spacing:.1em; margin-bottom:24px; }
  .contact .tel { font-family:'Noto Sans JP',sans-serif; font-weight:500; font-size:clamp(28px,4.6vw,36px); letter-spacing:.05em; margin-bottom:4px; }
  .contact .tel a { text-decoration:none; }
  .contact .hours { font-size:12px; color:var(--muted); margin-bottom:32px; }
  .btn-d { display:inline-block; text-decoration:none; border:1px solid var(--ink); color:var(--ink); padding:15px 54px; font-size:12.5px; letter-spacing:.22em; border-radius:999px; transition:all .3s; }
  .btn-d:hover { background:var(--ink); color:#fff; }

  /* ---------- 前後ページへの回遊 ---------- */
  .pnav { border-top:1px solid var(--line); }
  .pnav .wrap { display:grid; grid-template-columns:1fr 1fr; }
  .pnav a {
    display:flex; flex-direction:column; gap:4px; text-decoration:none;
    padding:34px 10px; transition:background .25s;
  }
  .pnav a:hover { background:var(--greige); }
  .pnav a .lbl { font-size:10px; letter-spacing:.22em; color:var(--muted); }
  .pnav a .e { font-family:'Cormorant Garamond',serif; font-size:22px; letter-spacing:.16em; color:var(--ink); }
  .pnav a .jp2 { font-size:11px; color:var(--muted); letter-spacing:.12em; }
  .pnav a.next { text-align:right; align-items:flex-end; border-left:1px solid var(--line); }

  /* ---------- footer ---------- */
  footer { background:var(--charcoal); color:var(--on-dark-muted); padding:54px 0 60px; font-size:10.5px; line-height:2; letter-spacing:.05em; }
  .f-grid { display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:40px; margin-bottom:34px; }
  @media (max-width:820px){ .f-grid { grid-template-columns:1fr; gap:26px; } }
  footer .f-name { color:var(--on-dark); font-size:12.5px; letter-spacing:.22em; margin-bottom:12px; }
  footer .f-h { font-family:'Cormorant Garamond',serif; font-size:12px; letter-spacing:.26em; color:var(--gold-soft); margin-bottom:10px; }
  footer ul { list-style:none; }
  footer ul a { color:var(--on-dark-muted); text-decoration:none; display:inline-block; padding:2.5px 0; }
  footer ul a:hover { color:var(--gold-soft); }
  footer a { color:var(--on-dark-muted); }
  footer .legal { margin-top:8px; padding-top:16px; border-top:1px solid var(--charcoal-2); }

  /* ---------- rooms（空室情報） ---------- */
  .sample-band { background:#fff7e6; color:#8a5a00; border-bottom:1px solid #f1dfb8; font-size:12.5px; letter-spacing:.06em; padding:12px 0; }
  .sample-band strong { font-weight:700; margin-right:8px; }
  .rooms { padding:clamp(44px,6vw,64px) 0 clamp(64px,9vw,110px); }
  .rooms .page-lede p { max-width:44em; }
  .rooms-sum { margin-top:clamp(28px,4vw,40px); }
  .rooms-sum strong { font-size:clamp(19px,2.4vw,24px); }
  .rooms-filter { display:flex; flex-wrap:wrap; gap:8px; margin:clamp(28px,4vw,40px) 0 4px; }
  .rooms-filter button {
    font-family:inherit; font-size:12px; letter-spacing:.14em; cursor:pointer;
    background:var(--ground); color:var(--ink); border:1px solid var(--line);
    padding:9px 18px; border-radius:999px; transition:all .25s;
  }
  .rooms-filter button:hover { border-color:var(--gold); color:var(--gold); }
  .rooms-filter button.on { background:var(--charcoal); border-color:var(--charcoal); color:#fff; }
  table.rooms-table { min-width:760px; }
  table.rooms-table th, table.rooms-table td { vertical-align:middle; }
  table.rooms-table tbody th { font-family:'Shippori Mincho',serif; font-size:15px; }
  table.rooms-table td.madori { width:104px; padding:8px 4px; }
  table.rooms-table td.madori a { display:block; width:96px; height:96px; background:#fff; border:1px solid var(--line); }
  table.rooms-table td.madori img { width:100%; height:100%; object-fit:contain; display:block; }
  table.rooms-table td.rent { font-family:'Shippori Mincho',serif; font-weight:600; font-size:16px; color:var(--ink); }
  table.rooms-table .flag { display:inline-block; font-family:'Noto Sans JP',sans-serif; font-size:9.5px; font-weight:500; letter-spacing:.12em; color:var(--gold); border:1px solid var(--gold); border-radius:999px; padding:1px 7px; margin-left:6px; vertical-align:2px; }
  table.rooms-table td.act { white-space:nowrap; text-align:right; }
  table.rooms-table .lk {
    display:inline-block; text-decoration:none; font-size:11.5px; letter-spacing:.14em;
    border:1px solid var(--ink); color:var(--ink); padding:6px 14px; border-radius:999px; transition:all .25s;
  }
  table.rooms-table .lk + .lk { margin-left:6px; }
  table.rooms-table .lk:hover { background:var(--ink); color:#fff; }
  table.rooms-table .lk-inq { background:var(--charcoal); border-color:var(--charcoal); color:#fff; }
  table.rooms-table .lk-inq:hover { opacity:.82; }
  .rooms-none { color:var(--muted); font-size:13.5px; padding:24px 0; }
  .rooms-empty { text-align:center; padding:clamp(40px,6vw,64px) 0; }
  .rooms-empty .copy-l { margin-bottom:20px; }
  .rooms-empty .body-t { margin:0 auto; }
  .rooms-empty a { color:var(--gold); }

  /* スマホでは部屋一覧をカード型にする */
  @media (max-width:640px){
    .rooms .dtab-wrap { overflow:visible; }
    table.rooms-table { min-width:0; display:block; }
    table.rooms-table thead { display:none; }
    table.rooms-table tbody { display:grid; gap:12px; }
    table.rooms-table tbody tr {
      display:grid; grid-template-columns:96px 1fr; grid-template-areas:
        "madori head" "madori spec" "act act";
      gap:6px 14px; align-items:start;
      border:1px solid var(--line); padding:12px; background:var(--ground);
    }
    table.rooms-table tbody tr[hidden] { display:none; }
    table.rooms-table tbody tr > * { border:none; padding:0; }
    table.rooms-table td.madori { grid-area:madori; width:auto; }
    table.rooms-table tbody th { grid-area:head; font-size:16px; }
    table.rooms-table tbody th::after { content:""; }
    table.rooms-table td:nth-child(3), table.rooms-table td:nth-child(4),
    table.rooms-table td:nth-child(6), table.rooms-table td:nth-child(7), table.rooms-table td:nth-child(8) { display:none; }
    table.rooms-table td.rent { grid-area:spec; text-align:left; font-size:18px; }
    table.rooms-table td.rent::after { content:attr(data-spec); display:block; font-family:'Noto Sans JP',sans-serif; font-weight:400; font-size:12px; color:var(--muted); margin-top:2px; }
    table.rooms-table td.act { grid-area:act; text-align:left; display:flex; gap:8px; margin-top:4px; }
    table.rooms-table td.act .lk { flex:1; text-align:center; }
    table.rooms-table .lk + .lk { margin-left:0; }
  }
