/*
Theme Name: ホンネ買取
Theme URI: https://honne-kaitori.com/
Description: ホンネ買取 大阪 江坂本店 の自作テーマ。スマホ・携帯／トレカの買取店向け。
Author: -
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: -
Text Domain: honne-kaitori

  ※ このファイルは mock/style.css をそのまま持ってきている。
     デザインの修正は mock 側で行い、確認してからここへ反映する。
*/

/* =============================================================
   ホンネ買取 大阪 江坂本店 — mock/style.css
   チラシ準拠：白地 × 黒 × イエロー（赤は注意喚起のみ）
   色は元チラシ画像から実測抽出（黄 #FAC903 / 赤 #C6000A）
   ============================================================= */

/* -------------------------------------------------------------
   1. デザイントークン
   ------------------------------------------------------------- */
:root {
  /* Color */
  --c-bg:        #FFFFFF;
  --c-bg-soft:   #F4F3F0;
  --c-ink:       #141414;   /* 本文・見出し */
  --c-ink-sub:   #6A6A6A;   /* 補足 */
  --c-line:      #DFDCD6;
  --c-yellow:    #FAC903;   /* ブランド1色 */
  --c-yellow-dk: #E0B200;
  --c-red:       #C6000A;   /* アクセント1色・注意喚起のみ */

  /* Font */
  --f-base: 'Noto Sans JP', -apple-system, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  /* Layout */
  --content-max: 1120px;
  --narrow-max:  760px;
  --sec-gap:     104px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .3, 1);
}

@media (max-width: 767px) {
  :root { --sec-gap: 64px; }
}

/* -------------------------------------------------------------
   2. Reset / Base
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  color: var(--c-ink);
  background: var(--c-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.45; letter-spacing: .01em; margin: 0; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
ul, ol, dl { margin: 0; padding: 0; }
li { list-style: none; }

.wrap { width: min(100% - 40px, var(--content-max)); margin-inline: auto; }
.wrap.narrow { max-width: var(--narrow-max); }

@media (max-width: 767px) {
  .wrap { width: calc(100% - 32px); }
}

/* 黄色のマーカー（チラシの黄フチ文字を web に翻訳したもの） */
mark {
  background: linear-gradient(transparent 58%, var(--c-yellow) 58%);
  color: inherit;
  padding: 0 .08em;
}

/* -------------------------------------------------------------
   3. 写真スペース（後から実写に差し替える枠）
   ------------------------------------------------------------- */
.slot {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background:
    repeating-linear-gradient(-45deg, #EDEBE7 0 10px, #F4F3F0 10px 20px);
  border: 1px dashed #B4AFA5;
  color: #7A756C;
}
.slot span { font-size: 13px; line-height: 1.9; font-weight: 500; }
.slot em { font-style: normal; font-size: 12px; color: #948E84; }
.slot-landscape { aspect-ratio: 4 / 3; }
.slot-portrait   { aspect-ratio: 4 / 5; }

/* -------------------------------------------------------------
   4. ボタン
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary {
  background: var(--c-yellow);
  color: var(--c-ink);
  border: 2px solid var(--c-yellow);
}
.btn-primary:hover { background: var(--c-yellow-dk); border-color: var(--c-yellow-dk); }
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
}
.btn-ghost:hover { background: var(--c-ink); color: #fff; }
.btn-lg { padding: 19px 44px; font-size: 19px; }

/* -------------------------------------------------------------
   5. ヘッダー
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-bg);
  border-bottom: 3px solid var(--c-ink);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 44px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text b { font-weight: 900; font-size: 19px; letter-spacing: .06em; }
.brand-text small { font-size: 11px; color: var(--c-ink-sub); letter-spacing: .1em; }

.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a {
  font-size: 14px; font-weight: 500; text-decoration: none;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--c-yellow); }

.tel-btn {
  display: flex; flex-direction: column; align-items: flex-end;
  text-decoration: none; line-height: 1.3;
  padding: 8px 18px; background: var(--c-ink); color: #fff; border-radius: 3px;
}
.tel-label { font-size: 11px; letter-spacing: .06em; color: #C9C9C9; }
.tel-num   { font-size: 20px; font-weight: 900; letter-spacing: .04em; }

@media (max-width: 1023px) {
  .site-nav { display: none; }
}
@media (max-width: 599px) {
  .header-inner { min-height: 64px; gap: 12px; }
  .brand img { width: 36px; }
  .brand-text b { font-size: 16px; }
  .tel-btn { margin-left: auto; padding: 6px 12px; }
  .tel-num { font-size: 16px; }
  .tel-label { font-size: 10px; }
}

/* -------------------------------------------------------------
   6. ヒーロー
   ------------------------------------------------------------- */
.hero { padding: 72px 0 88px; border-bottom: 1px solid var(--c-line); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  background: var(--c-ink); color: var(--c-yellow);
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  padding: 5px 14px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}
.lead { font-size: 16px; color: #333; margin-bottom: 32px; }
.lead strong { font-weight: 700; }

.promises { display: grid; gap: 0; margin-bottom: 34px; border-top: 1px solid var(--c-line); }
.promises li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.promises b { font-weight: 700; font-size: 15px; }
.promises span { font-size: 14px; color: #4A4A4A; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 899px) {
  .hero { padding: 48px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 420px; }
  .promises li { grid-template-columns: 1fr; gap: 2px; padding: 11px 0; }
}
@media (max-width: 559px) {
  /* 縦積みになったボタンは幅を揃える（文字数の差で段差が出るのを防ぐ） */
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
}

/* -------------------------------------------------------------
   7. セクション共通
   ------------------------------------------------------------- */
.section { padding: var(--sec-gap) 0; }
.section-gray { background: var(--c-bg-soft); }

.sec-title {
  font-size: clamp(25px, 3.6vw, 36px);
  font-weight: 900;
  margin-bottom: 14px;
}
.sec-title::before {
  content: "";
  display: block;
  width: 46px; height: 6px;
  background: var(--c-ink);
  margin-bottom: 18px;
}
.sec-lead { color: #4A4A4A; margin-bottom: 46px; }

/* -------------------------------------------------------------
   8. 買取品目
   ------------------------------------------------------------- */
.item {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--c-line);
}
.item:last-child { border-bottom: 1px solid var(--c-line); }
/* 左右を入れ替えても写真の幅が変わらないよう、列比も一緒に反転させる */
.item-rev { grid-template-columns: 1.15fr 1fr; }
.item-rev .item-photo { order: 2; }

.item-no {
  font-size: 13px; font-weight: 900; letter-spacing: .2em;
  color: var(--c-yellow-dk); margin-bottom: 6px;
}
.item-body h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; margin-bottom: 14px; }
.item-red { color: var(--c-red); font-weight: 700; font-size: 16px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag-list li {
  font-size: 13px; font-weight: 500;
  padding: 5px 13px;
  border: 1px solid var(--c-ink);
}

@media (max-width: 899px) {
  .item { grid-template-columns: 1fr; gap: 26px; padding: 34px 0; }
  .item-rev .item-photo { order: 0; }
}

/* -------------------------------------------------------------
   9. 買取の流れ
   ------------------------------------------------------------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.flow li { background: #fff; padding: 30px 24px 26px; border: 1px solid var(--c-line); }
.flow .step {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--c-ink); color: var(--c-yellow);
  font-weight: 900; font-size: 19px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.flow h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.flow p { font-size: 14px; line-height: 1.85; color: #4A4A4A; }

@media (max-width: 899px) { .flow { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 559px) { .flow { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------
   10. 持ちもの
   ------------------------------------------------------------- */
.bring { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: start; }
.bring h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.bring-main { border-left: 6px solid var(--c-yellow); padding-left: 24px; }
.note-red { color: var(--c-red); font-weight: 700; }
.bring-sub { background: var(--c-bg-soft); padding: 26px 28px; }
.check-list li {
  position: relative; padding-left: 22px; font-size: 15px; margin-bottom: 8px;
}
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 9px; height: 9px; background: var(--c-yellow); border: 1px solid var(--c-ink);
}
.small { font-size: 13px; color: var(--c-ink-sub); margin-top: 14px; }

@media (max-width: 899px) { .bring { grid-template-columns: 1fr; gap: 28px; } }

/* -------------------------------------------------------------
   11. 店内ギャラリー
   ------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery figure { margin: 0; }
.gallery figcaption {
  font-size: 13px; font-weight: 500; color: #4A4A4A;
  padding-top: 10px; border-top: 2px solid var(--c-ink); margin-top: 12px;
}
@media (max-width: 899px) { .gallery { grid-template-columns: 1fr; gap: 26px; } }

/* -------------------------------------------------------------
   12. アクセス
   ------------------------------------------------------------- */
.access { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td {
  text-align: left; vertical-align: top;
  padding: 13px 0; border-bottom: 1px solid var(--c-line);
}
.info-table th { width: 108px; font-weight: 700; color: #333; }
.info-table td a { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--c-yellow); }
.access-map iframe { display: block; width: 100%; }

@media (max-width: 899px) { .access { grid-template-columns: 1fr; gap: 30px; } }

/* -------------------------------------------------------------
   13. 入口の案内バー（チラシ下部の黄バー）
   ------------------------------------------------------------- */
.notice { background: var(--c-yellow); padding: 30px 0; }
.notice-inner { display: grid; gap: 12px; }
.notice-title { font-size: 13px; font-weight: 700; letter-spacing: .06em; margin: 0; }
.notice-items { display: flex; flex-wrap: wrap; gap: 14px 44px; }
.notice-items p { margin: 0; font-size: clamp(16px, 2.4vw, 21px); font-weight: 900; }
.notice-items .warn b { color: var(--c-red); }

/* -------------------------------------------------------------
   14. FAQ
   ------------------------------------------------------------- */
.faq { max-width: 800px; }
.faq dt {
  font-weight: 700; font-size: 17px;
  padding: 22px 0 8px;
  border-top: 1px solid var(--c-line);
}
.faq dt::before {
  content: "Q"; display: inline-block;
  width: 24px; height: 24px; line-height: 24px; text-align: center;
  background: var(--c-ink); color: var(--c-yellow);
  font-size: 13px; font-weight: 900;
  margin-right: 10px; vertical-align: 2px;
}
.faq dd { margin: 0 0 22px 34px; color: #3A3A3A; font-size: 15px; }
.faq dt:last-of-type + dd { border-bottom: 1px solid var(--c-line); padding-bottom: 22px; margin-bottom: 0; }

/* -------------------------------------------------------------
   15. 締めのCTA
   ------------------------------------------------------------- */
.cta { background: var(--c-ink); color: #fff; padding: 78px 0; text-align: center; }
.cta-inner img { margin: 0 auto 20px; width: 66px; }
.cta h2 { font-size: clamp(23px, 3.6vw, 34px); font-weight: 900; margin-bottom: 16px; }
.cta p { color: #C4C4C4; font-size: 15px; margin-bottom: 30px; }
.cta-hours { margin-top: 18px; font-size: 13px; color: #9A9A9A; }

/* -------------------------------------------------------------
   16. フッター
   ------------------------------------------------------------- */
.site-footer { background: #0C0C0C; color: #DADADA; padding: 46px 0 34px; }
.footer-inner { display: grid; gap: 26px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand b { display: block; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-brand span { display: block; font-size: 13px; line-height: 1.75; color: #9A9A9A; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.footer-nav a { font-size: 14px; text-decoration: none; color: #DADADA; }
.footer-nav a:hover { color: var(--c-yellow); }
.copyright { font-size: 12px; color: #767676; margin: 0; padding-top: 20px; border-top: 1px solid #262626; }

/* -------------------------------------------------------------
   17. 下層ページ共通パーツ
   ------------------------------------------------------------- */

/* パンくず */
.breadcrumb { border-bottom: 1px solid var(--c-line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; font-size: 12px; color: var(--c-ink-sub); }
.breadcrumb li::after { content: "／"; margin-left: 8px; color: #B9B4AC; }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { border-bottom: 1px solid var(--c-yellow); }

/* ページ見出し帯 */
.page-head { padding: 56px 0 46px; border-bottom: 3px solid var(--c-ink); }
.page-head .page-cat {
  display: inline-block; background: var(--c-ink); color: var(--c-yellow);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; padding: 5px 14px; margin-bottom: 18px;
}
.page-head h1 { font-size: clamp(28px, 4.6vw, 44px); font-weight: 900; margin-bottom: 16px; }
.page-head .page-lead { font-size: 16px; color: #3A3A3A; max-width: 720px; margin: 0; }

@media (max-width: 767px) { .page-head { padding: 36px 0 30px; } }

/* 本文ブロック（下層の説明文） */
.block { padding: 56px 0; border-bottom: 1px solid var(--c-line); }
.block:last-of-type { border-bottom: none; }
.block h2 { font-size: clamp(21px, 3vw, 28px); font-weight: 900; margin-bottom: 18px; }
.block h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.block-body { max-width: 800px; }

/* 2カラム（説明＋写真） */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; gap: 26px; } }

/* 定義リスト型の一覧（対応機種など） */
.spec { border-top: 1px solid var(--c-line); }
.spec > div {
  display: grid; grid-template-columns: 190px 1fr; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--c-line);
}
.spec dt { font-weight: 700; font-size: 15px; }
.spec dd { margin: 0; font-size: 15px; color: #3A3A3A; }
@media (max-width: 767px) { .spec > div { grid-template-columns: 1fr; gap: 4px; } }

/* もっと見るリンク */
.link-more {
  display: inline-block; font-weight: 700; font-size: 15px; text-decoration: none;
  padding-bottom: 3px; border-bottom: 3px solid var(--c-yellow); margin-top: 22px;
}
.link-more:hover { border-bottom-color: var(--c-ink); }

/* お知らせ一覧 */
.news-list { border-top: 1px solid var(--c-line); }
.news-list li { border-bottom: 1px solid var(--c-line); }
.news-list a {
  display: grid; grid-template-columns: 128px 1fr; gap: 20px;
  padding: 18px 0; text-decoration: none; align-items: baseline;
}
.news-list a:hover .news-title { border-bottom: 2px solid var(--c-yellow); }
.news-date { font-size: 13px; color: var(--c-ink-sub); font-weight: 500; }
.news-title { font-size: 16px; font-weight: 500; }
@media (max-width: 599px) { .news-list a { grid-template-columns: 1fr; gap: 4px; } }

/* 空の状態（記事が0件のとき） */
.empty-state {
  border: 1px dashed #B4AFA5; background: var(--c-bg-soft);
  padding: 46px 24px; text-align: center; color: #6A6A6A; font-size: 15px;
}

/* 法務・長文ページ */
.prose { max-width: 760px; font-size: 15px; }
.prose h2 { font-size: 19px; font-weight: 700; margin: 38px 0 12px; padding-top: 22px; border-top: 1px solid var(--c-line); }
.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose ul { margin: 0 0 1.2em; }
.prose ul li { position: relative; padding-left: 18px; margin-bottom: 6px; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: .72em; width: 7px; height: 7px; background: var(--c-yellow); }
.prose .updated { font-size: 13px; color: var(--c-ink-sub); margin-top: 34px; }

/* -------------------------------------------------------------
   18. 動き（main.js と対）
   ------------------------------------------------------------- */

/* スクロールで出す。.reveal は JS が付けるので、JS が落ちても消えない */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s var(--ease, cubic-bezier(.2,.7,.3,1)),
              transform .55s var(--ease, cubic-bezier(.2,.7,.3,1));
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ヘッダー: スクロール後に詰める */
.site-header { transition: box-shadow .25s, border-color .25s; }
.site-header.is-scrolled { box-shadow: 0 2px 0 rgba(20,20,20,.06), 0 8px 22px rgba(20,20,20,.10); }
.site-header .header-inner { transition: min-height .25s; }
.site-header.is-scrolled .header-inner { min-height: 62px; }
.site-header .brand img { transition: width .25s; }
.site-header.is-scrolled .brand img { width: 36px; }

/* ヒーロー写真の背面に敷く黄色のブロック（チラシの面構成をWebに翻訳） */
.hero-photo { position: relative; }
.hero-photo::before {
  content: "";
  position: absolute;
  left: -18px; top: -18px;
  width: 46%; height: 42%;
  background: var(--c-yellow);
  z-index: -1;
}
.hero-photo > * { position: relative; }

/* 見出し左の黒棒を、出現時に伸ばす */
.sec-title::before { transition: width .5s .1s var(--ease, cubic-bezier(.2,.7,.3,1)); }
.reveal.sec-title::before { width: 0; }
.reveal.sec-title.is-in::before { width: 46px; }

/* リンク・ボタンの微細な反応 */
.btn { transition: background .2s, color .2s, border-color .2s, transform .12s; }
.btn:active { transform: translateY(1px); }
.link-more { transition: border-color .2s, padding .2s; }
.link-more:hover { padding-right: 8px; }

/* -------------------------------------------------------------
   19. スマホ用の固定電話バー
   ------------------------------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  background: var(--c-ink);
  border-top: 3px solid var(--c-yellow);
  transform: translateY(100%);
  transition: transform .3s var(--ease, cubic-bezier(.2,.7,.3,1));
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar.is-on { transform: none; }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 60px; padding: 10px 16px;
  color: #fff; text-decoration: none;
}
.callbar .cb-label { font-size: 11px; letter-spacing: .1em; color: var(--c-yellow); }
.callbar .cb-num { font-size: 21px; font-weight: 900; letter-spacing: .04em; }
.callbar .cb-sub { font-size: 11px; color: #9A9A9A; }

@media (max-width: 899px) {
  .callbar { display: block; }
  body { padding-bottom: 66px; }  /* バーの下に本文が隠れないように */
}

/* -------------------------------------------------------------
   20. 写真の拡大表示
   ------------------------------------------------------------- */
.is-zoomable { cursor: zoom-in; transition: opacity .2s; }
.is-zoomable:hover { opacity: .88; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(12,12,12,.94);
}
.lightbox.is-on { display: grid; }
.lightbox img { max-width: min(100%, 1200px); max-height: 78vh; }
.lightbox-cap { color: #DADADA; font-size: 14px; margin: 16px 0 0; text-align: center; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--c-yellow); color: var(--c-ink);
  border: none; border-radius: 3px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  padding: 10px 20px; cursor: pointer;
}

/* -------------------------------------------------------------
   21. FAQ アコーディオン（details/summary・JSなし）
   ------------------------------------------------------------- */
.faq-ac { border-top: 1px solid var(--c-line); max-width: 800px; }
.faq-ac details { border-bottom: 1px solid var(--c-line); }
.faq-ac summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
}
.faq-ac summary::-webkit-details-marker { display: none; }
.faq-ac summary::before {
  content: "Q";
  width: 24px; height: 24px; line-height: 24px; text-align: center;
  background: var(--c-ink); color: var(--c-yellow);
  font-size: 13px; font-weight: 900;
}
.faq-ac summary::after {
  content: "";
  width: 13px; height: 13px;
  margin-top: .45em;
  justify-self: end;
  border-right: 3px solid var(--c-ink);
  border-bottom: 3px solid var(--c-ink);
  transform: rotate(45deg);
  transition: transform .25s;
}
.faq-ac details[open] summary::after { transform: rotate(-135deg); margin-top: .75em; }
.faq-ac summary:hover { background: rgba(250,201,3,.10); }
.faq-ac .faq-a {
  margin: 0 0 22px 36px;
  color: #3A3A3A; font-size: 15px;
}

/* -------------------------------------------------------------
   22. 細部（ここが「素人っぽさ」に一番効く）
   ------------------------------------------------------------- */
::selection { background: var(--c-yellow); color: var(--c-ink); }

/* 固定ヘッダーの下にアンカー先が潜り込まないように */
:target { scroll-margin-top: 96px; }

/* タップ領域を44px確保 */
.site-nav a, .footer-nav a, .breadcrumb a { display: inline-block; padding: 6px 0; }

/* -------------------------------------------------------------
   23. 印刷・アクセシビリティ
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media print {
  /* 印刷時にスクロール演出で消えないようにする */
  .reveal { opacity: 1 !important; transform: none !important; }
  .callbar, .site-header, .lightbox { display: none !important; }
  .faq-ac details { display: block; }
  .faq-ac .faq-a { display: block !important; }
  body { padding-bottom: 0; }
}
:focus-visible { outline: 3px solid var(--c-red); outline-offset: 2px; }

/* -------------------------------------------------------------
   24. WordPress 本文（the_content）
   固定ページ・お知らせの本文は .prose の中に出力される
   ------------------------------------------------------------- */
.prose h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; }
.prose ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.prose ol li { list-style: decimal; margin-bottom: 6px; }
.prose a { text-decoration: none; border-bottom: 2px solid var(--c-yellow); font-weight: 500; }
.prose img { margin: 24px 0; }
.prose blockquote {
  margin: 24px 0; padding: 4px 0 4px 20px;
  border-left: 6px solid var(--c-yellow); color: #4A4A4A;
}
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 24px 0; }
.prose th, .prose td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--c-line); }
.prose th { font-weight: 700; background: var(--c-bg-soft); }

/* ページ送り */
.pagination { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.pagination .page-numbers {
  display: inline-block; min-width: 44px; padding: 10px 14px; text-align: center;
  border: 1px solid var(--c-ink); text-decoration: none; font-weight: 500; font-size: 15px;
}
.pagination .page-numbers.current { background: var(--c-ink); color: #fff; }
.pagination .page-numbers:hover { background: var(--c-yellow); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* -------------------------------------------------------------
   12-2. 駅からの道順
   ------------------------------------------------------------- */
.route-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.route-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.route-head h3 { font-size: 19px; font-weight: 700; }
.route-dist {
  font-size: 13px; font-weight: 700; color: var(--c-ink);
  background: var(--c-yellow); padding: 3px 10px;
}
.route-line { font-size: 14px; line-height: 1.85; color: var(--c-ink-sub); margin-bottom: 20px; }
.route li {
  display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid var(--c-line);
}
.route li:first-child { border-top: 2px solid var(--c-ink); }
.route .step {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--c-ink); color: var(--c-yellow);
  font-weight: 900; font-size: 17px;
  border-radius: 50%;
}
.route p { font-size: 15px; line-height: 1.85; padding-top: 6px; }
.route .landmark { font-weight: 700; border-bottom: 2px solid var(--c-yellow); }
.route-actions { margin-top: 24px; }

@media (max-width: 899px) {
  .route-cols { grid-template-columns: 1fr; gap: 34px; }
}

/* ============ 地図facade（v1.3.0） ============ */
.map-facade {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; width: 100%; border: 1px solid var(--c-line); background: var(--c-bg-soft);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(0,0,0,.02) 14px, rgba(0,0,0,.02) 28px);
  cursor: pointer; font-family: inherit; padding: 24px;
}
.map-facade:hover { background-color: #EEECE7; }
.map-facade-title { font-size: 20px; font-weight: 900; color: var(--c-ink); }
.map-facade-title::before {
  content: ""; display: inline-block; width: 12px; height: 12px; margin-right: 10px;
  border-radius: 50%; background: var(--c-yellow); border: 3px solid var(--c-ink); vertical-align: baseline;
}
.map-facade-note { font-size: 13px; color: var(--c-ink-sub); }
.map-facade-addr { font-size: 13px; color: var(--c-ink-sub); }
.map-facade-link { margin-top: 10px; font-size: 14px; }
.map-facade-link a { color: var(--c-ink); }
