/* ============================================================
   style-new.css — コトノハ＊ツムギ 本体サイト用ページスタイル
   design-kit.css（抽出デザインキット）の上に重ねる追加分
   ============================================================ */

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.hl-leaf { color: var(--leaf-deep); }
img { max-width: 100%; display: block; }

/* ===== レスポンシブ改行：手動<br>はPC幅だけ効かせ、スマホは自然に折り返す ===== */
.hero h1, .hero-lead, .sec-head h2, .pf-hero-title, .about-tagline { text-wrap: balance; }
@media (max-width: 600px) {
  .hero-lead br,
  .sec-head h2 br,
  .pf-hero-title br,
  .book-desc br,
  .about-tagline br { display: none; }
}
/* 名前など、途中で割れると困る語をまとめる */
.nowrap { white-space: nowrap; }

/* === ナビ：ロゴ画像＋文字サイズ＋ハンバーガー === */
.nav-inner { gap: 20px; }
.brand-mark { width: 46px; height: 46px; }
.brand { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .en { font-family: var(--display); font-weight: 500; font-size: 17px; letter-spacing: .04em; white-space: nowrap; }
.brand-text .en .dot { color: var(--leaf); }
.nav-right { display: flex; align-items: center; gap: 22px; }

/* 文字サイズ切替（アクセシビリティ：高齢ユーザー配慮で必ず残す） */
.font-size-ctrl {
  display: flex; align-items: center; gap: 8px;
  padding-left: 18px;
  border-left: 1px solid color-mix(in oklab, var(--stone) 25%, transparent);
}
.font-size-ctrl-label { font-size: 12px; color: var(--stone-deep); white-space: nowrap; margin-right: 2px; }
.font-size-btn {
  position: relative;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: var(--cream-2); color: var(--ink-soft);
  cursor: pointer; font-family: var(--sans); font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: all .2s;
}
.font-size-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
}
.font-size-btn:nth-child(2){font-size: 12px;} .font-size-btn:nth-child(3){font-size:13px;} .font-size-btn:nth-child(4){font-size:15px;}
.font-size-btn.active { background: var(--leaf-deep); color: var(--paper); }
.font-size-btn:hover:not(.active) { background: var(--stone-soft); }

/* ハンバーガー（モバイル） */
.nav-cta { white-space: nowrap; }
/* タップ領域44×44px確保（中身は24×16pxなのでpaddingで拡大。ナビ高はbrand-mark46pxが基準のため崩れない） */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 14px 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle--open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle--open span:nth-child(2){ opacity: 0; }
.nav-toggle--open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* === ヒーロー === */
.hero { position: relative; padding: 130px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.28; letter-spacing: .03em;
  margin: 0 0 26px; color: var(--ink);
}
.hero h1 .accent { color: var(--leaf-deep); }
.hero-lead { font-size: 16px; line-height: 1.95; color: var(--ink-soft); max-width: 30em; margin: 0 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.leaf-deco { position: absolute; opacity: .5; z-index: 0; pointer-events: none; }
.leaf-deco.one { top: 6%; right: -40px; width: 200px; transform: rotate(20deg); }
.leaf-deco.two { bottom: 2%; left: -60px; width: 260px; transform: rotate(-30deg); opacity: .28; }

/* ヒーロー右：ロゴアートワーク＋浮遊チップ */
.hero-art { position: relative; aspect-ratio: 1/1; max-width: 420px; width: 100%; margin: 0 auto; }
.hero-art .halo {
  position: absolute; inset: -5% -5% -10% -5%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--leaf-soft) 50%, transparent), transparent 72%);
}
.hero-art .hero-logo { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(80,120,40,.18)); }
.hero-art .float-chip {
  position: absolute; z-index: 2; background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--stone) 25%, transparent);
  padding: 9px 14px; border-radius: 14px; font-size: 12px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
  animation: float 6s ease-in-out 3; animation-fill-mode: forwards; white-space: nowrap;
}
.hero-art .chip-1 { top: 10%; left: -6%; animation-delay: 0s; }
.hero-art .chip-2 { bottom: 16%; right: -4%; animation-delay: 1.5s; }
.hero-art .chip-3 { top: 60%; left: -10%; animation-delay: 3s; }
.float-chip .dot-g,.float-chip .dot-s,.float-chip .dot-a { width: 8px; height: 8px; border-radius: 50%; }
.float-chip .dot-g { background: var(--leaf); } .float-chip .dot-s { background: var(--stone); } .float-chip .dot-a { background: var(--accent); }

/* === お知らせ === */
.news { background: var(--cream-2); border-top: 1px solid color-mix(in oklab,var(--stone) 18%,transparent); border-bottom: 1px solid color-mix(in oklab,var(--stone) 18%,transparent); }
.news-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 32px; display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.news-label { font-family: var(--script); font-size: 22px; color: var(--leaf-deep); flex-shrink: 0; line-height: 1.4; }
.news-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.news-list li { font-size: 13.5px; color: var(--ink-soft); }
.news-date { font-family: var(--display); font-style: italic; color: var(--stone-deep); margin-right: 12px; letter-spacing: .05em; }
.news-list a { color: var(--leaf-deep); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.news-list a:hover { color: var(--leaf-deep); }

/* ルビ（ふりがな） */
ruby rt { font-size: .6em; color: var(--stone-deep); font-weight: 400; }

/* === About：ペインポイント === */
.pain-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 14px; max-width: 950px; margin: 0 auto 56px; }
.pain-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 225px;
  max-width: 340px;
  background: transparent;
  border: 1.5px solid color-mix(in oklab, var(--leaf) 28%, transparent);
  border-radius: 18px 18px 18px 5px;
  padding: 16px 24px;
  font-family: var(--serif);
  font-size: 15.5px; font-weight: 500; color: var(--ink); line-height: 1.55;
  text-align: center; text-wrap: balance; line-break: strict;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .25s, background .25s;
  animation: voiceFloat var(--dur, 5s) ease-in-out 3;
  animation-delay: var(--dl, 0s);
  animation-fill-mode: forwards;
}
@keyframes voiceFloat {
  0%, 100% { transform: translateY(0)    rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-9px) rotate(var(--rot, 0deg)); }
}
.pain-item:nth-child(1) { --rot: -1.6deg; --dur: 5s;   --dl: 0s;  --n: "01"; }
.pain-item:nth-child(2) { --rot:  1.3deg; --dur: 6.2s; --dl: .5s; --n: "02"; }
.pain-item:nth-child(3) { --rot: -1deg;   --dur: 5.5s; --dl: 1s;  --n: "03"; }
.pain-item:nth-child(4) { --rot:  1.6deg; --dur: 6.6s; --dl: .3s; --n: "04"; }
.pain-item:nth-child(5) { --rot: -1.2deg; --dur: 5.8s; --dl: .8s; --n: "05"; }
/* 背景レイヤー（最背面） */
.pain-item::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--paper); z-index: -2;
}
/* 透かし番号（背景の上・文字の下／サービス01〜05と連携） */
.pain-item::after {
  content: var(--n, "");
  position: absolute; right: 10px; bottom: -8px;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 50px; line-height: 1; z-index: -1;
  color: color-mix(in oklab, var(--leaf-deep) 17%, transparent);
  pointer-events: none;
}
/* 2色：奇数＝緑／偶数＝クリーム */
.pain-item:nth-child(odd)::before  { background: color-mix(in oklab, var(--leaf) 16%, var(--paper)); }
.pain-item:nth-child(even)::before { background: var(--cream-2); }
.pain-item:nth-child(odd)  { border-color: color-mix(in oklab, var(--leaf) 48%, transparent); }
.pain-item:nth-child(even) { border-color: color-mix(in oklab, var(--leaf) 38%, transparent); }
.pain-item:hover { box-shadow: var(--shadow-md); animation-play-state: paused; }
@media (max-width: 560px) { .pain-item { max-width: 100%; } }

/* プロフィール肩書きバッジ */
.profile-title-badge { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; margin-bottom: 8px; }
.profile-title-badge .pt-ja { background: var(--leaf-deep); color: var(--paper); font-size: 12px; letter-spacing: .1em; padding: 3px 11px; border-radius: 999px; white-space: nowrap; }
.profile-title-badge .pt-en { font-family: var(--display); font-style: italic; font-size: 12px; color: var(--stone); }

/* === About === */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.about-text p { margin: 0 0 18px; font-size: 15px; line-height: 1.95; color: var(--ink-soft); }
.about-text .lead-q { display: flex; flex-direction: column; gap: 8px; margin: 0 0 26px; }
.about-text .lead-q span { font-family: var(--serif); font-size: 17px; color: var(--ink); border-left: 2px solid var(--leaf); padding-left: 14px; }
.about-tagline { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); line-height: 1.95; margin-top: 22px; padding: 2px 0 2px 18px; border-left: 3px solid var(--leaf); }
.about-tagline .brush-mark { display: inline-block; background: linear-gradient(120deg, transparent 0 6%, color-mix(in oklab, var(--leaf) 38%, transparent) 6% 94%, transparent 94%); padding: 0 4px; font-weight: 700; }
.about-sign { font-family: var(--script); font-size: 26px; color: var(--leaf-deep); margin-top: 8px; }

.profile-card { display: flex; gap: 20px; align-items: center; margin-bottom: 22px; }
.profile-avatar { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; border: 2px solid var(--leaf-soft); flex-shrink: 0; }
.profile-name { font-family: var(--serif); font-size: 19px; color: var(--ink); margin: 0; }
.profile-name span { font-family: var(--display); font-style: italic; font-size: 13px; color: var(--stone); margin-left: 8px; }
.profile-role { font-size: 12px; letter-spacing: .12em; color: var(--leaf-deep); text-transform: uppercase; margin: 4px 0 0; }
.profile-bio { font-size: 12.5px; color: var(--ink-soft); margin: 6px 0 0; }
.profile-certs { margin-top: 16px; }
.profile-certs-summary { cursor: pointer; font-size: 13px; color: var(--leaf-deep); list-style: none; display: inline-flex; align-items: center; gap: 6px; }
.profile-certs-summary::-webkit-details-marker { display: none; }
.profile-certs-summary::after { content: "＋"; font-size: 12px; }
details[open] .profile-certs-summary::after { content: "−"; }
.profile-certs-body { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.profile-certs-body ul { margin: 6px 0 14px; padding-left: 18px; line-height: 1.8; }
.profile-certs-cat { font-family: var(--serif); color: var(--ink); margin-top: 8px; }
.profile-passport { display: flex; gap: 12px; align-items: center; margin-top: 10px; }
.passport-badge { width: 90px; height: auto; border-radius: 6px; }
.passport-qr { width: 64px; height: auto; }

/* === Services（5つ：3カード＋準備中2つ） === */
.svc { position: relative; }
.svc.coming { opacity: .72; }
/* 大きな番号で目を引く */
.svc .svc-num {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 54px; line-height: 1; letter-spacing: 0;
  color: var(--leaf-soft); margin: 0 0 8px;
}
.svc .svc-jp-en { display: flex; align-items: baseline; gap: 10px; margin: 0 0 10px; }
.svc .svc-jp-en h3 { margin: 0; }
.svc .svc-en { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--leaf-deep); }
/* サービス種別をピルで目立たせる */
.svc .svc-label {
  display: inline-block; align-self: flex-start;
  font-size: 12.5px; font-weight: 500; letter-spacing: .04em;
  color: var(--leaf-deep);
  background: color-mix(in oklab, var(--leaf) 16%, transparent);
  padding: 4px 13px; border-radius: 999px; margin: 0 0 16px;
}
.svc .coming-badge { position: absolute; top: 22px; right: 22px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: var(--cream-2); color: var(--stone-deep); padding: 4px 10px; border-radius: 999px; }
.svc .svc-note-inline { display: inline-block; margin-top: 10px; font-size: 11.5px; color: var(--stone-deep); line-height: 1.6; }
.svc .svc-cheer { font-family: var(--script); font-size: 18px; color: var(--leaf-deep); line-height: 1; transform: rotate(-4deg); display: inline-block; }
.svc p strong { color: var(--ink); font-weight: 700; }
.svc .svc-record { flex: none; margin: 4px 0 14px; background: color-mix(in oklab, var(--leaf) 10%, transparent); border-radius: 8px; padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; }
.svc .svc-record > b { font-size: 12px; letter-spacing: .08em; color: var(--leaf-deep); font-weight: 700; }
.svc .svc-record .rec-item { font-size: 12.5px; line-height: 1.5; color: var(--ink); }
.svc .svc-record .rec-item small { display: block; color: var(--stone-deep); margin-top: 2px; font-size: 12px; }

/* 料金ティーザー（常時表示の1行。アコーディオンを開かなくても目安がわかる） */
.svc-price-teaser {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in oklab, var(--stone) 30%, transparent);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--leaf-deep);
  font-weight: 500;
}
.svc-price-teaser strong {
  color: var(--ink);
  white-space: nowrap;
}
/* 文章＋注記タイプ（カナデ/ツムギ）は両端揃えにせず縦に流す */
.svc-price-teaser--quote { display: block; }
.svc-price-teaser--quote small { display: block; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }

/* 料金の目安アコーディオン（カード内） */
.svc-price { margin-top: 18px; border-top: 1px dashed color-mix(in oklab, var(--stone) 30%, transparent); padding-top: 14px; }
.svc-price > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--leaf-deep); font-weight: 500; }
.svc-price > summary::-webkit-details-marker { display: none; }
.svc-price-tg { transition: transform .2s; font-size: 14px; }
details[open] > summary .svc-price-tg { transform: rotate(45deg); }
.svc-price-body { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.svc-price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-size: 12.5px; color: var(--ink-soft); }
.svc-price-row strong { color: var(--leaf-deep); white-space: nowrap; }
.svc-price-note { font-size: 12px; color: var(--stone-deep); margin: 2px 0 0; line-height: 1.6; }
.svc-price-single { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; margin: 0; }

/* 割引・オプション共通アコーディオン */
.svc-extra { max-width: 760px; margin: 36px auto 0; }
.svc-extra-acc { background: var(--cream-2); border-radius: var(--radius); }
.svc-extra-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 18px 26px; font-family: var(--serif); font-size: 15px; color: var(--ink); }
.svc-extra-acc > summary::-webkit-details-marker { display: none; }
.svc-extra-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; padding: 4px 26px 24px; }
.svc-extra-col h4 { font-family: var(--serif); font-size: 14px; color: var(--leaf-deep); margin: 0 0 10px; }
.svc-extra-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.svc-extra-col li { font-size: 13px; color: var(--ink-soft); padding-left: 16px; position: relative; }
.svc-extra-col li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf-soft); }
.svc-extra-opt li { display: flex; justify-content: space-between; gap: 10px; padding-left: 16px; }
.svc-extra-opt strong { color: var(--leaf-deep); white-space: nowrap; }
@media (max-width: 640px) { .svc-extra-body { grid-template-columns: 1fr; } }
.svc-extra-body--single { grid-template-columns: 1fr; max-width: 460px; }

/* === Features（アコーディオン） === */
.features-sub { font-size: 14px; color: var(--ink-soft); margin: -36px 0 36px; }
.feature-list { display: flex; flex-direction: column; gap: 0; border: 1px solid color-mix(in oklab,var(--stone) 18%,transparent); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.feature-acc { border-bottom: 1px solid color-mix(in oklab,var(--stone) 14%,transparent); }
.feature-acc:last-child { border-bottom: none; }
.feature-group-label {
  margin: 0; padding: 14px 24px 10px;
  font-family: var(--serif); font-weight: 700; font-size: 13px; letter-spacing: .12em;
  color: #55700e; background: var(--cream);
  border-bottom: 1px solid color-mix(in oklab,var(--stone) 14%,transparent);
}
.feature-group-label + .feature-acc .feature-sum { padding-top: 20px; }
.feature-sum { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 14px; padding: 18px 24px; font-family: var(--serif); font-size: 15.5px; color: var(--ink); transition: background .2s; }
.feature-sum::-webkit-details-marker { display: none; }
.feature-sum:hover { background: var(--cream); }
.feature-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--leaf); flex-shrink: 0; }
.feature-sum .tg { margin-left: auto; font-size: 14px; color: var(--leaf-deep); transition: transform .25s; }
details[open] .feature-sum .tg { transform: rotate(45deg); }
.feature-detail { padding: 0 24px 20px 47px; font-size: 14px; line-height: 1.85; color: var(--ink-soft); }

/* === Price === */
.price-note { font-size: 14px; color: var(--ink-soft); margin: -36px 0 36px; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card { background: var(--paper); border: 1px solid color-mix(in oklab,var(--stone) 18%,transparent); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.price-card.highlight { border-color: var(--leaf); box-shadow: var(--shadow-sm); }
.price-badge { position: absolute; top: -12px; left: 28px; background: var(--leaf); color: var(--paper); font-size: 12px; letter-spacing: .08em; padding: 4px 12px; border-radius: 999px; }
.price-service { font-family: var(--serif); font-size: 21px; color: var(--ink); margin: 0 0 18px; display: flex; flex-direction: column; gap: 2px; }
.price-service span { font-family: var(--display); font-style: italic; font-size: 12px; color: var(--leaf-deep); letter-spacing: .04em; }
.price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.price-list li { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.price-list strong { color: var(--ink); font-size: 16px; }
.price-list li span { display: block; font-size: 11.5px; color: var(--stone-deep); }
.price-list .note-item { font-size: 12.5px; color: var(--stone-deep); }
.price-examples { margin-top: 18px; padding-top: 16px; border-top: 1px dashed color-mix(in oklab,var(--stone) 30%,transparent); display: flex; flex-direction: column; gap: 10px; }
.price-examples-item { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--ink-soft); }
.price-examples-item strong { color: var(--leaf-deep); }
.price-examples-note { font-size: 12px; color: var(--stone-deep); margin: 2px 0 0; }

.price-divider { text-align: center; margin: 48px 0 28px; position: relative; }
.price-divider span { font-family: var(--script); font-size: 24px; color: var(--leaf-deep); background: var(--paper); padding: 0 18px; position: relative; z-index: 1; }
.price-divider::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: color-mix(in oklab,var(--stone) 22%,transparent); }
.discount-box, .option-box { background: var(--cream-2); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 20px; }
.discount-title, .option-title { font-family: var(--serif); font-size: 17px; color: var(--ink); margin: 0 0 16px; }
.discount-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.discount-item { font-size: 13.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.discount-item::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf-soft); }
.option-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.option-list li { display: flex; justify-content: space-between; align-items: baseline; font-size: 13.5px; color: var(--ink-soft); border-bottom: 1px dashed color-mix(in oklab,var(--stone) 25%,transparent); padding-bottom: 10px; }
.option-list strong { color: var(--leaf-deep); }

/* === Book === */
.book-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.book-cover-img { width: 100%; max-width: 300px; margin: 0 auto; filter: drop-shadow(0 12px 28px rgba(60,55,40,.18)); }
.book-catch { font-family: var(--script); font-size: 24px; color: var(--leaf-deep); margin: 0 0 18px; }
.book-title { font-family: var(--serif); font-size: 26px; color: var(--ink); margin: 0 0 8px; line-height: 1.5; }
.book-desc { font-size: 14.5px; line-height: 1.9; color: var(--ink-soft); margin: 0 0 20px; }
.book-price { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; font-size: 13px; color: var(--ink-soft); }
.book-price strong { font-family: var(--display); font-size: 17px; color: var(--ink); }
.aibow-card { display: flex; gap: 20px; align-items: center; margin-top: 40px; background: var(--cream-2); border-radius: var(--radius); padding: 24px 28px; }
.aibow-img {
  width: 128px; height: 128px; object-fit: contain; flex-shrink: 0;
  background: radial-gradient(circle at 50% 48%,
    color-mix(in oklab, var(--leaf-deep) 45%, var(--paper)) 0%,
    color-mix(in oklab, var(--leaf-deep) 30%, var(--paper)) 45%,
    transparent 70%);
  padding: 8px;
}
.aibow-name { font-family: var(--serif); font-size: 16px; color: var(--ink); margin: 0 0 6px; }
.aibow-desc { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.7; }
.aibow-btn { display: inline-block; font-size: 13px; padding: 8px 20px; border-radius: 999px; background: var(--leaf-deep); color: var(--paper); }

/* === Contact === */
/* --- 連絡ボタン＋受注状況ボードの2カラム --- */
.contact-top { display: flex; align-items: stretch; gap: 20px; max-width: 720px; margin: 0 auto 36px; }
.contact-top .contact-links { order: 1; flex: 1 1 0; min-width: 0; max-width: none; margin: 0; }
.contact-top .order-status { order: 2; flex: 0 0 246px; margin: 0; display: flex; flex-direction: column; }
.contact-top .order-status .order-status-list { flex: 1 1 auto; justify-content: space-evenly; }

/* --- 受注状況ボード --- */
.order-status { border-radius: 16px; border: 1px solid color-mix(in oklab,var(--stone) 20%,transparent); background: color-mix(in oklab,var(--paper) 78%,var(--cream-2)); box-shadow: var(--shadow-sm); padding: 14px 18px; }
.order-status-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 6px; padding-bottom: 7px; border-bottom: 1px solid color-mix(in oklab,var(--stone) 16%,transparent); }
.order-status-title { font-family: var(--serif); font-size: 14.5px; font-weight: 700; letter-spacing: .04em; margin: 0; }
.order-status-asof { font-size: 10.5px; color: var(--ink-soft); opacity: .85; margin: 0; white-space: nowrap; }
.order-status-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.ostat { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 2px; }
.ostat + .ostat { border-top: 1px dashed color-mix(in oklab,var(--stone) 16%,transparent); }
.ostat-month { font-size: 13px; font-weight: 600; color: var(--ink); }
.ostat-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; padding: 4px 10px 4px 8px; border-radius: 999px; white-space: nowrap; }
.ostat-mark { width: 14px; height: 14px; flex-shrink: 0; }
.ostat[data-status="open"]   .ostat-pill { color: var(--leaf-deep); background: color-mix(in oklab,var(--leaf-soft) 30%,var(--paper)); }
.ostat[data-status="few"]    .ostat-pill { color: color-mix(in oklab, var(--accent) 80%, var(--ink)); background: color-mix(in oklab,var(--accent) 16%,var(--paper)); }
.ostat[data-status="closed"] .ostat-pill { color: var(--stone-deep); background: color-mix(in oklab,var(--stone) 20%,var(--paper)); }
.ostat[data-status="closed"] .ostat-month { color: var(--ink-soft); }
.order-status-note { font-size: 10.5px; line-height: 1.55; color: var(--ink-soft); margin: 7px 0 0; padding-top: 7px; border-top: 1px solid color-mix(in oklab,var(--stone) 14%,transparent); word-break: normal; }

@media (max-width: 620px) {
  .contact-top { flex-direction: column; max-width: 560px; gap: 16px; }
  .contact-top .contact-links { order: 2; width: 100%; }
  .contact-top .order-status { order: 1; flex: none; width: 100%; }
}

.contact-links { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 0 auto 36px; }
.contact-btn { display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-radius: var(--radius); border: 1px solid color-mix(in oklab,var(--stone) 22%,transparent); background: var(--paper); transition: all .25s; }
.contact-btn:hover { border-color: var(--leaf); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-btn--primary { background: var(--leaf-deep); border-color: var(--leaf-deep); color: var(--paper); }
.contact-btn--primary:hover { background: var(--leaf); border-color: var(--leaf); }
.contact-btn .contact-icon { display: inline-flex; align-items: center; flex-shrink: 0; }
.contact-btn .contact-icon svg { width: 24px; height: 24px; }
.contact-btn strong { display: block; font-family: var(--serif); font-size: 15px; }
.contact-btn small { font-size: 12px; opacity: .8; }
.order-video-wrap { max-width: 640px; margin: 0 auto 36px; }
.order-video-label { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }
.order-video-label svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--leaf-deep); }
.order-video { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.order-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.sns-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 640px; margin: 0 auto; }
.sns-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid color-mix(in oklab,var(--stone) 25%,transparent); font-size: 13px; color: var(--ink-soft); transition: all .2s; }
.sns-btn:hover { border-color: var(--leaf); color: var(--leaf-deep); transform: translateY(-2px); }
.sns-btn svg { width: 18px; height: 18px; }
.contact-note { text-align: center; font-size: 12.5px; color: var(--stone-deep); margin-top: 18px; }

/* === Footer === */
.footer { background: var(--ink); color: var(--cream); padding: 56px 0 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer-logo .logo-main { font-family: var(--display); font-size: 22px; letter-spacing: .05em; }
.footer-logo .logo-star { color: var(--leaf); }
.footer-tagline { display: block; font-size: 12px; color: color-mix(in oklab,var(--cream) 65%,transparent); margin-top: 6px; letter-spacing: .08em; }
.footer-links a { font-size: 13px; color: var(--leaf-soft); }
.footer-links a + a { margin-left: 1.2em; }
.footer-copy { font-size: 12px; color: color-mix(in oklab,var(--cream) 55%,transparent); }

/* === レスポンシブ追加 === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 320px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .discount-grid { grid-template-columns: 1fr; }
  .book-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .book-inner > * { min-width: 0; }
  .book-price { justify-content: center; }
  .aibow-card { flex-wrap: wrap; justify-content: center; text-align: left; }
}
/* 中間幅：ナビを圧縮して1行に収める */
@media (min-width: 881px) and (max-width: 1120px) {
  .nav-inner { gap: 10px; }
  .nav-links { gap: 10px; font-size: 12.5px; }
  .brand { flex-shrink: 0; }
  .brand-text .en { font-size: 13px; white-space: nowrap; }
  .nav-right .font-size-ctrl-label { display: none; }
  .nav-right .font-size-ctrl { gap: 6px; }
  .nav-right .font-size-btn { width: 32px; height: 32px; }
  .nav-cta { font-size: 12px; padding: 7px 12px; }
}
/* 現在地ミニ表示：ナビが畳まれている時だけ、今いるページ名を出す */
.nav-current-mini {
  display: none;
  font-size: 12.5px; font-weight: 700; color: var(--leaf-deep);
  white-space: nowrap; margin-right: 2px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid color-mix(in oklab,var(--stone) 20%,transparent); padding: 8px 0; }
  .nav-links.open a { padding: 12px 32px; }
  .nav-links.open a::after { display: none; }
  .nav-links.open a[aria-current="page"] { border-left: 3px solid var(--leaf-deep); padding-left: 29px; background: color-mix(in oklab, var(--leaf-soft) 14%, transparent); }
  .nav-toggle { display: flex; }
  .nav-right > .font-size-ctrl { display: none; }
  .nav-cta { font-size: 12px; padding: 7px 14px; }
  .brand-text .en { font-size: 15px; }
  .nav-current-mini { display: inline-block; }
}

/* 文字サイズ切替：モバイルメニュー内バージョン */
.font-size-ctrl--menu {
  display: none;
}
@media (min-width: 881px) {
  .font-size-ctrl--menu { display: none !important; }
}
@media (max-width: 880px) {
  .font-size-ctrl--menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px 16px;
    margin: 0;
    border-left: none;
    border-bottom: 1px solid color-mix(in oklab, var(--stone) 20%, transparent);
  }
}

/* Voice（お客様の声） */
.voice-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 34px; }
.voice-stat {
  background: var(--leaf-deep);
  border-radius: var(--radius); padding: 26px 18px 22px; text-align: center;
}
.voice-stat-num { display: block; font-family: var(--display); font-style: italic; font-size: 46px; color: var(--paper); line-height: 1; }
.voice-stat-num small { font-size: 23px; font-style: normal; margin-left: 2px; }
.voice-stat-label { display: block; margin-top: 10px; font-size: 12.5px; line-height: 1.6; color: var(--paper); }
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (min-width: 901px) { .voice-grid { grid-template-columns: repeat(3, 1fr); } }
.voice-group {
  grid-column: 1 / -1; margin: 16px 0 0; font-size: 13px; font-weight: 700;
  color: var(--leaf-deep); letter-spacing: .08em;
  display: flex; align-items: center; gap: 12px;
}
.voice-group::after { content: ""; flex: 1; height: 1px; background: color-mix(in oklab, var(--stone) 22%, transparent); }
.voice-card {
  margin: 0; background: var(--paper); border: 1px solid color-mix(in oklab, var(--stone) 18%, transparent);
  border-radius: var(--radius); padding: 22px 26px 24px; position: relative;
}
.voice-card blockquote { margin: 0; font-size: 14.5px; line-height: 1.9; color: var(--ink-soft); }
/* イチオシの声（主役カード） */
.voice-card--lead {
  grid-column: 1 / -1;
  border: 2px solid var(--leaf); box-shadow: var(--shadow-md);
  padding: 34px 38px 30px;
}
.voice-card--lead blockquote { font-family: var(--serif); font-size: 17.5px; font-weight: 700; line-height: 2; color: var(--ink); }
.voice-badge {
  position: absolute; top: -13px; left: 26px;
  font-size: 11.5px; letter-spacing: .08em; font-weight: 500;
  color: var(--paper); background: var(--leaf-deep);
  padding: 4px 14px; border-radius: 999px;
}
.voice-note { margin-top: 18px; font-size: 12.5px; color: var(--stone-deep); text-align: right; }
@media (max-width: 900px) {
  .voice-stats { grid-template-columns: 1fr; gap: 12px; }
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card--lead { padding: 28px 26px 24px; }
  .voice-card--lead blockquote { font-size: 15.5px; }
}

/* フッターナビ（サイトマップ） */
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.footer-nav a { font-size: 12.5px; color: color-mix(in oklab, var(--cream) 75%, transparent); transition: color .2s; }
.footer-nav a:hover { color: var(--leaf-soft); }

/* サービスカード内の「もっと見る」導線 */
.svc .svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; color: var(--leaf-deep); font-weight: 500; }
.svc .svc-more .arr { transition: transform .25s; }
.svc .svc-more:hover .arr { transform: translateX(4px); }
.svc .svc-more--cta {
  background: var(--leaf-deep); color: var(--paper);
  padding: 10px 20px; border-radius: 999px; font-weight: 700;
  transition: background .25s;
  align-self: flex-start;
}
.svc .svc-more--cta:hover { background: var(--ink); color: var(--paper); }

/* お悩み吹き出し→サービスへのジャンプ（クリック可能の示唆） */
.pain-item { cursor: pointer; }
/* Features内に統合した割引・オプション表の余白調整 */
.feature-detail .svc-extra-body { padding: 14px 0 4px; }

/* 日本語の泣き別れ対策：本文を文節（意味のかたまり）で折り返す。
   対応ブラウザ（Chrome系）でのみ有効・非対応環境は従来の折り返しに自然にフォールバック。
   手動<br>の位置には影響しない（自動折り返し位置だけを賢くする）。 */
p, li, blockquote, figcaption, small,
.hero-lead, .about-tagline, .svc p, .feature-detail,
.ai-hero-lead, .ai-worry-answer, .ai-reason p, .ai-compare li,
.rec-item, .rec-item small, .svc-price-note, .svc-price-single,
.voice-card blockquote, .pf-card-comment, .app-desc,
.tools-hero-lead, .legal p, .legal li,
.hero h1, .sec-head h2, .manifesto h2, .pf-hero-title, .book-title {
  word-break: auto-phrase;
}

/* サービス料金の考え方リード文 */
.svc-price-lead { max-width: var(--maxw); margin: -8px auto 30px; padding: 0 4px; font-size: 13px; line-height: 1.7; color: var(--ink-soft); }

/* カード1列（900px以下）では料金行を縦流しに（両端揃えの隙間を防ぐ） */
@media (max-width: 900px) {
  .svc-price-teaser { display: block; }
}

/* PC(3列)：1段目カードの説明文を伸縮させ、タグの高さを揃える */
@media (min-width: 901px) {
  .svc-grid > .svc { display: flex; flex-direction: column; }
  .svc-grid > .svc:nth-child(-n+3) > p:first-of-type { flex: 1 0 auto; }
  .svc-grid > .svc:nth-child(-n+3) .svc-price-teaser { min-height: 3.9em; }
}

/* 声カード内は幅が狭く文節改行が不揃いになるため通常の折り返しに */
.voice-card blockquote { word-break: normal; }

/* サービスカード（01〜05）も幅が狭く文節改行が逆効果のため通常の折り返しに */
.svc p, .svc small, .svc .rec-item { word-break: normal; }
