/* 安倍晴乃 公式サイト  和紙・墨・朱 */
:root {
  --washi: #f1eadd;
  --washi-2: #e8dfcd;
  --paper: #f8f3ea;
  --sumi: #27211c;
  --sumi-2: #4a4038;
  --sumi-3: #7a6d60;
  --shu: #a8382a;
  --shu-deep: #8c2c20;
  --kin: #8f7038;
  --rule: #d6c9b3;
  --rule-soft: #e3d9c7;
  --night: #221d19;
  --night-2: #2c2621;
  --night-ink: #eee5d5;
  --night-sub: #b8ab98;
  --line: #06c755;
  --line-deep: #05a847;

  --mincho: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --gothic: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;

  --measure: 36rem;
  --wide: 72rem;
  --gutter: 20px;
  --header-h: 64px;
  --cta-h: 0px;
}
@media (min-width: 900px) {
  :root { --gutter: 40px; --header-h: 76px; }
}
@media (max-width: 899.98px) {
  :root { --cta-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;
  font-feature-settings: "palt" 0;
  overflow-x: hidden;
  padding-bottom: var(--cta-h);
}
@media (min-width: 900px) { body { font-size: 16px; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
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; line-break: strict; }
strong { font-weight: 700; }
.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; }
:focus-visible { outline: 3px solid var(--kin); outline-offset: 3px; }

.container { width: 100%; max-width: calc(var(--wide) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: var(--measure); }
.center { margin-inline: auto; }
.mincho { font-family: var(--mincho); }

/* 文字の階層 */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--gothic); font-size: 12px; font-weight: 500; letter-spacing: .28em;
  color: var(--kin); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.is-center { justify-content: center; }
.eyebrow.is-center::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.h-section { font-size: clamp(25px, 3.4vw, 36px); line-height: 1.6; margin-bottom: 28px; }
.h-sub { font-size: clamp(19px, 2vw, 22px); line-height: 1.7; margin: 56px 0 18px; }
.lead { font-size: clamp(16px, 1.6vw, 17.5px); line-height: 2.05; color: var(--sumi-2); }
.note { font-size: 13px; line-height: 1.9; color: var(--sumi-3); letter-spacing: .04em; }
.prose { font-size: inherit; }
.prose p { margin-bottom: 1.5em; }
.prose strong { font-family: var(--mincho); font-weight: 700; font-size: 1.08em; color: var(--sumi); }
.prose .quiet { color: var(--sumi-2); }

.kaden {
  position: relative;
  margin: 40px 0;
  padding: 26px 0 26px 26px;
  border-left: 2px solid var(--shu);
  font-family: var(--mincho); font-size: clamp(17px, 1.8vw, 19px); line-height: 2.1; font-weight: 500;
}
.kaden-label { display: block; font-family: var(--gothic); font-size: 12.5px; letter-spacing: .12em; color: var(--sumi-3); margin-bottom: 8px; font-weight: 500; }
.scene-line { font-family: var(--mincho); font-size: clamp(17px, 1.8vw, 19px); line-height: 2.1; color: var(--sumi); margin: 36px 0; }

section { padding-block: 88px; }
@media (min-width: 900px) { section { padding-block: 128px; } }
.bg-paper { background: var(--paper); }
.bg-washi2 { background: var(--washi-2); }
.bg-night { background: var(--night); color: var(--night-ink); }
.bg-night .eyebrow { color: #c6a466; }
.bg-night .lead, .bg-night .prose .quiet { color: var(--night-sub); }
.bg-night .prose strong { color: var(--night-ink); }
.bg-night .kaden { border-color: #c85a44; }
.bg-night .kaden-label { color: var(--night-sub); }
.bg-night .note { color: var(--night-sub); }
.rule-top { border-top: 1px solid var(--rule); }

/* ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 26px; border-radius: 3px; border: 1px solid transparent;
  font-family: var(--gothic); font-size: 15px; font-weight: 700; letter-spacing: .06em; line-height: 1.5;
  text-decoration: none; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
  text-align: center;
}
.btn-line { background: var(--line); color: #fff; }
.btn-line:hover { background: var(--line-deep); }
.btn-shu { background: var(--shu); color: #fff; }
.btn-shu:hover { background: var(--shu-deep); }
.btn-ghost { border-color: var(--sumi); color: var(--sumi); background: transparent; }
.btn-ghost:hover { background: var(--sumi); color: var(--paper); }
.bg-night .btn-ghost { border-color: var(--night-ink); color: var(--night-ink); }
.bg-night .btn-ghost:hover { background: var(--night-ink); color: var(--night); }
.btn-wait { background: var(--washi-2); color: var(--sumi-3); border-color: var(--rule); cursor: default; }
.btn-block { width: 100%; }
.btn .arrow { display: inline-block; width: 18px; height: 1px; background: currentColor; position: relative; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.icon-line { width: 22px; height: 22px; flex: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.textlink { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; letter-spacing: .06em; }
.textlink:hover { color: var(--shu); }

/* ヘッダー */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241, 234, 221, .97);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header .bar { height: var(--header-h); display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-seal {
  width: 36px; height: 36px; display: grid; place-items: center; background: var(--shu); color: #fff;
  font-family: var(--mincho); font-weight: 800; font-size: 20px; line-height: 1; border-radius: 2px; flex: none;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name b { font-family: var(--mincho); font-weight: 800; font-size: 18px; letter-spacing: .12em; }
.brand-name small { font-size: 10.5px; letter-spacing: .16em; color: var(--sumi-3); }
.gnav { display: none; }
.gnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.gnav a { text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: .08em; color: var(--sumi-2); padding-block: 8px; position: relative; white-space: nowrap; }
.gnav a:hover, .gnav a[aria-current="page"] { color: var(--sumi); }
.gnav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--shu); }
.header-line { display: none; min-height: 42px; padding: 8px 18px; font-size: 13.5px; }
@media (min-width: 900px) {
  .gnav { display: block; }
  .header-line { display: inline-flex; }
  .mnav { display: none; }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .gnav ul { gap: 18px; }
  .gnav a { font-size: 13px; letter-spacing: .04em; }
}

/* スマホのメニュー */
.mnav > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: .12em; font-weight: 700; padding: 8px 2px;
}
.mnav > summary::-webkit-details-marker { display: none; }
.mnav .bars { width: 22px; height: 12px; position: relative; }
.mnav .bars::before, .mnav .bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--sumi); transition: transform .2s; }
.mnav .bars::before { top: 0; }
.mnav .bars::after { bottom: 0; }
.mnav[open] .bars::before { transform: translateY(5.25px) rotate(45deg); }
.mnav[open] .bars::after { transform: translateY(-5.25px) rotate(-45deg); }
.mnav-panel {
  position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0;
  background: var(--washi); overflow-y: auto; padding: 16px var(--gutter) calc(40px + var(--cta-h));
  border-top: 1px solid var(--rule-soft);
}
.mnav-panel ul { list-style: none; margin: 0; padding: 0; }
.mnav-panel li a { display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; border-bottom: 1px solid var(--rule); text-decoration: none; font-family: var(--mincho); font-size: 18px; font-weight: 600; }
.mnav-panel li a::after { content: ""; width: 8px; height: 8px; border-top: 1px solid var(--sumi-3); border-right: 1px solid var(--sumi-3); transform: rotate(45deg); }
.mnav-panel .note { margin-top: 24px; }

/* スマホ下部固定の申し込み */
.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(34, 29, 25, .96); border-top: 1px solid rgba(255, 255, 255, .08);
}
.fixed-cta .btn { width: 100%; min-height: 54px; font-size: 15.5px; }
@media (min-width: 900px) { .fixed-cta { display: none; } }

/* ヒーロー */
.hero { position: relative; padding: 0; overflow: hidden; background: var(--washi); }
.hero-bg { position: absolute; inset: 0; background-image: url("/img/scene_03-1280.jpg"); background-size: cover; background-position: 60% center; opacity: .42; filter: sepia(.2) saturate(.8); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--washi) 30%, rgba(241, 234, 221, .72) 60%, rgba(241, 234, 221, .35)); }
.hero-inner { position: relative; display: grid; gap: 40px; padding-block: 48px 64px; }
.hero h1 { font-size: clamp(31px, 5vw, 56px); line-height: 1.5; font-weight: 800; letter-spacing: .06em; margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--shu); }
.hero .lead { max-width: 30em; margin-bottom: 34px; }
.hero-name { font-family: var(--mincho); font-size: 15px; letter-spacing: .2em; color: var(--sumi-2); margin-bottom: 14px; }
.hero-portrait { position: relative; margin: 0; }
.hero-portrait .frame { position: relative; }
.hero-portrait .frame::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--kin); opacity: .55; }
.hero-portrait img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 24px 50px rgba(39, 33, 28, .18); }
.hero-portrait figcaption { position: absolute; top: 0; right: -44px; writing-mode: vertical-rl; font-family: var(--mincho); font-size: 14px; letter-spacing: .38em; color: var(--sumi-2); }
.hero-note { margin-top: 18px; }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: center; gap: 88px; padding-block: 104px 120px; }
  .hero-portrait { max-width: 400px; justify-self: start; }
}
@media (max-width: 899.98px) {
  .hero-bg { opacity: .3; background-position: 70% center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(241, 234, 221, .55), var(--washi) 78%); }
  .hero-inner { padding-top: 36px; }
  .hero-top { display: grid; grid-template-columns: minmax(0, 1fr) 132px; gap: 20px; align-items: end; }
  .hero-portrait { width: 132px; }
  .hero-portrait figcaption { display: none; }
  .hero-portrait .frame::before { inset: 8px -8px -8px 8px; }
  .hero .cta-row .btn { width: 100%; }
}

/* 晴乃が視るもの（絵つき） */
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fact { background: var(--paper); border: 1px solid var(--rule); display: flex; flex-direction: column; min-width: 0; }
.fact-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--washi-2); }
.fact-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.1); }
.fact-text { padding: 14px 14px 16px; display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 10px; align-items: baseline; }
.fact .k { font-family: var(--mincho); font-size: 22px; color: var(--shu); line-height: 1; margin-right: 8px; }
.fact h3 { grid-column: 1 / -1; font-size: 17px; line-height: 1.5; display: flex; align-items: baseline; }
br.br-sp { display: none; }
@media (max-width: 899.98px) { br.br-sp { display: inline; } }
.fact p { grid-column: 1 / -1; font-size: 13px; line-height: 1.85; color: var(--sumi-2); margin: 8px 0 0; }
@media (min-width: 900px) {
  .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .fact-img { aspect-ratio: 16 / 11; }
  .fact-text { padding: 22px 24px 26px; column-gap: 12px; }
  .fact .k { font-size: 26px; }
  .fact h3 { font-size: 19px; }
  .fact p { font-size: 14px; margin-top: 10px; }
}

/* 二段組み */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 96px; }
  .split.is-reverse > :first-child { order: 2; }
}
.ink-img { position: relative; margin: 0; }
.ink-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: sepia(.1); }
.ink-img figcaption { font-size: 12px; color: var(--sumi-3); margin-top: 10px; letter-spacing: .06em; }
.bg-night .ink-img figcaption { color: var(--night-sub); }

.pair { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 64px; }
.pair > div { background: var(--paper); padding: 32px 28px; }
.pair h3 { font-size: 24px; margin-bottom: 12px; }
.pair h3 span { font-family: var(--gothic); font-size: 12px; letter-spacing: .2em; color: var(--kin); display: block; margin-bottom: 6px; font-weight: 500; }
.pair p { margin: 0; color: var(--sumi-2); font-size: 15px; }
@media (min-width: 900px) { .pair { grid-template-columns: 1fr 1fr; } .pair > div { padding: 44px 48px; } }
.bg-night .pair { background: #463d35; border-color: #463d35; }
.bg-night .pair > div { background: var(--night-2); }
.bg-night .pair p { color: var(--night-sub); }

/* 流れ */
.flow { list-style: none; margin: 40px 0 0; padding: 0; counter-reset: flow; }
.flow-img { overflow: hidden; background: var(--washi-2); }
.flow-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.1); }
.flow li { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 16px; padding: 28px 0; border-top: 1px solid var(--rule); }
.flow li:last-child { border-bottom: 1px solid var(--rule); }
.flow .n { font-family: var(--mincho); font-size: 32px; color: var(--shu); line-height: 1.1; }
.flow h3 { font-size: 18.5px; line-height: 1.7; margin-bottom: 6px; }
.flow p { margin: 0; font-size: 14.5px; color: var(--sumi-2); }
@media (min-width: 900px) { .flow li { grid-template-columns: 88px minmax(0, 1fr); padding: 36px 0; } .flow .n { font-size: 40px; } }
.flow.is-compact { display: grid; gap: 0; }
.flow.is-compact li { grid-template-columns: 112px 36px minmax(0, 1fr); gap: 12px; align-items: start; padding: 18px 0; }
.flow.is-compact .flow-img { aspect-ratio: 4 / 3; }
.flow.is-compact .n { font-size: 26px; }
.flow.is-compact h3 { font-size: 16.5px; }
.flow.is-compact p { font-size: 13.5px; line-height: 1.85; }
@media (min-width: 900px) {
  .flow.is-compact { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; border: 0; }
  .flow.is-compact li { grid-template-columns: 1fr; border: 0; padding: 0; gap: 0; background: var(--paper); border: 1px solid var(--rule); }
  .flow.is-compact li:last-child { border-bottom: 1px solid var(--rule); }
  .flow.is-compact .flow-img { aspect-ratio: 16 / 11; }
  .flow.is-compact .n { font-size: 30px; padding: 18px 20px 0; }
  .flow.is-compact li > div:last-child { padding: 6px 20px 24px; }
  .flow.is-compact h3 { font-size: 17px; }
}
.measure-wide { max-width: 60rem; margin-inline: auto; }
.flow.is-detail li { grid-template-columns: 44px minmax(0, 1fr); gap: 8px 14px; }
.flow.is-detail .flow-img { grid-column: 2; aspect-ratio: 16 / 9; margin-top: 8px; }
@media (min-width: 900px) {
  .flow.is-detail li { grid-template-columns: 72px minmax(0, 1fr) 300px; gap: 36px; align-items: start; }
  .flow.is-detail .flow-img { grid-column: 3; grid-row: 1; margin-top: 6px; aspect-ratio: 16 / 10; }
}

/* 無償鑑定の後に、本鑑定をご案内する理由 */
.offer-pair { display: grid; gap: 12px; max-width: 48rem; margin: 40px auto; }
.offer-pair > div { background: var(--paper); border: 1px solid var(--rule); padding: 22px 24px; }
.offer-pair > div.is-deep { border: 2px solid var(--shu); }
.offer-pair b { display: block; font-family: var(--mincho); font-size: 19px; margin-bottom: 6px; }
.offer-pair > div.is-deep b { color: var(--shu); }
.offer-pair p { margin: 0; font-size: 14.5px; line-height: 1.9; color: var(--sumi-2); }
.bg-paper .offer-pair > div { background: var(--washi); }
@media (min-width: 900px) { .offer-pair { grid-template-columns: 1fr 1fr; gap: 24px; margin: 56px auto; } .offer-pair > div { padding: 30px 34px; } }

.two-lists { display: grid; gap: 24px; margin-top: 32px; }
.two-lists > div { background: var(--paper); border: 1px solid var(--rule); padding: 28px; }
.two-lists h3 { font-size: 18px; margin-bottom: 12px; }
.two-lists ul { margin: 0; padding-left: 1.2em; font-size: 14.5px; color: var(--sumi-2); }
.two-lists li + li { margin-top: 6px; }
@media (min-width: 900px) { .two-lists { grid-template-columns: 1fr 1fr; } .two-lists > div { padding: 36px 40px; } }

/* 鑑定メニュー */
.menu-grid { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; } }
.item { background: var(--paper); border: 1px solid var(--rule); padding: 32px 26px 28px; display: flex; flex-direction: column; gap: 14px; position: relative; }
@media (min-width: 900px) { .item { padding: 44px 40px 36px; } }
.item.is-main { border: 2px solid var(--shu); }
.item-badge { position: absolute; top: -13px; left: 22px; background: var(--shu); color: #fff; font-size: 12px; padding: 3px 12px; letter-spacing: .08em; font-weight: 700; line-height: 1.7; }
.item-top { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 18px; align-items: center; }
.item-img { aspect-ratio: 1; overflow: hidden; background: var(--night); }
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-top .item-role { margin-bottom: 6px; }
@media (min-width: 900px) { .item-top { grid-template-columns: 150px minmax(0, 1fr); gap: 26px; } }
.item-role { font-size: 12px; letter-spacing: .24em; color: var(--kin); font-weight: 500; margin: 0; }
.item h3 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.4; }
.item .desc { margin: 0; font-size: 15px; color: var(--sumi-2); }
.spec { margin: 4px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--rule-soft); }
.spec li { display: grid; grid-template-columns: 7.2em minmax(0, 1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--rule-soft); font-size: 13.5px; line-height: 1.8; }
.spec li b { color: var(--sumi-3); font-weight: 500; }
.item .buy { margin-top: auto; padding-top: 10px; display: grid; gap: 10px; }
.item .buy .note { margin: 0; }
.nights { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; margin: 4px 0; }
.nights span { font-family: var(--mincho); font-size: 12px; text-align: center; padding: 6px 0; border: 1px solid var(--rule); background: var(--washi); line-height: 1.4; }
.nights span.is-yin { background: var(--sumi); color: var(--paper); border-color: var(--sumi); }
.nights span.is-yang { background: var(--shu); color: #fff; border-color: var(--shu); }
.gogyo { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 4px; margin: 4px 0; }
.gogyo span { font-family: var(--mincho); font-size: 13px; text-align: center; padding: 6px 0; border: 1px solid var(--rule); background: var(--washi); }
.after-buy { margin-top: 48px; padding: 28px; background: var(--paper); border: 1px solid var(--sumi); display: grid; gap: 16px; }
.after-buy h3 { font-size: 19px; }
.after-buy p { margin: 0; font-size: 15px; }
@media (min-width: 900px) { .after-buy { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; padding: 36px 44px; } }

.menu-mini { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--rule); }
.menu-mini a { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 16px; align-items: center; padding: 16px 4px; border-bottom: 1px solid var(--rule); text-decoration: none; }
.mini-img { aspect-ratio: 1; overflow: hidden; background: var(--night); }
.mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.menu-mini a:hover .mini-img img { transform: scale(1.04); }
.menu-mini a:hover h3 { color: var(--shu); }
.menu-mini h3 { font-size: 21px; line-height: 1.5; }
.menu-mini p { margin: 2px 0 0; font-size: 13.5px; color: var(--sumi-3); }
.menu-mini .tag { font-size: 11.5px; background: var(--shu); color: #fff; padding: 1px 8px; margin-left: 10px; font-family: var(--gothic); vertical-align: middle; letter-spacing: .06em; font-weight: 700; }
@media (min-width: 900px) {
  .menu-mini { grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--rule); }
  .menu-mini a { grid-template-columns: 1fr; border-bottom: 0; padding: 28px 24px 32px; align-content: start; gap: 18px; }
  .menu-mini a + a { border-left: 1px solid var(--rule); }
  .menu-mini .tag { display: inline-block; margin: 0 0 8px; }
}

/* お客様の声 */
.voices { display: grid; gap: 20px; margin-top: 48px; align-items: start; }
@media (min-width: 900px) { .voices { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } .voices.is-two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.voice { margin: 0; background: var(--paper); border: 1px solid var(--rule); padding: 28px 26px 22px; display: flex; flex-direction: column; gap: 14px; }
.voice-body { font-family: var(--mincho); font-size: 15.5px; line-height: 2.05; color: var(--sumi); white-space: pre-line; overflow-wrap: anywhere; }
.voice-body.is-clamped { max-height: calc(2.05em * 9); overflow: hidden; -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent); mask-image: linear-gradient(180deg, #000 70%, transparent); }
.voice-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 12px; border-top: 1px solid var(--rule-soft); padding-top: 12px; }
.voice-tag { font-size: 12px; color: var(--sumi-3); letter-spacing: .06em; }
.voice-tag b { color: var(--shu); font-weight: 700; margin-right: 6px; }
.voice-more { font: inherit; font-size: 12.5px; font-weight: 700; color: var(--sumi); background: none; border: 0; border-bottom: 1px solid currentColor; padding: 0 0 1px; cursor: pointer; }
.voice-worry { font-size: 12.5px; color: var(--sumi-3); line-height: 1.8; margin: 0; padding-left: 10px; border-left: 2px solid var(--rule); }
.bg-night .voice { background: var(--night-2); border-color: #463d35; }
.bg-night .voice-body { color: var(--night-ink); }

.voices.is-shots { gap: 16px; }
.voice.has-shot { padding: 12px 12px 14px; gap: 10px; }
.voice-shot { display: block; position: relative; width: 100%; padding: 0; border: 0; background: #fff; cursor: zoom-in; overflow: hidden; max-height: 460px; border-radius: 2px; }
.voice-shot img { width: 100%; height: auto; }
.voice-shot::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 56px; background: linear-gradient(180deg, rgba(255,255,255,0), #fff 85%); opacity: 0; pointer-events: none; }
.voice-shot.is-tall::after { opacity: 1; }
.voice-zoom { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; color: var(--sumi-2); white-space: nowrap; }
.voice-zoom::before { content: "＋ "; color: var(--shu); }
@media (min-width: 900px) {
  .voices.is-shots { display: block; column-count: 2; column-gap: 24px; }
  .voices.is-shots > .voice { break-inside: avoid; margin-bottom: 24px; }
}
.voice.has-shot .voice-foot { padding: 10px 4px 0; }
.shot-dialog { border: 0; padding: 0; background: transparent; max-width: min(760px, calc(100vw - 16px)); width: 100%; max-height: calc(100dvh - 16px); margin: auto; overflow: visible; }
.shot-dialog::backdrop { background: rgba(27, 23, 20, .82); }
.shot-inner { background: var(--paper); padding: 48px 12px 16px; max-height: calc(100dvh - 16px); overflow-y: auto; position: relative; overscroll-behavior: contain; }
.shot-inner img { width: 100%; height: auto; background: #fff; }
.shot-close { position: absolute; top: 8px; right: 8px; font: inherit; font-size: 13.5px; font-weight: 700; padding: 6px 16px; border: 1px solid var(--sumi); background: var(--paper); color: var(--sumi); cursor: pointer; }
.shot-text { margin-top: 12px; font-size: 14.5px; }
.shot-text summary { cursor: pointer; list-style-position: inside; font-weight: 700; font-size: 13.5px; }
.shot-text p { white-space: pre-line; margin: 10px 0 0; line-height: 2; overflow-wrap: anywhere; }
@media (min-width: 900px) { .shot-inner { padding: 56px 28px 24px; } }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.chip { font: inherit; font-size: 13.5px; font-weight: 500; padding: 8px 16px; border: 1px solid var(--rule); background: var(--paper); color: var(--sumi-2); border-radius: 999px; cursor: pointer; line-height: 1.5; }
.chip[aria-pressed="true"] { background: var(--sumi); color: var(--paper); border-color: var(--sumi); }
.chip small { font-size: 11px; margin-left: 4px; opacity: .75; }

/* 発信（媒体ごと） */
.media-stack { display: grid; gap: 64px; margin-top: 40px; }
@media (min-width: 900px) { .media-stack { gap: 88px; margin-top: 56px; } }
.media-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 8px 24px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.media-head .note { margin: 4px 0 0; }
.media-name { display: flex; align-items: center; gap: 10px; font-size: 22px; line-height: 1.4; }
.media-mark { width: 10px; height: 10px; background: var(--shu); transform: rotate(45deg); flex: none; }
.media-jump { margin-top: 0; }
.media-jump .chip { text-decoration: none; }

.th-grid { display: grid; gap: 14px; }
@media (min-width: 700px) { .th-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .th-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: start; } }
@media (max-width: 899.98px) { .th-grid.is-short > :nth-child(n+3) { display: none; } }
.th-card { display: flex; flex-direction: column; gap: 12px; background: var(--paper); border: 1px solid var(--rule); padding: 18px 18px 16px; text-decoration: none; color: inherit; min-width: 0; transition: border-color .2s; }
.th-card:hover { border-color: var(--sumi-3); }
.th-head { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.th-head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.th-head b { display: block; font-size: 14px; line-height: 1.4; }
.th-head span { display: block; font-size: 11.5px; color: var(--sumi-3); line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.th-head time { font-size: 11.5px; color: var(--sumi-3); white-space: nowrap; }
.th-text { margin: 0; font-size: 14.5px; line-height: 1.95; white-space: pre-line; overflow-wrap: anywhere; display: -webkit-box; -webkit-line-clamp: 10; -webkit-box-orient: vertical; overflow: hidden; }
.th-foot { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; color: var(--sumi); border-top: 1px solid var(--rule-soft); padding-top: 10px; }

.ig-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; }
@media (min-width: 900px) { .ig-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; } .ig-grid.is-short { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.ig-tile { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--washi-2); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.ig-tile:hover img { opacity: .86; }
.ig-kind { position: absolute; top: 6px; right: 6px; color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); line-height: 0; }
.ig-noimg { display: grid; place-items: center; height: 100%; padding: 8px; font-size: 12px; text-align: center; }

.yt-grid { display: grid; gap: 20px; }
@media (min-width: 700px) { .yt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .yt-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.yt-card { display: grid; gap: 8px; text-decoration: none; color: inherit; }
.yt-frame { position: relative; aspect-ratio: 16 / 9; background: var(--night); overflow: hidden; }
.yt-frame img { width: 100%; height: 100%; object-fit: cover; }
.yt-play { position: absolute; left: 50%; top: 50%; width: 64px; height: 44px; margin: -22px 0 0 -32px; border-radius: 12px; background: rgba(168, 56, 42, .92); }
.yt-play::after { content: ""; position: absolute; left: 26px; top: 13px; border-left: 16px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; }
.yt-title { font-size: 15.5px; line-height: 1.7; }
.yt-date { font-size: 12px; color: var(--sumi-3); }
.yt-frame.is-empty { background: var(--night) url("/img/scene_15-720.jpg") center / cover; max-width: 720px; }
.yt-frame.is-empty::before { content: ""; position: absolute; inset: 0; background: rgba(27, 23, 20, .72); }
.yt-frame.is-empty .yt-play { top: 32%; background: rgba(238, 229, 213, .22); }
.yt-frame.is-empty p { position: absolute; left: 0; right: 0; bottom: 12%; margin: 0; padding: 0 16px; text-align: center; color: var(--night-ink); font-size: 13.5px; line-height: 1.8; }
.yt-frame.is-empty p b { display: block; font-family: var(--mincho); font-size: 20px; letter-spacing: .2em; }
@media (max-width: 599.98px) { .yt-frame.is-empty .yt-play { width: 52px; height: 36px; margin: -18px 0 0 -26px; top: 30%; } .yt-frame.is-empty .yt-play::after { left: 21px; top: 9px; } .yt-frame.is-empty p { bottom: 8%; font-size: 12.5px; line-height: 1.7; } .yt-frame.is-empty p b { font-size: 17px; } }
@media (min-width: 900px) { .yt-frame.is-empty { max-width: 640px; } .yt-frame.is-empty p { font-size: 14.5px; } .yt-frame.is-empty p b { font-size: 24px; } }

.note-grid { display: grid; gap: 14px; }
@media (min-width: 900px) { .note-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
@media (max-width: 899.98px) { .note-grid.is-short > :nth-child(n+3) { display: none; } }
.note-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--rule); text-decoration: none; color: inherit; min-width: 0; transition: border-color .2s; }
.note-card:hover { border-color: var(--sumi-3); }
.note-eye { aspect-ratio: 1.91 / 1; overflow: hidden; background: var(--washi-2); }
.note-eye img { width: 100%; height: 100%; object-fit: cover; }
.note-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.note-date { font-size: 11.5px; color: var(--sumi-3); letter-spacing: .06em; }
.note-title { font-size: 16.5px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: anywhere; }
.note-excerpt { margin: 0; font-size: 13.5px; line-height: 1.9; color: var(--sumi-2); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: anywhere; }
.note-foot { margin-top: auto; padding-top: 4px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; }
.empty { background: var(--paper); border: 1px dashed var(--rule); padding: 40px 28px; text-align: center; }
.empty h3 { font-size: 20px; margin-bottom: 8px; }
.empty p { color: var(--sumi-3); font-size: 14px; }
@media (max-width: 599.98px) {
  .media-head { align-items: start; }
  .media-go { width: 100%; }
}

/* よくある質問 */
.faq { margin-top: 40px; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 28px minmax(0, 1fr) 20px; gap: 12px; align-items: baseline; padding: 24px 2px; font-family: var(--mincho); font-weight: 700; font-size: 17px; line-height: 1.75; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "問"; font-size: 15px; color: var(--shu); }
.faq summary::after { content: "＋"; color: var(--sumi-3); font-family: var(--gothic); text-align: right; }
.faq details[open] summary::after { content: "－"; }
.faq .answer { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 12px; padding: 0 2px 28px; font-size: 15px; color: var(--sumi-2); }
.faq .answer::before { content: "答"; font-family: var(--mincho); color: var(--sumi-3); }
.faq-group { font-size: 13px; letter-spacing: .2em; color: var(--kin); margin: 56px 0 0; font-family: var(--gothic); font-weight: 500; }

/* 下層ページの見出し */
.page-head { position: relative; padding: 64px 0 56px; overflow: hidden; border-bottom: 1px solid var(--rule-soft); }
.page-head::before { content: ""; position: absolute; inset: 0; background-image: var(--head-img); background-size: cover; background-position: center; opacity: .2; filter: sepia(.2); }
.page-head::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--washi) 25%, rgba(241, 234, 221, .6)); }
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.5; font-weight: 800; margin-bottom: 18px; }
.page-head .lead { max-width: 32em; margin: 0; }
.crumbs { font-size: 12px; color: var(--sumi-3); margin-bottom: 20px; letter-spacing: .08em; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
@media (min-width: 900px) { .page-head { padding: 104px 0 88px; } }

/* 読み物（晴乃について） */
.reading { display: grid; gap: 40px; }
@media (min-width: 1100px) { .reading { grid-template-columns: 220px minmax(0, var(--measure)); gap: 96px; justify-content: center; } }
.toc { font-size: 13.5px; }
.toc-inner { border-top: 2px solid var(--sumi); padding-top: 16px; }
.toc b { display: block; font-size: 12px; letter-spacing: .24em; color: var(--kin); margin-bottom: 10px; font-weight: 500; }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: grid; grid-template-columns: 26px minmax(0, 1fr); padding: 9px 0; text-decoration: none; color: var(--sumi-2); line-height: 1.7; border-bottom: 1px solid var(--rule-soft); }
.toc a::before { content: counter(toc, cjk-ideographic); font-family: var(--mincho); color: var(--shu); }
.toc a:hover { color: var(--sumi); }
@media (min-width: 1100px) { .toc-inner { position: sticky; top: calc(var(--header-h) + 32px); } }
.chapter + .chapter { margin-top: 96px; }
.chapter h2 { font-size: clamp(23px, 2.8vw, 30px); line-height: 1.65; margin-bottom: 32px; }
.chapter h2 small { display: block; font-family: var(--gothic); font-size: 12px; letter-spacing: .24em; color: var(--kin); font-weight: 500; margin-bottom: 10px; }
.chapter .ink-img { margin: 40px 0; }
.chapter .ink-img img { aspect-ratio: 16 / 9; }
.quote-grand { margin: 36px 0; padding: 28px 28px; background: var(--paper); border: 1px solid var(--rule); font-family: var(--mincho); font-size: 17px; line-height: 2.1; }
.quote-grand p { margin: 0; }
.quote-grand p + p { margin-top: 14px; }
.quote-grand .note { font-family: var(--gothic); margin-top: 16px; }
.five { list-style: none; margin: 32px 0; padding: 0; border-top: 1px solid var(--rule); }
.five li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--rule); font-size: 15px; }
.five b { font-family: var(--mincho); font-size: 22px; color: var(--shu); line-height: 1.5; }
.sanjo { text-align: center; font-family: var(--mincho); font-weight: 800; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: .3em; margin: 48px 0; }

/* 締めの申し込み */
.closing { text-align: center; position: relative; overflow: hidden; }
.closing::before { content: ""; position: absolute; inset: 0; background: url("/img/scene_02-1280.jpg") center / cover; opacity: .14; }
.closing .container { position: relative; }
.closing h2 { font-size: clamp(25px, 3.4vw, 38px); line-height: 1.7; margin: 0 auto 24px; max-width: 18em; }
.closing .lead { margin: 0 auto 40px; max-width: 30em; }
.closing .btn { min-width: min(100%, 360px); }
.closing .note { margin-top: 24px; }

/* フッター */
.site-footer { background: #1b1714; color: var(--night-sub); padding: 72px 0 40px; font-size: 13.5px; }
.site-footer a { text-decoration: none; color: var(--night-ink); }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 64px; } }
.footer-brand .brand-name b { color: var(--night-ink); }
.footer-brand .brand-name small { color: var(--night-sub); }
.footer-brand p { margin-top: 18px; line-height: 2; }
.footer-col h2 { font-family: var(--gothic); font-size: 12px; letter-spacing: .24em; color: #c6a466; font-weight: 500; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid #3a322b; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: 12px; }

.section-foot { margin-top: 48px; display: flex; justify-content: flex-start; }
.section-foot.is-center { justify-content: center; }
.head-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px 40px; }
.head-row .h-section { margin-bottom: 0; }

.only-pc { display: none !important; }
@media (min-width: 900px) {
  .only-pc { display: block !important; }
  .only-sp { display: none !important; }
}

/* 日本語の改行を文節で（対応ブラウザのみ） */
h1, h2, h3, .scene-line, .sanjo, .item-role, .note-title, .yt-title { word-break: auto-phrase; }
@media (min-width: 900px) { .nw { white-space: nowrap; } }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr); gap: 72px; }
  .hero h1 { font-size: clamp(40px, 3.6vw, 54px); }
  .hero-portrait { max-width: 360px; }
}


/* スマホの詰め */
@media (max-width: 899.98px) {
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: calc(40px + var(--cta-h) + env(safe-area-inset-bottom, 0px)); }
  .eyebrow { letter-spacing: .16em; }
  .section-foot .btn, .after-buy .btn { width: 100%; }
  .spec li { grid-template-columns: 5.6em minmax(0, 1fr); }
  .is-limit3-sp > :nth-child(n+4), .is-limit4-sp > :nth-child(n+5) { display: none !important; }
  .head-row .textlink { order: 2; }
}

@media (min-width: 900px) {
  .site-header { background: rgba(241, 234, 221, .93); -webkit-backdrop-filter: saturate(1.2) blur(8px); backdrop-filter: saturate(1.2) blur(8px); }
}
body:has(.mnav[open]) { overflow: hidden; }

/* fontSet B */
:root { --mincho: "Shippori Mincho B1", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif; --gothic: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif; }
