/* =========================================================
   kashiko® メソッド for Business — LP
   メインカラー: #24aaaf（ティール）
   self-contained（外部フォント/CDN/画像URLなし）
========================================================= */

:root {
  --teal:      #24aaaf;
  --teal-dark: #1b878b;
  --teal-deep: #14686b;
  --teal-soft: #e9f6f6;
  --teal-tint: #f3fbfb;
  --teal-line: #cdebec;
  --accent:    #ff8a4c;   /* 暖色アクセント（CTA/必須/吹き出し） */
  --accent-dk: #f06f2e;
  --yellow:    #f5d800;
  --red:       #e60033;
  --ink:       #2a2f31;
  --sub:       #5d6a6c;
  --line:      #e6eced;
  --maxw:      920px;
  --round:     "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "Yu Gothic", system-ui, sans-serif;
  --body:      system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.95;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
sup { font-size: 0.55em; vertical-align: super; }
a { color: var(--teal-dark); }
img { max-width: 100%; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  text-decoration: none; font-weight: 800; font-family: var(--round);
  padding: 14px 26px; border-radius: 999px; font-size: 1rem; line-height: 1.3;
  border: none; cursor: pointer; transition: transform .12s, box-shadow .12s, opacity .12s;
}
.btn::after { content: "›"; font-size: 1.2em; transform: translateY(-1px); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 0 var(--teal-deep); }
.btn-primary:hover { box-shadow: 0 4px 0 var(--teal-deep); }
.btn-accent  { background: var(--accent); color: #fff; box-shadow: 0 6px 0 var(--accent-dk); }
.btn-accent:hover { box-shadow: 0 4px 0 var(--accent-dk); }
.btn-line { background: #fff; color: var(--teal-dark); border: 2px solid var(--teal); box-shadow: 0 4px 0 var(--teal-line); }
.btn-block { width: 100%; padding: 16px; font-size: 1.1rem; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94); -webkit-backdrop-filter: saturate(180%) blur(6px); backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; flex-wrap: wrap; }
.logo { font-family: var(--round); font-weight: 800; font-size: 1.1rem; margin: 0; color: var(--ink); }
.logo span { color: var(--teal); font-size: 0.82em; }
.header-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.header-cta .btn { padding: 9px 16px; font-size: 0.85rem; box-shadow: none; }
.header-cta .btn-primary { box-shadow: 0 3px 0 var(--teal-deep); }

/* ---------- セクション共通 ---------- */
main section { padding: 64px 0; }
section:nth-of-type(even) { background: var(--teal-tint); }
.sec-head { text-align: center; margin: 0 0 38px; }
.sec-head h2 {
  font-family: var(--round); font-weight: 800; font-size: 1.7rem; line-height: 1.5;
  margin: 0; color: var(--ink); display: inline-block; position: relative; padding: 0 30px;
}
.sec-head h2::before, .sec-head h2::after {
  content: ""; position: absolute; top: 6px; width: 14px; height: 34px;
  border: 3px solid var(--teal);
}
.sec-head h2::before { left: 0; border-right: none; border-radius: 6px 0 0 6px; }
.sec-head h2::after  { right: 0; border-left: none; border-radius: 0 6px 6px 0; }
.sec-head .en { display: block; margin-top: 8px; font-size: 0.72rem; letter-spacing: .22em; color: var(--teal); font-weight: 700; }
.sec-head .lead { margin: 18px auto 0; max-width: 680px; color: var(--sub); font-size: 1.02rem; }
.brand-inline { color: var(--teal-dark); }
.accent-txt { color: var(--accent-dk); font-weight: 800; }

/* 番号バッジ（黄帯のかわりにティール） */
.num-badge {
  display: inline-grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px;
  background: var(--teal); color: #fff; border-radius: 999px; font-family: var(--round);
  font-weight: 800; font-size: 0.95rem; margin-right: 8px;
}

/* ---------- ヒーロー ---------- */
.hero { background: linear-gradient(180deg, var(--teal-soft), #fff); border-bottom: 1px solid var(--teal-line); }
.hero .container { padding-top: 18px; padding-bottom: 8px; }
.hero-brand { font-family: var(--round); font-weight: 800; font-size: 1.25rem; color: var(--teal-dark); margin: 0 0 20px; }
.hero-problems { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 8px; }
.hero-problems li {
  font-family: var(--round); font-size: 1.08rem; font-weight: 700; color: var(--sub);
  background: #fff; border: 1px solid var(--teal-line); border-radius: 12px; padding: 10px 18px 10px 44px; position: relative;
}
.hero-problems li::before { content: "💭"; position: absolute; left: 16px; }
.hero-problems li::after { content: " …"; color: var(--accent); font-weight: 800; }
.hero-catch { font-family: var(--round); font-size: 1.9rem; line-height: 1.55; margin: 0 0 18px; }
.hero-catch .mark { background: linear-gradient(transparent 62%, #ffe6b0 62%); padding: 0 .1em; }
.hero-sub { color: var(--sub); margin: 0 0 30px; font-size: 1.02rem; }
.hero-keymsg {
  font-family: var(--round); font-size: 1.7rem; font-weight: 800; color: #fff; text-align: center;
  background: var(--teal); border-radius: 16px; padding: 20px 18px; margin: 0;
  box-shadow: 0 8px 0 var(--teal-deep);
}
.hero-keymsg small { display: block; font-size: 0.92rem; font-weight: 700; opacity: .92; margin-top: 6px; }

/* ---------- CTAバンド（電話ファースト・繰り返し） ---------- */
.cta-band { background: var(--teal); color: #fff; text-align: center; padding: 44px 0; }
.cta-band.tint { background: var(--teal-deep); }
.cta-band .lead-sm { font-family: var(--round); font-weight: 800; font-size: 1.15rem; margin: 0 0 6px; }
.cta-band .note-sm { font-size: 0.92rem; opacity: .92; margin: 0 0 18px; }
.tel-box { background: #fff; color: var(--ink); border-radius: 16px; display: inline-block; padding: 14px 30px; margin: 0 0 18px; box-shadow: 0 8px 0 rgba(0,0,0,.15); }
.tel-box .tel-label { font-size: 0.78rem; color: var(--teal-dark); font-weight: 800; letter-spacing: .1em; }
.tel-box .tel-num { font-family: var(--round); font-size: 2.5rem; font-weight: 800; line-height: 1.1; color: var(--teal-deep); letter-spacing: 1px; display: block; }
.tel-box .tel-num::before { content: "☎ "; font-size: 0.7em; }
.tel-box .tel-time { font-size: 0.82rem; color: var(--sub); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn { box-shadow: 0 5px 0 rgba(0,0,0,.18); }

/* ---------- 吹き出し ---------- */
.bubble {
  position: relative; background: #fff; border: 2px solid var(--teal-line); border-radius: 16px;
  padding: 16px 20px; margin: 16px 0; font-family: var(--round); font-weight: 700;
}
.bubble.q { border-color: #ffd9bf; background: #fff5ec; }
.bubble.q::after, .bubble.a::after {
  content: ""; position: absolute; bottom: -13px; left: 40px; width: 22px; height: 22px;
  background: inherit; border-right: 2px solid; border-bottom: 2px solid; border-color: inherit;
  transform: rotate(45deg); border-top: none; border-left: none;
}
.bubble.a { border-color: var(--teal); background: var(--teal-soft); }
.bubble-row { display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: center; margin: 22px 0; }
.bubble-row img { width: 84px; height: 84px; }
.bubble-row .bubble { margin: 0; }

/* ---------- 事例ボイス ---------- */
.voice-card {
  background: #fff; border: 1px solid var(--teal-line); border-radius: 18px;
  padding: 22px; margin-bottom: 22px; box-shadow: 0 4px 18px rgba(20,104,107,.06);
}
.voice-cat { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 12px; }
.voice-cat .tag { font-family: var(--round); background: var(--teal); color: #fff; font-weight: 800; font-size: 0.82rem; padding: 4px 14px; border-radius: 999px; }
.voice-before { color: var(--sub); font-size: 0.92rem; }
.voice-before b { color: var(--red); }
.voice-body { display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: start; }
.voice-avatar { width: 110px; height: 110px; border-radius: 16px; }
.voice-headline {
  font-family: var(--round); font-size: 1.2rem; font-weight: 800; color: var(--teal-deep);
  background: var(--teal-soft); border-radius: 12px; padding: 12px 16px; margin: 0 0 12px; position: relative;
}
.voice-meta { font-size: 0.86rem; color: var(--sub); margin: 0 0 8px; font-weight: 700; }
.voice-text { margin: 0 0 12px; font-size: 0.98rem; }
.voice-more { margin: 0; text-align: right; }
.voice-more a { font-family: var(--round); font-weight: 800; text-decoration: none; }
.voices-subtitle { font-family: var(--round); font-size: 1.3rem; font-weight: 800; margin: 38px 0 20px; text-align: center; }
.voices-subtitle::before { content: "＼ "; color: var(--accent); }
.voices-subtitle::after { content: " ／"; color: var(--accent); }
.voices-link { text-align: center; margin: 14px 0 0; }
.voices-link a { font-family: var(--round); font-weight: 800; background: #fff; border: 2px solid var(--teal); color: var(--teal-dark); padding: 10px 22px; border-radius: 999px; text-decoration: none; display: inline-block; }
.illust-note { text-align: center; font-size: 0.78rem; color: #9aa6a7; margin: 6px 0 0; }

/* ---------- なぜ成果に / ループ ---------- */
.why-lead { font-size: 1.05rem; margin: 0 0 26px; text-align: center; }
.why-subtitle { font-family: var(--round); font-size: 1.35rem; color: var(--teal-dark); font-weight: 800; margin: 0 0 24px; text-align: center; }
.loops { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loop { border-radius: 18px; padding: 22px; border: 2px solid; }
.loop-negative { background: #fdeef0; border-color: #f3c6cd; }
.loop-positive { background: #e9f6ee; border-color: #bfe3cc; }
.loop-title { font-family: var(--round); font-weight: 800; margin: 0 0 16px; text-align: center; font-size: 1.05rem; }
.loop-negative .loop-title { color: #c01f3e; }
.loop-positive .loop-title { color: #1f8048; }
.loop-steps { margin: 0; padding: 0; list-style: none; counter-reset: s; }
.loop-steps li { position: relative; padding: 9px 0 9px 14px; font-size: 0.96rem; }
.loop-steps li + li::before { content: "▼"; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; opacity: .5; }
.loop-label { margin: 16px 0 0; font-family: var(--round); font-weight: 800; font-size: 0.92rem; text-align: center; padding: 12px; border-radius: 12px; }
.loop-negative .loop-label { background: #e7a3a3; color: #5a1414; }
.loop-positive .loop-label { background: #8fce9f; color: #14401f; }
.why-point { margin: 30px 0 0; background: #fff; border: 2px dashed var(--teal); border-radius: 16px; padding: 24px; }
.why-point .head { font-family: var(--round); font-weight: 800; font-size: 1.08rem; }
.why-point ul { margin: 14px 0 0; padding-left: 1.2em; }
.diff-illust { display: flex; justify-content: center; margin: 4px 0 26px; }
.diff-illust img { width: 220px; }

/* ---------- ケース ---------- */
.case-block { background: #fff; border: 1px solid var(--teal-line); border-radius: 18px; padding: 24px; margin: 0 0 24px; box-shadow: 0 4px 18px rgba(20,104,107,.05); }
.case-title { font-family: var(--round); font-size: 1.2rem; font-weight: 800; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.case-title .ck { background: var(--accent); color: #fff; font-size: 0.78rem; padding: 4px 12px; border-radius: 999px; }
.case-figure { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 12px; display: block; margin: 0 0 16px; background: #fafdfd; }
.case-text { margin: 0 0 14px; }
.case-tag { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--round); font-weight: 800; color: var(--teal-dark); margin: 0; }
.tag-icon { width: 38px; height: 38px; object-fit: contain; }
.cases-more { font-family: var(--round); font-size: 1.25rem; font-weight: 800; text-align: center; margin: 8px 0 26px; }
.cases-more::before { content: "＼ "; color: var(--accent); }
.cases-more::after { content: " ／"; color: var(--accent); }

/* ---------- 3つのアプローチ ---------- */
.approach-icons { list-style: none; display: flex; justify-content: center; gap: 30px; padding: 0; margin: 0 0 40px; flex-wrap: wrap; }
.approach-icons li { text-align: center; background: #fff; border: 1px solid var(--teal-line); border-radius: 16px; padding: 16px 20px; min-width: 130px; }
.approach-icons img { width: 72px; height: 72px; object-fit: contain; display: block; margin: 0 auto 6px; }
.approach-icons span { font-family: var(--round); font-weight: 800; color: var(--teal-dark); }
.approach { background: #fff; border: 1px solid var(--teal-line); border-radius: 18px; padding: 26px; margin: 0 0 20px; box-shadow: 0 4px 18px rgba(20,104,107,.05); }
.approach-title { font-family: var(--round); font-size: 1.3rem; font-weight: 800; margin: 0 0 12px; display: flex; align-items: center; gap: 6px; }
.approach-summary { font-family: var(--round); font-weight: 800; color: var(--teal-dark); margin: 0 0 16px; background: var(--teal-soft); padding: 12px 16px; border-radius: 12px; }
.approach-bullets, .approach-examples { margin: 0 0 14px; padding: 0; list-style: none; }
.approach-bullets li, .approach-examples li { position: relative; padding: 4px 0 4px 24px; }
.approach-bullets li::before { content: "・"; position: absolute; left: 6px; color: var(--accent); font-weight: 800; }
.approach-examples li { color: var(--teal-deep); font-family: var(--round); font-weight: 700; }
.approach-examples li::before { content: "🎨"; position: absolute; left: 0; }

/* ---------- 効果 ---------- */
.effects-grid { display: grid; gap: 16px; }
.effect { background: #fff; border: 1px solid var(--teal-line); border-left: 6px solid var(--teal); border-radius: 14px; padding: 18px 22px; }
.effect-title { font-family: var(--round); font-size: 1.2rem; font-weight: 800; margin: 0 0 8px; color: var(--teal-deep); }
.effect-title .n { background: var(--teal); color: #fff; border-radius: 8px; padding: 2px 10px; font-size: 0.9rem; margin-right: 8px; }
.effect p { margin: 0 0 6px; }
.effect p.kicker { font-family: var(--round); font-weight: 800; color: var(--accent-dk); }

/* ---------- プログラムメニュー ---------- */
.menu-lead { margin: 0 0 32px; text-align: center; }
.menu-lead b { font-family: var(--round); font-size: 1.12rem; color: var(--teal-deep); }
.plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { border: 2px solid var(--teal-line); border-radius: 18px; padding: 24px; background: #fff; display: flex; flex-direction: column; position: relative; }
.plan-card.feature { border-color: var(--accent); box-shadow: 0 10px 24px rgba(255,138,76,.18); }
.plan-card.feature::before { content: "おすすめ"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--round); font-weight: 800; font-size: 0.78rem; padding: 4px 16px; border-radius: 999px; }
.plan-no { font-family: var(--round); font-size: 1.05rem; font-weight: 800; color: #fff; background: var(--teal); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; margin: 0 0 12px; }
.plan-name { font-family: var(--round); font-size: 1.22rem; font-weight: 800; margin: 0 0 8px; }
.plan-tagline { font-size: 0.9rem; color: var(--sub); margin: 0 0 14px; }
.plan-spec { margin: 0 0 16px; font-size: 0.9rem; }
.plan-spec dt { font-family: var(--round); font-weight: 800; color: var(--teal-dark); margin-top: 10px; }
.plan-spec dd { margin: 2px 0 0; }
.plan-price { margin: auto 0 0; font-family: var(--round); font-size: 1.5rem; font-weight: 800; color: var(--teal-deep); padding-top: 14px; border-top: 1px dashed var(--teal-line); }
.plan-price span { display: block; font-size: 0.74rem; font-weight: 400; color: var(--sub); }
.menu-note { margin: 28px auto 0; max-width: 680px; background: var(--teal-soft); padding: 20px; border-radius: 14px; text-align: center; }

/* ---------- モニター ---------- */
.monitor-card { background: #fff; border: 2px solid var(--accent); border-radius: 18px; padding: 26px; }
.monitor-lead { text-align: center; margin: 0 0 18px; }
.monitor-cond { background: #fff5ec; border-radius: 14px; padding: 20px; margin: 18px 0; }
.monitor-cond-title { font-family: var(--round); font-weight: 800; margin: 0 0 10px; color: var(--accent-dk); }
.monitor-cond ul { margin: 0; padding-left: 1.2em; }

/* ---------- お問い合わせフォーム ---------- */
.contact-lead { font-size: 1.05rem; margin: 0 0 8px; text-align: center; }
.contact-lead b { font-family: var(--round); color: var(--teal-deep); }
/* STEP（体験ワークの流れ） */
.steps { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: stretch; margin: 0 0 30px; }
.step { background: #fff; border: 2px solid var(--teal-line); border-radius: 16px; padding: 18px; text-align: center; }
.step .st { font-family: var(--round); font-weight: 800; color: #fff; background: var(--teal); border-radius: 999px; padding: 3px 16px; font-size: 0.82rem; display: inline-block; margin: 0 0 8px; }
.step h4 { font-family: var(--round); margin: 0 0 6px; font-size: 1.05rem; }
.step p { margin: 0; font-size: 0.88rem; color: var(--sub); }
.step-arrow { display: grid; place-items: center; color: var(--accent); font-size: 1.8rem; font-weight: 800; }
.form-wrap { background: var(--teal); border-radius: 20px; padding: 28px; }
.form-note { color: #fff; text-align: center; margin: 0 0 22px; font-family: var(--round); font-weight: 700; }
.contact-form { background: #fff; border-radius: 16px; padding: 26px; display: grid; gap: 18px; }
.contact-form label { font-family: var(--round); font-weight: 800; font-size: 0.92rem; display: grid; gap: 8px; }
.contact-form .lbl { display: flex; align-items: center; }
.req { display: inline-block; background: var(--accent); color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 6px; margin-left: 8px; justify-self: start; }
.contact-form input, .contact-form select { font: inherit; font-family: var(--body); padding: 14px; border: 2px solid var(--teal-line); border-radius: 12px; width: 100%; }
.contact-form input:focus, .contact-form select:focus { outline: none; border-color: var(--teal); }
.form-priv { font-size: 0.82rem; color: var(--sub); text-align: center; margin: 0; }

/* ---------- フッター ---------- */
.site-footer { background: var(--teal-deep); color: #fff; padding: 36px 0; text-align: center; }
.site-footer .fb { font-family: var(--round); font-weight: 800; font-size: 1.1rem; margin: 0 0 8px; }
.footer-note { font-size: 0.8rem; opacity: .7; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 760px) {
  main section { padding: 48px 0; }
  .hero-catch { font-size: 1.45rem; }
  .hero-keymsg { font-size: 1.3rem; }
  .sec-head h2 { font-size: 1.32rem; padding: 0 22px; }
  .tel-box .tel-num { font-size: 2rem; }
  .loops { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .voice-body { grid-template-columns: 1fr; }
  .voice-avatar { width: 92px; height: 92px; }
  .voice-more { text-align: left; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
}

/* =========================================================
   DESIGNER LAYER — 全幅画像Hero / 斜め・波の区切り / 色モチーフ装飾
========================================================= */

/* コンテンツを装飾より前面に */
main section { position: relative; overflow: hidden; }
.container { position: relative; z-index: 2; }

/* ---------- 全幅画像ヒーロー ---------- */
.hero { padding: 0 !important; background: #dff2f2; border: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%); }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero); background-size: cover; background-position: 74% center; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(96deg, rgba(223,242,242,.98) 0%, rgba(223,242,242,.9) 30%, rgba(223,242,242,.4) 50%, rgba(223,242,242,0) 66%); }
.hero-inner { z-index: 3; min-height: 620px; display: flex; align-items: center; padding: 72px 20px 104px; }
.hero-card { max-width: 580px; background: rgba(255,255,255,.6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.85); border-radius: 28px; padding: 38px 40px;
  box-shadow: 0 26px 64px rgba(20,104,107,.18); }
.hero-eyebrow { font-family: var(--round); font-weight: 800; color: var(--teal-dark); margin: 0 0 16px;
  font-size: 1.02rem; display: inline-flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--accent); border-radius: 2px; }
.hero-card .hero-catch { font-size: 2.05rem; line-height: 1.5; margin: 0 0 16px; }
.hero-card .hero-sub { margin: 0 0 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- お悩みバンド ---------- */
.problem-band { background: #fff; padding: 60px 0 70px; }
.problem-lead { text-align: center; font-family: var(--round); font-weight: 800; font-size: 1.45rem; margin: 0 0 26px; }
.problem-lead::after { content: ""; display: block; width: 54px; height: 4px; background: var(--accent); border-radius: 3px; margin: 12px auto 0; }
.problem-band .hero-problems { grid-template-columns: 1fr 1fr; max-width: 760px; margin: 0 auto 34px; }
.problem-band .hero-keymsg { max-width: 760px; margin: 0 auto; }

/* ---------- 斜めカットのCTAバンド ---------- */
.cta-band { clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 calc(100% - 28px)); }
.cta-band.tint { clip-path: polygon(0 0, 100% 28px, 100% calc(100% - 28px), 0 100%); }

/* ---------- セクション色リズム（明示） ---------- */
.voices     { background: #fff; }
.why        { background: linear-gradient(180deg, var(--teal-tint), #fff); }
.cases      { background: #fff; }
.approaches { background: linear-gradient(180deg, var(--teal-tint), #fff); }
.effects    { background: #fff; }
.menu       { background: linear-gradient(180deg, var(--teal-tint), #fff); }
.monitor    { background: #fff; }
.contact    { background: linear-gradient(180deg, var(--teal-tint), #fff); }
main section:nth-of-type(even) { background: initial; } /* nth上書きを無効化 */

/* ---------- 色モチーフ装飾（3色の丸） ---------- */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco.tr { top: -60px; right: -60px; }
.deco.bl { bottom: -70px; left: -70px; }
.deco.tl { top: -50px; left: -60px; }
.deco svg { display: block; width: 240px; height: 240px; opacity: .5; }
.deco.sm svg { width: 160px; height: 160px; opacity: .42; }

/* ---------- アプローチの透かし番号 ---------- */
.approach { overflow: hidden; }
.approach .wm { position: absolute; top: -36px; right: -6px; z-index: 0;
  font-family: var(--round); font-weight: 800; font-size: 9rem; line-height: 1; color: var(--teal-soft); }
.approach > *:not(.wm) { position: relative; z-index: 1; }

/* ---------- フッターの波 ---------- */
.foot-wave { display: block; width: 100%; height: 70px; margin-bottom: -6px; }
.foot-wave path { fill: var(--teal-deep); }

/* ---------- 区切りの波（汎用） ---------- */
.wave-sep { display: block; width: 100%; height: 60px; line-height: 0; }

@media (max-width: 760px) {
  .hero { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%); }
  .hero-inner { min-height: 520px; padding: 56px 16px 72px; }
  .hero-card { padding: 26px 24px; background: rgba(255,255,255,.78); }
  .hero-card .hero-catch { font-size: 1.5rem; }
  .hero-bg { background-position: 70% center; }
  .problem-band .hero-problems { grid-template-columns: 1fr; }
  .deco svg { width: 150px; height: 150px; }
  .approach .wm { font-size: 6rem; }
}


/* =========================================================
   DESIGNER LAYER — Round 2（波の区切り / 帯リズム / 装飾調整）
========================================================= */

/* 帯リズム（白／ティールを交互にハッキリ） */
.problem-band, .voices, .cases, .effects, .monitor { background: #fff; }
.why, .approaches, .menu, .contact { background: var(--teal-soft); }

/* 波の区切り（各セクション下端に“次の色”の波が立ち上がる） */
main section.next-soft, main section.next-white { padding-bottom: 104px; }
section.next-soft::after, section.next-white::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 64px; z-index: 1;
  background-repeat: no-repeat; background-position: bottom; background-size: 100% 100%;
}
/* 次がティール → soft色の波 */
section.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23e9f6f6' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E");
}
/* 次が白 → 白の波 */
section.next-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,30 C260,6 540,58 800,38 C1060,18 1280,8 1440,34 L1440,64 L0,64 Z'/%3E%3C/svg%3E");
}

/* 中間CTA（ダーク帯）を“ハイライト区間”として強調＋上下に余白 */
.cta-band.tint { background: var(--teal-deep); margin: 8px 0; }
.cta-band .tel-box { box-shadow: 0 10px 0 rgba(0,0,0,.18); }

/* 色モチーフ装飾：位置と濃度を調整（見出しと干渉しない） */
.deco.tr { top: -78px; right: -78px; }
.deco.bl { bottom: -86px; left: -84px; }
.deco.tl { top: -70px; left: -76px; }
.deco svg { opacity: .42; }
.deco.sm svg { opacity: .36; }

/* 透かし番号：ほんのり視認できる濃さに */
.approach { background: #fff; }
.approach .wm { color: rgba(36,170,175,.12); top: -30px; right: 4px; font-size: 8.5rem; }

/* approaches/menu/contact は soft 帯なのでカードを白に保つ（既存通り） */

/* ヒーロー微調整：改行の収まり */
.hero-card .hero-catch { font-size: 1.98rem; }
.hero-card .hero-catch .mark { display: inline-block; }

/* セクション見出し下の余白を少し広く（抜け感） */
.sec-head { margin-bottom: 42px; }

@media (max-width: 760px) {
  main section.next-soft, main section.next-white { padding-bottom: 78px; }
  section.next-soft::after, section.next-white::after { height: 40px; }
}

/* =========================================================
   DESIGNER LAYER — Round 3（最終仕上げ：重なり/カード化/ホバー）
========================================================= */

/* 見出し背後に“透ける円”を重ねる（奥行き） */
.sec-head { position: relative; z-index: 2; }
.sec-head::before {
  content: ""; position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 104px; border-radius: 50%; background: var(--teal); opacity: .08; z-index: -1;
}

/* Hero下のCTAを少し重ねて層をつくる */
#cta-top { margin-top: -34px; position: relative; z-index: 4; padding-top: 62px !important; }

/* 効果：2カラムのカードグリッドに（最後の1枚は全幅） */
.effects-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
.effect {
  background: #fff; border: 1px solid var(--teal-line); border-left: 1px solid var(--teal-line);
  border-top: 5px solid var(--teal); border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 18px rgba(20,104,107,.05);
}
.effect:nth-child(5) { grid-column: 1 / -1; }
.effect-title .n { background: var(--teal); color: #fff; border-radius: 10px; padding: 3px 12px; }

/* カード全般にホバーの浮き */
.voice-card, .case-block, .plan-card, .approach, .effect, .step, .approach-icons li {
  transition: transform .16s ease, box-shadow .16s ease;
}
.voice-card:hover, .case-block:hover, .approach:hover, .effect:hover {
  transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20,104,107,.13);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(20,104,107,.14); }
.approach-icons li:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(20,104,107,.10); }

/* アイコン3つを“つながり”で見せる（中央の線） */
.approach-icons { position: relative; }
.approach-icons::before {
  content: ""; position: absolute; top: 50%; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-line) 0 8px, transparent 8px 16px); z-index: -1;
}

/* プログラム“おすすめ”カードを少し持ち上げる */
.plan-card.feature { transform: translateY(-6px); }
.plan-card.feature:hover { transform: translateY(-10px); }

/* フォーム送信ボタンに矢印の動き */
.btn-block:hover { letter-spacing: .02em; }

@media (max-width: 760px) {
  .effects-grid { grid-template-columns: 1fr; }
  .effect:nth-child(5) { grid-column: auto; }
  #cta-top { margin-top: -22px; }
  .plan-card.feature, .plan-card.feature:hover { transform: none; }
}

/* =========================================================
   DE-AI LAYER — Loop 1（脱・AIっぽさ：グレイン/くすみ配色/上品なボタン/絵文字撤去）
========================================================= */

/* くすみ寄りのパレットに再定義 */
:root {
  --accent:    #df6a43;   /* テラコッタ寄りのコーラル */
  --accent-dk: #c0512f;
  --teal-soft: #e6f1f0;   /* 少しグレイッシュ */
  --ivory:     #f8f6f1;   /* 温かみのある下地 */
}

/* 下地を真っ白→アイボリーへ（無菌っぽさを消す） */
body { background: var(--ivory); }
.problem-band, .voices, .cases, .effects, .monitor { background: var(--ivory); }
.why, .approaches, .menu, .contact { background: var(--teal-soft); }

/* フィルムグレイン（全面・極薄）— 一気に“紙っぽさ/手触り” */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .055; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ボタン：トイ風のハードシャドウ→上品な実影 */
.btn-primary { box-shadow: 0 3px 10px rgba(20,104,107,.20); }
.btn-primary:hover { box-shadow: 0 8px 18px rgba(20,104,107,.26); transform: translateY(-2px); }
.btn-accent { box-shadow: 0 3px 10px rgba(192,81,47,.22); }
.btn-accent:hover { box-shadow: 0 8px 18px rgba(192,81,47,.28); transform: translateY(-2px); }
.btn-line { box-shadow: none; }
.cta-actions .btn { box-shadow: 0 3px 12px rgba(0,0,0,.14); }
.tel-box { box-shadow: 0 14px 34px rgba(0,0,0,.16); }
.hero-keymsg { box-shadow: 0 14px 32px rgba(20,104,107,.18); }

/* 3色丸モチーフ：くっきり→にじみ（ロゴ臭を消す） */
.deco svg { opacity: .22; filter: blur(10px); }
.deco.sm svg { opacity: .17; }

/* 絵文字を撤去して上品なマーカーへ */
.hero-problems li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); top: 50%; transform: translateY(-50%); left: 18px;
}
.approach-examples li { padding-left: 26px; }
.approach-examples li::before {
  content: ""; width: 13px; height: 13px; border-radius: 4px; left: 0; top: .55em;
  background: linear-gradient(135deg, var(--teal), var(--yellow)); box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

/* 波の区切りを新パレットに合わせて再生成 */
section.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23e6f1f0' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E");
}
section.next-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23f8f6f1' d='M0,30 C260,6 540,58 800,38 C1060,18 1280,8 1440,34 L1440,64 L0,64 Z'/%3E%3C/svg%3E");
}

/* 見出しの“透ける円”を少し抑える */
.sec-head::before { opacity: .06; width: 120px; height: 120px; }

/* ヒーローのマーカーをやわらかく */
.hero-catch .mark { background: linear-gradient(transparent 60%, rgba(223,106,67,.22) 60%); }

/* =========================================================
   TEXTURE LAYER — Loop 2（紙の下地 / 水彩アクセント / Hero刷新対応）
========================================================= */

/* ヒーローのスクリム：クリーム調に（hero2の地色に合わせる） */
.hero-scrim {
  background: linear-gradient(96deg, rgba(248,246,241,.97) 0%, rgba(248,246,241,.86) 30%, rgba(248,246,241,.34) 50%, rgba(248,246,241,0) 66%);
}
.hero-bg { background-position: 64% center; }
.hero { background: var(--ivory); }

/* 紙テクスチャを全セクションの下地に（固定で継ぎ目なし・粒状感） */
.problem-band, .voices, .cases, .effects, .monitor {
  background-color: var(--ivory);
  background-image: url("./images/tex/paper.png");
  background-size: cover; background-position: center; background-attachment: fixed;
  background-blend-mode: multiply;
}
.why, .approaches, .menu, .contact {
  background-color: var(--teal-soft);
  background-image: url("./images/tex/paper.png");
  background-size: cover; background-position: center; background-attachment: fixed;
  background-blend-mode: multiply;
}
/* SVGグレインは紙と二重がけになるので弱める */
body::after { opacity: .035; }

/* candy 3色丸は廃止 → 水彩アクセントに置換 */
.deco { display: none; }

/* 水彩アクセント（セクション隅に有機的なにじみ） */
.voices, .why, .approaches, .effects, .contact { position: relative; }
.voices::before, .why::before, .approaches::before, .effects::before, .contact::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  background-image: url("./images/tex/wash-teal.png"); background-repeat: no-repeat;
  background-size: cover; mix-blend-mode: multiply;
}
.voices::before    { top: -40px; right: -60px; width: 460px; height: 360px; opacity: .42; transform: scaleX(-1); }
.why::before       { bottom: -50px; left: -70px; width: 480px; height: 380px; opacity: .38; }
.approaches::before{ top: -30px; right: -50px; width: 440px; height: 340px; opacity: .34; transform: scaleX(-1) rotate(8deg); }
.effects::before   { bottom: -40px; left: -60px; width: 420px; height: 320px; opacity: .30; }
.contact::before   { top: -30px; left: -50px; width: 420px; height: 320px; opacity: .34; }

/* CTAバンドに水彩のテクスチャを薄くのせる */
.cta-band { position: relative; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("./images/tex/wash-teal.png"); background-size: cover; background-position: center;
  opacity: .16; mix-blend-mode: screen;
}
.cta-band .container { position: relative; z-index: 2; }

/* カードは紙の上で少し浮かせる（白すぎないオフホワイト） */
.voice-card, .case-block, .approach, .effect, .plan-card, .monitor-card, .step {
  background: #fffdfa;
}

/* =========================================================
   POLISH LAYER — Loop 3（最終調整：水彩を隅に / Hero収まり / モバイル）
========================================================= */

/* 水彩アクセントを“隅のさりげなさ”に */
.voices::before    { top: -80px; right: -130px; width: 430px; height: 330px; opacity: .30; }
.why::before       { bottom: -80px; left: -130px; width: 440px; height: 340px; opacity: .30; }
.approaches::before{ top: -70px; right: -120px; width: 410px; height: 320px; opacity: .26; }
.effects::before   { bottom: -70px; left: -120px; width: 400px; height: 310px; opacity: .24; }
.contact::before   { top: -70px; left: -120px; width: 410px; height: 310px; opacity: .28; }

/* Heroカードの収まり（改行を自然に） */
.hero-card { max-width: 600px; padding: 36px 40px 34px; }
.hero-card .hero-catch { font-size: 1.92rem; line-height: 1.52; }
.hero-card .hero-sub { font-size: 1rem; line-height: 1.85; }

/* 見出し背後の透ける円は水彩と重複気味なので最小限 */
.sec-head::before { opacity: .045; }

/* セクション見出しのENを少し上品に */
.sec-head .en { letter-spacing: .28em; opacity: .85; }

/* モバイル：背景固定はiOSで荒れるのでスクロールに */
@media (max-width: 760px) {
  .problem-band, .voices, .cases, .effects, .monitor,
  .why, .approaches, .menu, .contact { background-attachment: scroll; background-size: 600px; }
  .voices::before, .why::before, .approaches::before, .effects::before, .contact::before {
    width: 280px; height: 220px; opacity: .22;
  }
  .hero-card .hero-catch { font-size: 1.46rem; }
}


/* =========================================================
   HERO 文字組みリデザイン + 浮き四角素材の撤去（2026-06-09）
========================================================= */

/* B: voices/why/approaches/effects/contact 隅の wash-teal 四角素材を撤去 */
.voices::before, .why::before, .approaches::before,
.effects::before, .contact::before { display: none !important; }

/* A: Heroの白フロストボックスを撤去 → 文字を背景イラストから浮き出させる */
.hero-card {
  background: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  max-width: 680px;
  padding: 56px 20px 64px;
}

/* 文字組み本体（左寄せ維持） */
.hero-catch {
  margin: 0;
  font-family: var(--round);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .01em;
  /* 背景イラスト上で浮き出す柔らかい白フチ＋淡い影 */
  text-shadow: 0 1px 0 rgba(255,255,255,.95),
               0 2px 2px rgba(255,255,255,.7),
               0 6px 16px rgba(255,255,255,.55);
}
.hero-catch .l { display: block; }

/* 色（背景のくすみトーンに合わせる） */
.hero-catch .navy   { color: #21424d; }   /* 紺ベース（人物ジャケット寄り） */
.hero-catch .orange { color: #cf7d3a; }   /* くすみ橙（マスタード寄り） */
.hero-catch .red    { color: #bf5747; }   /* くすみ赤（テラコッタ） */

/* 行ごとのサイズ・強調 */
.hero-catch .l1 { font-size: 2.55rem; }
.hero-catch .l1 .p    { font-size: .56em; font-weight: 800; }  /* 助詞 の・を を小さく */
.hero-catch .l1 .toto { font-size: 1.06em; }                   /* 「整える」を少し大きく＋橙 */
.hero-catch .l2 { font-size: 2.55rem; margin-top: .1em; }
.hero-catch .l3 { font-size: 1.45rem; margin-top: .3em; }      /* 「プログラム」小さめ */

/* モバイル */
@media (max-width: 640px) {
  .hero-card { padding: 44px 18px 52px; max-width: 100%; }
  .hero-catch .l1, .hero-catch .l2 { font-size: 1.9rem; }
  .hero-catch .l3 { font-size: 1.15rem; }
}


/* =========================================================
   下半分の構造修正（2026-06-09）
========================================================= */

/* ① 斜め区切り(clip-path)を全撤去 — Heroの下端斜め / CTAバンドの斜め（「電話が確実」含む） */
.hero, .cta-band, .cta-band.tint { clip-path: none !important; }

/* ② アプローチ右上の透かし数字：箱からはみ出していたのを箱内に収め、サイズダウン＋1/2/3で色分け */
.approach .wm {
  font-size: 4.6rem !important;
  top: 10px !important;
  right: 18px !important;
  line-height: 1;
}
.approaches .approach:nth-of-type(1) .wm { color: rgba(36,170,175,.20) !important; }  /* 1: ティール */
.approaches .approach:nth-of-type(2) .wm { color: rgba(207,125,58,.22) !important; }  /* 2: くすみ橙 */
.approaches .approach:nth-of-type(3) .wm { color: rgba(191,87,71,.20) !important; }   /* 3: くすみ赤 */

/* num-badge（見出し横の小バッジ）も同じ配色で 1/2/3 を識別しやすく */
.approaches .approach:nth-of-type(2) .num-badge { background: #cf7d3a; }
.approaches .approach:nth-of-type(3) .num-badge { background: #bf5747; }


/* アコーディオン（長文を「くわしく見る」で展開）2026-06-09 */
.approach-more { margin-top: 6px; }
.approach-more > summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--round); font-weight: 800; color: var(--teal-dark);
  background: var(--teal-soft); padding: 9px 16px; border-radius: 999px;
  font-size: .92rem; transition: background .2s;
}
.approach-more > summary::-webkit-details-marker { display: none; }
.approach-more > summary::after { content: "＋"; font-size: 1.05em; line-height: 1; }
.approach-more[open] > summary::after { content: "−"; }
.approach-more > summary:hover { background: #d8eeee; }
.approach-more[open] > summary { margin-bottom: 14px; }


/* =========================================================
   区切りデザイン ページ全体調整（2026-06-09）
========================================================= */

/* ① monitor下端の波：次のcontact背景色(teal-tint)に合わせて「横線」化を解消 */
.monitor.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23f3fbfb' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}

/* ② 目立たせるセクション（モニター募集）を上下対称の枠で囲む意味づけ
   ── 上端にも同色の波を立て、上下シンメトリーに */
.monitor { position: relative; }
.monitor::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 100%; height: 40px; z-index: 1;
  background-repeat: no-repeat; background-position: top; background-size: 100% 100%; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,2 C300,30 560,-12 820,6 C1060,22 1260,34 1440,8 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
}


/* C: アプローチ右上に飛んでいた透かし数字を各カード内に固定（position基準を自分にする）2026-06-09 */
.approach { position: relative; }
/* 念のため装飾の3色円(.deco)も完全に消す（重なりデザイン削除） */
.deco { display: none !important; }


/* A: voices 線画アバター＋ベース色背景（白地はmultiplyで透過し色を見せる）2026-06-09 */
.voice-avatar-wrap { width:110px; height:110px; border-radius:16px; overflow:hidden; flex:0 0 auto; }
.voice-avatar-wrap .voice-avatar { width:100%!important; height:100%!important; object-fit:cover; display:block; margin:0!important; mix-blend-mode:multiply; }
.voices .voice-card:nth-of-type(1) .voice-avatar-wrap { background:#d9efef; } /* ティール */
.voices .voice-card:nth-of-type(2) .voice-avatar-wrap { background:#f6ddd5; } /* テラコッタ */
.voices .voice-card:nth-of-type(3) .voice-avatar-wrap { background:#f9ecc4; } /* マスタード */
.voices .voice-card:nth-of-type(4) .voice-avatar-wrap { background:#d9efef; }
.voices .voice-card:nth-of-type(5) .voice-avatar-wrap { background:#f6ddd5; }


/* case3 リード文（図解の前） */
.case-lead { font-family: var(--round); font-weight: 800; color: var(--teal-dark); margin: 0 0 14px; }


/* B+E: effects ブラッシュアップ＋動きのある線画アイコン 2026-06-09 */
.effects-grid { gap: 20px; }
.effect {
  position: relative; padding: 30px 26px; border-radius: 18px;
  background: #fffdfa; border: 1px solid var(--teal-line);
  box-shadow: 0 6px 20px rgba(20,104,107,.05);
  display: flex; flex-direction: column; gap: 4px;
}
.effect-icon { width: 88px; height: 88px; object-fit: contain; margin: 0 0 6px; align-self: flex-start; }
.effect-title {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--round); font-size: 1.18rem; font-weight: 800; color: var(--ink); margin: 0 0 2px;
}
.effect-title .n {
  display: inline-grid; place-items: center; background: var(--teal); color: #fff;
  font-size: .78rem; padding: 4px 12px; border-radius: 999px; font-weight: 800; letter-spacing: .02em;
}
/* 番号で色を散らして識別性UP（ベース3色＋ティール） */
.effects-grid .effect:nth-of-type(2) .n { background:#cf7d3a; }
.effects-grid .effect:nth-of-type(3) .n { background:#bf5747; }
.effects-grid .effect:nth-of-type(4) .n { background:var(--teal-deep); }
.effects-grid .effect:nth-of-type(5) .n { background:#cf7d3a; }
.effect .kicker { color: var(--teal-deep); font-family: var(--round); font-weight: 700; margin: 2px 0 6px; }


/* =========================================================
   波の区切り 二重・水色地 修正（2026-06-09）
   方式変更: 「次セクション色が立ち上がる」→「前セクション色が波形に終わる(上塗り)」
   これで波の下は次セクションの実背景(色＋紙テクスチャ)がそのまま透け、二重を解消
========================================================= */
section.next-soft::after, section.next-white::after {
  height: 56px; bottom: -1px; background-position: bottom; background-size: 100% 100%;
}
/* 前セクションが白系(next-soft: voices/effects/monitor)→ オフホワイトで上塗り */
section.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='%23fffdfa' d='M0,0 L1440,0 L1440,30 C1200,6 940,52 680,32 C420,14 200,26 0,38 Z'/%3E%3C/svg%3E") !important;
}
/* 前セクションがティール系(next-white: why/approaches/menu)→ teal-softで上塗り */
section.next-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='%23e6f1f0' d='M0,0 L1440,0 L1440,30 C1200,6 940,52 680,32 C420,14 200,26 0,38 Z'/%3E%3C/svg%3E") !important;
}
/* 前回足した monitor上端の波(menuの波と二重) を撤去 */
.monitor::before { display: none !important; }
/* monitor下端は next-soft標準(白上塗り)に統一(前回のtint波を上書き) */
.monitor.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='%23fffdfa' d='M0,0 L1440,0 L1440,30 C1200,6 940,52 680,32 C420,14 200,26 0,38 Z'/%3E%3C/svg%3E") !important;
}


/* =========================================================
   波線 解決ループ1（2026-06-09）
   方針: 紙テクスチャと波の二重を断つため、背景テクスチャの干渉を除去し
   波を「次セクション色が立ち上がる」標準に戻して色を次セクションに完全一致させる
========================================================= */
/* 背景の紙テクスチャを外してフラット単色に（背景色は維持）→ 波の単色下地が完全に馴染む */
.problem-band, .voices, .cases, .effects, .monitor,
.why, .approaches, .menu, .contact {
  background-image: none !important;
  background-attachment: scroll !important;
}
/* 波を標準方式に戻す。next-soft の次セクションは teal-soft、next-white の次は白 */
section.next-soft::after, section.next-white::after { height: 64px !important; bottom: -1px !important; }
section.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23e6f1f0' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}
section.next-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,30 C260,6 540,58 800,38 C1060,18 1280,8 1440,34 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}
.monitor::before { display: none !important; }
.monitor.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23f3fbfb' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}


/* Hero文字組み 微修正（2026-06-09）: 伴走型をタグ化・助詞拡大・教育支援プログラム1行・大きく */
.hero-catch { display: flex; flex-direction: column; align-items: flex-start; }
.hero-tag {
  display: inline-block; background: #bf5747; color: #f3ede1;
  font-family: var(--round); font-weight: 800; font-size: 1.0rem;
  padding: 5px 16px; border-radius: 8px; margin-bottom: 14px; letter-spacing: .05em;
}
.hero-catch .l1 .p { font-size: .72em !important; } /* の・を 少し大きく */
.hero-catch .l2 { font-size: 2.55rem !important; color: #bf5747 !important; margin-top: .12em; }


/* whyループ 円環図シンプル化（2026-06-09）*/
.loops { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin:0 0 30px; }
.loop-fig { background:#fff; border-radius:18px; padding:26px 22px 22px; border:1px solid var(--line); }
.loop-cap { font-family:var(--round); font-weight:800; text-align:center; margin:0 0 22px; font-size:1.05rem; }
.loop-cap span { font-size:1.2em; }
.loop-neg .loop-cap { color:#bf5747; }
.loop-pos .loop-cap { color:var(--teal-deep); }
.loop-ring { position:relative; width:262px; height:262px; margin:0 auto 16px; }
.loop-ring::before { content:""; position:absolute; inset:36px; border-radius:50%; border:2px dashed; opacity:.55; }
.loop-neg .loop-ring::before { border-color:#bf5747; }
.loop-pos .loop-ring::before { border-color:var(--teal); }
.loop-core { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:112px; height:112px; border-radius:50%; display:grid; place-items:center;
  text-align:center; color:#fff; font-family:var(--round); font-weight:800; font-size:.82rem; line-height:1.35; padding:8px; }
.loop-neg .loop-core { background:#bf5747; }
.loop-pos .loop-core { background:var(--teal); }
.ln { position:absolute; background:#fffdfa; border:1.5px solid; border-radius:999px;
  padding:6px 13px; font-size:.8rem; font-weight:700; white-space:nowrap; font-family:var(--round); }
.loop-neg .ln { border-color:#e0bfb8; color:#9a4436; }
.loop-pos .ln { border-color:#bfe3e3; color:var(--teal-deep); }
.ln1 { top:-8px; left:50%; transform:translateX(-50%); }
.ln2 { top:50%; right:-8px; transform:translateY(-50%); }
.ln3 { bottom:-8px; left:50%; transform:translateX(-50%); }
.ln4 { top:50%; left:-8px; transform:translateY(-50%); }
.loop-out { text-align:center; font-family:var(--round); font-weight:800; margin:4px 0 0; font-size:.94rem; }
.loop-neg .loop-out { color:#bf5747; }
.loop-pos .loop-out { color:var(--teal-deep); }
@media(max-width:880px){ .loops{grid-template-columns:1fr;} }
@media(max-width:430px){ .loop-ring{width:232px;height:232px;} .ln{font-size:.72rem;padding:5px 10px;} .loop-core{width:100px;height:100px;font-size:.76rem;} }


/* 効果セクション 再デザイン（2026-06-09）: アイコン主役・濃背景白抜き・本文小 */
.effect { padding: 0 !important; overflow: hidden; }
.effect-icon {
  display: block; width: 100% !important; height: 158px !important;
  object-fit: contain; background: #14686b; padding: 18px;
  box-sizing: border-box; margin: 0 !important; align-self: auto !important;
}
.effect-title { padding: 20px 24px 0; font-size: 1.32rem; margin: 0; }
.effect .kicker { padding: 6px 24px 0; margin: 0; }
.effect > p:not(.kicker) { padding: 4px 24px 0; font-size: .88rem; line-height: 1.75; color: var(--sub); margin: 0; }
.effect > p:last-child { padding-bottom: 24px; }


/* ループ図 6ノード具体化（2026-06-09 抽象度を下げ具体的な職場場面に）*/
.loop-ring.r6 { width: 318px; height: 318px; }
.loop-ring.r6::before { inset: 48px; }
.loop-ring.r6 .ln1 { top:-10px; left:50%; transform:translateX(-50%); }
.loop-ring.r6 .ln2 { top:20%; right:-14px; transform:none; }
.loop-ring.r6 .ln3 { bottom:20%; right:-14px; transform:none; top:auto; }
.loop-ring.r6 .ln4 { bottom:-10px; left:50%; transform:translateX(-50%); top:auto; }
.loop-ring.r6 .ln5 { bottom:20%; left:-14px; transform:none; top:auto; }
.loop-ring.r6 .ln6 { top:20%; left:-14px; transform:none; }
@media(max-width:880px){ .loop-ring.r6{ margin-bottom:18px; } }
@media(max-width:430px){ .loop-ring.r6{ width:280px; height:280px; } .loop-ring.r6 .ln{ font-size:.68rem; padding:4px 8px; } }


/* =========================================================
   波線 塗り足し色を「次セクションの実背景色」に正確一致（白浮き解消）2026-06-09 
   背景: ベージュ(ivory #f8f6f1) と 水色(teal-soft #e6f1f0) が交互
   next-white を持つ why/approaches/menu の次は全てベージュ → 波もベージュ
   next-soft を持つ voices/effects/monitor の次は水色 → 波も水色
========================================================= */
section.next-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23f8f6f1' d='M0,30 C260,6 540,58 800,38 C1060,18 1280,8 1440,34 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}
section.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23e6f1f0' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}
.monitor.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23e6f1f0' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}
/* 効果カード濃背景を アイコン画像の実ピクセル色に完全一致 */
.effect-icon { background: #146368 !important; }


/* =========================================================
   背景の交互をはっきりさせる（2026-06-09 全部同じに見える→交互明確化）
   暖色ベージュ ⇔ 寒色水色 を交互に。波線塗り足しも同色に連動
========================================================= */
.problem-band, .voices, .cases, .effects, .monitor { background-color: #f4efe3 !important; } /* ベージュ */
.why, .approaches, .menu, .contact { background-color: var(--alt-bg) !important; }                 /* 水色 */

/* 波線塗り足しを新背景色へ連動（next-white の次=ベージュ / next-soft の次=水色）*/
section.next-white::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23f4efe3' d='M0,30 C260,6 540,58 800,38 C1060,18 1280,8 1440,34 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}
section.next-soft::after, .monitor.next-soft::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'%3E%3Cpath fill='%23dcecea' d='M0,38 C300,66 560,10 820,28 C1060,44 1260,58 1440,30 L1440,64 L0,64 Z'/%3E%3C/svg%3E") !important;
}

/* foot-wave地をcontactと同じ水色に 2026-06-09 */


/* ============================================================
   FBメモ改修レイヤー 2026-06-16（後勝ちで上書き）
============================================================ */

/* A-2 背景を白ベースに（前回の交互背景＋波線を白化） */
.problem-band,.voices,.cases,.effects,.monitor,.why,.approaches,.menu,.contact{
  background-color:#fff !important; background-image:none !important;
}
/* 白同士で波が浮くので波区切りを廃し、セクション間は余白＋ごく薄い区切り線に */
section.next-soft::after, section.next-white::after, .monitor.next-soft::after, .monitor::before{ display:none !important; }
main > section{ border-top:1px solid #eef1f1; }
main > section.hero, main > section.cta-band, main > section.problem-band{ border-top:none; }
.foot-wave{ background: var(--alt-bg) !important; }

/* 効果/各カードを白背景で浮かす（境界をborder＋shadowで担保） */
.effect,.voice-card,.case-block,.approach,.plan-card,.monitor-card,.step,.approach-icons li{
  background:#fff !important; border:1px solid var(--line); box-shadow:0 4px 18px rgba(20,104,107,.06);
}

/* A-1 本文タイポ強化（大きめ・太め・行間） */
body{ font-size:17px; }
.why-lead,.case-text,.case-lead,.approach>p,.effect>p:not(.kicker),.menu-lead,.monitor-lead,.approach-summary,.contact-lead{
  font-size:1.05rem; line-height:1.95;
}
p b, p strong, .why-lead b, .menu-lead b, .contact-lead b{ font-weight:800; color:var(--ink); }

/* A-3 CTA階層（色相オレンジ統一・塗り/アウトラインで主要/補助を区別） */
.btn{ font-size:1.15rem; font-weight:800; padding:16px 32px; }
.btn-block{ font-size:1.2rem; padding:18px; }
.btn-primary{ background:var(--accent) !important; box-shadow:0 6px 0 var(--accent-dk) !important; color:#fff !important; } /* 主要=オレンジ塗り */
.btn-accent{ background:var(--accent) !important; box-shadow:0 6px 0 var(--accent-dk) !important; color:#fff !important; }
.btn-line{ background:#fff !important; color:var(--accent-dk) !important; border:2px solid var(--accent) !important; box-shadow:0 4px 0 #f3d9cc !important; } /* 補助=オレンジアウトライン */
.tel-num{ white-space:nowrap !important; }
@media(max-width:430px){ .tel-num{ font-size:1.5rem; } .btn{ font-size:1.08rem; padding:15px 22px; } }

/* A-4 ファーストビュー見出し強化 */
.hero-tag{ font-size:1.1rem; padding:6px 18px; }
.hero-catch .l1, .hero-catch .l2{ font-weight:900; }


/* B-1 ループ縦型フロー（円環→上から下＋戻り） */
.loop-flow{ list-style:none; padding:0; margin:0 0 6px; }
.loop-flow li{ position:relative; background:#fff; border:2px solid; border-radius:12px; padding:13px 16px; margin:0 0 32px; font-weight:700; font-size:1.04rem; text-align:center; font-family:var(--round); }
.loop-flow li:last-child{ margin-bottom:14px; }
.loop-flow li:not(:last-child)::after{ content:"↓"; position:absolute; bottom:-29px; left:50%; transform:translateX(-50%); font-size:1.4rem; font-weight:900; line-height:1; }
.loop-neg .loop-flow li{ border-color:#e4bdb5; } .loop-neg .loop-flow li::after{ color:#bf5747; }
.loop-pos .loop-flow li{ border-color:#bbdedb; } .loop-pos .loop-flow li::after{ color:var(--teal); }
.loop-back{ text-align:center; font-weight:800; font-family:var(--round); margin:0 0 10px; padding:9px; border-radius:8px; font-size:.98rem; }
.loop-neg .loop-back{ color:#bf5747; background:#faf0ee; } .loop-pos .loop-back{ color:var(--teal-deep); background:#eaf6f5; }


/* FB見出し強化2026 */
.sec-head h2{ font-size:1.72rem !important; }
.case-title{ font-size:1.32rem !important; }
.effect-title{ font-size:1.42rem !important; }
.plan-name{ font-size:1.4rem !important; }
.approach-title{ font-size:1.5rem !important; }
.approach-icons img{ width:96px !important; height:96px !important; }


/* ============================================================
   FB implementation layer — 2026-06-17
   白背景 / 正式ロゴ / 太め本文 / 開示カード / 比較しやすいプログラム
============================================================ */

:root {
  --logo-ink: #2e3334;
  --paper: #fff;
  --soft-section: #f7fbfb;
  --card-shadow: 0 12px 32px rgba(20, 104, 107, .08);
}

body {
  background: #fff !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

html {
  scroll-padding-top: 88px;
}

.problem-band,
.voices,
.cases,
.effects,
.monitor,
.why,
.approaches,
.menu,
.contact {
  background: #fff !important;
}

main > section {
  padding: 72px 0;
  border-top: 1px solid #eef1f1;
  scroll-margin-top: 88px;
}

main > section.hero,
main > section.problem-band,
main > section.cta-band {
  border-top: none;
}

.container { max-width: 980px; }

/* Formal logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  display: block;
  width: clamp(174px, 25vw, 270px);
  height: auto;
}

.logo-sub {
  color: var(--logo-ink) !important;
  font-size: .78rem !important;
  font-weight: 800;
  letter-spacing: .05em;
  border-left: 1px solid #cdd4d5;
  padding-left: 10px;
  white-space: nowrap;
}

.footer-logo {
  width: 220px;
  height: auto;
  vertical-align: middle;
  filter: invert(1) brightness(2.8);
}

.site-footer .fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-footer .fb span { color: #fff; }

/* Typography: normal body text starts readable, not thin */
.why-lead,
.case-text,
.case-lead,
.approach-body p,
.approach-summary,
.effect > p,
.menu-lead,
.menu-note,
.monitor-lead,
.monitor-cond li,
.voice-text,
.plan-spec,
.contact-lead,
.step p {
  font-size: 1.04rem !important;
  font-weight: 500 !important;
  line-height: 1.95 !important;
}

.voice-text,
.plan-spec,
.step p {
  font-size: 1rem !important;
}

p + p,
.approach-body p + p {
  margin-top: 1em;
}

strong,
b {
  font-weight: 800;
}

.sec-head h2 {
  font-size: clamp(2rem, 4vw, 2.65rem) !important;
  line-height: 1.35;
  letter-spacing: 0;
}

.sec-head .lead {
  font-size: 1.15rem;
  font-weight: 600;
}

/* Hero headline */
.hero-catch .l1,
.hero-catch .l2 {
  font-weight: 900 !important;
  text-shadow: 0 2px 0 rgba(255,255,255,.92), 0 10px 24px rgba(255,255,255,.65);
}

.hero-catch .l1,
.hero-catch .l2 {
  font-size: clamp(2.7rem, 5.1vw, 4.2rem) !important;
  white-space: nowrap;            /* 大画面でl1の行内折返しを防止（案A・dev-reviewer承認）*/
}

.hero-tag {
  font-size: clamp(1rem, 1.6vw, 1.22rem) !important;
  padding: 8px 20px !important;
  border-radius: 10px;
}

/* CTA */
.btn {
  min-height: 54px;
  font-size: 1.12rem !important;
  font-weight: 900;
  padding: 16px 32px !important;
  border-radius: 999px;
}

.header-cta .btn {
  min-height: 42px;
  font-size: .92rem !important;
  padding: 10px 18px !important;
}

.btn-primary,
.btn-accent {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 7px 0 var(--accent-dk) !important;
}

.btn-line {
  color: var(--accent-dk) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 0 #f2d8cd !important;
}

.cta-actions {
  gap: 14px;
}

.tel-box {
  max-width: 100%;
}

.tel-box .tel-num {
  white-space: nowrap !important;
  font-size: clamp(2rem, 6vw, 2.55rem) !important;
}

/* Why section */
.why-intro {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: 30px;
  align-items: center;
  margin: 0 0 38px;
}

.why-visual {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--card-shadow);
}

.why-visual img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.why-copy .bubble {
  margin-bottom: 18px;
}

.why-lead {
  text-align: left;
  margin: 0 0 18px;
}

.why-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.why-pillars li {
  position: relative;
  padding: 12px 14px 12px 44px;
  background: var(--soft-section);
  border: 1px solid var(--teal-line);
  border-radius: 12px;
  font-weight: 600;
}

.why-pillars li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
}

.loop-fig {
  box-shadow: var(--card-shadow);
  border-color: var(--line);
}

.loop-cap {
  font-size: 1.35rem !important;
}

.loop-flow li {
  font-size: 1.08rem !important;
  line-height: 1.65;
  box-shadow: 0 4px 12px rgba(20,104,107,.05);
}

.loop-back,
.loop-out,
.why-point {
  font-size: 1.03rem;
}

.why-point {
  background: #fff !important;
  box-shadow: var(--card-shadow);
}

/* Cases */
.case-block {
  padding: 30px;
  box-shadow: var(--card-shadow) !important;
}

.case-title {
  font-size: clamp(1.45rem, 2.6vw, 1.8rem) !important;
  line-height: 1.45;
}

.case-title .ck {
  font-size: .92rem;
  padding: 7px 14px;
}

.case-figure {
  border-color: #dfe6e7;
  border-radius: 16px;
}

.tag-icon {
  width: 54px !important;
  height: 54px !important;
}

.case-tag {
  gap: 12px;
  font-size: 1.05rem;
}

/* Approaches: open cards, not accordions */
.approach-icons {
  gap: 22px;
}

.approach-icons li {
  min-width: 170px;
  padding: 20px 24px;
  box-shadow: var(--card-shadow) !important;
}

.approach-icons img {
  width: 112px !important;
  height: 112px !important;
}

.approach {
  padding: 32px;
  box-shadow: var(--card-shadow) !important;
}

.approach-title {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem) !important;
  line-height: 1.35;
  gap: 10px;
}

.approach-title-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.approach-summary {
  font-size: 1.12rem !important;
  padding: 16px 18px;
}

.approach-body {
  display: grid;
  gap: 14px;
}

.approach-body p {
  margin: 0;
}

.approach-bullets,
.approach-examples {
  display: grid;
  gap: 8px;
  margin: 0 0 4px !important;
}

.approach-bullets li,
.approach-examples li {
  background: #fff7f3;
  border: 1px solid #f0d8ce;
  border-radius: 10px;
  padding: 9px 12px 9px 34px !important;
  font-weight: 600;
}

.approach-examples li {
  background: #f5fbfb;
  border-color: var(--teal-line);
}

.approach-more {
  display: block;
}

/* Effects: lighter icon treatment */
.effects-grid {
  gap: 22px;
}

.effect {
  display: grid !important;
  grid-template-columns: 108px 1fr;
  gap: 4px 20px !important;
  padding: 26px !important;
  align-items: start;
  overflow: visible;
  box-shadow: var(--card-shadow) !important;
}

.effect-icon {
  grid-row: 1 / span 4;
  width: 96px !important;
  height: 96px !important;
  background: #f4fbfb !important;
  border: 1px solid var(--teal-line);
  border-radius: 18px;
  padding: 12px !important;
  object-fit: contain;
  margin: 0 !important;
}

.effect-title {
  padding: 0 !important;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem) !important;
  line-height: 1.35;
}

.effect .kicker,
.effect > p:not(.kicker) {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1.03rem !important;
  line-height: 1.9 !important;
  color: var(--ink) !important;
}

.effect .kicker {
  color: var(--accent-dk) !important;
  font-weight: 800 !important;
}

/* Program cards: comparable rows */
.plan-cards {
  align-items: stretch;
  gap: 20px;
}

.plan-card {
  padding: 26px;
  box-shadow: var(--card-shadow) !important;
}

.plan-spec {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px 12px;
  flex: 1;
  margin: 0;
}

.plan-spec dt {
  align-self: start;
  margin: 0 !important;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  text-align: center;
  font-size: .86rem;
  line-height: 1.45;
}

.plan-spec dd {
  margin: 0 !important;
  min-height: 3.6em;
}

.plan-spec .plan-price {
  padding: 0 !important;
  border: none !important;
  color: var(--teal-deep);
  font-size: 1.35rem !important;
  line-height: 1.35 !important;
}

.plan-spec .plan-price span {
  display: block;
  margin-top: 2px;
  font-size: .78rem;
  color: var(--sub);
  font-weight: 600;
}

.plan-name {
  min-height: 3.2em;
  line-height: 1.35;
}

.plan-tagline {
  min-height: 3.2em;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 760px) {
  body {
    font-size: 16.5px;
  }

  .header-inner {
    align-items: flex-start;
  }

  .logo {
    width: 100%;
  }

  .logo-img {
    width: 200px;
  }

  .header-cta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .header-cta .btn {
    width: 100%;
    padding: 10px 8px !important;
    font-size: .86rem !important;
  }

  .hero-inner {
    min-height: 500px;
  }

  .hero-catch .l1,
  .hero-catch .l2 {
    font-size: clamp(1.75rem, 7.3vw, 2.15rem) !important;
    white-space: nowrap;
  }

  .sec-head h2 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }

  .why-intro,
  .effect {
    grid-template-columns: 1fr;
  }

  .effect-icon {
    grid-row: auto;
    width: 104px !important;
    height: 104px !important;
  }

  .case-block,
  .approach,
  .plan-card,
  .effect {
    padding: 22px;
  }

  .approach-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .approach-title-icon {
    width: 48px;
    height: 48px;
  }

  .approach-icons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .approach-icons::before {
    display: none;
  }

  .plan-spec {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .plan-name,
  .plan-tagline,
  .plan-spec dd {
    min-height: auto;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .tel-box {
    width: 100%;
    padding: 14px 12px;
  }

  .tel-box .tel-num {
    font-size: clamp(1.7rem, 8vw, 2rem) !important;
    letter-spacing: 0;
  }
}

/* ============================================================
   PHASE 1 — メリハリ強化レイヤー（2026-06-27）
   レビュー指摘「太さ一律でのっぺり」への対応。
   (1) タイポ階層を太さで再設計 (2) ボタン明確化 (3) 背景コントラスト (4) FV見出し
   末尾配置でカスケード最優先。!important は既存層に合わせて使用。
============================================================ */

:root {
  --alt-bg: #dceeee;       /* 交互背景：白とパキッと差が出る薄ティール */
  --alt-line: #cfe8e8;     /* セクション境界線 */
  --ink-strong: #1f2426;   /* 見出し用の濃いインク */
}

/* ---------- (1) タイポ階層：本文は軽く、見出し・強調は重く ---------- */

/* 本文・説明文は軽め（450）にして見出しとの差を作る */
body { font-weight: 400; }

.why-lead,
.case-text,
.case-lead,
.approach-body p,
.effect > p:not(.kicker),
.menu-lead,
.menu-note,
.monitor-lead,
.contact-lead,
.voice-text,
.step p,
.hero-sub,
.sec-head .lead {
  font-weight: 400 !important;
}

/* 二次的にボールドだった補助テキストを中庸へ下げ、見出しを引き立てる */
.approach-summary,
.why-pillars li,
.approach-bullets li,
.approach-examples li,
.plan-tagline,
.monitor-cond li {
  font-weight: 600 !important;
}

/* セクション見出しは最重量 + 濃いインクでコントラスト最大化 */
.sec-head h2 {
  font-weight: 900 !important;
  color: var(--ink-strong) !important;
}

/* カード見出し・要点は900で本文から大きく分離 */
.voice-headline,
.case-title,
.effect-title,
.approach-title,
.plan-name,
.problem-lead,
.why-subtitle,
.loop-cap,
.why-point .head {
  font-weight: 900 !important;
}

/* 強調語（本文内の太字）はしっかりボールド＋わずかに色を寄せる */
.case-text strong, .case-text b,
.approach-body strong, .approach-body b,
.why-lead strong, .why-lead b,
.effect > p strong, .effect > p b,
.menu-lead b,
.contact-lead b {
  font-weight: 800 !important;
  color: var(--teal-deep) !important;
}

/* ---------- (2) ボタン：フラットピル＋矢印で「押せる感」 ---------- */

.btn {
  position: relative;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  letter-spacing: .02em;
}

/* 塗りボタン：ソフトに浮くフラットピル */
.btn-primary,
.btn-accent {
  box-shadow: 0 6px 16px rgba(240, 111, 46, .26) !important;
}

.btn-primary:hover,
.btn-accent:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 10px rgba(240, 111, 46, .22) !important;
  background: var(--accent-dk) !important;
}

/* アウトライン：影なし・白地・太枠で対比 */
.btn-line {
  background: #fff !important;
  border: 2px solid var(--accent) !important;
  box-shadow: none !important;
}

.btn-line:hover {
  transform: translateY(2px);
  background: #fff7f3 !important;
}

/* 矢印で行き先（押せる）を明示 */
.btn-primary::after,
.btn-accent::after,
.btn-line::after {
  content: "\203A";
  font-weight: 900;
  margin-left: .5em;
  font-size: 1.15em;
  line-height: 1;
}

/* ---------- (3) 背景コントラスト：白×薄ティールの交互リズム ---------- */

/* Task Aの全白固定を解除し、明暗を交互に効かせる */
.why,
.approaches,
.menu,
.contact {
  background: var(--alt-bg) !important;
}

.voices,
.cases,
.effects,
.monitor {
  background: #fff !important;
}

/* 境界はうっすらだが視認できる線で区切る */
main > section {
  border-top: 1px solid var(--alt-line);
}

main > section.hero,
main > section.problem-band,
main > section.cta-band {
  border-top: none;
}

/* ---------- (4) FV見出し：タグ視認性UP＋写真上での可読性 ---------- */

/* 「伴走型」タグを大きく・濃く・浮かせる */
.hero-tag {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem) !important;
  font-weight: 900 !important;
  background: #bf5747 !important;
  color: #fff !important;
  padding: 7px 20px !important;
  border-radius: 10px !important;
  letter-spacing: .08em !important;
  box-shadow: 0 6px 14px rgba(191, 87, 71, .28);
  margin-bottom: 16px !important;
}

/* 見出しを写真からくっきり浮かせる白フチ強化 */
.hero-catch .l1,
.hero-catch .l2 {
  text-shadow:
    0 1px 0 rgba(255,255,255,.98),
    0 2px 3px rgba(255,255,255,.85),
    0 8px 22px rgba(255,255,255,.6) !important;
}

/* ---------- モバイル微調整 ---------- */
@media (max-width: 760px) {
  .hero-tag {
    font-size: 1.02rem !important;
    padding: 6px 16px !important;
  }
  .btn-primary::after,
  .btn-accent::after,
  .btn-line::after {
    margin-left: .35em;
  }
}

/* ============================================================
   PHASE 1 ブラッシュアップ Round 1（2026-06-27）
   FB#6 VOICE実績タグの視認性 / FB#9 学術背景フレーズを大きく / FB#11 ループのポイント拡大
============================================================ */

/* FB#6: 実績カテゴリのタグを大きく・読みやすく */
.voice-cat .tag {
  font-size: .98rem !important;
  font-weight: 900 !important;
  padding: 6px 18px !important;
  box-shadow: 0 3px 8px rgba(20,104,107,.18);
}
.voice-cat .voice-before {
  font-weight: 600;
}
.voice-cat .voice-before b {
  font-weight: 800;
}

/* FB#9: 「脳科学・心理学・色彩学…」を大きく＋マーカーで読ませる */
.why-lead strong {
  font-size: 1.14em !important;
  background: linear-gradient(transparent 58%, #ffe0b8 58%);
  padding: 0 .12em;
}

/* FB#11: ループのポイントを大きな文字で */
.loop-cap {
  font-size: 1.45rem !important;
  font-weight: 900 !important;
}
.why-point .head {
  font-size: 1.22rem !important;
  line-height: 1.7;
}
.why-point .accent-txt {
  color: var(--accent-dk) !important;
  font-weight: 900;
  background: linear-gradient(transparent 60%, #ffe0b8 60%);
  padding: 0 .1em;
}
.loop-back,
.loop-out {
  font-size: 1.06rem !important;
  font-weight: 800 !important;
}

@media (max-width: 760px) {
  .voice-cat .tag { font-size: .9rem !important; }
  .loop-cap { font-size: 1.25rem !important; }
  .why-point .head { font-size: 1.1rem !important; }
}

/* ============================================================
   PHASE 1 ブラッシュアップ Round 2（2026-06-27）
   視覚レビューTOP3: FB#9 学術キーワード独立チップ化 / FB#11 ループ拡大 / FB#5 背景パキッと(上で--alt-bg濃く)
============================================================ */

/* FB#9: 5つの学問を本文から独立させ、チップで大きく見せる */
.why-fields-lead {
  text-align: left;
  font-weight: 800;
  color: var(--teal-deep);
  font-size: 1.05rem;
  margin: 6px 0 12px;
}
.why-fields {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.why-fields li {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--teal-deep);
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 999px;
  padding: 8px 20px;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(20,104,107,.10);
}

/* FB#11: ループ図のステップ文字とポイントを大きく */
.loop-flow li {
  font-size: 1.18rem !important;
  font-weight: 700 !important;
}
.why-point .head {
  font-size: 1.4rem !important;
  font-weight: 900 !important;
}
.why-point ul li {
  font-size: 1.05rem;
}

/* VOICE「詳しく読む」を押せる感のあるリンクボタンに揃える */
.voice-more a {
  display: inline-block;
  border: 2px solid var(--teal);
  color: var(--teal-deep) !important;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: .98rem;
  background: #fff;
  transition: background-color .12s ease;
}
.voice-more a:hover {
  background: var(--teal-soft);
}

@media (max-width: 760px) {
  .why-fields li { font-size: 1.05rem; padding: 7px 16px; }
  .loop-flow li { font-size: 1.06rem !important; }
  .why-point .head { font-size: 1.18rem !important; }
}

/* ============================================================
   PHASE 1 ブラッシュアップ Round 3（2026-06-27）
   whyイントロを縦組み・中央寄せに再構成
   Q&Aを中央／「いいえ」を横棒付きの目立つ返事に／絵を横長で下に
============================================================ */

/* 2カラムgridを解除し縦積み・中央寄せに */
.why-intro.why-stack {
  display: block !important;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 38px;
}

/* 問いの吹き出しを中央に */
.why-stack .bubble.q {
  display: inline-block;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* 「いいえ」＝横棒付きの目立つ返事 */
.why-answer {
  text-align: center;
  max-width: 780px;
  margin: 18px auto 8px;
  line-height: 1.4;
}
.why-answer-no {
  display: inline-block;
  font-family: var(--round);
  font-weight: 900;
  color: var(--accent-dk);
  font-size: clamp(2rem, 4.6vw, 3rem);
}
.why-answer-no::before {
  content: "";
  display: inline-block;
  width: clamp(30px, 5vw, 58px);
  height: 5px;
  border-radius: 3px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 16px;
  transform: translateY(-.14em);
}
.why-answer-body {
  display: block;
  margin-top: 12px;
  font-family: var(--round);
  font-weight: 800;
  color: var(--ink-strong);
  font-size: clamp(1.12rem, 2.2vw, 1.46rem);
  line-height: 1.6;
}

/* 絵を横長で中央に大きく */
.why-visual-wide {
  max-width: 840px;
  width: 100%;
  margin: 8px auto 28px;
}

/* 5つの学問の導入とチップを中央寄せに */
.why-stack .why-fields-lead {
  text-align: center;
}
.why-stack .why-fields {
  justify-content: center;
}

/* 締めの本文を中央・読みやすい幅に */
.why-lead-center {
  text-align: center !important;
  max-width: 760px;
  margin: 0 auto 22px !important;
}

/* 3本柱は中央ブロック・文章は左揃えで可読性維持 */
.why-stack .why-pillars {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 760px) {
  .why-answer-no { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .why-answer-no::before { width: 26px; margin-right: 10px; }
  .why-answer-body { font-size: 1.06rem; }
  .why-visual-wide { margin-bottom: 20px; }
}

/* ============================================================
   PHASE 2 Round 1（2026-06-27）
   #16 プログラムを「比較表」に（PC=subgridで全行ベースライン整列／スマホ=縦カード）
   #13補 アプローチ上部アイコンの二重タイトル解消 / #15 効果見出し色の統一
============================================================ */

/* --- 共通：新構造の基本 --- */
.plan-compare .plan-no {
  font-size: 1rem; width: 40px; height: 40px; margin: 0 auto 8px;
}
.plan-compare .plan-name { margin: 0 0 4px; }
.plan-compare .plan-tagline { margin: 0; }
.plan-k {
  font-family: var(--round); font-weight: 800; font-size: .78rem;
  color: var(--teal-dark); background: var(--teal-soft);
  padding: 2px 12px; border-radius: 999px; align-self: flex-start;
}
.plan-v { font-size: .95rem; font-weight: 400; line-height: 1.6; color: var(--ink); }
.plan-row-price .plan-v b { font-family: var(--round); font-size: 1.5rem; color: var(--teal-deep); }
.plan-row-price .plan-v small { display: block; color: var(--sub); font-size: .74rem; font-weight: 400; }

/* --- PC：真の比較表（行が3列で揃う） --- */
@media (min-width: 761px) {
  .plan-compare {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto auto;
    gap: 0 18px;
    align-items: stretch;
  }
  .plan-compare .plan-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    gap: 0;
  }
  .plan-compare .plan-head {
    padding: 24px 18px 16px;
    background: #fff;
    border: 1px solid var(--teal-line);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    text-align: center;
  }
  .plan-compare .plan-row {
    display: flex; flex-direction: column; gap: 5px;
    padding: 13px 18px;
    background: #fff;
    border-left: 1px solid var(--teal-line);
    border-right: 1px solid var(--teal-line);
    border-top: 1px dashed var(--teal-line);
  }
  .plan-compare .plan-card > .plan-row:last-child {
    border-bottom: 1px solid var(--teal-line);
    border-radius: 0 0 16px 16px;
  }
  /* おすすめ（中央）を強調 */
  .plan-compare .plan-card.feature .plan-head,
  .plan-compare .plan-card.feature .plan-row {
    border-color: var(--accent);
    background: #fffaf6;
  }
  .plan-compare .plan-card.feature .plan-head {
    box-shadow: inset 0 4px 0 var(--accent);
  }
  .plan-compare .plan-card.feature::before {
    top: -13px; z-index: 2;
  }
}

/* --- スマホ：自己完結カードに戻す --- */
@media (max-width: 760px) {
  .plan-compare { display: block; }
  .plan-compare .plan-card {
    background: #fff; border: 2px solid var(--teal-line);
    border-radius: 16px; padding: 22px; margin: 0 0 16px; position: relative;
  }
  .plan-compare .plan-card.feature { border-color: var(--accent); }
  .plan-compare .plan-head { text-align: center; margin-bottom: 8px; }
  .plan-compare .plan-row {
    display: grid; grid-template-columns: 78px 1fr; gap: 10px;
    align-items: start; padding: 9px 0; border-top: 1px dashed var(--teal-line);
  }
  .plan-compare .plan-row .plan-k { align-self: start; }
}

/* --- #13補：アプローチ上部アイコンの二重タイトル（imgに名称＋span）を整理 --- */
.approach-icons li span { display: none; }

/* --- #15：効果カード見出しの色を全カード統一（1枚目だけ赤茶を防ぐ） --- */
.effect-title { color: var(--teal-deep) !important; }
.effect-title .n {
  background: var(--teal) !important; color: #fff !important;
}

/* ============================================================
   PHASE 3-a ロゴ正式ベクター差し替え（2026-06-27）
   ヘッダー=公式カラーSVG / フッター=白版PNG（invert不要）
============================================================ */
.footer-logo { filter: none !important; }

/* ============================================================
   PHASE 2 Round 2（2026-06-27）プログラム「対象」削除に伴う調整＋可読性UP
============================================================ */

/* 料金＝比較の主役。一段強く・大きく */
.plan-row-price .plan-v b { font-size: 1.7rem !important; line-height: 1.2; }
.plan-row-price .plan-k {
  background: var(--teal) !important; color: #fff !important;
}
@media (min-width: 761px) {
  /* 料金行は実線で区切ってアンカー化、薄いティール地で価格を目立たせる */
  .plan-compare .plan-row.plan-row-price {
    border-top: 2px solid var(--teal-line);
    background: var(--teal-tint);
  }
  .plan-compare .plan-card.feature .plan-row.plan-row-price {
    background: #fff3ea;
  }
  /* 内容・構成の本文を少しゆったり読みやすく */
  .plan-compare .plan-row .plan-v { font-size: .96rem; line-height: 1.7; }
}
@media (max-width: 760px) {
  .plan-row-price .plan-v b { font-size: 1.5rem !important; }
}

/* ============================================================
   PHASE 4（2026-06-27）お客様の声カード刷新＋インタビュー記事ページ
============================================================ */

/* --- VOICE 一覧カード（実4名・匿名・2列） --- */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.voice-grid .voice-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--teal-line); border-radius: 18px;
  padding: 26px; box-shadow: var(--card-shadow);
}
.voice-card.vc-new .voice-cat { margin: 0 0 12px; }
.voice-card.vc-new .voice-headline {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem) !important;
  line-height: 1.5; margin: 0 0 12px; color: var(--ink-strong);
}
.voice-card.vc-new .voice-lead {
  font-size: .97rem; line-height: 1.85; font-weight: 400; color: var(--ink);
  margin: 0 0 16px; flex: 1;
}
.voice-card.vc-new .voice-meta {
  font-family: var(--round); color: var(--sub); font-weight: 700; margin: 0 0 14px;
}
.voice-card.vc-new .voice-meta b { color: var(--teal-deep); font-weight: 900; }
@media (max-width: 760px) { .voice-grid { grid-template-columns: 1fr; } }

/* --- インタビュー記事ページ --- */
.iv-head {
  background: var(--alt-bg); text-align: center;
  padding: 46px 0 40px; border-bottom: 1px solid var(--alt-line);
}
.iv-back {
  display: inline-block; margin: 0 0 18px; font-family: var(--round);
  font-weight: 800; color: var(--teal-dark); text-decoration: none; font-size: .95rem;
}
.iv-back:hover { color: var(--teal-deep); }
.iv-tag {
  display: inline-block; background: var(--teal); color: #fff;
  font-family: var(--round); font-weight: 900; font-size: .92rem;
  padding: 6px 18px; border-radius: 999px; box-shadow: 0 3px 8px rgba(20,104,107,.18);
}
.iv-title {
  font-family: var(--round); font-weight: 900; color: var(--ink-strong);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem); line-height: 1.5;
  margin: 16px auto 16px; max-width: 860px;
}
.iv-lead {
  max-width: 720px; margin: 0 auto 16px; font-size: 1.02rem;
  line-height: 1.95; color: var(--ink); font-weight: 400;
}
.iv-profile { font-family: var(--round); color: var(--teal-deep); font-weight: 700; margin: 0; }
.iv-profile b { font-weight: 900; }

.iv-body { max-width: 760px; padding-top: 12px; padding-bottom: 8px; }
.iv-section { padding: 28px 0 4px; }
.iv-h2 {
  font-family: var(--round); font-weight: 900; color: var(--ink-strong);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.55;
  margin: 0 0 16px; padding-left: 16px; border-left: 6px solid var(--teal);
}
.iv-section p { font-size: 1.03rem; line-height: 2; margin: 0 0 1.05em; font-weight: 400; }
.iv-quote {
  margin: 24px 0; padding: 18px 22px; background: var(--alt-bg);
  border-left: 5px solid var(--accent); border-radius: 0 12px 12px 0;
  font-family: var(--round); font-weight: 800; color: var(--teal-deep);
  font-size: 1.12rem; line-height: 1.7;
}
.iv-cta {
  text-align: center; background: var(--teal); color: #fff;
  border-radius: 20px; padding: 34px 24px; margin: 30px auto 64px; max-width: 760px;
}
.iv-cta p { font-family: var(--round); font-weight: 800; font-size: 1.12rem; line-height: 1.7; margin: 0 0 20px; }
.iv-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 760px) {
  .iv-cta .cta-actions { flex-direction: column; }
  .iv-cta .btn { width: 100%; }
  .iv-section p { line-height: 1.95; }
}

/* ============================================================
   PHASE 5（2026-06-27）モニター斜めリボン / talk画像サイズ / フッター地
============================================================ */

/* D. モニター募集カード 右上の斜めリボン */
.monitor-card { position: relative; overflow: hidden; }
.corner-ribbon {
  position: absolute; top: 11px; right: -52px;
  transform: rotate(45deg);
  background: var(--accent); color: #fff;
  font-family: var(--round); font-weight: 900; font-size: .76rem;
  letter-spacing: .05em; text-align: center;
  width: 164px; padding: 5px 0;
  box-shadow: 0 4px 10px rgba(240,111,46,.35);
  z-index: 3;
}
.corner-ribbon::before { content: "＼ "; }
.corner-ribbon::after { content: " ／"; }

/* F. talk.png は2人横並びなので少し横幅を取る */
.bubble-row { grid-template-columns: 104px 1fr !important; }
.bubble-row img { width: 104px !important; height: auto !important; }

/* E補強: フッター地をcontactと完全一致させる（白帯防止の最終上書き） */
.foot-wave { background: var(--alt-bg) !important; }

/* ============================================================
   PHASE 5b（2026-06-27）VOICEカードに体験者アイコン
============================================================ */
.voice-card.vc-new .voice-person {
  display: flex; align-items: center; gap: 12px; margin: 2px 0 14px;
}
.voice-card.vc-new .voice-avatar {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--teal-line); background: #fff; flex: 0 0 auto;
}
.voice-card.vc-new .voice-person .voice-meta { margin: 0; line-height: 1.4; }
.voice-card.vc-new .voice-person .voice-meta b {
  display: block; color: var(--teal-deep); font-weight: 900; font-family: var(--round);
}
.voice-card.vc-new .voice-person .voice-meta span { font-size: .85rem; color: var(--sub); font-weight: 400; }

/* モニターリボン微調整：第1行と帯の重なり回避 */
.monitor-card { padding-top: 30px; }
.monitor-card .monitor-lead { padding-right: 8px; }

/* ============================================================
   PHASE 5c（2026-06-27）インタビュー記事の画像（ヒーロー＋本文中挿絵）
============================================================ */
.iv-herowrap { max-width: 860px; margin: -10px auto 4px; }
.iv-hero {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 18px; box-shadow: var(--card-shadow); background: var(--alt-bg);
}
.iv-figure {
  margin: 26px 0; padding: 0; text-align: center;
}
.iv-figure img {
  display: block; width: 100%; max-width: 620px; margin: 0 auto;
  border-radius: 14px; border: 1px solid var(--teal-line); background: #fff;
}
.iv-figure figcaption {
  margin-top: 10px; font-family: var(--round); font-weight: 700;
  font-size: .92rem; color: var(--teal-deep);
}
@media (max-width: 760px) {
  .iv-herowrap { margin-top: 0; }
  .iv-hero { border-radius: 12px; }
}

/* モニターリボン：モバイルは本文を縦に逃がして重なり回避（dev-reviewer #2） */
@media (max-width: 480px) {
  .monitor-card { padding-top: 44px; }
  .monitor-card .monitor-lead { padding-right: 0; }
}

/* ============================================================
   PHASE 5d（2026-06-27）記事ヒーローをトップページ風（画像＋スクリム＋カード＋アバター）
============================================================ */
.iv-hero-banner {
  position: relative; min-height: clamp(330px, 40vw, 460px);
  display: flex; align-items: center; overflow: hidden; background: var(--alt-bg);
  border-bottom: 1px solid var(--alt-line);
}
.iv-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero); background-size: cover; background-position: center;
}
.iv-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 40%, rgba(255,255,255,.3) 72%, rgba(255,255,255,.05) 100%);
}
.iv-hero-inner { position: relative; z-index: 2; width: 100%; padding: 40px 20px; }
.iv-hero-card { max-width: 600px; }
.iv-hero-banner .iv-back { margin: 0 0 14px; }
.iv-hero-banner .iv-tag { margin-bottom: 0; }
.iv-hero-banner .iv-title { margin: 14px 0 18px; }
.iv-person { display: flex; align-items: center; gap: 12px; }
.iv-avatar {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; box-shadow: 0 2px 10px rgba(20,104,107,.18); background: #fff; flex: 0 0 auto;
}
.iv-person .iv-profile { margin: 0; line-height: 1.4; }
.iv-person .iv-profile b { display: block; color: var(--teal-deep); font-weight: 900; font-family: var(--round); }
.iv-person .iv-profile span { font-size: .86rem; color: var(--sub); }
.iv-body > .iv-lead:first-child {
  font-size: 1.06rem; line-height: 1.95; color: var(--ink); font-weight: 400;
  margin: 4px 0 8px; padding-bottom: 18px; border-bottom: 1px dashed var(--teal-line);
}
@media (max-width: 760px) {
  .iv-hero-banner { min-height: 300px; }
  .iv-hero-scrim {
    background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.8) 55%, rgba(255,255,255,.45) 100%);
  }
}

/* ============================================================
   PHASE 6（2026-06-29 FB）Phase0: 配色ビビッド転換＋ゴシック導入
   方針: メイン=ターコイズ#24aaaf＋白／差し色=赤#e60033・黄#f5d800（ロゴ3色＋白）
   くすみ(De-AI)層の上書き＋局所ハードコードを潰す。本家kodomo-shikisai準拠のパキッと。
============================================================ */

:root {
  /* 差し色を赤・黄のビビッドへ（旧: オレンジ/テラコッタ） */
  --accent:    #e60033;   /* 差し色・赤＝CTA/強調 */
  --accent-dk: #b8002a;   /* 赤の濃（hover/影） */
  --hl:        #f5d800;   /* 差し色・黄＝ハイライト */
  --hl-soft:   #fff0a0;   /* 黄マーカー地 */
  /* ゴシック体（角ゴ・読ませたい所/CTA/カテゴリ用。本文の丸ゴ--roundとは別） */
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

/* --- 局所ハードコード（くすみ橙/テラコッタ）をビビッドへ --- */
.hero-catch .orange { color: #f5a800 !important; }   /* 整える＝ビビッド黄系 */
.hero-catch .red    { color: #e60033 !important; }   /* 赤 */
.hero-catch .l2     { color: #e60033 !important; }
.hero-tag           { background: #e60033 !important; }       /* 伴走型バッジ=赤 */
.approaches .approach:nth-of-type(2) .num-badge { background: #e60033; }
.approaches .approach:nth-of-type(3) .num-badge { background: var(--teal-deep); }
.effects-grid .effect:nth-of-type(2) .n { background:#e60033; }
.effects-grid .effect:nth-of-type(3) .n { background:var(--teal-deep); }
.effects-grid .effect:nth-of-type(5) .n { background:#e60033; }
/* ネガティブループ＝赤、ポジティブ＝ティール（既存）*/
.loop-neg .loop-cap, .loop-neg .loop-out,
.loop-neg .loop-flow li::after, .loop-neg .loop-back { color:#e60033 !important; }
.loop-neg .loop-flow li{ border-color:#f3b7b7 !important; }
.loop-neg .loop-back{ background:#fdeef0 !important; }

/* ボタン影をオレンジ→赤に */
.btn-primary, .btn-accent { box-shadow: 0 6px 16px rgba(230,0,51,.26) !important; }
.btn-primary:hover, .btn-accent:hover { box-shadow: 0 3px 10px rgba(230,0,51,.24) !important; background: var(--accent-dk) !important; }
.corner-ribbon { box-shadow: 0 4px 10px rgba(230,0,51,.35) !important; }

/* 既存の橙マーカー地→黄マーカーへ（why-lead強調・accent-txt等） */
.why-lead strong { background: linear-gradient(transparent 58%, var(--hl-soft) 58%) !important; }
.why-point .accent-txt { color: var(--accent-dk) !important; background: linear-gradient(transparent 60%, var(--hl-soft) 60%) !important; }

/* --- ゴシック体：読ませたい所/カテゴリ/CTA を角ゴ・太字で差別化 --- */
.sec-head h2,
.btn,
.voice-cat .tag,
.voice-card.vc-new .voice-headline,
.case-title, .effect-title, .approach-title, .plan-name,
.problem-lead, .hero-keymsg,
.hero-catch .l1, .hero-catch .l2,
.iv-title, .iv-tag,
.cta-band .lead-sm, .iv-cta p {
  font-family: var(--gothic) !important;
  font-weight: 900;
  letter-spacing: .01em;
}

/* ============================================================
   PHASE 6b（2026-06-29）追加修正：効果番号色・暖色残面・黄コントラスト
============================================================ */
/* 効果番号 .n は .effect-title .n に打ち負けていたので特異度を上げて色分け */
.effects-grid .effect:nth-of-type(2) .effect-title .n { background:#e60033 !important; }
.effects-grid .effect:nth-of-type(3) .effect-title .n { background:var(--teal-deep) !important; }
.effects-grid .effect:nth-of-type(5) .effect-title .n { background:#e60033 !important; }
/* アプローチ透かし数字のくすみ橙→ブランド寄り */
.approaches .approach:nth-of-type(2) .wm { color: rgba(230,0,51,.16) !important; }
.approaches .approach:nth-of-type(3) .wm { color: rgba(20,104,107,.16) !important; }
/* 暖色ピーチ地→淡い赤寄りへ統一 */
.approach-bullets li { background:#fff5f6 !important; }
.btn-line:hover { background:#fff5f6 !important; }
.plan-compare .plan-card.feature .plan-head,
.plan-compare .plan-card.feature .plan-row { background:#fff6f7 !important; }
/* ヒーロー黄のコントラスト確保（白フチ前提でやや濃いアンバーに） */
.hero-catch .orange { color:#d98200 !important; }

/* ============================================================
   PHASE 7（2026-06-29 FB）トップ構成（伴走型丸吹き出し＋ストーリー）／VOICEカード再構成／ロゴ画像化
============================================================ */

/* --- 伴走型：矢印付きの丸い吹き出し＋白抜き --- */
.hero-tag {
  border-radius: 999px !important;
  padding: 9px 24px !important;
  position: relative;
  box-shadow: 0 6px 14px rgba(230,0,51,.3) !important;
}
.hero-tag::after {
  content: ""; position: absolute; left: 30px; bottom: -9px;
  border: 8px solid transparent; border-top-color: #e60033; border-bottom: 0;
}

/* --- ストーリーセクション（ヒーロー直後・中央寄せ・手紙調） --- */
.story { background: #fff; padding: 56px 0 48px; }
.story .container { max-width: 760px; }
.story-text {
  text-align: center; font-family: var(--round); font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.32rem); line-height: 2.3; color: var(--ink); margin: 0;
}

/* --- VOICEカード再構成：左=大アバター＋名前／右=吹き出し見出し --- */
.voice-top { display: flex; align-items: flex-start; gap: 16px; margin: 6px 0 14px; }
.voice-who { flex: 0 0 auto; width: 100px; text-align: center; }
.voice-card.vc-new .voice-who .voice-avatar { width: 92px; height: 92px; border-width: 2px; }
.voice-who .voice-meta { margin: 8px 0 0; line-height: 1.35; }
.voice-who .voice-meta b { display: block; color: var(--teal-deep); font-weight: 900; font-family: var(--gothic); font-size: .92rem; }
.voice-who .voice-meta span { font-size: .76rem; color: var(--sub); }
.voice-bubble {
  flex: 1; position: relative; background: var(--alt-bg);
  border-radius: 14px; padding: 16px 18px;
  font-family: var(--gothic); font-weight: 900; line-height: 1.5; color: var(--ink-strong);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}
.voice-bubble::before {
  content: ""; position: absolute; left: -9px; top: 30px;
  border: 9px solid transparent; border-right-color: var(--alt-bg); border-left: 0;
}
@media (max-width: 760px) {
  .voice-who { width: 78px; }
  .voice-card.vc-new .voice-who .voice-avatar { width: 72px; height: 72px; }
  .voice-bubble { font-size: 1.02rem; }
}

/* --- ヘッダ/メニューの for Business を大きく --- */
.logo-sub { font-size: .95rem !important; }

/* --- 見出し内のロゴ画像（kashikoメソッド表記をロゴに） --- */
.brand-logo-inline { height: 1.15em; width: auto; vertical-align: -0.16em; }
.sec-head h2 .brand-fb { font-family: var(--gothic); font-weight: 800; }

/* ===================== PHASE 8 (最新FB微調整) ===================== */
/* VOICEカード: アバター/イラストをもう少し大きく */
.voice-who { width: 116px !important; }
.voice-card.vc-new .voice-who .voice-avatar { width: 108px !important; height: 108px !important; }
.voice-who .voice-meta b { font-size: .96rem; }
.voice-bubble { font-size: 1.12rem; }
@media (max-width: 760px) {
  .voice-who { width: 92px !important; }
  .voice-card.vc-new .voice-who .voice-avatar { width: 86px !important; height: 86px !important; }
  .voice-bubble { font-size: 1.04rem; }
}
/* ヘッダー: for Business を大きく・存在感UP */
.logo-sub { font-size: 1.16rem !important; font-weight: 800 !important; color: #1a8f93 !important; letter-spacing: .02em; }
@media (max-width: 760px) { .logo-sub { font-size: .98rem !important; } }

/* PHASE 8b: VOICE見出しh3化のマージン打ち消し + コントラスト修正 */
h3.voice-bubble { margin: 0; }
.logo-sub { color: #14686b !important; }   /* AAコントラスト確保(濃ティール) */

/* ============================================================
   PHASE 9（2026-06-29 第2バッチFB）
   ※HTML変更とCSS末尾上書きを併用。!importantは後勝ち確定のため最小限使用。
============================================================ */

/* --- A. 伴走型を「完全な丸＋左下しっぽ・影なし」吹き出しに --- */
.hero-tag {
  border-radius: 50% !important;
  aspect-ratio: 1 / 1;
  width: 5em; min-width: 0 !important;
  display: inline-grid !important; place-items: center;
  padding: 0 !important;
  line-height: 1.15;
  box-shadow: none !important;
  position: relative;
  font-size: 1.0rem;
  z-index: 0;
}
.hero-tag::after {
  content: ""; position: absolute;
  width: 22px; height: 22px;
  left: 10px; bottom: 4px;
  background: #e60033;
  transform: rotate(45deg);
  border-radius: 0 0 4px 0;
  z-index: -1;            /* 円の背面に潜らせて密着したしっぽに見せる */
}

/* --- B. ストーリー文：読ませる工夫（キーフレーズ強調・幅/行間） --- */
.story-text { max-width: 34em; margin-left: auto; margin-right: auto; }
.story-text strong {
  font-family: var(--gothic); font-weight: 900; color: var(--accent);
  background: linear-gradient(transparent 62%, var(--hl-soft) 62%);
  padding: 0 .06em;
}

/* --- C. ボタン影をパキッと（ぼかし0・真下オフセット／tel-boxと統一） --- */
.btn-primary, .btn-accent { box-shadow: 0 5px 0 var(--accent-dk) !important; }
.btn-primary:hover, .btn-accent:hover { box-shadow: 0 2px 0 var(--accent-dk) !important; transform: translateY(2px); }
.btn-line { box-shadow: 0 4px 0 rgba(0,0,0,.14) !important; }
.btn-line:hover { box-shadow: 0 2px 0 rgba(0,0,0,.14) !important; transform: translateY(2px); }
.header-cta .btn-primary { box-shadow: 0 3px 0 var(--accent-dk) !important; }
.cta-actions .btn { box-shadow: 0 5px 0 var(--accent-dk) !important; }

/* --- D. 最初のCTA帯：白文字の視認性（背景を濃ティールに） --- */
#cta-top { background: var(--teal-deep) !important; }

/* --- N. メニュー以降の解説文を左揃えに（見出し中央寄せは維持） --- */
.menu-lead, .menu-note, .monitor-lead, .contact-lead { text-align: left !important; }

/* --- G. 効果：キーフレーズ着色（アイコン真上は既存層で対応済） --- */
.effect-key { color: var(--accent); font-weight: 800; font-family: var(--gothic); }

/* --- E. ループ：テキスト拡大・番号付与・戻りループ明示・追記文 --- */
.loop-cap { font-size: 1.2rem !important; }
.loop-flow { counter-reset: loopstep; }
.loop-flow li {
  font-size: 1.12rem !important; font-weight: 800 !important;
  padding: 15px 16px 15px 40px !important; text-align: left !important;
}
.loop-flow li::before {
  counter-increment: loopstep; content: counter(loopstep);
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .82rem; font-weight: 900; color: #fff; font-family: var(--round);
}
.loop-neg .loop-flow li::before { background: #bf5747; }
.loop-pos .loop-flow li::before { background: var(--teal); }
.loop-back {
  font-size: 1.04rem !important; font-weight: 900 !important;
  padding: 12px !important; border: 2px solid currentColor; border-radius: 10px !important;
}
.loop-out { font-size: 1.06rem !important; }
.why-note {
  margin: 16px 0 0; padding: 16px 18px; background: var(--teal-soft);
  border-radius: 12px; font-family: var(--round); line-height: 1.85;
}
.why-note strong { color: var(--teal-deep); font-weight: 900; }

/* --- G(続き). 効果アイコンを文章の真上に（PCも縦積み・FB9） --- */
.effects-grid .effect { grid-template-columns: 1fr !important; }
.effects-grid .effect-icon { grid-row: auto !important; align-self: start; }

/* --- F/H. 3アプローチ：アイコン大・スマホ3横並び・要点ゴシック大・挿絵大 --- */
.approach-icons img { width: 96px !important; height: 96px !important; }
.approach-icons span { font-size: 1.04rem; font-family: var(--gothic); font-weight: 800; }
@media (max-width: 760px) {
  .approach-icons { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 10px !important; }
  .approach-icons li { min-width: 0 !important; padding: 12px 6px !important; }
  .approach-icons img { width: 62px !important; height: 62px !important; }
  .approach-icons span { font-size: .8rem; }
}
/* 3要点（approach-summary）を見やすく大きめゴシックに（本日FB主眼） */
.approach-summary { font-family: var(--gothic) !important; font-size: 1.16rem !important; font-weight: 800 !important; line-height: 1.72 !important; }
/* 既存挿絵(talk.png)を大きく */
.approach .bubble-row img { width: 240px !important; height: auto !important; max-width: 42% !important; }
@media (max-width: 760px) { .approach .bubble-row img { max-width: 100% !important; width: 100% !important; } }

/* F/H 補正: bubble-row のグリッド列を広げて挿絵を実際に大きく */
.approach .bubble-row { grid-template-columns: 240px 1fr !important; align-items: center; }
.approach .bubble-row img { width: 100% !important; max-width: 240px !important; height: auto !important; }
@media (max-width: 760px) {
  .approach .bubble-row { grid-template-columns: 1fr !important; }
  .approach .bubble-row img { max-width: 320px !important; margin: 0 auto; }
}

/* --- I. cases：タグアイコン拡大・スマホで図を大きく --- */
.tag-icon { width: 52px !important; height: 52px !important; }
@media (max-width: 760px) {
  .case-figure { width: 100% !important; }
  .case-tag { gap: 8px; }
}

/* --- J. 活用事例（法人成果）セクション --- */
.usecase-lead { text-align: center; max-width: 780px; margin: 0 auto 30px; font-family: var(--round); font-size: 1.05rem; line-height: 1.85; }
.usecase-lead strong { color: var(--teal-deep); font-weight: 900; }
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .usecase-grid { grid-template-columns: 1fr; } }
.usecase-card { background: #fff; border: 1px solid var(--teal-line); border-top: 5px solid var(--accent); border-radius: 16px; padding: 26px; box-shadow: 0 6px 20px rgba(20,104,107,.06); }
.usecase-cat { display: inline-block; background: var(--teal); color: #fff; font-family: var(--gothic); font-weight: 800; font-size: .82rem; padding: 4px 14px; border-radius: 999px; margin: 0 0 14px; }
.usecase-title { font-family: var(--round); font-size: 1.18rem; font-weight: 800; line-height: 1.6; color: var(--ink); margin: 0 0 14px; }
.usecase-hl { color: var(--accent); }
.usecase-num { display: flex; align-items: baseline; gap: 10px; margin: 0 0 14px; }
.usecase-num b { font-family: var(--round); font-size: 2.7rem; font-weight: 900; color: var(--accent); line-height: 1; }
.usecase-num b small { font-size: 1rem; margin-left: 2px; }
.usecase-num span { font-size: .82rem; color: var(--sub); }
.usecase-text { line-height: 1.85; margin: 0 0 16px; }
.usecase-who { font-family: var(--round); font-weight: 800; color: var(--teal-deep); font-size: .92rem; margin: 0; }
.usecase-note { font-size: .78rem; color: #9aa6a7; margin: 18px 0 0; text-align: left; }

/* --- F/H 挿絵(新規 approach 1/3)の表示 --- */
.approach-illust { margin: 18px auto; text-align: center; }
.approach-illust img { width: 100%; max-width: 480px; height: auto; border-radius: 14px; background: #fff; display: block; margin: 0 auto; }

/* ============================================================
   PHASE 9（続き）— インタビュー詳細ページ K/L
============================================================ */
/* K-1. 戻るを「押せると分かる」ボタンに */
.iv-back {
  display: inline-block; background: #fff; border: 2px solid var(--teal);
  color: var(--teal-deep) !important; border-radius: 999px;
  padding: 8px 18px !important; box-shadow: 0 3px 0 var(--teal-deep);
  font-size: .92rem !important;
}
.iv-back:hover { transform: translateY(2px); box-shadow: 0 1px 0 var(--teal-deep); }

/* K-2. 下部ページャー（前/一覧/次・循環） */
.iv-pager { display: flex; gap: 12px; justify-content: space-between; align-items: stretch; flex-wrap: wrap; margin: 8px auto 36px; }
.iv-pager-btn {
  flex: 1 1 0; min-width: 150px; text-align: center; text-decoration: none;
  font-family: var(--gothic); font-weight: 800; font-size: .98rem;
  padding: 16px 14px; border-radius: 14px; transition: transform .15s ease, box-shadow .15s ease;
}
.iv-pager-btn.prev, .iv-pager-btn.list { background: #fff; border: 2px solid var(--teal-line); color: var(--teal-deep); box-shadow: 0 4px 0 rgba(20,104,107,.14); }
.iv-pager-btn.next { background: var(--accent); color: #fff; box-shadow: 0 4px 0 var(--accent-dk); }
.iv-pager-btn:hover { transform: translateY(2px); box-shadow: 0 1px 0 rgba(0,0,0,.18); }
@media (max-width: 680px) {
  .iv-pager { flex-direction: column; }
  .iv-pager-btn { width: 100%; }

}

/* K-3. 記事内イラスト・アバターを大きく */
.iv-figure img { max-width: 760px !important; }
.iv-avatar { width: 76px !important; height: 76px !important; }

/* L. 記事カバーをスマホで全体表示（画像を上にフル表示→カードは下） */
@media (max-width: 760px) {
  .iv-hero-banner { display: block !important; min-height: 0 !important; }
  .iv-hero-bg {
    position: relative !important; inset: auto !important;
    width: 100%; aspect-ratio: 16 / 9;
    background-size: contain !important; background-repeat: no-repeat;
    background-position: center top !important; background-color: var(--alt-bg);
  }
  .iv-hero-scrim { display: none !important; }
  .iv-hero-inner { position: relative !important; padding: 18px 16px 24px !important; }
  .iv-hero-card { max-width: 100%; }
}

/* --- PHASE 9 仕上げ（レビュー実装後レビュー反映） --- */
.logo, .logo:hover { text-decoration: none; }                 /* aタグ化したロゴの下線防止 */
.usecase-cat { background: var(--teal-deep) !important; }      /* 白文字コントラスト確保 */
.usecase-note { color: #6e797a; }                             /* 注記の視認性UP */

/* ============================================================
   PHASE 10（2026-06-29 第3バッチFB）
============================================================ */

/* --- 1. ループ ⓪環境ステップ（元資料: 環境が成果を左右する） --- */
.loop-env {
  position: relative; margin: 0 0 34px; padding: 14px 16px 14px 44px;
  border-radius: 12px; font-family: var(--gothic); font-weight: 800; font-size: 1.06rem;
  text-align: left; border: 2px dashed;
}
.loop-env .loop-env-n {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: .82rem; font-weight: 900; font-family: var(--round);
}
.loop-env .loop-env-label {
  display: inline-block; font-size: .72rem; font-weight: 900; color: #fff;
  border-radius: 6px; padding: 2px 8px; margin-right: 8px; vertical-align: 1px;
}
.loop-env b { font-weight: 900; }
.loop-env::after {
  content: "↓"; position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-size: 1.4rem; font-weight: 900; line-height: 1;
}
.loop-neg .loop-env { background: #fbf1ef; border-color: #e4bdb5; color: #a8443a; }
.loop-neg .loop-env .loop-env-n, .loop-neg .loop-env .loop-env-label { background: #bf5747; }
.loop-neg .loop-env::after { color: #bf5747; }
.loop-pos .loop-env { background: #eaf6f5; border-color: #bbdedb; color: var(--teal-deep); }
.loop-pos .loop-env .loop-env-n, .loop-pos .loop-env .loop-env-label { background: var(--teal); }
.loop-pos .loop-env::after { color: var(--teal); }

/* --- 2. 「職場での関わり方が…」見出しをより目立たせる --- */
.why-subtitle {
  font-family: var(--gothic) !important; font-weight: 900 !important;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem) !important; color: var(--ink-strong) !important;
  line-height: 1.5 !important; margin: 0 0 30px !important;
}
.why-subtitle .wm-key { background: linear-gradient(transparent 58%, var(--hl) 58%); padding: 0 .08em; }
.why-subtitle .wm-accent { color: var(--accent); }

/* --- 3. 効果番号バッジを全部 赤背景・白文字 に統一 --- */
.effects-grid .effect .effect-title .n,
.effects-grid .effect:nth-of-type(1) .effect-title .n,
.effects-grid .effect:nth-of-type(2) .effect-title .n,
.effects-grid .effect:nth-of-type(3) .effect-title .n,
.effects-grid .effect:nth-of-type(4) .effect-title .n,
.effects-grid .effect:nth-of-type(5) .effect-title .n {
  background: var(--accent) !important; color: #fff !important;
}

/* --- 4. モニター「募集中」たすき：／＼削除＋くっきり影 --- */
.corner-ribbon::before, .corner-ribbon::after { content: "" !important; }
.corner-ribbon { box-shadow: 2px 2px 0 rgba(0,0,0,.22) !important; }

/* --- 5. 伴走型バッジ：ゴシック・影なし・三角しっぽを右に傾けて左下へ --- */
.hero-tag {
  font-family: var(--gothic) !important; font-weight: 900 !important;
  box-shadow: none !important; text-shadow: none !important;
  letter-spacing: .02em;
}
.hero-tag::after {
  content: ""; position: absolute;
  left: 12px; bottom: -10px;
  width: 0; height: 0;
  background: none !important; border-radius: 0 !important;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 17px solid #e60033;
  transform: rotate(24deg); transform-origin: top center;
  z-index: -1;
}

/* PHASE 10 仕上げ（レビュー最終レビュー反映）: ポジループ番号/ラベルのコントラスト */
.loop-pos .loop-env .loop-env-n,
.loop-pos .loop-env .loop-env-label,
.loop-pos .loop-flow li::before { background: var(--teal-deep) !important; }

/* ============================================================
   PHASE 11（2026-06-29 ループ仕上げ）
============================================================ */
/* ⓪/環境ラベル削除後の loop-env 調整（中央寄せ・パディング戻し） */
.loop-env { padding: 14px 18px !important; text-align: center; }

/* コンテナ右上の 良否マーク（薄い ✕ / ○） */
.loop-fig { position: relative; }
.loop-mark {
  position: absolute; top: 12px; right: 16px; z-index: 0;
  font-size: 3.2rem; font-weight: 900; line-height: 1; pointer-events: none;
}
.loop-neg .loop-mark { color: #bf5747; opacity: .16; }
.loop-pos .loop-mark { color: var(--teal-deep); opacity: .16; }

/* 各ステップ右側のトレンド矢印（下降=赤 / 上昇=ティール） */
.loop-flow li { padding-right: 46px !important; }
.trend {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 1.7rem; font-weight: 900; line-height: 1; z-index: 2;
}
.trend.down { color: #bf5747; }
.trend.up { color: var(--teal-deep); }

/* ⑤の良否マーク（薄い ✕ / ○・背面ウォーターマーク） */
.step-judge {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 2.6rem; font-weight: 900; line-height: 1; opacity: .15; z-index: 0; pointer-events: none;
}
.step-judge.neg { color: #bf5747; }
.step-judge.pos { color: var(--teal-deep); }
/* ポジ⑤は矢印と○が重ならないよう矢印を少し左へ */
.loop-pos .loop-flow li:last-child .trend { right: 40px; }

/* ネガ loop-back の悪循環強調 */
.loop-neg .loop-back b { color: #a8302a; font-weight: 900; }

/* PHASE 11b: pos⑤の矢印を○の中に収める＋モバイル余白/マーク調整 */
.loop-pos .loop-flow li:last-child .trend { right: 13px; font-size: 1.35rem; z-index: 2; }
.loop-pos .loop-flow li:last-child .step-judge { right: 6px; font-size: 2.5rem; opacity: .2; }
@media (max-width: 760px) {
  .loop-flow li { font-size: 1.04rem !important; padding-right: 40px !important; }
  .trend { font-size: 1.4rem; right: 8px; }
  .step-judge { font-size: 2.1rem; right: 6px; }
  .loop-mark { font-size: 2.4rem; top: 10px; right: 12px; }
}

/* ============================================================
   PHASE 12（2026-07-01）
============================================================ */
/* ヘッダー「資料請求」の影を消してフラットに（文字を見やすく） */
.header-cta .btn-line { box-shadow: none !important; }

/* ============================================================
   PHASE 12b（2026-07-01 伴走型楕円・⑤マーク・資料請求）
============================================================ */
/* 伴走型: 真円→楕円、しっぽを右下に大きく密着 */
.hero-tag {
  aspect-ratio: auto !important;
  width: auto !important;
  display: inline-block !important;
  padding: 13px 32px !important;
  border-radius: 50% !important;
  line-height: 1.12 !important;
  text-align: center;
}
.hero-tag::after {
  content: "" !important; position: absolute !important;
  left: auto !important; right: 30px !important; bottom: 0 !important;
  width: 0 !important; height: 0 !important;
  background: none !important; border-radius: 0 !important;
  border-left: 12px solid transparent !important;
  border-right: 12px solid transparent !important;
  border-top: 22px solid #e60033 !important;
  transform: rotate(-20deg) !important; transform-origin: top center !important;
  z-index: -1 !important;
}

/* ⑤の判定マーク（✕/○）を太く・大きく・視認性UP */
.step-judge { font-size: 3rem !important; font-weight: 900 !important; opacity: .28 !important; }

/* ヘッダー「資料請求」文字の滲み対策（影・グロー完全除去・くっきり） */
.header-cta .btn, .header-cta .btn::after { text-shadow: none !important; filter: none !important; }
.header-cta .btn-line { color: #c8102e !important; -webkit-font-smoothing: antialiased; }

/* PHASE 12c: 伴走型しっぽを楕円の右下からしっかり出す */
.hero-tag::after {
  right: 26px !important; bottom: -11px !important; left: auto !important;
  border-left: 12px solid transparent !important;
  border-right: 12px solid transparent !important;
  border-top: 22px solid #e60033 !important;
  transform: rotate(-22deg) !important; transform-origin: center top !important;
  z-index: -1 !important;
}

/* PHASE 12d: ⑤の✕/○をより太く（text-strokeで線を太らせる） */
.step-judge { -webkit-text-stroke: 1.6px currentColor; opacity: .32 !important; }

/* ============================================================
   PHASE 13（2026-07-02 Fable/レビュー Round1）
   コントラスト一括 / ネガループ色統一 / くすみ残党一掃 / グレイン除去
============================================================ */
:root { --red-neg: #d42a2a; }

/* --- H-1 コントラスト: 白文字が載る teal 面 → teal-deep(6.6:1) --- */
.hero-keymsg, .cta-band, .voice-cat .tag, .plan-no, .step .st,
.form-wrap, .iv-tag, .iv-cta, .usecase-cat { background: var(--teal-deep) !important; }
.hero-keymsg { box-shadow: 0 8px 0 #0c4447 !important; }

/* --- H-6 ネガティブループ: くすみテラコッタ → 明快な警告レッド --- */
.loop-neg .loop-cap, .loop-neg .loop-out, .loop-neg .loop-flow li::after,
.loop-neg .loop-back, .loop-neg .loop-env::after, .loop-neg .loop-mark,
.trend.down, .step-judge.neg { color: var(--red-neg) !important; }
.loop-neg .loop-flow li::before, .loop-neg .loop-env .loop-env-n,
.loop-neg .loop-env .loop-env-label { background: var(--red-neg) !important; }
.loop-neg .loop-back { background: #fdeceb !important; }
.loop-neg .loop-flow li { border-color: #f0c4c0 !important; }

/* --- H-6 ヒーロー紺・ピーチ地・SPグロー・グレイン一掃 --- */
.hero-catch .navy { color: #223b42 !important; }
.bubble.q { background: #fff5f6 !important; border-color: #f6c9cf !important; }
.monitor-cond { background: #fff5f6 !important; }
.plan-card.feature { box-shadow: 0 10px 24px rgba(20,104,107,.14) !important; }
body::after { display: none !important; }

/* --- レビュー High 7項目対応 (2026-07-02 p14) --- */
/* H-1 ヒーローサブコピー+CTA */
.hero-card .hero-sub { font-size: .98rem; font-weight: 700; line-height: 1.85; margin: 0 0 20px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { box-shadow: 0 5px 0 rgba(0,0,0,.15); }
.header-cta .btn-accent { box-shadow: 0 3px 0 var(--accent-dk); }
/* H-4 橋渡しコピー */
.problem-bridge { text-align: center; font-family: var(--round); font-weight: 700; font-size: 1.1rem; margin: 26px 0 30px; }
.problem-bridge strong { color: var(--teal-deep); background: linear-gradient(transparent 62%, #ffe6b0 62%); padding: 0 .1em; }
/* H-3 電話を補助扱いに */
.tel-sub { margin: 22px 0 0; padding: 10px 26px; box-shadow: 0 6px 0 rgba(0,0,0,.12); }
.tel-sub .tel-num { font-size: 1.6rem; }
/* H-6 プラン選び方ガイド */
.plan-guide { max-width: 620px; margin: 0 auto 34px; background: var(--teal-tint); border: 2px solid var(--teal-line); border-radius: 16px; padding: 22px 28px; }
.plan-guide-title { margin: 0 0 10px; font-family: var(--round); font-weight: 800; color: var(--teal-deep); font-size: 1.05rem; text-align: center; }
.plan-guide ul { margin: 0; padding: 0; list-style: none; }
.plan-guide li { padding: 6px 0; font-size: .95rem; border-bottom: 1px dashed var(--teal-line); }
.plan-guide li:last-child { border-bottom: none; }
.plan-guide li b { color: var(--teal-deep); }
/* H-7 フォーム前の安心3点 */
.form-assure { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; list-style: none; margin: 0 0 22px; padding: 0; }
.form-assure li { background: #fff; color: var(--teal-deep); border-radius: 999px; padding: 7px 18px; font-size: .86rem; font-weight: 700; box-shadow: 0 3px 0 rgba(0,0,0,.12); }
@media (max-width: 640px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .tel-sub .tel-num { font-size: 1.45rem; }
}

/* --- ループ戻り矢印: ⑤の右横から出て右側を回り①へ戻る (2026-07-02 p15) --- */
.loop-flow { position: relative; }
.loop-flow::after {
  content: "";
  position: absolute;
  top: 26px;              /* ①カードの中心付近 */
  bottom: 42px;           /* ⑤カードの中心付近 */
  right: -16px;
  width: 24px;
  border: 4px solid;
  border-left: none;
  border-radius: 0 48px 48px 0;
  opacity: .85;
  pointer-events: none;
}
.loop-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 4px;
  transform: translateY(-50%);
  width: 0; height: 0;
  border: 8px solid transparent;
  border-left: none;
  border-right-width: 13px;
  border-right-style: solid;
  z-index: 2;
  pointer-events: none;
}
.loop-neg .loop-flow::after  { border-color: var(--red-neg); }
.loop-neg .loop-flow::before { border-right-color: var(--red-neg); }
.loop-pos .loop-flow::after  { border-color: var(--teal); }
.loop-pos .loop-flow::before { border-right-color: var(--teal); }
@media (max-width: 640px) {
  .loop-flow::after { right: -12px; width: 18px; }
}

/* --- ループ調整: カード右端を引っ込め矢印を独立/キーワードのみ色付き (2026-07-02 p16) --- */
/* ①〜⑤カードを左へ: 矢印スペース確保・⑤の✕/○と矢印の重なり解消
   ※連動値: 弧width 44px - はみ出し14px = 30px がカード右マージン34px の内側に届く設計。
   li margin-right を変えたら ::after の right/width と ::before の right も合わせて調整 */
.loops .loop-flow li { margin-right: 34px !important; }
.loops .loop-flow::after { right: -14px; width: 44px; }
.loops .loop-flow::before { right: 28px; }
/* 環境ラベル: ベース文字は黒、キーワード(b)だけ色 */
.loop-neg .loop-env, .loop-pos .loop-env { color: var(--ink) !important; }
.loop-neg .loop-env b { color: var(--red-neg) !important; }
.loop-pos .loop-env b { color: var(--teal-deep) !important; }
/* 戻りテキスト: ベース文字は黒、悪循環/好循環だけ色。枠色は維持 */
.loop-neg .loop-back, .loop-pos .loop-back { color: var(--ink) !important; }
.loop-neg .loop-back { border-color: var(--red-neg) !important; }
.loop-pos .loop-back { border-color: var(--teal-deep) !important; }
.loop-neg .loop-back b { color: var(--red-neg) !important; font-weight: 900; }
.loop-pos .loop-back b { color: var(--teal-deep) !important; font-weight: 900; }
@media (max-width: 640px) {
  .loops .loop-flow li { margin-right: 26px !important; }
  .loops .loop-flow::after { right: -12px; width: 36px; }
  .loops .loop-flow::before { right: 22px; }
}

/* --- why 3本柱の文字を大きく (2026-07-02 p18  --- */
.why-pillars li {
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  padding: 16px 18px 16px 50px;
  line-height: 1.8;
}
.why-pillars li::before { top: 22px; left: 20px; width: 14px; height: 14px; }
.why-pillars li b { font-size: 1.06em; }
@media (max-width: 640px) {
  .why-pillars li { font-size: 1.08rem !important; padding: 14px 16px 14px 46px; }
  .why-pillars li::before { top: 20px; }
}

/* --- ループ図: 環境ラベル下の↓削除・⑤の✕/○非表示 / 3本柱さらに拡大 (2026-07-02 p19  --- */
/* 環境ラベル(職場環境)の下の↓矢印を削除 */
.loop-env::after { display: none !important; }
/* ⑤の「さらに成果が出にくくなる」✕・「成果が出やすくなる」○ を非表示（HTMLは温存・復活可） */
.step-judge { display: none !important; }
/* 3本柱（色/言葉がけ/学習）をさらに大きく */
.why-pillars li {
  font-size: 1.38rem !important;
  padding: 18px 20px 18px 56px;
  line-height: 1.75;
}
.why-pillars li::before { top: 26px; left: 22px; width: 16px; height: 16px; }
@media (max-width: 640px) {
  .why-pillars li { font-size: 1.16rem !important; padding: 15px 16px 15px 48px; }
  .why-pillars li::before { top: 22px; left: 18px; width: 14px; height: 14px; }
}

/* =========================================================
   FEEDBACK LAYER — 2026-07-14 FB反映
   (既存レイヤー方式を踏襲し、末尾追記オーバーライドで対応)
========================================================= */

/* ---------- 0. 色番号を本体サイト(kodomo-shikisai.com)実測値へ統一 ---------- */
:root {
  --teal:      #00b7b8; /* 旧 #24aaaf → 本体サイト実測のターコイズブルーへ */
  --teal-dark: #009a9b;
  --teal-deep: #0a6f70;
  --mark-yellow: #ffef00; /* 本体サイトのハイライト実測値に近い黄 */
}

/* ---------- 1. 黄色マーカーの太さ調整 + 汎用マーカークラス ---------- */
.story-text strong,
.hero-sub-story strong {
  background: linear-gradient(transparent 42%, var(--mark-yellow) 42%, var(--mark-yellow) 96%, transparent 96%);
  padding: 0 .05em;
}
.mark-teal { color: var(--teal-deep); font-weight: 900;
  background: linear-gradient(transparent 42%, var(--mark-yellow) 42%, var(--mark-yellow) 96%, transparent 96%); }
.mark-red { color: var(--red); font-weight: 900;
  background: linear-gradient(transparent 42%, var(--mark-yellow) 42%, var(--mark-yellow) 96%, transparent 96%); }
.nowrap { white-space: nowrap; }

/* ---------- 1b. CTAバンドの水彩シミ質感を除去（FB反映） ---------- */
.cta-band::before { display: none !important; }

/* ---------- 2. お悩みバンド：ヒーロー前配置 + 橋渡しコピー強調 ---------- */
.problem-bridge-strong {
  font-family: var(--round); font-weight: 900; font-size: 1.35rem; color: var(--accent-dk);
  text-align: center; margin: 8px 0 0;
}

/* ---------- 3. hero-tag（伴走型）拡大 ---------- */
.hero-tag {
  font-size: 1.15rem !important; padding: 8px 22px !important; display: inline-block;
}

/* ---------- 4. 改行制御（見出し・リード文の不自然な文字割れを軽減） ---------- */
.hero-catch, .problem-lead, .hero-problems li, .story-text, .hero-sub-story,
.problem-bridge-strong, .why-point .head {
  word-break: keep-all; overflow-wrap: break-word;
}

/* ---------- 5. 旧hero-sub/hero-ctaを吸収したストーリー文言のスタイル ---------- */
.hero-sub-story {
  font-size: 1.05rem; line-height: 1.9; color: var(--ink);
  background: rgba(255,255,255,.72); border-radius: 16px; padding: 18px 22px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
@media (max-width: 640px) {
  .hero-sub-story { font-size: .96rem; padding: 14px 16px; }
}

/* ---------- 6. 実践ワーク写真バンド（旧hero-keymsgを吸収） ---------- */
.practice-band { padding: 0 !important; background: var(--teal-deep); }
.practice-photo {
  position: relative; min-height: 320px;
  background: linear-gradient(120deg, #0a6f70 0%, #00b7b8 45%, #f5d800 75%, #df6a43 100%);
  display: flex; align-items: center; justify-content: center;
}
.practice-overlay {
  background: rgba(255,255,255,.92); border-radius: 20px; padding: 26px 34px; text-align: center;
  box-shadow: 0 20px 44px rgba(0,0,0,.18); max-width: 620px; margin: 24px;
}
.practice-eyebrow { font-family: var(--round); font-weight: 800; color: var(--teal-deep); font-size: 1.05rem; margin: 0 0 8px; }
.practice-brand { font-family: var(--round); font-weight: 900; font-size: 1.5rem; margin: 0; color: var(--ink); }
.practice-brand span { font-size: .6em; color: var(--sub); font-weight: 700; }
.practice-band .container { padding-top: 26px; padding-bottom: 30px; }
.practice-lead { text-align: center; font-size: 1.06rem; line-height: 1.9; margin: 0; color: #fff; }
.practice-lead .mark-teal { color: var(--teal-deep); }
@media (max-width: 640px) {
  .practice-photo { min-height: 220px; }
  .practice-overlay { padding: 18px 20px; margin: 16px; }
  .practice-brand { font-size: 1.2rem; }
}

/* ---------- 7. 実施風景プレースホルダー（写真は差し替え予定） ---------- */
.placeholder-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 0 14px;
}
.placeholder-grid-sm { grid-template-columns: repeat(3, 1fr); margin: 30px 0; }
.placeholder-card {
  aspect-ratio: 4/3; border-radius: 14px; background: var(--teal-soft);
  border: 1.5px dashed var(--teal-line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.placeholder-card .ph-icon { color: var(--teal-dark); opacity: .55; }
.placeholder-card .ph-label { font-family: var(--round); font-weight: 800; font-size: .82rem; color: var(--teal-dark); }
.placeholder-note { text-align: center; font-size: .78rem; color: var(--sub); margin: 8px 0 0; }
@media (max-width: 640px) {
  .placeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .placeholder-grid-sm { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ---------- 8. why-point をループ図の上に配置（強調色は本文側でmarkクラス指定済み） ---------- */
.why-point-top { margin: 30px 0; }
.why-note-samesize { font-size: 1rem !important; line-height: 1.85; }

/* ---------- 9. ループ図：ネガティブループ単独・1カラム中央寄せ ---------- */
.loops-single { display: block; max-width: 560px; margin: 0 auto; }

/* ---------- 10. アイコン拡大（tag-icon / approach系） ---------- */
.tag-icon { width: 72px !important; height: 72px !important; }
.approach-title-icon { width: 72px !important; height: 72px !important; }
.approach-icons img { width: 120px !important; height: 120px !important; }
@media (max-width: 760px) {
  .approach-icons img { width: 62px !important; height: 62px !important; } /* モバイルは既存値を維持（3つ横並びのまま） */
}

/* ---------- 11. 効果アイコン：カード内センター合わせ ---------- */
.effects-grid .effect-icon {
  justify-self: center !important;
  margin: 0 auto 6px auto !important;
}

/* ---------- 12. VOICEモバイル：リード文を非表示（カテゴリ・アバター・見出し・リンクのみ） ---------- */
@media (max-width: 760px) {
  .voice-card.vc-new .voice-lead { display: none; }
}

/* ---------- 13. ヒーロー背景：モバイルでの人物イラスト見切れ調整 ---------- */
@media (max-width: 760px) {
  .hero-bg { background-position: 78% center; background-size: cover; }
}

/* --- CASE1/2イラスト: スマホは縦積み表示（プロFB§B7・2026-07-23 p23再適用） --- */
.case-figure-sp { display: none; }
@media (max-width: 640px) {
  .case-figure.case-figure-pc { display: none; }
  .case-figure-sp { display: grid; gap: 10px; margin: 0 0 16px; }
  .case-figure-sp img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 12px; display: block; background: #fafdfd; }
}

/* --- 濃teal帯上のマーカー強調: 半掛けマーカーだと上半分が背景に同化して読めないため全面塗りチップ化 (2026-07-23 p23) --- */
.practice-lead .mark-teal {
  color: var(--ink);
  background: var(--mark-yellow);
  padding: 2px 8px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* --- 2026-07-23  FB反映 p24: 本家色寄せ・アイコン1.5倍 --- */
/* T6: ブランドtealを本家CTAボタン実測色 #5eb6bb へ（添付スクショ実測） */
:root { --teal: #5eb6bb; }
/* 濃teal帯を明るい本家tealへ。文字は白→濃色でコントラスト確保（#5eb6bb×白はAA不適合のため） */
.practice-band { background: #5eb6bb !important; }
.practice-lead { color: #14434a !important; }
.practice-lead .mark-teal { background: #fff; color: var(--teal-deep); }
.cta-band { background: #5eb6bb !important; }
.cta-band .lead-sm, .cta-band .note-sm { color: #14434a !important; }
/* 方眼紙背景: 白セクションに本家風の薄tealグリッド */
.voices, .cases, .effects, .monitor {
  background-image:
    repeating-linear-gradient(0deg, rgba(94,182,187,.18) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(94,182,187,.18) 0 1px, transparent 1px 26px);
}
/* T4: ロゴ風アイコンを1.5倍（「1.5倍で様子見たい」） */
.tag-icon { width: 108px !important; height: 108px !important; }
.approach-title-icon { width: 108px !important; height: 108px !important; }
.approach-icons img { width: 180px !important; height: 180px !important; }
@media (max-width: 760px) {
  .tag-icon { width: 84px !important; height: 84px !important; }
  .approach-title-icon { width: 84px !important; height: 84px !important; }
  .approach-icons img { width: 93px !important; height: 93px !important; }
}
/* T5: 意味フレーズ単位の折り返し制御（span.nb方式・「か？」等の孤立改行防止） */
.nb { display: inline-block; max-width: 100%; }
/* キーメッセージ帯: グラデ→色カード扇写真背景（2026-07-23 支給 4.jpeg） */
.practice-photo {
  background: url(./images/photo/keymsg-bg.jpg) center 40% / cover no-repeat !important;
  min-height: 380px;
}
@media (max-width: 640px) { .practice-photo { min-height: 260px; } }

/* --- ループ図3パターン切替UI (2026-07-23 p24・トンボ制作モックより統合) --- */
/* =========================================================
   ネガティブループ図 3パターン切替モック（自己完結・外部依存なし）
   統合時: パターン1のCSS（.loop-fig系の複製）は本番styles.cssにあるため削除し、
   .loop-patterns / .loop-panel / .cycle-* / .stair-* / .pfig-* / .loop-chips のみ移植する
========================================================= */

/* ============ 切替UI（新名前空間 .loop-patterns / .loop-chips / .loop-panel） ============ */
.loop-patterns { max-width: 560px; margin: 0 auto; }
.loop-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 0 0 20px;
}
.loop-chips button {
  appearance: none; cursor: pointer;
  font-family: var(--round); font-weight: 800; font-size: .88rem; line-height: 1.3;
  color: var(--teal-deep); background: #fff;
  border: 2px solid var(--teal); border-radius: 999px;
  padding: 7px 16px;
  transition: background-color .12s ease, color .12s ease;
}
.loop-chips button:hover { background: #e9f6f6; }
.loop-chips button:focus-visible { outline: 3px solid var(--teal-deep); outline-offset: 2px; }
.loop-chips button[aria-pressed="true"] {
  background: var(--teal-deep); border-color: var(--teal-deep); color: #fff;
}
@media (max-width: 420px) {
  .loop-chips button { font-size: .8rem; padding: 6px 12px; }
}
@media print { .loop-chips { display: none; } }
/* パネル切替（既定=パターン1。JS無効時もパターン1が表示される） */
.loop-panel { display: none; }
/* (旧P1〜3手組みパネルは2026-07-23に削除済み) */

/* ============ パターン2/3 共通カード（新名前空間 .pfig-*） ============ */
.pfig {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 22px 22px;
  box-shadow: 0 10px 24px rgba(20,104,107,.08);
}
.pfig-mark {
  position: absolute; top: 12px; right: 16px; z-index: 0;
  font-size: 3.2rem; font-weight: 900; line-height: 1;
  color: var(--red-neg); opacity: .16; pointer-events: none;
}
.pfig-cap {
  font-family: var(--round); font-weight: 900; text-align: center;
  margin: 0 0 20px; font-size: 1.2rem; color: var(--red-neg);
}
.pfig-env {
  margin: 0 0 26px; padding: 12px 16px;
  border-radius: 12px; border: 2px dashed #e4bdb5; background: #fbf1ef;
  color: var(--ink); text-align: center;
  font-weight: 800; font-size: 1rem; line-height: 1.7;
}
.pfig-env b { color: var(--red-neg); font-weight: 900; }
.pfig-back {
  text-align: center; font-weight: 900; font-family: var(--round);
  margin: 0 0 10px; padding: 12px;
  border: 2px solid var(--red-neg); border-radius: 10px; background: #fdeceb;
  color: var(--ink); font-size: 1rem; line-height: 1.7;
}
.pfig-back b { color: var(--red-neg); font-weight: 900; }
.pfig-out {
  text-align: center; font-family: var(--round); font-weight: 800;
  margin: 8px 0 0; font-size: 1.02rem; color: var(--red-neg);
}
@media (max-width: 760px) {
  .pfig { padding: 22px 14px 18px; }
  .pfig-mark { font-size: 2.4rem; top: 10px; right: 12px; }
  .pfig-cap { font-size: 1.1rem; }
  .pfig-env { font-size: .92rem; }
}

/* ============ パターン2: 五角形サイクル図（.cycle-*） ============ */
.cycle-stage {
  position: relative; width: 100%; max-width: 440px;
  margin: 0 auto 10px; aspect-ratio: 1 / 1.02;
}
.cycle-stage svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.cycle-nodes { list-style: none; margin: 0; padding: 0; counter-reset: cyc; }
.cycle-node {
  position: absolute; transform: translate(-50%, -50%);
  background: #fff; border: 2px solid #f0c4c0; border-radius: 10px;
  padding: 14px 6px 8px; text-align: center;
  font-family: var(--round); font-weight: 800;
  font-size: clamp(.66rem, 2.9vw, .9rem); line-height: 1.45;
  box-shadow: 0 4px 12px rgba(20,104,107,.06);
  z-index: 2;
}
.cycle-node::before {
  counter-increment: cyc; content: counter(cyc);
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -55%);
  width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 900; color: #fff; font-family: var(--round);
  background: var(--red-neg);
}
.cycle-node.cn1 { left: 50%;   top: 12%;   width: 42%; }
.cycle-node.cn2 { left: 84.5%; top: 38.3%; width: 29%; }
.cycle-node.cn3 { left: 72.3%; top: 80.7%; width: 32%; }
.cycle-node.cn4 { left: 27.7%; top: 80.7%; width: 32%; }
.cycle-node.cn5 { left: 15.5%; top: 38.3%; width: 29%; }
.cycle-node.cn1 { border-color: var(--red-neg); }   /* 起点を強調 */
.cycle-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 34%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: #fdeceb; border: 2px dashed var(--red-neg);
  font-family: var(--round); font-weight: 900; color: var(--red-neg);
  font-size: clamp(.8rem, 3.4vw, 1.05rem); line-height: 1.4;
  z-index: 1;
}
.cycle-core .cycle-core-sub {
  display: block; font-size: .68em; font-weight: 800; color: var(--ink);
}
@media (max-width: 420px) {
  .cycle-node { padding: 12px 4px 6px; border-width: 1.5px; }
  .cycle-node::before { width: 18px; height: 18px; font-size: .7rem; }
}

/* ============ パターン3: 下り階段図（.stair-*） ============ */
.stair-flow {
  list-style: none; margin: 0 0 16px; padding: 0;
  position: relative; counter-reset: stair;
}
.stair-step {
  position: relative;
  width: 60%;
  border: 2px solid #f0c4c0; border-radius: 12px;
  padding: 12px 12px 12px 38px; margin: 0 0 30px;
  font-family: var(--round); font-weight: 800;
  font-size: clamp(.82rem, 3.4vw, 1.04rem); line-height: 1.6;
  box-shadow: 0 4px 12px rgba(20,104,107,.05);
  background: #fff;
}
.stair-step::before {
  counter-increment: stair; content: counter(stair);
  position: absolute; left: 9px; top: 50%; transform: translateY(-50%);
  width: 21px; height: 21px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 900; color: #fff; font-family: var(--round);
  background: var(--red-neg);
}
/* 階段状に右下へずらす + 悪化するほど背景色が濃くなる
   ※.stair-flow内に装飾spanがあるため nth-of-type（li のみカウント）を使う */
.stair-step:nth-of-type(1) { margin-left: 12%; background: #fff; }
.stair-step:nth-of-type(2) { margin-left: 19%; background: #fef6f5; }
.stair-step:nth-of-type(3) { margin-left: 26%; background: #fdeeec; }
.stair-step:nth-of-type(4) { margin-left: 33%; background: #fce5e2; }
.stair-step:nth-of-type(5) { margin-left: 40%; background: #fbdcd8; border-color: var(--red-neg); margin-bottom: 12px; }
/* ⑤の左辺から戻り弧へつなぐ水平線 */
.stair-step:nth-of-type(5)::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-2px);
  right: 100%; width: 52%; height: 4px;
  background: var(--red-neg); opacity: .85; pointer-events: none;
}
/* 段差の ↘ 矢印 */
.stair-step:not(:last-child)::after {
  content: "↘"; position: absolute; bottom: -30px; left: 62%;
  font-size: 1.5rem; font-weight: 900; line-height: 1; color: var(--red-neg);
}
/* 左側の戻り矢印: ⑤の高さから左を回って①へ */
.stair-flow::after {
  content: ""; position: absolute;
  top: 24px; bottom: 37px; left: 2%; width: 7%;
  border: 4px solid var(--red-neg); border-right: none;
  border-radius: 48px 0 0 48px; opacity: .85; pointer-events: none;
}
.stair-flow::before {
  content: ""; position: absolute; top: 24px; left: 9%; transform: translateY(-50%);
  width: 0; height: 0;
  border: 8px solid transparent; border-right: none;
  border-left: 13px solid var(--red-neg);
  z-index: 2; pointer-events: none;
}
.stair-return-label {
  position: absolute; left: 0; top: 50%; transform: translate(-2px, -50%);
  writing-mode: vertical-rl;
  font-family: var(--round); font-weight: 900; font-size: .7rem;
  color: var(--red-neg); letter-spacing: .12em;
  background: #fff; padding: 6px 1px; line-height: 1.2;
}
@media (max-width: 420px) {
  .stair-step { width: 64%; padding: 10px 8px 10px 32px; }
  .stair-step::before { width: 18px; height: 18px; font-size: .7rem; left: 7px; }
  .stair-step:nth-of-type(1) { margin-left: 11%; }
  .stair-step:nth-of-type(2) { margin-left: 17%; }
  .stair-step:nth-of-type(3) { margin-left: 23%; }
  .stair-step:nth-of-type(4) { margin-left: 29%; }
  .stair-step:nth-of-type(5) { margin-left: 35%; }
  .stair-step:nth-of-type(5)::after { width: 44%; height: 3px; }
  .stair-step:not(:last-child)::after { font-size: 1.25rem; bottom: -27px; }
  .stair-flow::after { left: 1%; width: 6%; bottom: 34px; }
  .stair-flow::before { left: 7%; border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; }
}

/* --- 実施風景ギャラリー: 実写4枚をランダム感のあるポラロイド風コラージュで (2026-07-23 支給) --- */
.gallery-scatter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px; padding: 14px 0 10px;
}
.gs-item {
  margin: 0; background: #fff; padding: 10px 10px 12px;
  border-radius: 4px; box-shadow: 0 12px 28px rgba(20,60,62,.18);
  width: min(44%, 340px); position: relative;
}
.gs-item::before { /* マスキングテープ風 */
  content: ""; position: absolute; top: -10px; left: 50%;
  width: 74px; height: 20px; transform: translateX(-50%) rotate(-2deg);
  background: rgba(94,182,187,.55); border-radius: 2px;
}
.gs-item img { width: 100%; height: auto; display: block; border-radius: 2px; }
.gs-item figcaption {
  font-family: var(--round); font-weight: 800; font-size: .82rem;
  text-align: center; color: var(--teal-deep); margin-top: 8px;
}
.gs-item:nth-child(1) { transform: rotate(-2.4deg) translateY(8px); }
.gs-item:nth-child(2) { transform: rotate(1.9deg) translateY(-6px); z-index: 2; }
.gs-item:nth-child(2)::before { background: rgba(245,216,0,.5); transform: translateX(-50%) rotate(2.5deg); }
.gs-item:nth-child(3) { transform: rotate(2.6deg) translateY(12px); }
.gs-item:nth-child(3)::before { background: rgba(212,42,42,.32); }
.gs-item:nth-child(4) { transform: rotate(-1.7deg) translateY(-2px); }
@media (max-width: 640px) {
  .gallery-scatter { gap: 14px 10px; }
  .gs-item { width: 46%; padding: 6px 6px 8px; }
  .gs-item::before { width: 52px; height: 15px; top: -7px; }
  .gs-item figcaption { font-size: .72rem; margin-top: 5px; }
}
/* レビュー反映: stair-return-labelをol外に出したためのラッパー基準 */
.stair-wrap { position: relative; }

/* --- 2026-07-23 FB第2弾 p25 --- */
/* T1: ループ見出しを「〜が続き、やがて退職・休職につながる」へ統合（✕透かし・下部outは削除済み） */
.loop-cap, .pfig-cap { line-height: 1.6; }
/* T7: キーメッセージ帯写真を暗フィルターで抑える（白カードが主役） */
.practice-photo::before { content: ""; position: absolute; inset: 0; background: rgba(18,42,44,.36); }
.practice-overlay { position: relative; z-index: 1; }
/* T8: 帯上テキストの白文字化（視認性優先。AAコントラストは要確認） */
.practice-lead { color: #fff !important; }
.cta-band .lead-sm, .cta-band .note-sm { color: #fff !important; }
/* T9: voice記事のカバー画像をSP/タブレットではカード下・本文上に表示 */
.iv-hero-sp { display: none; margin: 0; }
@media (max-width: 1024px) {
  .iv-hero-banner .iv-hero-bg, .iv-hero-banner .iv-hero-scrim { display: none !important; }
  .iv-hero-banner { min-height: 0 !important; }
  .iv-hero-sp { display: block; }
  .iv-hero-sp img { width: 100%; height: auto; display: block; }
}
/* T6: H2見出しの助詞ひらがなを一回り小さく（カタカナ・漢字は対象外） */
.sec-head h2 .ptc { font-size: .78em; }
/* T5: SPでCASEバッジをブロック化（バッジ横の狭幅でフレーズが2カラム化する事故を根絶） */
@media (max-width: 640px) {
  .case-title .ck { display: block; width: fit-content; margin-bottom: 8px; }
}

/* --- 全幅写真帯3パターン切替 (2026-07-23 トンボ制作モックより統合) --- */
:root { --pb-h: clamp(132px, 15vw, 208px); --teal-pale: #e7f4f4; }
/* ============ 切替チップ（汎用 .switch-chips） ============ */
.switch-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 0 0 20px;
}
.switch-chips button {
  appearance: none; cursor: pointer;
  font-family: var(--round); font-weight: 800; font-size: .88rem; line-height: 1.3;
  color: var(--teal-deep); background: #fff;
  border: 2px solid var(--teal); border-radius: 999px;
  padding: 7px 16px;
  transition: background-color .12s ease, color .12s ease;
}
.switch-chips button:hover { background: #e9f6f6; }
.switch-chips button:focus-visible { outline: 3px solid var(--teal-deep); outline-offset: 2px; }
.switch-chips button[aria-pressed="true"] {
  background: var(--teal-deep); border-color: var(--teal-deep); color: #fff;
}
@media (max-width: 420px) {
  .switch-chips button { font-size: .8rem; padding: 6px 12px; }
}
@media print { .switch-chips { display: none; } }

/* ============ パネル切替（既定=1。JS無効時もパターン1が表示） ============ */

/* ============ 写真帯 共通 ============ */
/* フルブリード: .container（max-width 980 / padding 20）内から全幅へ。
   100vwはスクロールバー幅ぶん広い → 祖先 section の overflow:hidden で吸収 */

.pb-strip { display: flex; }
.pb-item { flex: 1 1 0; min-width: 0; position: relative; margin: 0; } /* figureのUAデフォルトmargin打消し必須 */
.pb-item img {
  display: block; width: 100%; height: var(--pb-h);
  object-fit: cover; object-position: var(--pos, 50% 45%);
}
/* 被写体の見せ場を写真ごとに指定（SPの細切りでも顔・手元が中央に来る） */
.pb-item.p1 img { --pos: 45% 45%; } /* 講義室・作品を掲げる4人 */
.pb-item.p2 img { --pos: 50% 35%; } /* 会議室・カードワーク俯瞰 */
.pb-item.p3 img { --pos: 50% 40%; } /* 色水ワーク・カラーカード円 */
.pb-item.p4 img { --pos: 55% 42%; } /* 白スタジオ・カード対話 */

/* ============ パターン1: フラット全幅帯（隙間ゼロ・ベース仕様） ============ */
/* .pb-strip 素のまま。gap 0 / 角丸なし / フチなし */

/* ============ パターン2: 白フレーム付き ============ */
.pb-framed {
  background: var(--teal-pale);
  padding: 12px 10px;
  gap: 6px;
}
.pb-framed .pb-item img {
  height: calc(var(--pb-h) - 24px);
  border: 4px solid #fff;
  box-shadow: 0 3px 10px rgba(20,104,107,.12);
}

/* ============ SP調整: 4枚横並び維持のまま高さを絞る ============ */
@media (max-width: 560px) {
  :root { --pb-h: 118px; }
  .pb-framed { padding: 8px 6px; gap: 4px; }
  .pb-framed .pb-item img { height: calc(var(--pb-h) - 16px); border-width: 3px; }




}
/* 上部CTA帯: IDセレクタ(2526行 #cta-top teal-deep !important)が.cta-bandの本家色を上書きしていたため同詳細度で修正 */
#cta-top { background: #5eb6bb !important; }
/* --- ループ図 画像生成版 P4〜6 (2026-07-23 マーニー制作) --- */
.loop-patterns[data-active="4"] .loop-panel[data-panel="4"],
.loop-patterns[data-active="5"] .loop-panel[data-panel="5"] { display: block; }
.pfig-img { margin: 0 auto; }
.pfig-img img { width: 100%; height: auto; display: block; }
.pfig-img-flow { max-width: 360px; }
.pfig-img-cycle, .pfig-img-stair { max-width: 430px; }

/* --- 2026-07-23 FB第3弾 p28 --- */
/* 写真帯: チップ廃止・白フレーム単一・新3枚（method-01〜03） */
.photo-band-fixed { margin-inline: calc(50% - 50vw); margin-bottom: 26px; }
.pb-item.m1 img { --pos: 50% 45%; }
.pb-item.m2 img { --pos: 50% 55%; }
.pb-item.m3 img { --pos: 50% 45%; }
/* 3本柱の下と「職場での関わり方」見出しの間にスペース */
.why-subtitle { margin-top: 64px !important; }
/* ループ: ボックス拡大＋見出し階層化（キーワード大・赤・太 / 他は黒・小さめ） */
.loop-patterns { max-width: 680px; }
.pfig-img-flow { max-width: 440px; }
.pfig-img-cycle { max-width: 520px; }
.pfig-cap-hier { color: var(--ink) !important; font-weight: 700; line-height: 1.75; }
.pfig-cap-hier .cap-strong { font-size: 1.5em; font-weight: 900; color: var(--red-neg); }
.pfig-cap-hier .cap-rest { font-size: .92em; color: var(--ink); }
/* CASEカードのメソッドアイコン: 文字はalt化しさらに1.5倍 */
.tag-icon { width: 162px !important; height: 162px !important; }
.case-tag { justify-content: center; }
/* アプローチ見出し: 画像のみ・1.5倍・中央揃え */
.approach-title-imgonly { text-align: center; }
.approach-title-imgonly .approach-title-icon { width: 162px !important; height: 162px !important; display: block; margin: 0 auto; }
/* 効果カードの強調を統一: 赤kickerを廃し「黄マーカー＋濃色太字」に一本化（1〜5全カード共通） */
.effect .kicker {
  color: var(--ink) !important; font-weight: 800;
  background: linear-gradient(transparent 55%, var(--mark-yellow, #ffe24d) 55%, var(--mark-yellow, #ffe24d) 96%, transparent 96%);
  display: inline; padding: 0 .1em;
}
.effect .effect-key {
  color: var(--ink) !important; font-weight: 800;
  background: linear-gradient(transparent 55%, var(--mark-yellow, #ffe24d) 55%, var(--mark-yellow, #ffe24d) 96%, transparent 96%);
}
@media (max-width: 760px) {
  .tag-icon { width: 120px !important; height: 120px !important; }
  .approach-title-imgonly .approach-title-icon { width: 120px !important; height: 120px !important; }
}
/* --- VOICE 4+2分離: 活用事例2枚は見出し付き別枠・デザイン差別化 (初期設計06_表示見本に準拠・2026-07-23) --- */
.voices-sublead { text-align: center; margin: -8px 0 24px; color: var(--sub); font-size: .95rem; }
.voice-grid-usecase { margin-top: 6px; }
.voice-card.vc-usecase { background: #fffcf2; border: 2px solid #f0d76e; }
.vc-usecase .voice-cat .tag { background: #c79a1e !important; }
/* 個別ページ: カバー画像なし版バナー */
.iv-hero-banner.iv-no-photo { min-height: 0 !important; background: var(--teal-pale, #e7f4f4); }
.iv-no-photo .iv-hero-bg, .iv-no-photo .iv-hero-scrim { display: none !important; }
.iv-note { font-size: .82rem; color: var(--sub); }

/* --- 2026-07-23 FB第4弾 p30 --- */
/* T-A: 「伴走型」タグを二回り拡大（吹き出し・しっぽも同スケール） */
.hero-tag { font-size: 1.6em !important; padding: .42em .95em !important; }
.hero-tag::after { border-width: 14px 14px 0 4px !important; }
/* T-B: 加工版ヒーロー（人物右下寄せ）に合わせ位置調整 */
.hero-bg { background-position: 78% 34% !important; }
/* T-C: キーメッセージ帯 配色切替（1=黒フィルター×白カード / 2=白フィルター×黒カード白抜き） */
.practice-band { position: relative; }
.km-chips {
  position: absolute; top: 12px; right: 16px; z-index: 3;
  margin: 0; gap: 6px; justify-content: flex-end;
}
.km-chips button { font-size: .72rem; padding: 4px 10px; }
.practice-band[data-active="2"] .practice-photo::before { background: rgba(255,255,255,.55); }
.practice-band[data-active="2"] .practice-overlay { background: rgba(16,34,36,.88); }
.practice-band[data-active="2"] .practice-eyebrow,
.practice-band[data-active="2"] .practice-brand,
.practice-band[data-active="2"] .practice-brand span { color: #fff !important; }
@media (max-width: 640px) {
  .km-chips { top: 8px; right: 10px; }
  .hero-tag { font-size: 1.4em !important; }
}
/* SPヒーロー見出し: 「育てる」の文字切れ対策（13文字が390px幅を超過するためサイズ調整） */
@media (max-width: 640px) {
  .hero-card .hero-catch { font-size: 1.32rem !important; }
}
/* SPヒーロー: 13文字の新キャッチ「社員が自ら動ける組織を育てる」がnowrap指定ではみ出すためclamp縮小（nowrap自体はデザイン承認済みのため維持） */
@media (max-width: 640px) {
  .hero-catch .l1, .hero-catch .l2 { font-size: clamp(1.4rem, 5.9vw, 1.8rem) !important; }
}

/* --- 2026-07-23 FB第5弾 p32 --- */
/* 伴走型タグ: 一回り縮小（1.6em→1.35em・前回との中間）＋しっぽを本体に接続し直す */
.hero-tag { font-size: 1.35em !important; padding: .38em .85em !important; }
.hero-tag::after {
  left: 34px !important; bottom: -11px !important;
  border-width: 12px 12px 0 5px !important;
  border-style: solid !important;
  border-color: #e60033 transparent transparent transparent !important;
}
/* アプローチの箇条書き: 全幅ボックスをやめ、挿絵と同じ480px幅で中央寄せ（左端の箇条書き位置は揃う） */
.approach-bullets, .approach-examples {
  max-width: 480px;
  margin-left: auto !important; margin-right: auto !important;
}
/* ヒーロー→キーメッセージ帯のつなぎ: 写真上端にヒーロー地色のグラデを掛けて溶け込ませる（案C） */
.practice-photo::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 84px;
  background: linear-gradient(180deg, #fbfaf6 0%, rgba(251,250,246,0) 100%);
  pointer-events: none;
}
/* 伴走型タグ 再調整: ほんのり縮小(1.35→1.22em・元1.0よりは大きい)＋しっぽを右下に正確配置 */
.hero-tag { font-size: 1.22em !important; padding: .36em .8em !important; }
.hero-tag::after {
  left: auto !important; right: 36px !important; bottom: -6px !important;
  border-width: 13px 3px 0 13px !important;
  border-style: solid !important;
  border-color: #e60033 transparent transparent transparent !important;
}

/* --- 2026-07-23 最終仕上げ p34 --- */
/* ヒーローのストーリーカード: 透明度を上げ背景人物の表情を見せる。可読性は太字・濃色で補強 */
.hero-card { background: rgba(255,255,255,.38) !important; }
.hero-card .hero-sub-story { color: #14181a; font-weight: 700; }
@media (max-width: 640px) {
  .hero-card { background: rgba(255,255,255,.45) !important; }
}
/* VOICE小見出し: ＼／装飾を廃止（縮小時の崩れ対策）・2行改行 */
.voices-subtitle-plain::before, .voices-subtitle-plain::after { content: none !important; }
@media (max-width: 640px) {
  .voices-subtitle-plain { font-size: 1.16rem; }
  /* SPヒーロー背景: 加工版(人物右下寄り)で表情が見えるよう右下を表示 */
  .hero-bg { background-position: 74% 30% !important; }
}

/* --- p36: ヒーローの白フィルター除去（スクリム非表示・カードblur弱化）＋カード透明度さらにUP --- */
.hero-scrim { display: none !important; }
.hero-card {
  background: rgba(255,255,255,.24) !important;
  -webkit-backdrop-filter: blur(1.5px) !important;
  backdrop-filter: blur(1.5px) !important;
}
@media (max-width: 640px) {
  .hero-card { background: rgba(255,255,255,.30) !important; }
}

/* ===== 2026-07-24 FB反映層 ===== */
/* T1: FVの空白を詰める（そんな問題が〜と伴走型の間） */
.problem-band { padding-bottom: 28px !important; }
/* T2: キーメッセージカードのロゴ画像（ヘッダー同等サイズでドンと） */
.practice-brand-logo { height: 44px; width: auto; display: inline-block; vertical-align: middle; }
.practice-overlay .practice-brand span { vertical-align: middle; }
@media (max-width: 640px) { .practice-brand-logo { height: 32px; } }
/* T3: practice-leadのフォント拡大（可読性） */
.practice-lead { font-size: 1.24rem !important; line-height: 2 !important; }
@media (max-width: 640px) { .practice-lead { font-size: 1.06rem !important; } }
/* T7: ループ再構成（新テキスト・サイクル単独・締め文） */
.why-story { max-width: 720px; margin: 0 auto 34px; }
.why-story p { margin: 0 0 1.15em; line-height: 2.05; }
.loop-single { max-width: 620px; margin: 0 auto; }
.why-conclusion {
  max-width: 720px; margin: 30px auto 0;
  background: #fff; border: 2px solid var(--teal); border-radius: 16px;
  padding: 22px 30px; line-height: 2.05; font-weight: 700;
}
.why-conclusion .wc-brand { color: var(--teal-deep); font-weight: 900; }
.why-conclusion strong { color: var(--teal-deep); }
@media (max-width: 640px) { .why-conclusion { padding: 18px 18px; } }

/* v2b: ループ一式（見出し・説明文・図・締め文）を1枚カードに束ねる — 前セクションとの区切り＆一体感 */
.why-block {
  background: #fff;
  border-radius: 26px;
  padding: 52px 56px 48px;
  margin: 56px auto 0;
  max-width: 880px;
  box-shadow: 0 18px 44px rgba(20,104,107,.10);
}
.why-block .wb-title { margin-top: 0 !important; }
.why-block .why-story { margin-bottom: 10px; }
/* 図解ゾーン: カード内で薄赤地にして「悪循環の図」だと示す */
.why-block .loop-single .pfig {
  background: #fdf6f4;
  border: 1px solid #f0d9d4;
  box-shadow: none;
}
/* 説明文→図→締め文をつなぐコネクタ矢印 */
.wb-connector {
  display: block; text-align: center;
  font-size: 1.7rem; font-weight: 900; line-height: 1;
  color: var(--red-neg); opacity: .55;
  margin: 18px 0;
}
/* 締め文を「結論」帯に強化（teal-deep×白=コントラスト6.6:1確保） */
.why-conclusion-strong {
  background: var(--teal-deep) !important;
  border: none !important;
  color: #fff !important;
}
.why-conclusion-strong .wc-brand, .why-conclusion-strong strong { color: #ffe24d !important; }
@media (max-width: 760px) {
  .why-block { padding: 30px 20px 28px; margin-top: 40px; border-radius: 18px; }
}
/* v2c: 効果カードの黄マーカー統一 — 文字幅のみ・他マーカーと同じ細さ(62%開始)・kickerブロック背景を廃止 */
.effect .kicker { background: none !important; }
.effect .kicker .km-y,
.effect .effect-key {
  color: var(--ink) !important; font-weight: 800;
  background: linear-gradient(transparent 62%, var(--mark-yellow, #ffe24d) 62%, var(--mark-yellow, #ffe24d) 94%, transparent 94%) !important;
  padding: 0 .08em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
/* voice記事ページ: フッター前の波の地色を本文と同じ白に（LP用の薄teal帯が浮くバグ修正 2026-07-26） */
.foot-wave-white { background: #fff !important; }
/* p37: 説明文後半2段落を図解の下へ移動（テキスト連続の認知負荷軽減・ 2026-07-28） */
.why-story-after { margin: 26px auto 0 !important; }

/* --- 2026-08-07 p39: SP折り返し最終ブラッシュアップ --- */
/* CASE見出し: SPではflexを解除（.ckをblockにしてもflexで横並びになり、タイトルが2カラム分断されていた根本原因） */
@media (max-width: 640px) {
  .case-title { display: block !important; }
  .case-title .nb { margin-right: 0; }
}
/* 効果kicker: フレーズ単位のinline-blockマーカー（語中分断と右端まで伸びる黄色を根絶） */
.effect .kicker .km-y { display: inline-block; max-width: 100%; }
/* キーメッセージ帯: SPで「for Business」の語中分断を防止（ロゴと2行になるのは許容） */
.practice-brand span { white-space: nowrap; }
/* CTAボタン内テキストの語中折れ防止＋狭幅カード内では文字を少し絞って1行維持 */
.cta-actions .btn { white-space: nowrap; }
@media (max-width: 640px) {
  .monitor-card .cta-actions .btn { font-size: .88rem; padding: 12px 16px; }
}
@media (max-width: 374px) {
  .cta-actions .btn { font-size: .82rem; padding: 11px 12px; }
  .tel-box .tel-num { font-size: 1.5rem !important; }
  .logo-sub { display: none; }                                   /* 極小幅はヘッダーfor Businessを非表示 */
  .hero-catch .l1, .hero-catch .l2 { font-size: 1.2rem !important; }
  .hero-problems li { font-size: .92rem; }
}
/* 横スクロール根絶の保険（320px帯の装飾はみ出し対策） */
html { overflow-x: clip; }
/* p40: Tier1幅検査に基づく狙い撃ち調整（H2一律縮小はしない） */
@media (max-width: 374px) {
  .case-title { font-size: 1.05rem !important; }   /* CASE3「多く、」の内部折れ対策 */
  .pfig-cap-hier { font-size: 1.05rem; }            /* 320pxのループ見出し */
}
/* p40b: SPのH2・準見出しをひと回り縮小（案・PC/タブレットは不変）
   → 12文字級フレーズが1行に収まり、中間幅の不自然な折り返しが一挙に解消 */
@media (max-width: 640px) {
  .sec-head h2 { font-size: clamp(1.32rem, 6.1vw, 1.8rem) !important; }
  .why-subtitle { font-size: 1.18rem !important; }
}
@media (max-width: 374px) {
  .sec-head h2 { font-size: clamp(1.08rem, 5.4vw, 1.3rem) !important; }
}

/* p41: CASE見出しのflexを全幅で廃止（タブレット帯で左右分割が再発したため根本解決）
   バッジはインライン化 → どの幅でも折り返し時にテキストが自然に流れる */
.case-title { display: block !important; }
.case-title .ck { display: inline-block; margin-right: 10px; vertical-align: 2px; }
@media (max-width: 900px) {
  /* 折り返しが起きうる帯では「バッジ上・テキスト下」に統一（バッジ右開始→2行目だけ左端、の中途半端な形を根絶） */
  .case-title .ck { display: block; width: fit-content; margin-bottom: 8px; vertical-align: baseline; }
}

/* =========================================================
   お問い合わせフォーム（送信処理の実装にともなう追加）
   自由記述欄・送信状態の表示・迷惑メール対策の隠し項目
========================================================= */
.contact-form textarea {
  font: inherit;
  font-family: var(--body);
  padding: 14px;
  border: 2px solid var(--teal-line);
  border-radius: 12px;
  width: 100%;
  min-height: 120px;
  resize: vertical;
}
.contact-form textarea:focus { outline: none; border-color: var(--teal); }

/* 「任意」バッジ（必須バッジ .req と対になる控えめな見た目） */
.contact-form .lbl .opt {
  display: inline-block;
  background: #eef2f3;
  color: var(--sub);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

/* ハニーポット: 画面外に逃がす（表示はしないが、botには入力可能に見せる） */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 送信状態のメッセージ */
.form-status { margin: 0; text-align: center; font-size: 0.92rem; font-weight: 700; line-height: 1.7; }
.form-status:empty { display: none; }
.form-status.is-sending { color: var(--sub); }
.form-status.is-done {
  color: var(--teal-deep);
  background: #eef7f7;
  border-radius: 12px;
  padding: 12px 14px;
}
.form-status.is-error {
  color: #c0392b;
  background: #fdeeec;
  border-radius: 12px;
  padding: 12px 14px;
}
.contact-form button[disabled] { opacity: .6; cursor: default; }
