:root {
  --paper: #f7f8f2;
  --paper-bright: #fffef8;
  --ink: #202726;
  --muted: #66716f;
  --teal: #087f83;
  --teal-deep: #075c62;
  --teal-pale: #dff2ef;
  --sky: #9fe0ef;
  --line: rgba(32, 39, 38, .18);
  --header-height: 88px;
  --gutter: clamp(16px, 4.2vw, 72px);
  --content: 1440px;
  --radius: 22px;

  /* ヒーロー人物：ここを変えれば動く（x: 横位置 / y: 上から / w: 幅） */
  --fig-child-x: 26%;
  --fig-child-y: 86px;
  --fig-child-w: 95px;
  --fig-adult-x: 56.5%;
  --fig-adult-y: 120px;
  --fig-adult-w: 74px;
  --fig-cyclist-x: 84.2%;
  --fig-cyclist-y: 68px;
  --fig-cyclist-w: 150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px var(--gutter);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 260px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-type { display: flex; flex-direction: column; line-height: 1.1; }
.brand-type b, .footer-brand b { font-family: "Lexend Exa", sans-serif; font-size: 1rem; letter-spacing: -.03em; }
.brand-type small { margin-top: 7px; font-family: "Lexend Exa", sans-serif; font-size: .57rem; letter-spacing: .08em; color: var(--teal-deep); }
.desktop-nav { justify-self: end; display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); font-family: "Lexend Exa", sans-serif; font-size: .72rem; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--teal); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.menu-button { width: 106px; height: 50px; border: 1px solid rgba(32,39,38,.7); border-radius: 999px; background: rgba(255,255,255,.6); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; font: 600 .7rem "Lexend Exa", sans-serif; letter-spacing: .08em; }
.menu-button i, .menu-button i::after { width: 17px; height: 1.5px; background: currentColor; display: block; transition: transform .25s ease; }
.menu-button i { position: relative; }
.menu-button i::after { content: ""; position: absolute; top: 5px; left: 0; }
.menu-button[aria-expanded="true"] i { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] i::after { top: 0; transform: rotate(-90deg); }
.menu-panel { position: fixed; inset: 0; z-index: -1; padding: calc(var(--header-height) + 42px) var(--gutter) 40px; background: var(--teal-deep); color: white; }
.menu-panel nav { max-width: 900px; margin-left: auto; display: grid; grid-template-columns: 1fr 1fr; }
.menu-panel a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.25); font-size: clamp(1.4rem, 3vw, 2.8rem); font-weight: 700; }
.menu-panel a span { font: .7rem "Lexend Exa", sans-serif; margin-right: 18px; opacity: .55; }

.hero { position: relative; min-height: min(920px, 100svh); height: 920px; overflow: hidden; background: var(--sky); }
.hero-sky { position: absolute; inset: 0; background: url("assets/hero-sky.webp") center / cover no-repeat; }
.hero-art { position: absolute; inset: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: center bottom; mix-blend-mode: multiply; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(159,224,239,.06) 0 38%, rgba(159,224,239,0) 60%); pointer-events: none; }
.hero-copy { position: relative; z-index: 3; width: min(1050px, calc(100% - 2 * var(--gutter))); margin: 0 auto; padding-top: 90px; text-align: center; }
.hero-kicker { position: relative; z-index: 2; margin: 0 0 133px; font: 600 .68rem "Lexend Exa", sans-serif; letter-spacing: .19em; }
.hero h1 { margin: 0; font-size: clamp(4.2rem, 10.7vw, 10.2rem); line-height: .83; letter-spacing: -.095em; font-weight: 900; color: var(--teal-deep); text-shadow: 0 2px rgba(255,255,255,.2); }
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 span:last-child { margin-left: 10%; }
.hero-fig { position: absolute; z-index: 1; height: auto; max-width: none; transform: translateX(-50%); pointer-events: none; }
.hero-fig--child { left: var(--fig-child-x); top: var(--fig-child-y); width: var(--fig-child-w); }
.hero-fig--adult { left: var(--fig-adult-x); top: var(--fig-adult-y); width: var(--fig-adult-w); }
.hero-fig--cyclist { left: var(--fig-cyclist-x); top: var(--fig-cyclist-y); width: var(--fig-cyclist-w); }
.hero-greeting { display: block; width: max-content; max-width: calc(100% - 32px); margin: 26px auto 0; padding: 8px 20px; border: 1px solid rgba(32,39,38,.18); border-radius: 999px; background: rgba(255,254,248,.82); backdrop-filter: blur(8px); text-align: center; color: var(--ink); font-size: clamp(.9rem, 1.2vw, 1.05rem); font-weight: 600; line-height: 1.55; }
.hero-status { position: absolute; z-index: 4; left: var(--gutter); bottom: 38px; display: flex; align-items: center; gap: 12px; padding: 11px 16px; border: 1px solid rgba(32,39,38,.3); border-radius: 999px; background: rgba(255,254,248,.82); backdrop-filter: blur(8px); font-size: .73rem; }
.hero-status > span { padding-left: 12px; border-left: 1px solid var(--line); }
.hero-status > .status-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(8,127,131,.13); }
.hero-scroll { position: absolute; z-index: 4; right: var(--gutter); bottom: 32px; display: flex; align-items: center; gap: 13px; font-size: .8rem; font-weight: 700; }
.hero-scroll i { width: 43px; height: 43px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; font-style: normal; }

.section { padding: clamp(80px, 10vw, 150px) var(--gutter); scroll-margin-top: 24px; }
.section > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.section-heading { display: grid; grid-template-columns: 1.45fr .75fr; align-items: end; gap: clamp(30px, 7vw, 110px); margin-bottom: clamp(44px, 6vw, 80px); }
.section-index { margin: 0 0 20px; font: 600 .68rem "Lexend Exa", sans-serif; letter-spacing: .13em; color: var(--teal); }
.section h2 { margin: 0; font-size: clamp(2.7rem, 5.6vw, 6rem); line-height: 1.04; letter-spacing: -.075em; font-weight: 800; }
.section-lead { max-width: 510px; justify-self: end; color: var(--muted); }
.section-lead p { margin: .4em 0; }
.section-lead strong { font: 600 2rem "Lexend Exa", sans-serif; color: var(--teal-deep); }
.small-en { font: .75rem "Lexend Exa", sans-serif; letter-spacing: .08em; color: var(--teal); }
.dither-section { background-color: var(--paper-bright); background-image: linear-gradient(rgba(247,248,242,.86), rgba(247,248,242,.86)), url("assets/texture-dither.webp"); background-size: auto, 420px 420px; }

.news-section { padding-top: 90px; padding-bottom: 100px; }
.compact-heading { grid-template-columns: auto 1fr; align-items: center; margin-bottom: 28px; }
.compact-heading h2 { font: 700 clamp(2.3rem, 4vw, 4.2rem) "Lexend Exa", sans-serif; letter-spacing: -.06em; }
.section-ja { justify-self: end; margin: 0; color: var(--muted); font-weight: 600; }
.news-list { border-top: 2px solid var(--ink); }
.news-list article { display: grid; grid-template-columns: 125px 94px 1fr 32px; gap: 20px; align-items: center; min-height: 88px; border-bottom: 1px solid var(--line); }
.news-list time { font: .72rem "Lexend Exa", sans-serif; letter-spacing: .05em; }
.news-tag { width: max-content; padding: 4px 11px; border: 1px solid var(--teal); border-radius: 999px; color: var(--teal-deep); font-size: .75rem; }
.news-list h3 { margin: 0; font-size: .95rem; font-weight: 500; }
.news-list h3 a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.news-list h3 a:hover { color: var(--teal-deep); text-decoration-color: currentColor; }
.news-list .arrow { color: var(--teal); font-size: 1.2rem; }

.tenants-section { padding-left: 0; padding-right: 0; }
.tenants-section > .section-heading, .tenants-section > .tenant-tools { max-width: var(--content); width: calc(100% - 2 * var(--gutter)); }
.tenant-tools { border-top: 2px solid var(--ink); padding: 24px 0 32px; }
.filter-group { display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: start; padding: 8px 0; }
.filter-label, .search-row > label { padding-top: 9px; font: 600 .68rem "Lexend Exa", sans-serif; letter-spacing: .12em; color: var(--muted); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { min-height: 40px; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .83rem; transition: all .2s ease; }
.filter-chip b { margin-right: 5px; font-family: "Lexend Exa", sans-serif; }
.filter-chip:hover, .filter-chip[aria-pressed="true"] { border-color: var(--teal-deep); background: var(--teal-deep); color: white; }
.search-row { display: grid; grid-template-columns: 120px minmax(220px, 480px) auto; gap: 18px; align-items: center; margin-top: 10px; }
.search-field { position: relative; }
.search-field input { width: 100%; height: 52px; padding: 0 50px 0 17px; border: 1px solid var(--ink); border-radius: 0; background: var(--paper-bright); color: var(--ink); font-size: 1rem; }
.search-field span { position: absolute; right: 17px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; }
.clear-button { border: 0; background: transparent; padding: 8px 0; color: var(--muted); text-decoration: underline; cursor: pointer; font-size: .8rem; }
.tenant-workspace { max-width: none; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr); min-height: 790px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.map-column { position: relative; min-width: 0; background: var(--teal-pale); }
.map-shell { position: sticky; top: 0; width: 100%; height: 100vh; min-height: 790px; overflow: hidden; background: var(--paper); }
#map { position: absolute; inset: 0; width: 100%; height: 100%; }
.illustration-map { position: absolute; inset: 0; overflow: hidden; }
.illustration-map { touch-action: none; cursor: grab; background: var(--paper); }
.illustration-map.is-dragging { cursor: grabbing; }
.illustration-stage { position: absolute; left: 0; top: 0; transform-origin: 0 0; will-change: transform; }
.illustration-stage.is-animating { transition: transform .34s cubic-bezier(.2,.78,.3,1); }
.illustration-stage > svg, .illustration-marker-layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.illustration-stage > svg:first-of-type { z-index: 0; }
.illustration-landmark-overlay { z-index: 3; overflow: visible; pointer-events: none; }
.illustration-stage .area-labels { display: none; }
.illustration-stage:not(.is-detail) .landmark:not(.landmark--overview) .landmark__caption { display: none; }
.illustration-stage.is-detail .landmark--overview-only { display: none; }
.illustration-stage:not(.is-close) .landmark--small .landmark__caption { display: none; }
.illustration-marker-layer { z-index: 2; pointer-events: none; }
.illustration-area-marker { position: absolute; z-index: 6; min-width: 25px; height: 25px; display: flex; align-items: center; gap: 6px; padding: 0 7px; border: 1px solid var(--teal-deep); border-radius: 999px; background: rgba(255,254,248,.94); color: var(--teal-deep); box-shadow: 2px 2px 0 rgba(8,127,131,.18); transform: scale(var(--marker-inverse-scale)) translate(-50%, -50%); transform-origin: top left; pointer-events: auto; cursor: pointer; white-space: nowrap; }
.illustration-area-marker b { font: 800 .62rem "Lexend Exa", sans-serif; }
.illustration-area-marker span { display: inline; font-size: .66rem; font-weight: 700; }
.illustration-stage.is-overview .illustration-area-marker span { display: none; }
.illustration-spot-marker { position: absolute; z-index: 5; width: 12px; height: 12px; padding: 0; pointer-events: auto; transform: scale(var(--marker-inverse-scale)) translate(-50%, -50%); transform-origin: top left; }
.illustration-spot-marker:hover, .illustration-spot-marker.is-active { z-index: 8; transform: scale(calc(var(--marker-inverse-scale) * 1.75)) translate(-50%, -50%); }
.illustration-spot-marker.is-active { box-shadow: 0 0 0 2px var(--paper-bright), 0 0 0 4px var(--teal-deep); }
.illustration-popup { position: absolute; z-index: 14; width: min(260px, calc(100% - 32px)); padding: 14px 38px 14px 15px; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 6px 6px 0 rgba(8,127,131,.24); transform: translate(-50%, calc(-100% - 16px)); font-size: .76rem; line-height: 1.45; pointer-events: auto; }
.illustration-popup::after { content: ""; position: absolute; left: 50%; bottom: -8px; width: 14px; height: 14px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-bright); transform: translateX(-50%) rotate(45deg); }
.illustration-popup b, .illustration-popup span, .illustration-popup a { display: block; }
.illustration-popup b { margin-bottom: 3px; color: var(--teal-deep); font-size: .86rem; }
.illustration-popup span { color: var(--muted); }
.illustration-popup a { position: relative; z-index: 1; width: max-content; margin-top: 8px; color: var(--teal-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.illustration-popup__close { position: absolute; z-index: 2; top: 6px; right: 7px; width: 28px; height: 28px; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 1.25rem; line-height: 1; }
.illustration-compass { position: absolute; z-index: 10; top: 22px; left: 22px; width: 42px; height: 58px; display: grid; place-items: center; padding: 6px 0; border: 1px solid rgba(32,39,38,.35); border-radius: 22px; background: rgba(255,254,248,.9); color: var(--teal-deep); line-height: 1; pointer-events: none; }
.illustration-compass b { font: 700 .68rem "Lexend Exa", sans-serif; }
.illustration-compass span { font-size: 1.2rem; }
.illustration-scale { position: absolute; z-index: 10; left: 24px; bottom: 108px; display: flex; align-items: end; gap: 8px; color: var(--ink); pointer-events: none; }
.illustration-scale__bar { display: block; min-width: 28px; height: 8px; border: solid var(--ink); border-width: 0 1px 2px; transition: width .08s linear; }
.illustration-scale b { font: 700 .62rem "Lexend Exa", sans-serif; }
.illustration-controls { position: absolute; z-index: 12; right: 22px; bottom: 22px; display: grid; grid-template-columns: 42px 42px auto auto; gap: 6px; }
.illustration-controls button { min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid rgba(32,39,38,.55); border-radius: 21px; background: rgba(255,254,248,.94); cursor: pointer; box-shadow: 0 2px 9px rgba(32,39,38,.1); font-weight: 800; }
.illustration-controls .illustration-home, .illustration-controls .illustration-overview { font-size: .72rem; white-space: nowrap; }
.illustration-map-error { margin: 30% 10%; padding: 20px; border: 1px solid var(--ink); background: var(--paper-bright); text-align: center; }
.map-caption { position: absolute; z-index: 11; left: 24px; bottom: 24px; min-width: 250px; padding: 12px 17px; background: rgba(255,254,248,.94); border: 1px solid var(--ink); box-shadow: 6px 6px 0 var(--teal); display: grid; pointer-events: none; }
.map-caption span { font-size: .68rem; color: var(--muted); }
.map-caption b { font-size: 1.05rem; }
.map-caption small { font: .62rem "Lexend Exa", sans-serif; }
.list-column { background: var(--paper-bright); padding: 0 clamp(18px, 3vw, 44px) 44px; }
.results-head { position: sticky; top: 0; z-index: 3; height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--ink); background: var(--paper-bright); font-size: .75rem; color: var(--muted); }
.results-head p { margin: 0; }
.results-head b { color: var(--teal-deep); font: 600 1.25rem "Lexend Exa", sans-serif; }
.tenant-card { width: 100%; display: grid; grid-template-columns: 68px 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.tenant-card:hover h3, .tenant-card.is-selected h3 { color: var(--teal); }
.tenant-card.is-selected { background: linear-gradient(to right, var(--teal-pale), transparent 88%); }
.tenant-unit { font: 700 1.02rem "Lexend Exa", sans-serif; color: var(--teal); }
.tenant-copy { min-width: 0; }
.tenant-copy h3 { margin: 0 0 6px; font-size: 1.02rem; line-height: 1.4; overflow-wrap: anywhere; transition: color .2s ease; }
.tenant-meta { display: flex; gap: 6px 12px; flex-wrap: wrap; color: var(--muted); font-size: .75rem; }
.tenant-status { margin: 4px 0; font-size: .72rem; color: #b8412c; font-weight: 700; }
.tenant-tagline { margin: 4px 0 6px; font-size: .86rem; line-height: 1.55; color: var(--ink); }
.tenant-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tenant-link { font: 700 .62rem/1 "Lexend Exa", "Noto Sans JP", sans-serif; letter-spacing: .04em; color: var(--teal); border: 1px solid var(--teal); border-radius: 999px; padding: 5px 9px; text-decoration: none; }
.tenant-link:hover { background: var(--teal); color: #fff; }
.illustration-popup em { display: block; font-style: normal; font-size: .8rem; margin: 2px 0 4px; }
.popup-links { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-top: 4px; }
.tenant-hours { margin: 6px 0 0; font: .67rem/1.5 "Lexend Exa", "Noto Sans JP", sans-serif; color: var(--muted); overflow-wrap: anywhere; }
.empty-state { padding: 70px 16px; text-align: center; color: var(--muted); }
.load-more { width: 100%; min-height: 58px; margin-top: 30px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font: 600 .75rem "Lexend Exa", sans-serif; letter-spacing: .08em; }
.load-more:hover { background: var(--teal-deep); color: white; }
.load-more[hidden] { display: none; }
.spot-marker { --marker-color: var(--teal); width: 11px; height: 11px; border: 2px solid var(--paper-bright); border-radius: 50%; background: var(--marker-color); box-shadow: 0 0 0 1px rgba(32,39,38,.7); cursor: pointer; transition: transform .15s ease; }
.spot-marker.category-1 { --marker-color: #d96f52; }
.spot-marker.category-2 { --marker-color: #518bb2; }
.spot-marker.category-3 { --marker-color: #c48c32; }
.spot-marker.category-4 { --marker-color: #ba6b83; }
.spot-marker.category-5 { --marker-color: #687b86; }
.spot-marker.category-6 { --marker-color: #4d9566; }
.spot-marker.category-7 { --marker-color: #8869a0; }
.spot-marker.category-8 { --marker-color: #087f83; }
.spot-marker.category-9 { --marker-color: #777a73; }
.area-marker { padding: 4px 8px; border: 1px solid var(--teal-deep); border-radius: 999px; background: var(--paper-bright); color: var(--teal-deep); font: 700 .65rem "Lexend Exa", sans-serif; box-shadow: 3px 3px 0 rgba(8,127,131,.18); cursor: pointer; white-space: nowrap; }
.station-marker { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; border: 3px solid var(--paper-bright); font: 700 .55rem "Lexend Exa", sans-serif; box-shadow: 0 0 0 2px var(--ink); }

.event-date { display: flex; align-items: center; gap: 12px; }
.event-date b { font: 600 3.8rem/1 "Lexend Exa", sans-serif; color: var(--teal); letter-spacing: -.08em; }
.event-date span { font: .62rem/1.4 "Lexend Exa", sans-serif; }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 34px); }
.person-card { min-width: 0; }
.person-image { aspect-ratio: 1; overflow: hidden; background: var(--teal-pale); }
.person-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .45s ease; }
.person-card:hover img { transform: scale(1.025); }
.person-copy { position: relative; padding: 24px 0 0 56px; }
.person-no { position: absolute; left: 0; top: 26px; font: 600 .72rem "Lexend Exa", sans-serif; color: var(--teal); }
.person-copy p { margin: 0 0 12px; font-size: .76rem; color: var(--muted); }
.person-copy h3 { margin: 0 0 14px; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.45; letter-spacing: -.04em; }
.person-copy small { color: var(--muted); font-size: .67rem; }

.rules-list { list-style: none; margin-top: 0; margin-bottom: 0; padding: 0; border-top: 2px solid var(--ink); }
.rules-list li { display: grid; grid-template-columns: 90px 1fr; gap: 30px; align-items: center; min-height: 150px; padding: 24px 0; border-bottom: 1px solid var(--ink); }
.rules-list li > span { font: 700 2.3rem "Lexend Exa", sans-serif; color: var(--teal); }
.rules-list h3 { margin: 0 0 8px; font-size: clamp(1.25rem, 2vw, 1.8rem); }
.rules-list p { margin: 0; color: var(--muted); }

.access-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 140px); align-items: center; }
.access-copy h2 { font-size: clamp(3.2rem, 6vw, 6.3rem); }
.station-name { display: flex; align-items: center; gap: 15px; margin: 40px 0 32px; padding: 20px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.station-name > span { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: white; display: grid; place-items: center; font: 700 .85rem "Lexend Exa", sans-serif; }
.station-name div { display: grid; }
.station-name b { font-size: 1.25rem; }
.station-name small { color: var(--muted); }
.access-copy dl { margin: 0 0 30px; }
.access-copy dl div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 9px 0; }
.access-copy dt { color: var(--muted); font-size: .82rem; }
.access-copy dd { margin: 0; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 700; }
.about-section { background: var(--teal-deep); color: white; }
.about-section .section-index { color: #89d8d5; }
.about-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 150px); }
/* 見出しは左の細い列に入る。大きすぎると「このサイ/トについ/て」と割れるので、1行6文字が収まる大きさにして、切れ目を span で固定する */
.about-layout h2 { font-size: clamp(2.3rem, 4.2vw, 3.9rem); line-height: 1.12; }
.about-layout h2 span { display: inline-block; }
.mission { margin-top: clamp(55px, 8vw, 110px); font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.5; }
.about-copy > p { max-width: 760px; margin: 0 0 24px; font-size: 1.04rem; color: rgba(255,255,255,.88); }
.about-copy dl { margin: 60px 0 0; border-top: 1px solid rgba(255,255,255,.35); }
.about-copy dl div { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.about-copy dt { color: #8ad4d3; font-size: .8rem; }
.about-copy dd { margin: 0; font-size: .85rem; color: rgba(255,255,255,.8); }

.site-footer { padding: 70px var(--gutter) 26px; background: var(--ink); color: white; }
.site-footer > * { max-width: var(--content); margin-left: auto; margin-right: auto; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 84px; height: 84px; }
.footer-brand div { display: grid; gap: 8px; }
.footer-brand span { color: rgba(255,255,255,.65); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 15px 32px; margin-top: 55px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); font-size: .82rem; }
.site-footer nav a:hover { color: #8ad4d3; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: rgba(255,255,255,.55); font: .65rem "Lexend Exa", sans-serif; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-art { object-fit: cover; }
  .tenant-workspace { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 820px) {
  :root { --header-height: 74px; }
  .site-header { padding-top: 10px; padding-bottom: 10px; }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand-type b { font-size: .83rem; }
  .brand-type small { display: none; }
  .menu-button { width: 88px; height: 44px; }
  .menu-panel { padding-top: 100px; overflow: auto; }
  .menu-panel nav { grid-template-columns: 1fr; }
  .menu-panel a { font-size: 1.35rem; }
  .hero { height: 790px; min-height: 92svh; }
  .hero h1 { font-size: clamp(4rem, 16vw, 7rem); }
  .hero h1 span:last-child { margin: 4px 0 0; }
  .hero-greeting { margin-top: 24px; }
  .hero-art { inset: 25% -32% 0; width: 164%; height: 75%; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18%); mask-image: linear-gradient(to bottom, transparent 0, #000 18%); }
  .hero-status > span:last-child { display: none; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .section-lead { justify-self: start; }
  .tenant-workspace { display: flex; flex-direction: column; }
  .map-column { min-height: 52vh; }
  .map-shell { position: relative; min-height: 52vh; height: 52vh; max-height: none; }
  #map { height: 100%; }
  .list-column { padding-bottom: 40px; }
  .people-grid { grid-template-columns: 1fr; }
  .people-grid { gap: 55px; }
  .person-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: center; }
  .person-copy { padding-top: 0; }
  .person-no { top: 1px; }
  .access-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .mission { margin-top: 30px; }
}

@media (max-width: 560px) {
  :root {
    /* スマホのヒーロー人物：ここを変えれば動く */
    --fig-child-x: 20.7%;
    --fig-child-y: 117px;
    --fig-child-w: 52px;
    --fig-adult-x: 57.8%;
    --fig-adult-y: 130px;
    --fig-adult-w: 45px;
    --fig-cyclist-x: 94%;
    --fig-cyclist-y: 129px;
    --fig-cyclist-w: 64px;
  }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .hero { height: 700px; min-height: 90svh; }
  .hero-copy { width: calc(100% - 32px); padding-top: 90px; }
  .hero-kicker { font-size: .54rem; }
  .hero-kicker { margin-bottom: 100px; }
  .hero h1 { font-size: clamp(3.5rem, 17.2vw, 5.4rem); }
  .hero-greeting { margin-top: 22px; padding: 7px 16px; font-size: .83rem; }
  .hero-art { inset: 34% -48% 0; width: 196%; height: 66%; object-position: center bottom; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%); mask-image: linear-gradient(to bottom, transparent 0, #000 22%); }
  .hero-status { left: 16px; bottom: 20px; padding: 9px 12px; gap: 9px; }
  .hero-status > span { padding-left: 8px; }
  .hero-status span:nth-last-child(2) { display: none; }
  .hero-scroll { right: 16px; bottom: 18px; }
  .hero-scroll span { display: none; }
  .compact-heading { grid-template-columns: 1fr auto; }
  .news-list article { grid-template-columns: 1fr auto; gap: 8px 12px; padding: 18px 0; }
  .news-list time { grid-column: 1; }
  .news-tag { grid-column: 2; grid-row: 1; }
  .news-list h3 { grid-column: 1 / -1; }
  .news-list .arrow { display: none; }
  .filter-group { grid-template-columns: 1fr; gap: 7px; }
  .filter-label, .search-row > label { padding-top: 0; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .filter-chip { flex: 0 0 auto; }
  .search-row { grid-template-columns: 1fr auto; gap: 8px; }
  .search-row > label { grid-column: 1 / -1; }
  .clear-button { padding: 12px 5px; }
  .illustration-compass { top: 14px; left: 14px; }
  .illustration-controls { right: 14px; bottom: 14px; grid-template-columns: 38px 38px auto auto; }
  .illustration-controls button { min-width: 38px; height: 38px; padding: 0 9px; }
  .illustration-scale { left: 14px; bottom: 86px; }
  .map-caption { left: 14px; bottom: 14px; min-width: 0; max-width: calc(100% - 28px); }
  .map-caption span, .map-caption small { display: none; }
  .map-caption b { font-size: .82rem; }
  .list-column { padding-left: 16px; padding-right: 16px; }
  .tenant-card { grid-template-columns: 58px 1fr 34px; gap: 10px; }
  .person-card { display: block; }
  .person-copy { padding-top: 22px; }
  .person-no { top: 25px; }
  .rules-list li { grid-template-columns: 52px 1fr; gap: 13px; align-items: start; }
  .rules-list li > span { font-size: 1.5rem; }
  .about-copy dl div { grid-template-columns: 1fr; gap: 6px; }
  .footer-bottom { gap: 20px; }
}

.hero-tuner {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: rgba(255, 254, 248, .96);
  box-shadow: 8px 8px 0 rgba(7, 92, 98, .22);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}
.hero-tuner h2 { margin: 0 0 4px; font-size: 16px; }
.hero-tuner > p { margin: 0 0 12px; color: var(--muted); }
.hero-tuner fieldset { margin: 0 0 12px; padding: 10px; border: 1px solid var(--line); }
.hero-tuner legend { padding: 0 5px; font-weight: 700; }
.hero-tuner label { display: grid; grid-template-columns: 24px 1fr 56px; gap: 8px; align-items: center; margin: 7px 0; }
.hero-tuner input[type="range"] { width: 100%; }
.hero-tuner output { font: 11px "Lexend Exa", sans-serif; text-align: right; }
.hero-tuner textarea { width: 100%; min-height: 128px; resize: vertical; padding: 8px; border: 1px solid var(--line); background: white; font: 11px/1.5 ui-monospace, monospace; }
.hero-tuner button { width: 100%; margin-top: 8px; padding: 8px 12px; border: 0; border-radius: 999px; background: var(--teal-deep); color: white; cursor: pointer; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 妙蓮寺のこと */
.town-section { background: var(--paper-bright); }
.town-grid { display: grid; grid-template-columns: 1.3fr .8fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.town-story { position: relative; padding: 26px 0 26px 78px; border-top: 1px solid var(--line); }
.town-story:last-child { border-bottom: 1px solid var(--line); }
.town-no { position: absolute; left: 0; top: 26px; font: 700 1.6rem "Lexend Exa", sans-serif; color: var(--teal); }
.town-story h3 { margin: 0 0 10px; font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -.03em; }
.town-story p { margin: 0; color: var(--muted); line-height: 1.9; }
.town-story b { color: var(--teal-deep); font: 700 1.15em "Lexend Exa", sans-serif; }
.town-side { border-left: 2px solid var(--ink); padding-left: clamp(18px, 3vw, 34px); }
.town-side__title { margin: 0 0 12px; font: 600 .68rem "Lexend Exa", sans-serif; letter-spacing: .13em; color: var(--teal); }
.timeline { margin: 0 0 32px; }
.timeline div { display: grid; grid-template-columns: 74px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .86rem; }
.timeline dt { font: 700 .8rem "Lexend Exa", sans-serif; color: var(--teal-deep); padding-top: 2px; }
.timeline dd { margin: 0; color: var(--ink); }
.terrain { margin: 0 0 14px; }
.terrain div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.terrain dt { color: var(--ink); }
.terrain dd { margin: 0; font: 700 .85rem "Lexend Exa", sans-serif; color: var(--teal-deep); }
.town-note { margin: 0 0 18px; font-size: .86rem; color: var(--muted); line-height: 1.8; }
.town-sources { margin: 0; font-size: .7rem; color: var(--muted); line-height: 1.7; }
@media (max-width: 820px) { .town-grid { grid-template-columns: 1fr; } .town-side { border-left: 0; border-top: 2px solid var(--ink); padding-left: 0; padding-top: 22px; } .town-story { padding-left: 54px; } }

/* 方向A「地図が本文」: ヒーロー、ヘッダー、フッターより下の編集面 */
:root { --accent: #e45f38; }

.section-index { color: var(--accent); }
.section-lead { max-width: 34em; }
.section-lead > p { max-width: 34em; }
.small-en { color: var(--accent); }
.dither-section { background: var(--paper-bright); }

/* お知らせ: 細い罫線の短い更新欄 */
.news-section { padding-top: 64px; padding-bottom: 70px; }
.news-section .compact-heading { margin-bottom: 18px; }
.news-list { border-top-width: 1px; }
.news-list article {
  grid-template-columns: 116px 76px minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
  padding: 13px 0;
}
.news-tag {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--teal-deep);
  font-size: .68rem;
  font-weight: 700;
}
.news-list .arrow { display: none; }

/* 妙蓮寺のこと: 本文と資料側柱 */
.town-section { padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(110px, 12vw, 170px); }
.town-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(44px, 7vw, 104px); }
.town-stories { border-top: 1px solid var(--ink); }
.town-story { padding: 30px 0 34px; border-top: 0; border-bottom: 1px solid var(--line); }
.town-story:last-child { border-bottom: 1px solid var(--ink); }
.town-no { display: none; }
.town-story h3 { max-width: 24em; margin-bottom: 14px; }
.town-story p { max-width: 36em; line-height: 2; }
.town-side { padding-left: clamp(18px, 2.4vw, 34px); border-left: 1px solid var(--ink); }
.town-side__title { color: var(--teal-deep); }
.timeline div, .terrain div { border-bottom-style: solid; }

/* 8つのエリア: 地図と2列索引を一枚の地図帳として接続 */
.floor-section { padding-top: clamp(110px, 12vw, 175px); padding-bottom: clamp(120px, 13vw, 190px); }
.area-atlas {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
  min-height: 650px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper-bright);
}
.area-map { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.area-map img { width: 100%; height: 100%; max-width: none; object-fit: cover; transform: scale(1.2); }
.area-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  border-left: 1px solid var(--ink);
}
.area-entry { min-width: 0; }
.area-entry button {
  width: 100%;
  height: 100%;
  min-height: 156px;
  padding: 18px 20px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.area-entry button:hover, .area-entry button:focus-visible { background: var(--teal-pale); }
.area-code { color: var(--accent); font: 700 1.25rem/1 "Lexend Exa", sans-serif; }
.area-count { justify-self: end; color: var(--muted); font: 500 .62rem "Lexend Exa", sans-serif; }
.area-copy { grid-column: 1 / -1; min-width: 0; }
.area-copy h3 { margin: 0 0 7px; font-size: 1rem; line-height: 1.35; letter-spacing: -.025em; }
.area-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* お店とスポット: 機能密度は維持し、識別子とテキストリンクだけを立てる */
.tenants-section { padding-top: clamp(110px, 12vw, 175px); padding-bottom: clamp(110px, 12vw, 175px); }
.tenant-unit { color: var(--accent); }
.tenant-card.is-selected { background: var(--teal-pale); }
.tenant-links { gap: 8px 16px; }
.tenant-link {
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--teal-deep);
}
.tenant-link:hover { background: transparent; color: var(--ink); }
.tenant-card { grid-template-columns: 68px minmax(0, 1fr); }
.illustration-area-marker, .illustration-compass, .illustration-controls button,
.area-marker, .station-marker { border-radius: 0; }
.illustration-area-marker, .illustration-spot-marker.is-active,
.illustration-popup, .illustration-controls button, .map-caption,
.area-marker, .station-marker, .spot-marker { box-shadow: none; }

/* イベント: 時刻表のような3列の行 */
.events-section { padding-top: 78px; padding-bottom: 92px; }
.event-list { border-top: 1px solid var(--ink); }
.event-row {
  display: grid;
  grid-template-columns: 150px minmax(190px, .65fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 70px);
  align-items: center;
  min-height: 142px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
}
.event-date { gap: 10px; }
.event-date b { color: var(--teal-deep); font-size: 2.7rem; }
.event-row h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; letter-spacing: -.04em; }
.event-row > p { max-width: 34em; margin: 0; color: var(--muted); }
a.event-row { color: inherit; text-decoration: none; transition: background .2s ease; }
a.event-row:hover { background: rgba(255,255,255,.55); }
a.event-row:hover h3 { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 4px; }
a.event-row { grid-template-columns: 150px minmax(190px, .65fr) minmax(280px, 1fr) 40px; }
a.event-row::after { content: "→"; justify-self: end; align-self: center; font: 600 .9rem "Lexend Exa", sans-serif; color: var(--teal-deep); }

/* 街のこつ: 濃色の2×2面 */
.guide-section { padding-top: 92px; padding-bottom: 112px; background: var(--teal-deep); color: var(--paper-bright); }
.guide-section .section-heading { grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); align-items: end; margin-bottom: 42px; }
.guide-section .section-lead { color: rgba(255,254,248,.68); }
.rules-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.34);
}
.rules-list li {
  min-height: 160px;
  padding: 25px 24px 30px 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.34);
}
.rules-list li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.34); }
.rules-list li:nth-child(even) { padding-left: 24px; }
.rules-list li > span { padding-top: 6px; color: var(--accent); font: 700 .66rem "Lexend Exa", sans-serif; }
.rules-list h3 { font-size: clamp(1.1rem, 1.7vw, 1.55rem); line-height: 1.4; }
.rules-list p { max-width: 34em; color: rgba(255,254,248,.7); }

/* グッズ + 空き店舗: 2本の細い帯 */
.shop-section { display: block; padding-top: 42px; padding-bottom: 42px; }
.shop-band, .recruit-band {
  min-height: 96px;
  display: grid;
  grid-template-columns: 150px minmax(180px, .55fr) minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
}
.recruit-band { border-bottom: 1px solid var(--ink); }
.shop-band .section-index { margin: 0; }
.shop-band h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); letter-spacing: -.05em; }
.shop-band > p:last-child, .recruit-band p { margin: 0; color: var(--muted); }
.recruit-band > span { grid-column: 2; font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 700; }
.recruit-band b { color: var(--teal-deep); font: 600 .65rem "Lexend Exa", sans-serif; letter-spacing: .08em; }

/* アクセス: 駅中心の地図と750m円 */
.access-section { padding-top: clamp(105px, 11vw, 160px); padding-bottom: clamp(105px, 11vw, 160px); }
.access-layout { grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr); gap: clamp(44px, 8vw, 130px); }
.access-map {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 700px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}
.access-map img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.access-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.access-map circle { fill: none; stroke: var(--teal-deep); stroke-width: .32; stroke-dasharray: 1.4 1.1; vector-effect: non-scaling-stroke; }
.station-name > span { border-radius: 0; }

/* このサイトについて: 濃色面の中も細い罫線で整理 */
.about-section { padding-top: clamp(90px, 10vw, 145px); padding-bottom: clamp(100px, 11vw, 155px); }
.about-section .section-index { color: var(--accent); }
.about-copy > p { max-width: 35em; line-height: 1.95; }
.about-copy dl { border-top-width: 1px; }
.about-copy dl div { border-bottom-color: rgba(255,255,255,.28); }

@media (max-width: 980px) {
  .area-atlas { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); }
  .area-entry button { padding-left: 15px; padding-right: 15px; }
  .event-row, a.event-row { grid-template-columns: 120px minmax(170px, .65fr) minmax(230px, 1fr) 32px; }
}

@media (max-width: 820px) {
  .town-grid { grid-template-columns: 1fr; }
  .town-side { padding: 24px 0 0; border-top: 1px solid var(--ink); border-left: 0; }
  .town-story { padding-left: 0; }
  .area-atlas { display: block; min-height: 0; border-bottom: 0; }
  .area-map { height: min(72vw, 530px); border-bottom: 1px solid var(--ink); }
  .area-index { border-left: 0; }
  .area-entry button { min-height: 150px; }
  .event-row, a.event-row { grid-template-columns: 110px minmax(160px, .7fr) minmax(0, 1fr) 28px; gap: 18px; }
  .shop-band, .recruit-band { grid-template-columns: 110px minmax(160px, .7fr) minmax(0, 1fr); }
  .shop-band > p:last-child, .recruit-band p { grid-column: 3; }
  .recruit-band > span { grid-column: 2; }
  .shop-band .section-index { grid-row: 1; }
  .recruit-band b { display: none; }
  .access-layout { grid-template-columns: 1fr; }
  .access-map { justify-self: center; }
}

@media (max-width: 560px) {
  .section { padding-top: 72px; padding-bottom: 72px; }
  .news-section { padding-top: 48px; padding-bottom: 52px; }
  .news-list article { grid-template-columns: 1fr auto; gap: 5px 12px; padding: 13px 0; }
  .news-list time { grid-column: 1; }
  .news-tag { grid-column: 2; grid-row: 1; }
  .news-list h3 { grid-column: 1 / -1; }
  .town-section, .floor-section, .tenants-section, .access-section { padding-top: 94px; padding-bottom: 100px; }
  .town-story p { max-width: 34em; }
  .area-map { height: 285px; }
  .area-map img { transform: scale(1.32); }
  .area-entry button { min-height: 146px; padding: 13px 12px 15px; gap: 9px 10px; }
  .area-code { font-size: 1rem; }
  .area-copy h3 { font-size: .88rem; }
  .area-copy p { -webkit-line-clamp: 2; font-size: .73rem; }
  .tenant-card { grid-template-columns: 58px minmax(0, 1fr); }
  .events-section { padding-top: 62px; padding-bottom: 72px; }
  .event-row, a.event-row { grid-template-columns: 74px minmax(0, 1fr); gap: 12px 16px; padding: 19px 0 22px; }
  a.event-row::after { display: none; }
  .event-date { grid-row: 1 / span 2; align-self: start; flex-direction: column; align-items: flex-start; gap: 4px; }
  .event-date b { font-size: 2rem; }
  .event-row > p { grid-column: 2; }
  .guide-section { padding-top: 72px; padding-bottom: 82px; }
  .guide-section .section-heading { grid-template-columns: 1fr; }
  .rules-list { grid-template-columns: 1fr; }
  .rules-list li, .rules-list li:nth-child(odd), .rules-list li:nth-child(even) { min-height: 0; padding: 20px 0 24px; border-right: 0; }
  .shop-section { padding-top: 34px; padding-bottom: 34px; }
  .shop-band, .recruit-band { min-height: 0; grid-template-columns: 96px 1fr; gap: 8px 14px; padding: 17px 0; }
  .shop-band .section-index { white-space: nowrap; }
  .shop-band h2, .recruit-band > span { grid-column: 2; font-size: 1.35rem; }
  .shop-band > p:last-child, .recruit-band p { grid-column: 2; font-size: .85rem; }
  .shop-band .section-index { grid-row: 1 / span 2; align-self: start; }
  .access-map { width: 100%; }
  .about-copy dl div { grid-template-columns: 1fr; gap: 6px; }
}

/* 外観写真(選択したお店にだけ出す) */
.popup-photo, .tenant-photo { margin: 0; }
.popup-photo { margin: -14px -38px 10px -15px; border-bottom: 1px solid var(--ink); }
.popup-photo img, .tenant-photo img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; background: var(--teal-pale); }
.popup-photo figcaption, .tenant-photo figcaption { padding: 4px 15px 0; font: 500 .58rem "Lexend Exa", sans-serif; letter-spacing: .04em; color: var(--muted); }
.tenant-photo { max-width: 420px; margin: 0 0 12px; border: 1px solid var(--line); }
.tenant-photo figcaption { padding: 4px 10px 6px; }
@media (max-width: 560px) { .tenant-photo { max-width: none; } }

/* 店ページへのリンク */
.tenant-link--page { margin-left: auto; color: var(--accent); }
.tenant-note { margin: 2px 0 0; font-size: .78rem; color: var(--muted); }

/* 住むための情報 */
.civic-section { padding-top: 96px; padding-bottom: 104px; background: var(--paper-bright); }
.civic-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(36px, 6vw, 96px); }
.civic-block + .civic-block { margin-top: 34px; }
.civic-side { padding-left: 24px; border-left: 1px solid var(--ink); }
.civic-block .town-side__title { margin: 0 0 12px; }
.garbage-table-wrap { overflow-x: auto; border-top: 1px solid var(--ink); }
.garbage-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.garbage-table th, .garbage-table td { padding: 10px 8px; border-bottom: 1px dashed var(--line); text-align: left; vertical-align: top; }
.garbage-table thead th { font: 600 .66rem "Lexend Exa", sans-serif; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--ink); }
.garbage-table tbody th { font-weight: 700; white-space: nowrap; }
.garbage-table tbody th small { display: block; margin-top: 3px; font-size: .66rem; font-weight: 400; color: var(--muted); }
.garbage-table td { font-size: .78rem; color: var(--muted); }
.garbage-table td[data-kind="燃やすごみ"] { color: var(--ink); font-weight: 700; }
.garbage-table td[data-kind="缶・びん・ペット"], .garbage-table td[data-kind="プラ資源"] { color: var(--teal-deep); font-weight: 600; }
.civic-note { margin: 12px 0 0; font-size: .78rem; color: var(--muted); }
.civic-list { margin: 0; }
.civic-list div { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.civic-list dt { color: var(--muted); font-size: .78rem; }
.civic-list dd { margin: 2px 0 0; font-weight: 600; }
.civic-list dd small { display: block; font-weight: 400; font-size: .76rem; color: var(--muted); }
.civic-list a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.civic-links { list-style: none; margin: 0; padding: 0; }
.civic-links li { border-bottom: 1px dashed var(--line); }
.civic-links a, .civic-shelter { display: block; width: 100%; padding: 9px 0; border: 0; background: none; text-align: left; font-size: .9rem; font-weight: 600; color: var(--teal-deep); cursor: pointer; }
.civic-links a { text-decoration: underline; text-underline-offset: 3px; }
.civic-shelter b { font-weight: 700; }
.civic-shelter small { display: block; font-weight: 400; font-size: .74rem; color: var(--muted); }
.civic-section .town-sources { margin-top: 40px; }
.illustration-shelter-marker { border-color: var(--accent); color: var(--accent); }
.illustration-shelter-marker b { color: var(--accent); }
.town-status { margin: 0 0 18px; padding: 10px 14px; border: 1px solid var(--accent); font-size: .88rem; font-weight: 600; color: var(--accent); }
.ward-news { margin-top: 44px; }
.ward-news .town-side__title { margin: 0 0 8px; }
.news-list--ward { border-top: 1px solid var(--ink); }
.ward-news__source { margin: 10px 0 0; font-size: .72rem; color: var(--muted); }
@media (max-width: 820px) {
  .civic-grid { grid-template-columns: 1fr; }
  .civic-side { padding: 28px 0 0; border-left: 0; border-top: 1px solid var(--ink); }
}
.garbage-list { display: none; margin: 0; border-top: 1px solid var(--ink); }
.garbage-list div { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.garbage-list dt { font-weight: 700; font-size: .9rem; }
.garbage-list dt small { margin-left: 8px; font-size: .66rem; font-weight: 400; color: var(--muted); }
.garbage-list dd { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 5px 0 0; font-size: .8rem; color: var(--muted); }
.garbage-list dd b { margin-right: 4px; font: 700 .7rem "Lexend Exa", sans-serif; color: var(--accent); }
.garbage-list dd span[data-kind="燃やすごみ"] { color: var(--ink); font-weight: 700; }
.garbage-list dd span[data-kind="缶・びん・ペット"], .garbage-list dd span[data-kind="プラ資源"] { color: var(--teal-deep); font-weight: 600; }
@media (max-width: 640px) { .garbage-table-wrap { display: none; } .garbage-list { display: block; } }

/* JSが動く前(と検索・AIのクローラー向け)の静的な一覧。app.js が起動すると同じ枠を描き直す。tools/build-static-index.js が生成 */
.tenant-static, .today-static, .calendar-static { margin: 0; padding: 0; list-style: none; font-size: .875rem; line-height: 1.7; }
.tenant-static li, .calendar-static li, ul.today-static li { padding: .5rem 0; border-bottom: 1px solid rgba(32, 39, 38, .12); }
.tenant-static small { display: block; opacity: .7; }
/* フッターの「目的から探す」。一覧ページ(tools/build-lists.js)への導線。tools/build-static-index.js が生成 */
.footer-lists { grid-column: 1 / -1; width: 100%; min-width: 0; max-width: 100%; padding-top: .75rem; font-size: .8rem; line-height: 1.6; }
.footer-lists__title { margin: 0 0 .5rem; font-size: .72rem; letter-spacing: .08em; opacity: .6; }
.footer-lists ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; }
.footer-lists li { min-width: 0; max-width: 100%; }
.footer-lists a { white-space: normal; overflow-wrap: anywhere; opacity: .85; text-decoration: underline; text-underline-offset: .2em; }

/* 読みやすさ(2026-09-19 査読): 営業時間・電話・リンクはいちばん読まれる情報なので、12px未満をやめる。
   押す場所は高さ32px以上。妙蓮寺は65歳以上が23.4%の街。 */
.tenant-meta { font-size: .82rem; }
.tenant-hours { margin-top: 8px; font-size: .84rem; line-height: 1.6; color: #3d4745; }
.tenant-status { font-size: .82rem; line-height: 1.6; }
.tenant-links { gap: 4px 18px; margin-top: 6px; }
.tenant-link { display: inline-flex; align-items: center; min-height: 34px; padding: 0; font-size: .78rem; border-bottom: 0; text-decoration: underline; text-underline-offset: .35em; text-decoration-thickness: 1px; }
.results-head { font-size: .82rem; }
.town-sources, .ward-news__source, .civic-note { font-size: .8rem; line-height: 1.8; }
.news-tag { font-size: .75rem; }
.filter-chip { min-height: 36px; }
.site-footer nav a, .footer-lists a { display: inline-block; padding: 6px 0; }
.area-copy p { font-size: .82rem; line-height: 1.7; }
.garbage-table small, .garbage-list small, .civic-shelter small, .civic-links small { font-size: .78rem; }
.event-date span { font-size: .75rem; }
