  :root {
    --cream: #FBF3E4;
    --cream-deep: #F6E9D4;
    --coral: #E8756B;
    --coral-soft: #F5B8B0;
    --coral-bg: #FBE3DE;
    --orange: #EF9A4D;
    --orange-bg: #FCEEDC;
    --green: #7FA86B;
    --green-bg: #EAF2E3;
    --brown: #5C4633;
    --brown-soft: #8A7460;
    --white: #FFFFFF;
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow: 0 4px 14px rgba(160, 120, 90, 0.10);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "BIZ UDGothic", sans-serif;
    background: #EFE3CE;
    color: var(--brown);
    -webkit-font-smoothing: antialiased;
  }
  .page {
    max-width: 430px;
    margin: 0 auto;
    background: var(--cream);
    min-height: 100vh;
  }

  /* ---------- header ---------- */
  header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 12px;
    background: var(--cream);
  }
  .logo { display: flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 900; letter-spacing: 0.02em; }
  .logo svg { flex: none; }
  .menu-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; background: none; border: none; cursor: pointer; }
  .menu-btn span { display: block; width: 26px; height: 3.5px; border-radius: 3px; background: var(--coral); }
  .menu-btn small { font-size: 9px; color: var(--brown-soft); margin-top: 2px; }

  /* ---------- hero ---------- */
  .hero {
    margin: 6px 14px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--cream-deep);
    box-shadow: var(--shadow);
  }
  .hero-photo {
    width: 100%; height: 400px; object-fit: cover; display: block;
    object-position: center 70%;
  }
  .hero::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 240px; z-index: 1;
    background: linear-gradient(180deg, rgba(251,243,228,0.96) 0%, rgba(251,243,228,0.72) 45%, rgba(251,243,228,0) 100%);
    pointer-events: none;
  }
  .hero-copy {
    position: absolute; top: 22px; left: 20px; right: 20px; z-index: 2;
  }
  .hero-copy h1 {
    font-size: 33px; line-height: 1.32; font-weight: 900;
    text-shadow: 0 1px 10px rgba(255,250,240,0.9), 0 0 26px rgba(255,250,240,0.75);
  }
  .hero-copy h1 .accent { color: var(--coral); }
  .hero-copy p {
    margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--brown);
    text-shadow: 0 1px 8px rgba(255,250,240,0.95), 0 0 18px rgba(255,250,240,0.8);
  }
  .hero-search {
    position: relative;
    margin: -54px 16px 0;
    padding: 14px 14px 18px;
    background: rgba(255,255,255,0.96);
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(160,120,90,0.18);
  }
  .addr-input {
    display: flex; align-items: center; gap: 8px;
    border: 2px solid #EADFCE; border-radius: 14px;
    padding: 12px 14px; background: var(--white);
    color: #B4A48F; font-size: 15px;
  }
  .search-btn {
    margin-top: 12px; width: 100%;
    background: var(--coral); color: #fff;
    border: none; border-radius: 999px;
    font-family: inherit; font-size: 19px; font-weight: 900; letter-spacing: 0.2em;
    padding: 15px 0 16px; cursor: pointer;
    box-shadow: 0 6px 0 #D05E55;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .hero-deco { display: flex; justify-content: space-between; padding: 10px 20px 16px; }

  /* ---------- section title ---------- */
  .section-title {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 30px 0 16px; font-size: 19px; font-weight: 900; color: var(--coral);
  }

  /* ---------- city cards ---------- */
  .city-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    padding: 0 16px;
  }
  .city-card {
    background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 14px 12px 12px;
    display: flex; align-items: center; gap: 10px;
  }
  .city-card .pict { flex: none; }
  .city-card .pict img { width: 44px; height: 44px; border-radius: 10px; display: block; }
  .city-card .txt { flex: 1; min-width: 0; }
  .city-card .ward { font-size: 13.5px; font-weight: 900; white-space: nowrap; }
  .city-card .metric { font-size: 10.5px; color: var(--brown-soft); font-weight: 700; white-space: nowrap; }
  .city-card .value { font-size: 21px; font-weight: 900; color: var(--coral); white-space: nowrap; }
  .city-card .value small { font-size: 12px; }
  .city-card.alt .value { color: var(--orange); }
  .city-note {
    text-align: center; font-size: 10.5px; color: var(--brown-soft);
    margin: 12px 0 0; font-weight: 700;
  }

  /* ---------- theme cards (3列縦型・カンプ準拠) ---------- */
  .themes { padding: 0 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
  .theme-card {
    border-radius: 20px; box-shadow: var(--shadow);
    padding: 12px 9px 12px;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 7px;
  }
  .theme-card.pink   { background: var(--coral-bg); }
  .theme-card.yellow { background: var(--orange-bg); }
  .theme-card.green  { background: var(--green-bg); }
  .theme-card .pict-img { width: 100%; border-radius: 12px; display: block; }
  .theme-card h3 { font-size: 14.5px; font-weight: 900; }
  .theme-card.pink h3   { color: var(--coral); }
  .theme-card.yellow h3 { color: #D9822B; }
  .theme-card.green h3  { color: var(--green); }
  .theme-card p { font-size: 10px; color: var(--brown-soft); font-weight: 700; line-height: 1.55; }
  .theme-card .go {
    flex: none; margin-top: 2px;
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 900; font-size: 14px;
  }
  .theme-card.pink .go   { background: var(--coral); }
  .theme-card.yellow .go { background: var(--orange); }
  .theme-card.green .go  { background: var(--green); }

  /* ---------- trust ---------- */
  .trust {
    margin: 22px 16px 0;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 20px 18px;
    display: flex; align-items: center; gap: 14px;
  }
  .trust .txt { flex: 1; }
  .trust h4 { font-size: 14.5px; font-weight: 900; line-height: 1.5; }
  .trust h4 .accent { color: var(--coral); }
  .trust p { font-size: 11.5px; color: var(--brown-soft); font-weight: 700; margin-top: 6px; }
  .trust .op { margin-top: 8px; font-size: 12.5px; font-weight: 900; }

  /* ---------- footer ---------- */
  footer {
    margin-top: 26px;
    background: var(--cream-deep);
    border-top: 3px dotted #E5CFAF;
    padding: 20px 16px 26px;
    text-align: center;
  }
  .foot-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0;
    font-size: 11.5px; font-weight: 700; color: var(--brown-soft);
  }
  .foot-links a { color: inherit; text-decoration: none; padding: 0 10px; border-right: 1px solid #D9C4A4; }
  .foot-links a:last-child { border-right: none; }
  .copyright { margin-top: 12px; font-size: 10.5px; color: #A08B72; font-weight: 700; }
/* ========== hub page ========== */
.hub-title {
  text-align: center; font-size: 27px; font-weight: 900;
  margin: 14px 16px 4px; line-height: 1.4;
}
.hub-title .ward-name { color: var(--coral); font-size: 31px; }
.hub-hero {
  margin: 12px 14px 0; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow);
}
.hub-hero img { width: 100%; height: 210px; object-fit: cover; display: block; }
.hub-hero .landmark {
  position: absolute; right: 10px; bottom: 8px;
  background: rgba(255,255,255,0.92); border-radius: 16px; padding: 6px 10px 2px;
  box-shadow: 0 3px 10px rgba(160,120,90,0.25);
}
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 16px; margin-top: 18px;
}
.stat-card {
  border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 14px 12px 12px; text-align: center; background: var(--white);
}
.stat-card.tint-pink   { background: #FCEBE7; }
.stat-card.tint-orange { background: var(--orange-bg); }
.stat-card .ward { font-size: 12px; font-weight: 900; color: var(--coral); }
.stat-card.tint-orange .ward, .stat-card.alt .ward { color: var(--orange); }
.stat-card .metric { font-size: 12.5px; color: var(--brown); font-weight: 900; margin-top: 2px; }
.stat-card .value { font-size: 30px; font-weight: 900; color: var(--coral); margin-top: 2px; }
.stat-card .value small { font-size: 14px; }
.stat-card.tint-orange .value { color: var(--orange); }

.chart-card {
  margin: 16px 16px 0; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 16px 14px 10px;
}
.chart-card .chart-head { display: flex; align-items: baseline; justify-content: space-between; }
.chart-card h3 { font-size: 16px; font-weight: 900; }
.chart-card .unit { font-size: 10.5px; color: var(--brown-soft); font-weight: 700; }
.chart-card svg { width: 100%; height: auto; display: block; margin-top: 6px; }
.chart-note { font-size: 10px; color: var(--brown-soft); font-weight: 700; margin: 6px 2px 4px; }

.hub-themes { padding: 0 16px; display: grid; gap: 12px; margin-top: 18px; }
.hub-theme {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.hub-theme .txt { flex: 1; }
.hub-theme h3 { font-size: 15.5px; font-weight: 900; border-bottom: 3px solid var(--coral-soft); display: inline-block; padding-bottom: 2px; }
.hub-theme p { font-size: 11.5px; color: var(--brown-soft); font-weight: 700; margin-top: 5px; }
.hub-theme .go {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; background: var(--coral);
}
.hub-theme.t2 h3 { border-color: #F8D8A8; } .hub-theme.t2 .go { background: var(--orange); }
.hub-theme.t3 h3 { border-color: #C9DDBA; } .hub-theme.t3 .go { background: var(--green); }

.source-band {
  margin: 20px 16px 0; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 14px 16px; text-align: center;
  font-size: 12px; font-weight: 700; color: var(--brown);
}
.source-band .op { margin-top: 4px; font-weight: 900; font-size: 12.5px; }

.tabbar {
  margin-top: 24px; background: var(--white);
  border-top: 2px solid #F0E2CC;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 10px 0 14px;
}
.tabbar a {
  text-align: center; text-decoration: none;
  font-size: 10.5px; font-weight: 900; color: var(--brown-soft);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.tabbar a.active { color: var(--coral); }
.tabbar a + a { border-left: 2px dotted #EADFCE; }

/* ========== baikyaku page ========== */
.pillar-h1 {
  text-align: center; font-size: 25px; font-weight: 900; line-height: 1.45;
  margin: 16px 20px 0;
}
.pillar-sub { text-align: center; font-size: 13px; font-weight: 700; color: var(--brown-soft); margin: 8px 16px 0; }
.yoy-wrap { display: flex; gap: 10px; align-items: flex-start; margin-top: 8px; }
.yoy { flex: none; width: 118px; }
.yoy .label { font-size: 12.5px; font-weight: 900; }
.yoy .num { font-size: 40px; font-weight: 900; color: var(--coral); line-height: 1.1; }
.yoy .num small { font-size: 18px; }
.yoy .tag {
  display: inline-block; margin-top: 6px; background: var(--coral-bg); color: var(--coral);
  font-size: 10px; font-weight: 900; border-radius: 8px; padding: 3px 8px;
}
.legend { display: flex; gap: 14px; margin-top: 8px; font-size: 10.5px; font-weight: 700; color: var(--brown-soft); }
.legend .key { display: inline-block; width: 18px; height: 0; border-top: 3px solid var(--coral); vertical-align: middle; margin-right: 4px; border-radius: 2px; }
.legend .key.avg { border-top: 3px dotted #A9A29A; }

.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 16px; margin-top: 14px; }
.mini-stat {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 12px 6px 12px; text-align: center;
}
.mini-stat .metric { font-size: 11.5px; font-weight: 900; margin-top: 4px; }
.mini-stat .value { font-size: 23px; font-weight: 900; margin-top: 2px; }
.mini-stat .value small { font-size: 11px; }
.mini-stat.c1 .value { color: var(--coral); }
.mini-stat.c2 .value { color: var(--orange); }
.mini-stat.c3 .value { color: var(--green); }

.addr-section {
  margin: 20px 16px 0; background: var(--coral-bg);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 18px 16px 20px;
}
.addr-section h3 { font-size: 16.5px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.addr-section .addr-input { margin-top: 12px; background: var(--white); }
.addr-section .search-btn { margin-top: 12px; }

.report-cta {
  margin: 16px 16px 0; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 18px 16px; display: flex; gap: 12px; align-items: center;
}
.report-cta .txt { flex: 1; }
.report-cta h3 { font-size: 18px; font-weight: 900; color: var(--coral); }
.report-cta p { font-size: 12px; font-weight: 700; color: var(--brown-soft); margin-top: 6px; line-height: 1.6; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip {
  font-size: 10.5px; font-weight: 900; border-radius: 999px; padding: 4px 9px;
  display: inline-flex; align-items: center; gap: 4px;
}
.chip.c1 { background: var(--coral-bg); color: var(--coral); }
.chip.c2 { background: var(--orange-bg); color: #D9822B; }
.chip.c3 { background: var(--green-bg); color: var(--green); }
.report-mock { flex: none; position: relative; width: 118px; height: 130px; }
.report-mock .sheet {
  position: absolute; background: var(--white); border: 2px solid #EADFCE; border-radius: 8px;
}
.report-mock .s1 { width: 96px; height: 122px; left: 0; top: 4px; z-index: 3; box-shadow: 0 4px 10px rgba(160,120,90,0.18); overflow: hidden; }
.report-mock .s2 { width: 96px; height: 122px; left: 12px; top: 0; transform: rotate(4deg); z-index: 2; }
.report-mock .s3 { width: 96px; height: 122px; left: 22px; top: 6px; transform: rotate(9deg); z-index: 1; }
.report-mock .s1 .head { background: var(--coral); color: #fff; font-size: 9.5px; font-weight: 900; text-align: center; padding: 4px 2px; }
.report-mock .s1 img { width: 100%; height: 46px; object-fit: cover; display: block; }
.report-mock .s1 .bars { padding: 6px 8px; }
.report-mock .s1 .bars span { display: block; height: 5px; border-radius: 3px; background: #F0E2CC; margin-top: 5px; }
.report-mock .s1 .bars span.hl { background: var(--coral-soft); width: 70%; }

.faq { margin: 20px 16px 0; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 13px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 900; margin-top: 10px;
}
.faq-item .q {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--coral); color: #fff; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item .arrow { margin-left: auto; color: var(--coral); font-weight: 900; }

.pillar-foot {
  margin-top: 24px; background: var(--coral); color: #fff;
  padding: 14px 16px 18px; text-align: center;
}
.pillar-foot .links { font-size: 10px; font-weight: 700; white-space: nowrap; }
.pillar-foot .links a { color: #fff; text-decoration: none; padding: 0 5px; border-right: 1px solid rgba(255,255,255,0.5); }
.pillar-foot .links a:last-child { border-right: none; }
.pillar-foot .cp { margin-top: 8px; font-size: 10px; opacity: 0.85; }

/* ========== akiya / shueki pages ========== */
.addr-section.orange { background: var(--orange-bg); }
.addr-section.orange .search-btn { background: var(--orange); box-shadow: 0 6px 0 #D9822B; }
.addr-section.green { background: var(--green-bg); }
.addr-section.green .search-btn { background: var(--green); box-shadow: 0 6px 0 #66904F; }

.bar-chart .row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.bar-chart .name { flex: none; width: 104px; font-size: 11px; font-weight: 900; text-align: right; line-height: 1.3; }
.bar-chart .track { flex: 1; background: #F6EBD8; border-radius: 8px; height: 22px; position: relative; }
.bar-chart .fill {
  height: 100%; border-radius: 8px; background: var(--coral-soft); min-width: 58px;
  display: flex; align-items: center; justify-content: flex-end;
  font-size: 11px; font-weight: 900; color: #fff; padding-right: 7px;
}
.bar-chart .row.hl .fill { background: var(--orange); }
.bar-chart .row.hl .name { color: var(--orange); }

.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; margin-top: 14px; }
.option-card {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 14px 12px; text-align: center;
}
.option-card .pict { height: 40px; display: flex; align-items: center; justify-content: center; }
.option-card h4 { font-size: 15px; font-weight: 900; margin-top: 6px; }
.option-card p { font-size: 11px; color: var(--brown-soft); font-weight: 700; margin-top: 4px; line-height: 1.55; }
.option-card .note {
  display: inline-block; margin-top: 6px; font-size: 9.5px; font-weight: 900;
  background: var(--orange-bg); color: #D9822B; border-radius: 8px; padding: 2px 7px;
}

.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; margin-top: 16px; }
.split-cta a {
  border-radius: var(--radius-md); box-shadow: var(--shadow); text-decoration: none;
  padding: 16px 12px; text-align: center; color: inherit;
}
.split-cta .sell { background: var(--green-bg); }
.split-cta .buy  { background: var(--white); }
.split-cta h4 { font-size: 15px; font-weight: 900; color: var(--green); }
.split-cta p { font-size: 10.5px; font-weight: 700; color: var(--brown-soft); margin-top: 4px; }

/* ========== static pages (company / policy) ========== */
.doc { padding: 6px 20px 10px; }
.doc h1 { font-size: 22px; font-weight: 900; text-align: center; margin: 14px 0 4px; }
.doc .lead { text-align: center; font-size: 12.5px; font-weight: 700; color: var(--brown-soft); }
.doc-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 18px 18px; margin-top: 16px;
}
.doc-card h2 {
  font-size: 15.5px; font-weight: 900; color: var(--coral);
  border-bottom: 3px solid var(--coral-bg); padding-bottom: 6px;
}
.doc-card p, .doc-card li { font-size: 12.5px; font-weight: 500; line-height: 1.9; margin-top: 8px; }
.doc-card ul { padding-left: 18px; margin-top: 4px; }
.doc-card table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.doc-card th, .doc-card td {
  font-size: 12px; text-align: left; padding: 8px 6px;
  border-bottom: 2px dotted #F0E2CC; vertical-align: top;
}
.doc-card th { white-space: nowrap; color: var(--brown-soft); font-weight: 900; width: 90px; }
.consent-box {
  margin-top: 12px; background: var(--coral-bg); border-radius: var(--radius-md);
  padding: 14px 14px; font-size: 12.5px; font-weight: 700; line-height: 1.9;
}

/* ========== 段1 lookup result ========== */
.js-addr-result { margin-top: 4px; }
.lk-card {
  margin-top: 12px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow); padding: 14px 14px 16px; text-align: left;
}
.lk-head { font-size: 15px; font-weight: 900; color: var(--coral); }
.lk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.lk-stat { background: #FDF7EC; border-radius: 12px; padding: 8px 10px; }
.lk-stat span { display: block; font-size: 10px; font-weight: 700; color: var(--brown-soft); }
.lk-stat b { font-size: 17px; font-weight: 900; color: var(--brown); }
.lk-more, .lk-cta {
  display: block; text-align: center; text-decoration: none; font-weight: 900;
  border-radius: 999px; padding: 11px 0; margin-top: 10px; font-size: 13.5px;
}
.lk-more { color: var(--coral); border: 2px solid var(--coral-soft); background: #fff; }
.lk-cta { color: #fff; background: var(--coral); box-shadow: 0 4px 0 #D05E55; }
.lk-miss {
  margin-top: 12px; background: var(--orange-bg); border-radius: 12px;
  padding: 12px 14px; font-size: 12px; font-weight: 700; text-align: left; line-height: 1.7;
}

/* ========== 段2 lead form ========== */
.lead-form { margin: 6px 16px 0; }
.lf-field { margin-top: 14px; }
.lf-field label { display: block; font-size: 12.5px; font-weight: 900; margin-bottom: 6px; }
.lf-field label .req {
  display: inline-block; background: var(--coral); color: #fff; font-size: 9.5px;
  border-radius: 6px; padding: 1px 6px; margin-left: 6px; vertical-align: 2px;
}
.lf-field input[type=text], .lf-field input[type=email], .lf-field input[type=tel], .lf-field select {
  width: 100%; border: 2px solid #EADFCE; border-radius: 12px; background: var(--white);
  font: inherit; font-size: 14px; color: var(--brown); padding: 12px 12px;
  -webkit-appearance: none; appearance: none;
}
.lf-field select { background-image: linear-gradient(45deg, transparent 50%, var(--coral) 50%), linear-gradient(135deg, var(--coral) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.lf-consent {
  margin-top: 16px; background: var(--coral-bg); border-radius: var(--radius-md);
  padding: 13px 14px; font-size: 12px; font-weight: 700; line-height: 1.8;
  display: flex; gap: 10px; align-items: flex-start;
}
.lf-consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--coral); flex: none; }
.lf-note { font-size: 10.5px; color: var(--brown-soft); font-weight: 700; margin-top: 8px; line-height: 1.7; }
.lf-submit { margin-top: 16px; }
.lf-status { margin-top: 12px; font-size: 13px; font-weight: 900; display: none; border-radius: 12px; padding: 12px 14px; }
.lf-status.err { display: block; background: var(--coral-bg); color: var(--coral); }
.lf-done { display: none; margin: 10px 16px 0; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 22px 18px; text-align: center; }
.lf-done h2 { font-size: 19px; font-weight: 900; color: var(--coral); }
.lf-done ol { text-align: left; margin: 14px 0 0 0; padding-left: 0; list-style: none; counter-reset: step; }
.lf-done li { counter-increment: step; font-size: 13px; font-weight: 700; line-height: 1.8; padding: 10px 0 10px 40px; position: relative; border-bottom: 2px dotted #F0E2CC; }
.lf-done li:last-child { border-bottom: none; }
.lf-done li::before {
  content: counter(step); position: absolute; left: 4px; top: 12px;
  width: 26px; height: 26px; border-radius: 50%; background: var(--coral); color: #fff;
  font-weight: 900; font-size: 13px; display: flex; align-items: center; justify-content: center;
}
.lf-done .second { margin-top: 12px; font-size: 11.5px; color: var(--brown-soft); font-weight: 700; line-height: 1.7; }

/* ========== drawer menu ========== */
.drawer {
  position: fixed; inset: 0; background: rgba(92,70,51,0.4); z-index: 50;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.drawer.on { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 270px; max-width: 82%;
  background: var(--cream); box-shadow: -6px 0 20px rgba(92,70,51,0.25);
  transform: translateX(100%); transition: transform .22s;
  display: flex; flex-direction: column;
}
.drawer.on .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; font-weight: 900; font-size: 15px; color: var(--coral);
  border-bottom: 3px dotted #E5CFAF;
}
.drawer-close {
  background: none; border: none; font-size: 26px; color: var(--brown-soft);
  cursor: pointer; line-height: 1; font-family: inherit;
}
.drawer-nav { display: flex; flex-direction: column; padding: 8px 0; overflow-y: auto; }
.drawer-nav a {
  text-decoration: none; color: var(--brown); font-weight: 900; font-size: 14px;
  padding: 14px 20px; border-bottom: 2px dotted #F0E2CC;
}
.drawer-nav a:last-child { border-bottom: none; }

/* ========== hub v2: hazard table / point cards / yomikata ========== */
.hazard-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hazard-table th, .hazard-table td {
  font-size: 11px; font-weight: 700; padding: 8px 6px; text-align: center;
  border-bottom: 2px dotted #F0E2CC;
}
.hazard-table th { color: var(--brown-soft); font-weight: 900; }
.hazard-table td.pt-name { text-align: left; font-weight: 900; font-size: 11px; }
.hazard-table .lv { display: inline-block; border-radius: 8px; padding: 2px 7px; font-weight: 900; font-size: 10.5px; }
.hazard-table .lv.safe { background: var(--green-bg); color: var(--green); }
.hazard-table .lv.low  { background: var(--orange-bg); color: #D9822B; }
.hazard-table .lv.mid  { background: var(--coral-bg); color: var(--coral); }

.point-cards { display: grid; gap: 10px; margin-top: 8px; }
.point-card {
  background: #FDFAF3; border: 2px solid #F3E6D2; border-radius: var(--radius-md);
  padding: 12px 14px;
}
.point-card .pt-head { display: flex; justify-content: space-between; align-items: baseline; }
.point-card .pt-name { font-size: 13px; font-weight: 900; }
.point-card .pt-price { font-size: 16px; font-weight: 900; color: var(--coral); white-space: nowrap; }
.point-card .pt-price small { font-size: 10px; }
.point-card .pt-meta { font-size: 10.5px; color: var(--brown-soft); font-weight: 700; margin-top: 4px; }

.yomikata { margin: 16px 16px 0; background: var(--coral-bg); border-radius: var(--radius-lg); padding: 16px 16px; }
.yomikata h3 { font-size: 15px; font-weight: 900; color: var(--coral); display: flex; align-items: center; gap: 8px; }
.yomikata ul { list-style: none; margin-top: 8px; }
.yomikata li { font-size: 12.5px; font-weight: 700; line-height: 1.8; padding-left: 18px; position: relative; }
.yomikata li::before { content: "●"; color: var(--coral-soft); position: absolute; left: 0; font-size: 10px; top: 4px; }
.freshness { text-align: center; font-size: 10px; color: var(--brown-soft); font-weight: 700; margin-top: 10px; }
@media (min-width: 700px) {
  .point-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ==== レスポンシブ(必ずファイル末尾: 幅統一ルールを最終適用させる) ==== */
/* ========== responsive: tablet (>=700px) ========== */
@media (min-width: 700px) {
  .page { max-width: 700px; }
  .hero-photo { height: 440px; object-position: center 60%; }
  .hero-copy h1 { font-size: 40px; }
  .hero-copy p { font-size: 15px; }
  .hero-search { max-width: 620px; margin-left: auto; margin-right: auto; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .mini-stats { grid-template-columns: repeat(3, 1fr); }
  .option-grid { grid-template-columns: repeat(4, 1fr); }
  /* コンテンツ幅は全セクション共通(サヨン指摘: 下に行くほど狭くなるのを揃える) */
  .city-grid, .stat-grid, .mini-stats, .option-grid, .split-cta,
  .themes, .hub-themes, .addr-section, .report-cta, .chart-card, .trust,
  .source-band, .faq, .yomikata, .freshness, .lead-form, .lf-done, .city-note {
    max-width: 620px; margin-left: auto; margin-right: auto;
  }
  .chart-card, .addr-section, .report-cta, .trust, .yomikata { margin-top: 16px; }
  .themes, .hub-themes { margin-top: 16px; }
  .source-band { margin-top: 20px; }
  .hub-hero { max-width: 620px; margin-left: auto; margin-right: auto; }
  .hub-hero img { height: 280px; }
  .doc { max-width: 640px; margin: 0 auto; }
}

/* ========== responsive: PC (>=1040px) ========== */
@media (min-width: 1040px) {
  .page { max-width: 1000px; }
  .hero { margin: 10px 24px 0; }
  .hero-photo { height: 480px; object-position: center 55%; }
  .hero-copy { top: 40px; left: 44px; right: auto; max-width: 460px; }
  .hero-copy h1 { font-size: 46px; }
  .hero::before { height: 300px; background: linear-gradient(115deg, rgba(251,243,228,0.96) 18%, rgba(251,243,228,0.65) 44%, rgba(251,243,228,0) 68%); }
  .hero-search { max-width: 640px; margin-top: -62px; }
  .section-title { font-size: 22px; }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  /* コンテンツ幅 760px で全セクション統一 */
  .city-grid, .stat-grid, .mini-stats, .option-grid, .split-cta,
  .themes, .hub-themes, .addr-section, .report-cta, .chart-card, .trust,
  .source-band, .faq, .yomikata, .freshness, .lead-form, .lf-done, .city-note,
  .hub-hero, .pillar-h1, .pillar-sub, .hub-title {
    max-width: 760px; margin-left: auto; margin-right: auto;
  }
  .chart-card, .addr-section, .report-cta, .trust, .yomikata, .themes, .hub-themes { margin-top: 18px; }
  .source-band { margin-top: 22px; }
  .hub-hero img { height: 320px; }
  .doc { max-width: 760px; }
  .tabbar { display: none; }
}
.option-card .pict img { width: 64px; height: 64px; border-radius: 12px; display: block; }

/* ========== partner page ========== */
.pt-lead {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow);
  padding: 14px 16px; margin-top: 12px;
}
.pt-lead-head { display: flex; justify-content: space-between; align-items: baseline; }
.pt-lead-head b { font-size: 16px; font-weight: 900; color: var(--coral); }
.pt-lead-head span { font-size: 11px; font-weight: 700; color: var(--brown-soft); }
.pt-lead-meta { font-size: 12.5px; font-weight: 700; margin-top: 6px; }
.pt-bid-btn {
  margin-top: 12px; width: 100%; background: var(--coral); color: #fff;
  border: none; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 900;
  padding: 11px 0; cursor: pointer; box-shadow: 0 4px 0 #D05E55;
}
.pt-bid-btn:disabled { opacity: .55; cursor: default; }
.pt-bid-status { font-size: 12px; font-weight: 700; margin-top: 8px; display: none; }
.pt-bid-status.ok { display: block; color: var(--green); }
.pt-bid-status.err { display: block; color: var(--coral); }
