:root { --mincho: "Shippori Mincho B1", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif; --gothic: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif; }
/* 近藤よし子 公式サイト 和紙・墨・朱・金 */
:root {
  --washi: #f7f3ee;
  --washi-2: #ede6dc;
  --paper: #faf7f2;
  --sumi: #1c1917;
  --sumi-2: #44403c;
  --sumi-3: #78716c;
  --shu: #c2410c;
  --shu-deep: #9a3412;
  --kin: #b45309;
  --kin-light: #fef08a;
  --rule: #e7e0d5;
  --rule-soft: #f0ebe1;
  --night: #141110;
  --night-2: #1f1917;
  --night-ink: #f5f0eb;
  --night-sub: #a8a29e;
  --line: #06c755;
  --line-deep: #05a847;

  --mincho: "Shippori Mincho B1", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --gothic: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --measure: 40rem;
  --wide: 72rem;
  --gutter: 20px;
  --header-h: 68px;
}
@media (min-width: 900px) {
  :root { --gutter: 40px; --header-h: 76px; }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  margin: 0;
  background: var(--washi);
  color: var(--sumi);
  font-family: var(--gothic);
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: .03em;
  overflow-x: hidden;
}
@media (min-width: 900px) { body { font-size: 16px; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 { font-family: var(--mincho); font-weight: 700; letter-spacing: .04em; margin: 0; }

.container { width: 100%; max-width: calc(var(--wide) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: var(--measure); }
.center { text-align: center; margin-inline: auto; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--sumi); color: var(--paper); padding: 8px 16px; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }

/* 見出し・文字階層 */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .25em;
  color: var(--kin); margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 1.5px; background: currentColor; }
.eyebrow.is-center { justify-content: center; }
.eyebrow.is-center::after { content: ""; width: 24px; height: 1.5px; background: currentColor; }

.lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 2.1; color: var(--sumi-2); }
.note { font-size: 13px; line-height: 1.8; color: var(--sumi-3); }
.text-shu { color: var(--shu); }

/* 背景トーン */
.bg-paper { background: var(--paper); }
.bg-warm { background: var(--washi-2); }
.bg-night { background: var(--night); color: var(--night-ink); }
section { padding-block: 72px; }
@media (min-width: 900px) { section { padding-block: 108px; } }

/* ヘッダー */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  height: var(--header-h);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-seal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 4px;
  background: var(--shu); color: #fff;
  font-family: var(--mincho); font-size: 20px; font-weight: 700;
  box-shadow: 0 2px 6px rgba(194,65,12,.3);
}
.brand-name { display: flex; flex-direction: column; }
.brand-name b { font-family: var(--mincho); font-size: 18px; font-weight: 700; line-height: 1.2; }
.brand-name small { font-size: 11px; color: var(--sumi-3); font-weight: 500; }

.gnav ul { display: none; list-style: none; margin: 0; padding: 0; gap: 24px; }
@media (min-width: 900px) {
  .gnav ul { display: flex; }
  .gnav a { font-size: 14.5px; font-weight: 500; color: var(--sumi-2); transition: color .2s; }
  .gnav a:hover, .gnav a[aria-current="page"] { color: var(--shu); }
}

.mnav { position: relative; }
@media (min-width: 900px) { .mnav { display: none; } }
.mnav summary {
  list-style: none; display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; cursor: pointer; padding: 6px 12px;
  border: 1px solid var(--rule); border-radius: 4px; background: #fff;
}
.mnav summary::-webkit-details-marker { display: none; }
.mnav .bars { width: 14px; height: 10px; display: inline-block; border-top: 2px solid; border-bottom: 2px solid; position: relative; }
.mnav .bars::after { content: ""; position: absolute; top: 2px; left: 0; width: 100%; height: 2px; background: currentColor; }
.mnav-panel {
  position: absolute; right: 0; top: calc(100% + 8px); width: 240px;
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.mnav-panel ul { list-style: none; margin: 0; padding: 0; }
.mnav-panel li { border-bottom: 1px solid var(--rule-soft); }
.mnav-panel li:last-child { border-bottom: none; }
.mnav-panel a { display: block; padding: 10px 0; font-size: 14px; }

/* ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 6px; font-weight: 700; font-size: 15px;
  text-align: center; cursor: pointer; transition: all .2s; border: none;
}
.btn-line { background: var(--line); color: #fff !important; box-shadow: 0 2px 8px rgba(6,199,85,.3); }
.btn-line:hover { background: var(--line-deep); }
.btn-shu { background: var(--shu); color: #fff !important; box-shadow: 0 2px 8px rgba(194,65,12,.3); }
.btn-shu:hover { background: var(--shu-deep); }
.btn-ghost { background: transparent; border: 1.5px solid var(--shu); color: var(--shu) !important; }
.btn-ghost:hover { background: var(--shu); color: #fff !important; }
.btn-wait { background: #e7e5e4; color: #78716c !important; cursor: not-allowed; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; }
.header-line { display: none; }
@media (min-width: 900px) { .header-line { display: inline-flex; padding: 8px 16px; font-size: 13.5px; } }

.textlink {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--shu); font-weight: 700; border-bottom: 1px solid currentColor;
}
.textlink .arrow::after { content: " →"; }

/* スマホ下部固定の申し込み */
.fixed-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(28, 25, 23, .96); border-top: 1px solid rgba(255, 255, 255, .08);
}
.fixed-cta .btn { width: 100%; min-height: 52px; font-size: 15.5px; }
@media (min-width: 900px) { .fixed-cta { display: none; } }

/* ヒーロー */
.hero { position: relative; overflow: hidden; padding-block: 60px 80px; background: var(--washi); }
.hero::before { display: none; }
@media (min-width: 900px) { .hero { padding-block: 80px 120px; } }
.hero-grid { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}
.hero-title {
  font-size: clamp(28px, 4vw, 46px); line-height: 1.4;
  margin-bottom: 24px; color: var(--sumi);
}
.hero-lead { font-size: clamp(16px, 1.6vw, 18px); line-height: 2.1; color: var(--sumi-2); margin-bottom: 32px; }
.hero-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero-img-wrap { position: relative; width: fit-content; max-width: 100%; margin-inline: auto; }
.hero-portrait {
  border-radius: 12px; border: 3px solid #fff;
  box-shadow: 0 12px 32px rgba(28,25,23,.18);
  width: 360px; max-width: 100%; height: auto;
}
.knot-floating {
  position: absolute; bottom: -20px; right: 0;
  background: rgba(255,255,255,.9); border-radius: 50%;
  padding: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* 視るものグリッド */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.5; margin-bottom: 12px; }
.see-grid { display: grid; gap: 24px; }
@media (min-width: 600px) { .see-grid { grid-template-columns: 1fr 1fr; } }
.see-card {
  background: #fff; padding: 32px 28px; border-radius: 8px;
  border: 1px solid var(--rule); box-shadow: 0 4px 12px rgba(0,0,0,.04);
  position: relative;
}
.see-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--kin); color: #fff; font-family: var(--mincho);
  font-weight: 700; margin-bottom: 16px;
}
.see-card h3 { font-size: 20px; margin-bottom: 12px; }

/* よし子についてセクション */
.about-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.3fr; gap: 64px; } }
.about-visual { text-align: center; }
.about-cutout { max-width: 300px; margin-inline: auto; }
.about-text h2 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.5; margin-bottom: 24px; }

/* 鑑定の流れ */
.flow-list { display: grid; gap: 20px; max-width: var(--measure); margin-inline: auto; margin-bottom: 40px; }
.flow-step {
  display: flex; gap: 20px; background: #fff; padding: 24px;
  border-radius: 8px; border: 1px solid var(--rule); align-items: flex-start;
}
.flow-num {
  flex-shrink: 0; background: var(--shu); color: #fff;
  font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}
.flow-body h3 { font-size: 18px; margin-bottom: 6px; }

/* 鑑定の流れ（詳細ページ） */
.flow-detail-stack { display: grid; gap: 32px; position: relative; }
.flow-detail-card {
  display: flex; gap: 24px; background: #fff; padding: 32px;
  border-radius: 12px; border: 1px solid var(--rule);
  box-shadow: 0 4px 16px rgba(0,0,0,.03); align-items: flex-start;
  position: relative;
}
@media (max-width: 600px) {
  .flow-detail-card { flex-direction: column; gap: 16px; padding: 24px; }
}
.flow-num-badge {
  flex-shrink: 0; background: var(--shu); color: #fff;
  font-size: 14px; font-weight: 700; font-family: var(--mincho);
  padding: 6px 14px; border-radius: 6px; box-shadow: 0 2px 6px rgba(194,65,12,.25);
}
.flow-detail-body h2 { font-size: clamp(19px, 2.2vw, 23px); margin-bottom: 10px; color: var(--sumi); }
.flow-lead { font-size: 16px; font-weight: 700; color: var(--shu-deep); margin-bottom: 12px; line-height: 1.8; }
.flow-detail-body p:last-child { margin-bottom: 0; font-size: 14.5px; line-height: 1.9; color: var(--sumi-2); }
.flow-notice {
  background: #fff; border: 1px solid var(--rule); border-radius: 12px;
  padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,.03);
}
.flow-notice h2 { font-size: 20px; margin-bottom: 16px; color: var(--sumi); }
.flow-notice ul { padding-left: 20px; margin: 0; }
.flow-notice li { margin-bottom: 12px; font-size: 14.5px; line-height: 1.85; }
.flow-notice li:last-child { margin-bottom: 0; }

/* なぜ本鑑定なのか (why-offer) */
.why-offer { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.offer-pair {
  display: grid; gap: 20px; max-width: var(--measure);
  margin: 36px auto;
}
@media (min-width: 600px) { .offer-pair { grid-template-columns: 1fr 1fr; } }
.offer-pair > div {
  background: #fff; padding: 24px; border-radius: 8px;
  border: 1px solid var(--rule);
}
.offer-pair > div.is-deep { border-color: var(--shu); border-width: 2px; }
.offer-pair b { display: block; font-family: var(--mincho); font-size: 18px; color: var(--shu); margin-bottom: 8px; }

/* 鑑定メニュー・商品カード */
.products-grid, .products-stack { display: grid; gap: 32px; max-width: var(--measure); margin-inline: auto; }
.item {
  background: #fff; border: 1px solid var(--rule); border-radius: 12px;
  padding: 32px 28px; position: relative; box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.item.is-main { border: 2.5px solid var(--shu); box-shadow: 0 6px 24px rgba(194,65,12,.12); }
.item-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--shu); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.item-top { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.item-top img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; }
.item-role { font-size: 13px; color: var(--kin); font-weight: 700; margin-bottom: 4px; }
.item-top h3 { font-size: 22px; line-height: 1.3; }
.item-price { font-size: 20px; font-weight: 800; color: var(--shu); margin-top: 4px; font-family: var(--mincho); }
.item .desc { font-size: 15px; line-height: 1.9; color: var(--sumi-2); margin-bottom: 20px; }
.item .spec { list-style: none; margin: 0 0 24px; padding: 16px; background: var(--paper); border-radius: 6px; font-size: 13.5px; }
.item .spec li { display: flex; gap: 12px; margin-bottom: 8px; }
.item .spec li:last-child { margin-bottom: 0; }
.item .spec b { flex-shrink: 0; color: var(--sumi-3); width: 80px; }
.item-why { margin: 20px 0; padding: 16px; border-left: 3px solid var(--kin); background: #fefce8; font-size: 13.5px; }
.item-why b { display: block; color: var(--kin); margin-bottom: 4px; }
.buy { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }

/* FAQ */
.faq-list { max-width: var(--measure); margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--rule); border-radius: 8px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none; display: flex; gap: 14px; padding: 18px 24px;
  font-weight: 700; cursor: pointer; align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary b { color: var(--shu); font-size: 18px; font-family: var(--mincho); }
.faq-a { padding: 0 24px 20px 48px; color: var(--sumi-2); font-size: 14.5px; line-height: 1.9; }

/* クロージング */
.closing { text-align: center; }
.closing h2 { font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 16px; }
.closing .lead { color: var(--night-ink); max-width: 32rem; margin-inline: auto; margin-bottom: 32px; }

/* フッター */
.site-footer {
  background: #141110; color: #d6d3d1; padding-top: 64px;
  border-top: 1px solid #292524; font-size: 13.5px;
}
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #a8a29e; line-height: 1.8; }
.source-credit { font-size: 11.5px; color: #78716c; margin-top: 12px; }
.footer-links h3, .footer-sns h3 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-links ul, .footer-sns ul { list-style: none; margin: 0; padding: 0; }
.footer-links li, .footer-sns li { margin-bottom: 10px; }
.footer-links a:hover, .footer-sns a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #292524; padding-block: 24px; text-align: center; color: #78716c; font-size: 12px; }

/* 下層ページヘッド */
.page-head { background: var(--washi-2); padding-block: 48px 60px; border-bottom: 1px solid var(--rule); }
.page-head .crumbs { font-size: 12.5px; color: var(--sumi-3); margin-bottom: 16px; }
.page-head h1 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.4; margin-bottom: 16px; }
.page-content { padding-block: 64px 96px; }

/* プロフィールボックス */
.profile-box {
  display: flex; gap: 24px; align-items: center; background: #fff;
  padding: 24px; border-radius: 8px; border: 1px solid var(--rule); margin-bottom: 40px;
}
@media (max-width: 600px) {
  .profile-box { flex-direction: column; text-align: center; }
  .profile-meta .role { margin-bottom: 12px; }
}
.profile-thumb { border-radius: 50%; object-fit: cover; border: 2px solid var(--rule); flex-shrink: 0; }
.profile-meta h2 { font-size: 22px; margin-bottom: 4px; }
.profile-meta .role { font-size: 13px; color: var(--kin); font-weight: 700; margin-bottom: 8px; }
.profile-meta .bio { font-size: 14px; color: var(--sumi-2); margin: 0; line-height: 1.8; }

/* 境界カード */
.boundary-grid { display: grid; gap: 20px; margin-top: 24px; }
@media (min-width: 600px) { .boundary-grid { grid-template-columns: 1fr 1fr; } }
.boundary-card { background: #fff; padding: 24px; border-radius: 8px; border: 1px solid var(--rule); }
.boundary-card h3 { font-size: 17px; margin-bottom: 12px; }
.boundary-card.is-seen h3 { color: var(--shu); }
.boundary-card.is-not-seen h3 { color: var(--sumi-3); }
.boundary-card ul { padding-left: 20px; margin: 0; font-size: 14px; line-height: 1.9; color: var(--sumi-2); }

/* 法的テーブル */
.legal-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 14.5px; }
.legal-table th, .legal-table td { padding: 14px 16px; border-bottom: 1px solid var(--rule); text-align: left; }
.legal-table th { width: 30%; font-weight: 700; color: var(--sumi-2); vertical-align: top; }

/* お知らせボックス */
.notice-box { background: #fefce8; border: 1px solid #fef08a; padding: 24px; border-radius: 8px; margin-bottom: 40px; }
.notice-box h2 { font-size: 18px; color: var(--kin); margin-bottom: 8px; }
.notice-box p { font-size: 14px; line-height: 1.8; margin: 0; color: var(--sumi-2); }

/* ストーリー章立て（aboutページ・UIリッチ化） */
.story-chapter {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.story-chapter:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}
.chapter-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--shu);
  background: rgba(194, 65, 12, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-family: var(--gothic);
}
.story-chapter h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--sumi);
}
.chapter-sub {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--kin);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.story-chapter p {
  margin-bottom: 1.4em;
  font-size: 15.5px;
  line-height: 2.05;
}

/* 鑑定の筋・信条カード */
.creed-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.creed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.creed-list li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-soft);
}
.creed-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.creed-title {
  display: block;
  font-size: 16px;
  color: var(--shu-deep);
  font-family: var(--mincho);
  margin-bottom: 6px;
}
.creed-desc {
  display: block;
  font-size: 14px;
  line-height: 1.9;
  color: var(--sumi-2);
}

/* スマホ表示時のフッター余白（固定CTAとの被り防止） */
@media (max-width: 899.98px) {
  .site-footer {
    padding-bottom: calc(40px + 64px + env(safe-area-inset-bottom, 0px));
  }
}

/* note手記紹介カード（トップおよびabout） */
.sec-note { padding-block: 72px; }
@media (min-width: 900px) { .sec-note { padding-block: 96px; } }
.note-card {
  display: grid; gap: 24px; background: #fff;
  border: 1px solid var(--rule); border-radius: 12px;
  padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; color: inherit;
}
@media (min-width: 768px) {
  .note-card { grid-template-columns: 280px 1fr; gap: 32px; padding: 32px; align-items: center; }
}
.note-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.note-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--rule);
}
.note-card-body { display: flex; flex-direction: column; justify-content: center; }
.note-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #2cb696;
  background: rgba(44, 182, 150, 0.1); padding: 4px 10px;
  border-radius: 4px; width: fit-content; margin-bottom: 12px;
}
.note-card h3 {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.5;
  margin-bottom: 12px; color: var(--sumi);
}
.note-card p {
  font-size: 14.5px; line-height: 1.85; color: var(--sumi-2); margin-bottom: 16px;
}
.note-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--shu);
}
.note-readmore .arrow::after { content: " →"; }

/* トップページ ご感想紹介 */
.sec-voices-intro { padding-block: 72px; }
@media (min-width: 900px) { .sec-voices-intro { padding-block: 96px; } }
.voices-intro-box {
  background: #fff; border: 1px solid var(--rule); border-radius: 12px;
  padding: 32px; max-width: var(--measure); margin-inline: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.04); text-align: left;
}
.voices-intro-box h3 { font-size: 20px; margin-bottom: 14px; color: var(--sumi); }
.voices-intro-box p { font-size: 15px; line-height: 1.9; color: var(--sumi-2); }
.voices-status-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--kin); background: #fefce8; border: 1px solid #fef08a;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 16px;
}

/* ストーリー章立て内 挿絵 */
.chapter-inline-visual {
  margin: 36px auto; text-align: center; max-width: 320px;
}
.chapter-inline-visual img {
  border-radius: 8px; border: 1px solid var(--rule); box-shadow: 0 6px 20px rgba(0,0,0,.06);
  margin-inline: auto;
}
.chapter-inline-visual figcaption {
  font-size: 13px; color: var(--sumi-3); margin-top: 8px; font-family: var(--mincho);
}

/* 新規情景画像・エディトリアル表示規程 */
.editorial-figure {
  margin-block: 36px 24px;
  text-align: center;
}
.editorial-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--rule);
  box-shadow: 0 6px 24px rgba(28,25,23,.08);
  margin-inline: auto;
  display: block;
}
.editorial-figure figcaption {
  font-size: 13.5px;
  color: var(--sumi-3);
  margin-top: 12px;
  font-family: var(--mincho);
  letter-spacing: 0.04em;
}
.editorial-visual-wrap {
  margin-block: 28px 36px;
  text-align: center;
}
.editorial-visual-wrap.thread-wrap {
  max-width: 680px;
  margin-inline: auto;
}
.editorial-visual-wrap.tea-wrap {
  max-width: 600px;
  margin-inline: auto;
}
.editorial-caption {
  font-size: 14.5px;
  color: var(--sumi-2);
  margin-top: 14px;
  font-family: var(--mincho);
  letter-spacing: 0.05em;
  text-align: center;
}
.sec-tea-transition {
  padding-block: 48px 64px;
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .sec-tea-transition {
    padding-block: 64px 80px;
  }
}

/* =========================================================
   ご感想（Voices）共通・トップ抜粋・一覧・モーダル
   ========================================================= */
.voices-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-block: 40px 32px;
}
@media (min-width: 768px) {
  .voices-featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.voices-reikai-box {
  background: var(--bg-warm, #fdfbf7);
  border: 1px solid var(--rule, #e7e5e4);
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 36px;
  text-align: center;
}
.voices-reikai-box h3 {
  font-family: var(--mincho);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--sumi);
}
.voices-reikai-box p {
  color: var(--sumi-2);
  line-height: 1.8;
  max-width: 640px;
  margin-inline: auto;
}

.voice-card {
  background: #ffffff;
  border: 1px solid var(--rule, #e7e5e4);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.voice-card.is-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}
.voice-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
}
.voice-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 4px;
  background: #fbf2eb;
  color: #9c4221;
  border: 1px solid #f0d5c4;
}
.voice-id {
  font-size: 0.82rem;
  color: var(--sumi-3);
  font-family: monospace;
}
.voice-theme {
  font-size: 0.85rem;
  color: var(--sumi-2);
  font-weight: 500;
}
.voice-worry {
  font-size: 0.95rem;
  color: var(--sumi);
  margin-bottom: 14px;
  line-height: 1.6;
}
.voice-worry b {
  color: var(--sumi-2);
}
.voice-excerpt {
  font-size: 0.95rem;
  color: var(--sumi-2);
  line-height: 1.85;
  margin: 0;
  padding: 12px 16px;
  background: var(--bg-paper, #faf8f5);
  border-left: 3px solid var(--shu, #b91c1c);
  border-radius: 0 6px 6px 0;
  font-style: normal;
}
.voice-card-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rule, #f5f5f4);
  text-align: right;
}

/* 一覧（voices ページ） */
.voices-filter-wrap {
  margin-bottom: 32px;
}
.filter-label {
  font-size: 0.9rem;
  color: var(--sumi-2);
  margin-bottom: 10px;
  font-weight: bold;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-btn {
  font-size: 0.88rem;
  padding: 8px 16px;
  border: 1px solid var(--rule, #e7e5e4);
  background: #ffffff;
  color: var(--sumi-2);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: var(--shu, #b91c1c);
  color: var(--shu, #b91c1c);
}
.filter-btn.is-active {
  background: var(--shu, #b91c1c);
  border-color: var(--shu, #b91c1c);
  color: #ffffff;
  font-weight: bold;
}

.voices-container { max-width: 1120px; }
.voices-stack { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
@media (min-width: 900px) { .voices-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.voices-stack .voice-card { min-width: 0; }
.voices-stack .voice-card-body { flex: 1; }
.voice-card { scroll-margin-top: 100px; }
.voices-stack .voice-card {
  padding: 28px 24px;
}
.voice-full-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--sumi);
  margin-top: 12px;
  max-height: 240px;
  overflow-y: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}
.voice-card-actions {
  margin-top: 16px;
  text-align: center;
}
.btn-voice-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  font-size: 0.92rem;
  color: var(--shu, #b91c1c);
  background: #fbf2eb;
  border: 1px solid #f0d5c4;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-voice-expand:hover {
  background: var(--shu, #b91c1c);
  color: #ffffff;
  border-color: var(--shu, #b91c1c);
}

/* 全文拡大モーダル */
.voice-modal {
  border: none;
  border-radius: 12px;
  padding: 0;
  max-width: 720px;
  width: 92vw;
  max-height: 88vh;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  margin: auto;
}
.voice-modal::backdrop {
  background: rgba(28, 25, 23, 0.7);
  backdrop-filter: blur(2px);
}
.modal-dialog-inner {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--rule, #e7e5e4);
  background: var(--bg-paper, #faf8f5);
  border-radius: 12px 12px 0 0;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--sumi-3);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.modal-close-btn:hover {
  color: var(--sumi);
}
.modal-body {
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-worry {
  font-size: 1.05rem;
  color: var(--sumi);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule, #e7e5e4);
  line-height: 1.6;
}
.modal-full-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--sumi);
  white-space: pre-line;
}
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--rule, #e7e5e4);
  background: var(--bg-paper, #faf8f5);
  border-radius: 0 0 12px 12px;
}
body.modal-open {
  overflow: hidden;
}

.sec-voices-meaning {
  border-top: 1px solid var(--rule, #e7e5e4);
  padding-block: 48px 64px;
}



