/* ECOL TOP A案｜売場の棚。写真と品名で並べる、入荷順の中古売場 */
:root {
  --paper: #f3f0e8;
  --paper-2: #e7e2d5;
  --tile: #dedad0;
  --white: #fbfaf6;
  --ink: #161d18;
  --ink-2: #4a544d;
  --line: #cbc6b8;
  --green: #005331;
  --green-2: #0b6b44;
  --tag: #f0c437;
  --stamp: #c2461b;
  --font-ui: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --wrap: 1360px;
  --gut: clamp(16px, 3vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; letter-spacing: .02em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
:focus-visible { outline: 3px solid var(--tag); outline-offset: 2px; box-shadow: 0 0 0 5px var(--ink); }

/* 試作の注記 */
.sample-strip {
  background: var(--ink); color: #e9e5d8;
  font-size: 11.5px; line-height: 1.4; text-align: center; padding: 6px 12px; letter-spacing: .04em;
}

/* ヘッダー */
.head { background: var(--white); border-bottom: 1px solid var(--line); }
.head-row {
  max-width: var(--wrap); margin: 0 auto; padding: 14px var(--gut);
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 24px; align-items: center;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.brand-mark { font-family: var(--font-mono); font-weight: 500; font-size: 30px; letter-spacing: .04em; color: var(--green); line-height: 1; }
.brand-sub { font-size: 10.5px; line-height: 1.3; color: var(--ink-2); border-left: 1px solid var(--line); padding-left: 10px; }

.search {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  height: 52px; padding: 0 6px 0 16px;
  background: #fff; border: 2px solid var(--ink); border-radius: 4px;
  transition: box-shadow .2s var(--ease);
}
.search:focus-within { box-shadow: 4px 4px 0 var(--tag); }
.search input {
  flex: 1; min-width: 0; height: 100%; border: 0; background: transparent; font: inherit; font-size: 16px; color: var(--ink); outline: none;
}
.search input::placeholder { color: #86908a; }
.search button {
  flex: none; height: 38px; padding: 0 20px; border: 0; border-radius: 3px; cursor: pointer;
  background: var(--green); color: #fff; font: 700 14px var(--font-ui); letter-spacing: .06em;
  transition: background .15s;
}
.search button:hover { background: var(--green-2); }
.search button:active { transform: translateY(1px); }

.head-contact { display: flex; align-items: center; gap: 18px; }
.btn-line {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px;
  background: #06c755; color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; border-radius: 4px; white-space: nowrap;
  transition: filter .15s;
}
.btn-line:hover { filter: brightness(.94); }
.tel { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-family: var(--font-mono); font-size: 14px; white-space: nowrap; }
.tel:hover { color: var(--green); }

.cat-tabs {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut);
  display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none;
  border-top: 1px solid var(--line);
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: none; display: inline-flex; align-items: baseline; gap: 6px;
  padding: 12px 14px; text-decoration: none; font-size: 14px; font-weight: 700; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: border-color .15s, color .15s;
}
.cat-tab:hover { border-bottom-color: var(--green); color: var(--green); }
.cat-tab small { font-family: var(--font-mono); font-weight: 400; font-size: 11px; color: var(--ink-2); }
.cat-tab.is-new { background: var(--tag); margin-right: 8px; padding-inline: 16px; }
.cat-tab.is-new:hover { border-bottom-color: var(--ink); color: var(--ink); }

/* ヒーロー */
.hero {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 4vw, 56px) var(--gut) clamp(32px, 4vw, 56px);
  align-items: center;
}
.kicker { font-size: 11px; letter-spacing: .14em; color: var(--green); margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(28px, 3.05vw, 44px); line-height: 1.25; font-weight: 900; letter-spacing: -.01em;
  overflow-wrap: break-word; text-wrap: balance; min-width: 0;
}
.lead { margin-top: 22px; max-width: 34em; font-size: 15.5px; color: var(--ink-2); }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 28px;
  text-decoration: none; font-weight: 700; font-size: 15px; border-radius: 4px; border: 2px solid var(--ink);
  transition: transform .15s var(--ease), background .15s, color .15s; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--green); border-color: var(--green); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.hero-note { margin-top: 20px; font-size: 11.5px; color: var(--ink-2); line-height: 1.6; }

.hero-photo {
  margin: 0; position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 4px;
  background: var(--green);
  background-image: repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), rgba(255,255,255,.12) calc(25% - 1px) 25%);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo figcaption {
  position: absolute; left: 0; bottom: 0; background: var(--ink); color: #e9e5d8; font-size: 11px; padding: 6px 12px;
}
.hero-photo.no-img::before {
  content: "SAMPLE 画像 準備中"; position: absolute; left: 20px; top: 18px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.7);
}

/* 今週入荷の帯 */
.ticker { display: flex; align-items: stretch; background: var(--green); color: #fff; overflow: hidden; }
.ticker-label {
  flex: none; display: flex; align-items: center; padding: 0 clamp(14px, 2vw, 28px);
  background: var(--tag); color: var(--ink); font-weight: 500; font-size: 13px; letter-spacing: .08em; white-space: nowrap;
}
.ticker-view { flex: 1; min-width: 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: tick 60s linear infinite; }
.ticker-view:hover .ticker-track { animation-play-state: paused; }
.ticker-track li { flex: none; }
.ticker-track a {
  display: flex; align-items: baseline; gap: 10px; padding: 14px 28px; text-decoration: none; font-size: 14px; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.22);
}
.ticker-track a:hover { background: rgba(255,255,255,.1); }
.ticker-track .d { font-family: var(--font-mono); font-size: 12px; color: var(--tag); }
.ticker-track .p { font-family: var(--font-mono); font-size: 13px; }
.ticker-track .is-sold { opacity: .55; text-decoration: line-through; text-decoration-thickness: 1px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* セクション共通 */
.sec-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 20px; margin-bottom: 24px; }
.sec-head h2 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 900; line-height: 1.3; }
.sec-note { font-size: 12.5px; color: var(--ink-2); flex: 1 1 260px; min-width: 0; }
.sec-link { font-size: 13.5px; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 1px; white-space: nowrap; }
.sec-link:hover { color: var(--green); border-color: var(--green); }
.tbc { display: inline-block; font-size: 11px; font-weight: 700; line-height: 1; padding: 3px 6px; margin: 0 4px; background: var(--tag); color: var(--ink); border-radius: 2px; vertical-align: 1px; white-space: nowrap; }

/* 新着の棚 */
.shelf { background: var(--white); padding: clamp(32px, 4vw, 56px) 0 clamp(36px, 5vw, 64px); }
.grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px 14px; align-items: stretch;
}
.tile { display: flex; flex-direction: column; min-width: 0; }
.tile a { display: flex; flex-direction: column; flex: 1; text-decoration: none; min-width: 0; }
.pic {
  position: relative; aspect-ratio: 1 / 1; background: var(--tile); overflow: hidden; border-radius: 2px;
}
.pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile a:hover .pic img { transform: scale(1.04); }
.pic-fb {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 16px; font-weight: 700; font-size: 13px; color: var(--ink-2); line-height: 1.5;
  background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(0,0,0,.035) 10px 11px);
}
.flag { position: absolute; left: 0; top: 0; display: flex; gap: 0; }
.flag span { font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; line-height: 1; padding: 5px 7px; letter-spacing: .04em; }
.flag .new { background: var(--stamp); color: #fff; }
.flag .rsv { background: var(--tag); color: var(--ink); font-family: var(--font-ui); font-weight: 700; }
.rank {
  position: absolute; right: 8px; bottom: 8px; width: 24px; height: 24px; display: grid; place-items: center;
  background: var(--white); color: var(--ink); font-family: var(--font-mono); font-size: 12px; font-weight: 500; border-radius: 2px;
}
.rank.w { width: auto; padding: 0 7px; font-family: var(--font-ui); font-size: 11px; font-weight: 700; }
.tile.is-sold .pic img { filter: grayscale(1) contrast(.9) brightness(1.05); opacity: .72; }
.tile.is-sold .pic::after {
  content: "SOLD OUT"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: var(--font-mono); font-weight: 500; font-size: clamp(13px, 1.5vw, 19px); letter-spacing: .12em; white-space: nowrap;
  color: var(--stamp); border: 2px solid var(--stamp); padding: 4px 10px; background: rgba(251,250,246,.86);
}
.meta { margin-top: 10px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; font-size: 11px; color: var(--ink-2); }
.meta .mono { font-size: 11px; }
.meta .lg { color: var(--green); font-weight: 700; }
.ttl { margin-top: 3px; font-size: 13.5px; font-weight: 700; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.price { margin-top: 4px; font-family: var(--font-mono); font-size: 19px; font-weight: 500; letter-spacing: -.01em; line-height: 1.2; }
.price small { font-family: var(--font-ui); font-size: 10.5px; color: var(--ink-2); margin-left: 4px; letter-spacing: 0; }
.tile.is-sold .price { color: #8a918c; text-decoration: line-through; text-decoration-thickness: 1px; }
.tile a:hover .ttl { color: var(--green); }

.tile.big { grid-column: span 2; grid-row: span 2; }
.tile.big .pic { aspect-ratio: auto; flex: 1; min-height: 240px; }
.tile.big .ttl { font-size: 18px; -webkit-line-clamp: 3; }
.tile.big .price { font-size: 28px; }
.tile.big .rank { width: 32px; height: 32px; font-size: 15px; }
.tile.more { grid-column: span 1; }
.tile.more a {
  justify-content: center; align-items: flex-start; background: var(--ink); color: #fff; padding: 20px; border-radius: 2px; gap: 8px;
  transition: background .2s;
}
.tile.more a:hover { background: var(--green); }
.tile.more b { font-size: 17px; line-height: 1.4; }
.tile.more span { font-family: var(--font-mono); font-size: 22px; }

/* カテゴリ：棚の段のように横に並ぶ */
.cats { background: var(--paper-2); padding: clamp(32px, 4vw, 56px) 0 clamp(20px, 3vw, 40px); }
.cat-row { border-top: 2px solid var(--ink); }
.cat-row:last-child { border-bottom: 1px solid var(--line); }
.cat-row > a {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: 20px 32px; align-items: center;
  padding: 18px 0; text-decoration: none; transition: background .2s;
}
.cat-row > a:hover { background: rgba(255,255,255,.4); }
.cat-name { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.cat-name b { font-size: clamp(22px, 2.6vw, 34px); font-weight: 900; line-height: 1.2; }
.cat-name .n { font-family: var(--font-mono); font-size: 14px; color: var(--green); }
.cat-sub { flex-basis: 100%; font-size: 12.5px; color: var(--ink-2); }
.cat-thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.cat-thumbs .pic { aspect-ratio: 4 / 3; }
.cat-thumbs .pic-fb { font-size: 11px; padding: 6px; }
.cat-thumbs .empty { background: transparent; }
.cat-row > a:hover .arrow { transform: translateX(4px); }

/* 探す導線 */
.finder { background: var(--green); color: #fff; padding: clamp(32px, 4vw, 56px) 0; }
.finder-in { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.finder h2 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 900; margin-bottom: 20px; }
.search-lg { height: 64px; border-color: #fff; }
.search-lg input { font-size: 17px; }
.search-lg button { height: 46px; padding: 0 28px; background: var(--ink); }
.search-lg button:hover { background: #000; }
.search-lg:focus-within { box-shadow: 4px 4px 0 var(--tag); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chips a {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px;
  font-size: 13.5px; text-decoration: none; transition: background .15s, color .15s;
}
.chips a:hover { background: #fff; color: var(--green); }
.side-label { font-size: 11px; letter-spacing: .14em; color: var(--tag); margin-bottom: 8px; }
.quick li a {
  display: flex; justify-content: space-between; align-items: center; min-height: 48px; text-decoration: none; font-weight: 700; font-size: 14.5px;
  border-top: 1px solid rgba(255,255,255,.3); transition: padding .2s var(--ease), color .15s;
}
.quick li:last-child a { border-bottom: 1px solid rgba(255,255,255,.3); }
.quick li a::after { content: "→"; font-family: var(--font-mono); }
.quick li a:hover { padding-left: 8px; color: var(--tag); }

/* 状態のみかた */
.ranks { background: var(--white); padding: clamp(32px, 4vw, 52px) 0; }
.rank-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.rank-list > div { padding: 16px 16px 8px 0; }
.rank-list > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.rank-list dt { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 16px; }
.rank-list dt i {
  font-style: normal; display: grid; place-items: center; width: 30px; height: 30px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 15px; font-weight: 500; border-radius: 2px;
}
.rank-list dt i.w { width: auto; padding: 0 8px; font-family: var(--font-ui); font-size: 13px; font-weight: 700; }
.rank-list dd { margin-top: 8px; font-size: 12.5px; line-height: 1.7; color: var(--ink-2); }

/* 受取・配送 */
.guide { background: var(--paper); padding: clamp(32px, 4vw, 56px) 0; }
.guide-cols { display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 0; border-top: 2px solid var(--ink); }
.guide-col { padding: 22px 28px 8px 0; }
.guide-col + .guide-col { padding-left: 28px; border-left: 1px solid var(--line); }
.guide-col h3 { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.guide-col p { font-size: 14px; color: var(--ink-2); }
.guide-col .tbc-line { margin-top: 12px; font-size: 12.5px; }
.guide-col .tbc { margin-left: 0; margin-right: 6px; }
.guide-large h3 { font-size: 26px; }
.guide-more { margin-top: 20px; }
.guide-more a { font-size: 13.5px; font-weight: 700; }

/* 店舗 */
.store { background: var(--ink); color: #eeeadf; padding: clamp(32px, 4vw, 52px) 0; }
.store-in { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(20px, 4vw, 64px); }
.store h2 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 900; color: #fff; }
.store .sec-note { color: #aeb5ae; margin-top: 10px; }
.store-dl > div { display: grid; grid-template-columns: 6.5em minmax(0, 1fr); gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.18); font-size: 14.5px; }
.store-dl > div:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.store-dl dt { color: #aeb5ae; font-size: 12.5px; padding-top: 2px; }
.store-dl dd { overflow-wrap: anywhere; }
.inline { color: var(--tag); text-underline-offset: 3px; margin-left: 4px; }
.store-dl .inline:first-child { margin-left: 0; }

/* LINE */
.line-cta { background: var(--tag); padding: clamp(32px, 4vw, 52px) 0; }
.line-in { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(20px, 4vw, 64px); align-items: center; }
.line-cta h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 900; line-height: 1.3; }
.line-cta p { margin-top: 12px; font-size: 14.5px; }
.line-cta .src2 { font-size: 11.5px; color: #4d4210; margin-top: 10px; }
.line-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.btn-line-lg { background: #06c755; border-color: #06c755; color: #fff; height: 60px; font-size: 17px; }
.btn-line-lg:hover { filter: brightness(.94); }
.btn-tel { background: var(--white); color: var(--ink); font-family: var(--font-mono); font-weight: 500; }
.btn-tel:hover { background: var(--ink); color: #fff; }
.line-more { font-size: 13px; font-weight: 700; text-align: center; }

/* 買取 */
.kaitori { background: var(--paper-2); padding: clamp(28px, 3.5vw, 44px) 0; }
.kaitori-in { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 32px; }
.kaitori h2 { font-size: 20px; font-weight: 900; }
.kaitori p { flex: 1 1 260px; font-size: 14px; color: var(--ink-2); }
.btn-ghost-light { height: 48px; background: transparent; color: var(--ink); }
.btn-ghost-light:hover { background: var(--ink); color: #fff; }

/* フッター */
.foot { background: var(--ink); color: #b9bfb9; padding: 32px 0 40px; }
.foot-in { display: grid; gap: 16px; }
.foot-brand { font-family: var(--font-mono); font-size: 24px; color: #fff; letter-spacing: .06em; }
.foot-links { display: flex; flex-wrap: wrap; gap: 4px 22px; font-size: 13.5px; }
.foot-links a { display: inline-block; padding: 6px 0; text-decoration: none; }
.foot-links a:hover { color: var(--tag); }
.foot-note { font-size: 11px; line-height: 1.7; color: #8d958e; }

.dock { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .ticker-view { overflow-x: auto; }
  * { transition-duration: .01ms !important; }
}

/* タブレット */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .head-row { grid-template-columns: auto minmax(0, 1fr); }
  .head-contact { grid-column: 1 / -1; justify-content: flex-end; }
  .rank-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rank-list > div:nth-child(4) { padding-left: 0; border-left: 0; }
  .rank-list > div:nth-child(n+4) { border-top: 1px solid var(--line); }
  .guide-cols { grid-template-columns: 1fr 1fr; }
  .guide-large { grid-column: 1 / -1; border-left: 0 !important; padding-left: 0 !important; border-top: 1px solid var(--line); margin-top: 8px; }
}

/* スマホ */
@media (max-width: 760px) {
  body { font-size: 14.5px; padding-bottom: 68px; }
  .head-row { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding-block: 12px; }
  .brand-mark { font-size: 26px; }
  .search { grid-column: 1 / -1; grid-row: 2; height: 48px; }
  .head-contact { grid-column: 2; grid-row: 1; gap: 0; }
  .head-contact .btn-line { display: none; }
  .tel { width: 44px; height: 44px; justify-content: center; border: 1px solid var(--line); border-radius: 4px; }
  .tel-num { display: none; }
  .cat-tab { padding: 12px 12px; min-height: 44px; }

  .hero { grid-template-columns: minmax(0, 1fr); gap: 22px; padding-top: 22px; }
  .hero-photo { order: -1; margin: 0 calc(var(--gut) * -1); border-radius: 0; aspect-ratio: 16 / 10; }
  .hero-photo figcaption { font-size: 10.5px; }
  .hero h1 { font-size: 27px; }
  .lead { margin-top: 14px; font-size: 14px; }
  .hero-cta { margin-top: 20px; }
  .hero-cta .btn { flex: 1; padding: 0 12px; height: 50px; }
  .ticker-label { font-size: 12px; padding: 0 12px; }
  .ticker-track a { padding: 12px 20px; font-size: 13px; }

  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 10px; }
  .tile.big { grid-row: span 1; }
  .tile.big .pic { flex: none; aspect-ratio: 4 / 3; min-height: 0; }
  .tile.big .ttl { font-size: 16px; }
  .tile.big .price { font-size: 24px; }
  .price { font-size: 17px; }
  .sec-note { flex-basis: 100%; }

  .cat-row > a { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 16px 0 18px; }
  .cat-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .cat-thumbs .pic { aspect-ratio: 1 / 1; }
  .cat-thumbs .pic-fb { display: none; }

  .finder-in { grid-template-columns: minmax(0, 1fr); }
  .search-lg { height: 56px; }
  .search-lg button { padding: 0 18px; }
  .rank-list { grid-template-columns: minmax(0, 1fr); }
  .rank-list > div, .rank-list > div + div { padding: 14px 0; border-left: 0; border-top: 1px solid var(--line); }
  .rank-list > div:first-child { border-top: 0; }
  .rank-list dd { margin-top: 4px; }
  .guide-cols { grid-template-columns: minmax(0, 1fr); }
  .guide-col, .guide-col + .guide-col { padding: 18px 0; border-left: 0; }
  .guide-col + .guide-col { border-top: 1px solid var(--line); }
  .guide-large { margin-top: 0; }
  .store-in { grid-template-columns: minmax(0, 1fr); }
  .store-dl > div { grid-template-columns: 5.5em minmax(0, 1fr); font-size: 14px; }
  .line-in { grid-template-columns: minmax(0, 1fr); }
  .line-actions .btn { width: 100%; }
  .kaitori-in .btn { width: 100%; }
  .foot { padding-bottom: 24px; }

  .dock {
    display: grid; grid-template-columns: 1fr 1.25fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
    background: var(--white); border-top: 1px solid var(--ink); padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
  }
  .dock a {
    display: flex; align-items: center; justify-content: center; gap: 8px; height: 46px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 14.5px;
  }
  .dock-find { background: var(--ink); color: #fff; }
  .dock-line { background: #06c755; color: #fff; }
}
