/* JPBS公式サイト 新デザイン案 v1（2026-08-26）
   カラー基準：申込ページ https://brand.jpbs.site/p/standard 実測値
   ネイビー #1c2b44 / #111b2e / #19273f ／ ゴールド #c9a86a / #b6924c / #d8bd86
   明るい基調 #f5f7fa / #ffffff ／ 文字 #1f2630 / #3a4554 / #5a6675 */

:root{
  --navy-900:#0a1120;
  --navy-800:#111b2e;
  --navy-700:#19273f;
  --navy-600:#1c2b44;
  --navy-500:#243a5e;
  --gold-600:#aa7a28;
  --gold-500:#b6924c;
  --gold-400:#c9a86a;
  --gold-300:#d8bd86;
  --ink-900:#1f2630;
  --ink-700:#3a4554;
  --ink-500:#5a6675;
  --ink-300:#9aa0a8;
  --bg:#f5f7fa;
  --bg-alt:#eef2f7;
  --line:#e3e8ef;
  --white:#ffffff;
  --serif:"Noto Serif JP","Shippori Mincho","Yu Mincho","Hiragino Mincho ProN",serif;
  --sans:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic Medium",-apple-system,sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  color:var(--ink-900);
  background:var(--bg);
  line-height:1.9;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}

.wrap{max-width:1080px;margin:0 auto;padding:0 24px}

/* ───── header ───── */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  max-width:1080px;margin:0 auto;padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
  height:72px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  font-family:var(--serif);font-weight:700;font-size:22px;letter-spacing:.08em;
  color:var(--navy-600);line-height:1.1;
}
.brand-mark .gold{color:var(--gold-500)}
.brand-sub{font-size:10px;color:var(--ink-500);letter-spacing:.06em}
.gnav{display:flex;align-items:center;gap:28px}
.gnav a{font-size:14px;color:var(--ink-700);letter-spacing:.04em;padding:6px 0;border-bottom:2px solid transparent}
.gnav a:hover{color:var(--navy-600)}
.gnav a.current{color:var(--navy-600);border-bottom-color:var(--gold-400);font-weight:600}
.nav-cta{
  background:var(--navy-600);color:var(--white)!important;
  padding:10px 22px!important;border-radius:999px;border-bottom:none!important;
  font-weight:600;transition:background .2s;
}
.nav-cta:hover{background:var(--navy-500)}
@media(max-width:820px){
  .gnav{gap:14px;flex-wrap:wrap;justify-content:flex-end}
  .gnav a{font-size:12px}
  .header-inner{height:auto;padding:10px 16px;flex-wrap:wrap;gap:8px}
}

/* ───── hero（トップ） ───── */
.hero{
  background:
    radial-gradient(ellipse 900px 500px at 85% 20%, rgba(201,168,106,.18), transparent 60%),
    linear-gradient(135deg,var(--navy-800) 0%,var(--navy-600) 55%,var(--navy-700) 100%);
  color:var(--white);
  padding:110px 0 100px;
  position:relative;overflow:hidden;
}
.hero::after{
  content:"";position:absolute;inset:auto 0 0 0;height:6px;
  background:linear-gradient(90deg,var(--gold-600),var(--gold-300),var(--gold-600));
}
.hero-eyebrow{
  display:inline-block;font-size:13px;letter-spacing:.14em;
  color:var(--gold-300);border:1px solid rgba(216,189,134,.45);
  border-radius:999px;padding:6px 18px;margin-bottom:28px;
}
.hero h1{
  font-family:var(--serif);font-size:clamp(34px,5.4vw,58px);
  font-weight:700;letter-spacing:.04em;line-height:1.5;margin-bottom:24px;
}
.hero h1 .gold{color:var(--gold-300)}
.hero-lead{max-width:640px;font-size:16px;color:#d7dfeb;margin-bottom:40px}
.btn-row{display:flex;gap:16px;flex-wrap:wrap}
.btn{
  display:inline-block;padding:14px 34px;border-radius:999px;
  font-size:15px;font-weight:600;letter-spacing:.04em;transition:opacity .2s,background .2s;
}
.btn-gold{background:linear-gradient(135deg,var(--gold-500),var(--gold-300));color:var(--navy-800)}
.btn-gold:hover{opacity:.85}
.btn-ghost{border:1px solid rgba(255,255,255,.55);color:var(--white)}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.btn-navy{background:var(--navy-600);color:var(--white)}
.btn-navy:hover{background:var(--navy-500)}

/* ───── 下層ページヘッダー ───── */
.page-hero{
  background:
    radial-gradient(ellipse 700px 380px at 90% 10%, rgba(201,168,106,.16), transparent 60%),
    linear-gradient(135deg,var(--navy-800),var(--navy-600));
  color:var(--white);padding:72px 0 60px;position:relative;
}
.page-hero::after{
  content:"";position:absolute;inset:auto 0 0 0;height:4px;
  background:linear-gradient(90deg,var(--gold-600),var(--gold-300),var(--gold-600));
}
.page-hero .eyebrow{font-size:12px;letter-spacing:.2em;color:var(--gold-300);margin-bottom:14px}
.page-hero h1{font-family:var(--serif);font-size:clamp(26px,3.6vw,38px);letter-spacing:.05em;line-height:1.5}
.page-hero .lead{margin-top:16px;max-width:640px;font-size:15px;color:#d7dfeb}

/* ───── section ───── */
.sec{padding:88px 0}
.sec-alt{background:var(--white)}
.sec-navy{
  background:linear-gradient(135deg,var(--navy-800),var(--navy-600));
  color:var(--white);
}
.eyebrow{font-size:12px;letter-spacing:.2em;color:var(--gold-500);font-weight:600;margin-bottom:12px}
.sec-navy .eyebrow{color:var(--gold-300)}
.sec-title{
  font-family:var(--serif);font-size:clamp(24px,3.2vw,34px);
  color:var(--navy-600);letter-spacing:.05em;line-height:1.5;margin-bottom:22px;
}
.sec-navy .sec-title{color:var(--white)}
.sec-lead{max-width:720px;color:var(--ink-700);margin-bottom:44px}
.sec-navy .sec-lead{color:#d7dfeb}

/* ───── cards ───── */
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

.card{
  background:var(--white);border:1px solid var(--line);border-radius:14px;
  padding:30px 26px;box-shadow:0 4px 20px rgba(17,27,46,.05);
}
.card-num{
  font-family:var(--serif);font-size:14px;color:var(--gold-500);
  letter-spacing:.12em;margin-bottom:10px;font-weight:700;
}
.card h3{font-size:17px;color:var(--navy-600);margin-bottom:10px;letter-spacing:.03em}
.card p{font-size:14px;color:var(--ink-700)}
.card-link{display:inline-block;margin-top:14px;font-size:13px;color:var(--gold-600);font-weight:600}
.card-link:hover{color:var(--gold-500)}

/* 引用帯 */
.quote-band{
  background:var(--navy-700);color:var(--white);
  border-radius:16px;padding:40px 36px;text-align:center;position:relative;overflow:hidden;
}
.quote-band::before{
  content:"";position:absolute;inset:0 0 auto 0;height:4px;
  background:linear-gradient(90deg,var(--gold-600),var(--gold-300),var(--gold-600));
}
.quote-band p.q{
  font-family:var(--serif);font-size:clamp(18px,2.6vw,24px);letter-spacing:.06em;line-height:1.9;
}
.quote-band p.q .gold{color:var(--gold-300)}
.quote-band p.src{margin-top:12px;font-size:12px;color:#aebacb;letter-spacing:.08em}

/* 数値バッジ */
.stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:700px){.stat-row{grid-template-columns:1fr}}
.stat{
  background:var(--white);border:1px solid var(--line);border-left:4px solid var(--gold-400);
  border-radius:12px;padding:24px 22px;
}
.stat .label{font-size:13px;color:var(--ink-500);margin-bottom:6px}
.stat .value{font-family:var(--serif);font-size:26px;color:var(--navy-600);font-weight:700;line-height:1.4}
.stat .value .unit{font-size:15px}
.stat .note{font-size:12px;color:var(--ink-300);margin-top:6px}

/* ───── 宣言（about） ───── */
.decl{display:flex;gap:22px;background:var(--white);border:1px solid var(--line);border-radius:14px;padding:28px 30px;margin-bottom:18px}
.decl-num{
  font-family:var(--serif);font-size:26px;color:var(--gold-500);font-weight:700;min-width:40px;line-height:1.4;
}
.decl h3{font-size:17px;color:var(--navy-600);margin-bottom:8px;letter-spacing:.03em}
.decl p{font-size:14px;color:var(--ink-700)}

/* ───── フェーズ（service） ───── */
.phase{display:flex;gap:22px;align-items:flex-start;background:var(--white);border:1px solid var(--line);border-radius:14px;padding:26px 28px;margin-bottom:16px;position:relative}
.phase-num{
  flex-shrink:0;width:46px;height:46px;border-radius:50%;
  background:linear-gradient(135deg,var(--navy-600),var(--navy-500));
  color:var(--gold-300);font-family:var(--serif);font-weight:700;font-size:18px;
  display:flex;align-items:center;justify-content:center;
}
.phase h3{font-size:16px;color:var(--navy-600);margin-bottom:6px}
.phase p{font-size:14px;color:var(--ink-700)}

/* プラン */
.plan{
  background:var(--white);border:1px solid var(--line);border-radius:16px;
  padding:34px 28px;display:flex;flex-direction:column;position:relative;overflow:hidden;
}
.plan::before{content:"";position:absolute;inset:0 0 auto 0;height:5px;background:var(--line)}
.plan.featured::before{background:linear-gradient(90deg,var(--gold-600),var(--gold-300))}
.plan .tier{font-size:12px;letter-spacing:.18em;color:var(--gold-600);font-weight:700;margin-bottom:8px}
.plan h3{font-family:var(--serif);font-size:22px;color:var(--navy-600);margin-bottom:12px}
.plan .price{font-size:24px;color:var(--ink-900);font-weight:700;margin-bottom:4px}
.plan .price .unit{font-size:13px;color:var(--ink-500);font-weight:400}
.plan .cap{font-size:13px;color:var(--ink-500);margin-bottom:16px}
.plan ul{border-top:1px solid var(--line);padding-top:16px;display:flex;flex-direction:column;gap:8px}
.plan li{font-size:13.5px;color:var(--ink-700);padding-left:20px;position:relative}
.plan li::before{content:"◆";position:absolute;left:0;color:var(--gold-400);font-size:10px;top:4px}

/* ───── 人物（members） ───── */
.founder{
  background:var(--white);border:1px solid var(--line);border-radius:16px;padding:32px 28px;text-align:center;
}
.avatar{
  width:96px;height:96px;border-radius:50%;margin:0 auto 18px;
  background:linear-gradient(135deg,var(--navy-600),var(--navy-500));
  color:var(--gold-300);font-family:var(--serif);font-size:34px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  border:3px solid var(--gold-300);
}
.founder .role{font-size:12px;letter-spacing:.14em;color:var(--gold-600);font-weight:700;margin-bottom:6px}
.founder h3{font-family:var(--serif);font-size:20px;color:var(--navy-600);margin-bottom:4px}
.founder .title{font-size:13px;color:var(--ink-500);margin-bottom:14px}
.founder .story{font-size:13.5px;color:var(--ink-700);text-align:left}

.lecturer{
  background:var(--white);border:1px solid var(--line);border-radius:12px;padding:22px 20px;text-align:center;
}
.lecturer .avatar{width:64px;height:64px;font-size:22px;margin-bottom:12px;border-width:2px}
.lecturer h3{font-size:15px;color:var(--navy-600)}
.lecturer .genre{display:inline-block;font-size:11px;color:var(--gold-600);border:1px solid var(--gold-300);border-radius:999px;padding:2px 12px;margin:8px 0 6px}
.lecturer p{font-size:12.5px;color:var(--ink-500)}

/* ───── 実績（works） ───── */
.work-person{margin-bottom:56px}
.work-person-head{display:flex;align-items:center;gap:18px;margin-bottom:22px}
.work-person-head .avatar{width:64px;height:64px;font-size:24px;margin:0;border-width:2px}
.work-person-head h3{font-family:var(--serif);font-size:22px;color:var(--navy-600)}
.work-person-head .sub{font-size:13px;color:var(--ink-500)}
.work-card{
  background:var(--white);border:1px solid var(--line);border-radius:14px;padding:28px 26px;
}
.work-card .tag{font-size:11px;letter-spacing:.14em;color:var(--gold-600);font-weight:700;margin-bottom:8px}
.work-card h4{font-size:16px;color:var(--navy-600);margin-bottom:10px;line-height:1.6}
.work-card p{font-size:13.5px;color:var(--ink-700)}
.work-card .num{
  font-family:var(--serif);font-size:26px;color:var(--navy-600);font-weight:700;margin:12px 0 2px;
}
.work-card .num .unit{font-size:14px}
.work-card .numnote{font-size:11.5px;color:var(--ink-300)}

/* ───── table（company / legal） ───── */
.def-table{width:100%;border-collapse:collapse;background:var(--white);border:1px solid var(--line);border-radius:12px;overflow:hidden}
.def-table th,.def-table td{padding:18px 22px;font-size:14px;text-align:left;vertical-align:top;border-bottom:1px solid var(--line)}
.def-table tr:last-child th,.def-table tr:last-child td{border-bottom:none}
.def-table th{width:220px;background:var(--bg-alt);color:var(--navy-600);font-weight:600;letter-spacing:.03em}
.def-table td{color:var(--ink-700)}
@media(max-width:640px){
  .def-table th,.def-table td{display:block;width:100%}
  .def-table th{padding-bottom:4px}
  .def-table td{padding-top:4px}
}

/* 法務文章 */
.legal-body h2{font-size:17px;color:var(--navy-600);margin:36px 0 12px;padding-left:14px;border-left:4px solid var(--gold-400)}
.legal-body p,.legal-body li{font-size:14px;color:var(--ink-700)}
.legal-body ul{padding-left:22px;list-style:disc;display:flex;flex-direction:column;gap:6px;margin:10px 0}
.note{font-size:12.5px;color:var(--ink-500);background:var(--bg-alt);border-radius:10px;padding:14px 18px;margin:18px 0}

/* ───── CTA帯 ───── */
.cta-band{
  background:
    radial-gradient(ellipse 700px 400px at 15% 30%, rgba(201,168,106,.18), transparent 60%),
    linear-gradient(135deg,var(--navy-800),var(--navy-600));
  color:var(--white);text-align:center;padding:88px 0;
}
.cta-band h2{font-family:var(--serif);font-size:clamp(24px,3.4vw,34px);letter-spacing:.05em;margin-bottom:16px}
.cta-band p{max-width:620px;margin:0 auto 34px;color:#d7dfeb;font-size:15px}

/* ───── footer ───── */
.site-footer{background:var(--navy-900);color:#aebacb;padding:64px 0 32px;font-size:13px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;margin-bottom:44px}
@media(max-width:760px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{font-family:var(--serif);font-size:20px;color:var(--white);letter-spacing:.08em;margin-bottom:10px}
.footer-brand .gold{color:var(--gold-300)}
.site-footer h4{font-size:12px;letter-spacing:.16em;color:var(--gold-300);margin-bottom:14px}
.site-footer ul{display:flex;flex-direction:column;gap:8px}
.site-footer a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:24px;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;font-size:11.5px;color:#7a8696}
.footer-legal{display:flex;gap:18px;flex-wrap:wrap}

/* 内部注記（公開時に削除する制作用の帯） */
.draft-ribbon{
  background:var(--gold-300);color:var(--navy-800);text-align:center;
  font-size:12px;padding:6px 12px;letter-spacing:.06em;font-weight:600;
}

/* ───── v2 追加（2026-08-26・ロゴ挿入とネイビー比率の引き上げ） ───── */
.brand-logo{height:46px;width:auto}
@media(max-width:820px){.brand-logo{height:38px}}
.footer-logo-wrap{width:76px;height:76px;border-radius:50%;background:var(--white);display:flex;align-items:center;justify-content:center;margin-bottom:14px;border:2px solid var(--gold-300)}
.footer-logo-wrap img{width:58px;height:58px}
.sec-tint{background:
  radial-gradient(circle at 1px 1px, rgba(28,43,68,.06) 1px, transparent 1.6px) 0 0/22px 22px,
  var(--bg-alt)}
.hero-emblem{position:absolute;right:4%;top:50%;transform:translateY(-50%);width:min(380px,34vw);opacity:.15;pointer-events:none}
.sec-navy .note{background:rgba(255,255,255,.08);color:#d7dfeb}
.photo-wrap{width:150px;height:150px;border-radius:50%;margin:0 auto 18px;overflow:hidden;border:3px solid var(--gold-300);background:linear-gradient(160deg,var(--navy-600),var(--navy-500))}
.photo-wrap img{width:100%;height:100%;object-fit:cover;object-position:top center}
.photo-wrap.placeholder{display:flex;align-items:center;justify-content:center;color:var(--gold-300);font-family:var(--serif);font-size:40px;font-weight:700}
.photo-mini{width:64px;height:64px;border-radius:50%;overflow:hidden;border:2px solid var(--gold-300);background:linear-gradient(160deg,var(--navy-600),var(--navy-500));flex-shrink:0}
.photo-mini img{width:100%;height:100%;object-fit:cover;object-position:top center}
.js-reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}
.js-reveal.on{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){.js-reveal{opacity:1;transform:none;transition:none}}

/* ───── v3 修正（2026-08-26 宮地さん指摘4点） ───── */
/* ネイビー背景の中の引用帯は、箱をやめて金の罫線＋文字だけにする */
.sec-navy .quote-band{
  background:transparent;border-radius:0;box-shadow:none;
  border-top:1px solid rgba(216,189,134,.55);
  border-bottom:1px solid rgba(216,189,134,.55);
  padding:40px 20px;
}
.sec-navy .quote-band::before{display:none}
/* JOIN帯はフッターと同系のネイビーへ（ゴールドの放射を外し、フッターへ自然につなぐ） */
.cta-band{background:linear-gradient(180deg,var(--navy-800) 0%,var(--navy-900) 100%)}
/* フッターのロゴは白円で抜かず、透過のまま置く */
.footer-logo-wrap{width:auto;height:auto;background:transparent;border:none;border-radius:0;display:block;margin-bottom:12px}
.footer-logo-wrap img{width:76px;height:76px}

/* ───── v4 修正（2026-08-26 宮地さん指摘・セクション境界とファーストビュー強化） ───── */
/* JOIN帯はフッターより明るいネイビー＋下端に金の境界線を引き、フッターと別セクションだと分かる形へ */
.cta-band{
  position:relative;
  background:linear-gradient(135deg,var(--navy-700),var(--navy-600));
}
.cta-band::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:4px;
  background:linear-gradient(90deg,var(--gold-600),var(--gold-300),var(--gold-600));
}
/* ヒーローの装飾（ネットワーク図形＋アウトラインの大型タイポ） */
.hero .wrap{position:relative;z-index:2}
.hero-net{position:absolute;right:2%;top:50%;transform:translateY(-50%);width:min(460px,38vw);opacity:.55;pointer-events:none;z-index:1}
.hero-net .node{animation:heroPulse 4s ease-in-out infinite}
.hero-net .node:nth-child(odd){animation-delay:1.6s}
@keyframes heroPulse{0%,100%{opacity:.5}50%{opacity:1}}
.hero-bigtype{
  position:absolute;right:-10px;bottom:-34px;z-index:0;pointer-events:none;
  font-family:var(--serif);font-weight:700;font-size:clamp(120px,18vw,240px);
  letter-spacing:.04em;color:transparent;-webkit-text-stroke:1px rgba(216,189,134,.20);
  line-height:1;
}
@media(max-width:820px){.hero-net{display:none}.hero-bigtype{font-size:110px;right:-8px;bottom:-18px}}
/* ヒーロー文字の登場アニメーション */
.hero-eyebrow,.hero h1,.hero-lead,.hero .btn-row{opacity:0;transform:translateY(16px);animation:heroIn .8s ease forwards}
.hero h1{animation-delay:.12s}
.hero-lead{animation-delay:.24s}
.hero .btn-row{animation-delay:.36s}
@keyframes heroIn{to{opacity:1;transform:none}}
@media (prefers-reduced-motion: reduce){
  .hero-eyebrow,.hero h1,.hero-lead,.hero .btn-row{opacity:1;transform:none;animation:none}
  .hero-net .node{animation:none}
}

/* ───── v5（2026-08-27 宮地さん選定・ファーストビュー＝案C 光筋） ───── */
.hero{
  background:linear-gradient(135deg,#0e1830 0%,#1c2b44 60%,#16233a 100%);
}
.hero .beam{position:absolute;pointer-events:none;z-index:1}
.hero .beam-1{right:-6%;top:-60%;width:52%;height:220%;transform:rotate(24deg);
  background:linear-gradient(90deg,transparent,rgba(216,189,134,.13) 45%,rgba(216,189,134,.2) 50%,rgba(216,189,134,.13) 55%,transparent)}
.hero .beam-2{right:16%;top:-60%;width:18%;height:220%;transform:rotate(24deg);
  background:linear-gradient(90deg,transparent,rgba(216,189,134,.08) 50%,transparent)}
.hero .glow{position:absolute;border-radius:50%;filter:blur(60px);pointer-events:none;z-index:1}
.hero .glow-1{right:6%;top:12%;width:260px;height:260px;background:rgba(201,168,106,.2)}
.hero .glow-2{right:26%;bottom:4%;width:180px;height:180px;background:rgba(58,90,140,.5)}

/* ───── v6 金継ぎ診断の反映（2026-08-27 宮地さんGO・修理デモと同内容） ───── */
/* 金の文字色: 金の色相のまま明度を下げた派生色で読みやすさの床に載せる */
.brand-mark .gold { color: #A0803A; }        /* 22px太字・床3.0 → 比3.72 */
.eyebrow { color: #7A5E1F; font-size: 14px; }/* 床4.5 → 比5.67 */
.card-link { color: #7A5E1F; font-size: 14px; }
.card-link:hover { color: #6B5324; }
.cta-band .eyebrow { color: var(--gold-300); } /* ネイビー地のラベルは明るい金 */
.card .card-num { color: #7A5E1F; }          /* .card p に負けて灰色化していた設計意図の修正 */
/* 文字段の統合（本文=12/14/16・ボタン類=12/14/22） */
.hero-eyebrow { font-size: 12px; }
.btn { font-size: 14px; }
.footer-bottom { font-size: 12px; }
.brand-sub { font-size: 12px; }
.footer-brand { font-size: 24px; }
.cta-band p { font-size: 16px; }
.card p { font-size: 16px; }
.site-footer { font-size: 14px; }
p.src { font-size: 12px; }
.card-num { font-size: 14px; }
/* 似て非なる色の統合 */
.draft-ribbon { color: #0A1120; }
.btn-gold { color: #0A1120; }
.hero .glow-1 { background: rgba(216,189,134,.2); }
:root { --line: #D7DFEB; }
/* カタカナ語の行またぎを文節で折る（Chromium系） */
p, li { word-break: auto-phrase; overflow-wrap: break-word; }
.hero h1, .sec-title, .quote-band .q, .page-hero h1 { overflow-wrap: break-word; }
/* 分割した段落の間隔 */
.hero-lead p { margin-bottom: 10px; }
.hero-lead { margin-bottom: 30px; }
.sec-lead p { margin-bottom: 10px; }
.cta-band .cta-lead p { margin: 0 auto 12px; max-width: 620px; }
.cta-band .cta-lead { margin-bottom: 22px; }

/* ───── v6b 下層4ページの金継ぎ適用（2026-08-27・同一の物差しで全ページを合格圏へ） ───── */
/* ラベル・番号の金を読める濃さへ（白地・床4.5系は#7A5E1F、26px太字・床3.0系は#A0803A） */
.decl-num { color: #A0803A; }
.plan .tier { color: #7A5E1F; font-size: 12px; }
.founder .role { color: #7A5E1F; }
.lecturer .genre { color: #7A5E1F; border-color: var(--gold-400); font-size: 12px; }
.work-card .tag { color: #7A5E1F; font-size: 12px; }
.work-card .numnote { color: var(--ink-500); font-size: 12px; }
.footer-brand .gold { color: var(--gold-300); }
/* 文字段の統一（12/14/16/22/24の階段へ） */
.page-hero .lead { font-size: 16px; }
.card h3 { font-size: 16px; }
.plan h3 { font-size: 22px; }
.founder h3 { font-size: 22px; }
.lecturer h3 { font-size: 16px; }
.site-footer h4 { font-size: 14px; }
.plan .price { font-size: 24px; }
.plan .price .unit { font-size: 14px; }
.plan li { font-size: 14px; }
.plan .cap { font-size: 14px; }
.founder .title { font-size: 14px; }
.founder .story { font-size: 14px; }
.lecturer p { font-size: 12px; }
.work-card .sub, .work-person-head .sub { font-size: 14px; }
.work-card p { font-size: 14px; }
.work-card .num { font-size: 24px; }
.note { font-size: 12px; }
/* 似て非なる色の統合 */
.quote-band { background: var(--navy-600); }
.plan .price { color: #0A1120; }
/* 分割した段落の間隔 */
.card p + p { margin-top: 8px; }
.work-card p + p { margin-top: 8px; }
.founder .story + .story { margin-top: 8px; }

/* ───── v7 段落・見出しのフィードバック反映（2026-08-27 宮地さん指示） ───── */
.page-hero .lead p { margin-bottom: 8px; }
.page-hero .lead p:last-child { margin-bottom: 0; }
.phase p + p { margin-top: 6px; }

/* ───── v8 一文の途中で折り返させない（2026-08-27 宮地さん指示） ───── */
.sec-lead { max-width: none; }
.page-hero .lead { max-width: none; }
.cta-band .cta-lead p { max-width: none; }

/* ───── v9 発起人・実績カードの横型化（改行は「。」のみ、を成立させる幅を確保） ───── */
.founders-grid{display:grid;grid-template-columns:1fr;gap:20px}
.founders-grid .founder{display:flex;align-items:center;text-align:left;gap:36px;padding:28px 36px}
.founders-grid .photo-wrap{margin:0;flex-shrink:0;width:120px;height:120px}
.founder-info{flex:1;min-width:0}
.founders-grid .story{margin-top:8px}
@media(max-width:700px){.founders-grid .founder{flex-direction:column;text-align:center}.founder-info{width:100%}}
.work-cases{display:grid;grid-template-columns:1fr;gap:18px}
.work-cases .work-card{display:flex;gap:36px;align-items:center;justify-content:space-between}
.work-main{flex:1;min-width:0}
.work-stat{flex-shrink:0;text-align:right;min-width:170px}
.work-stat .num{margin-top:0}
@media(max-width:700px){.work-cases .work-card{flex-direction:column;align-items:flex-start;gap:14px}.work-stat{text-align:left}}

/* ───── v9b 1列スタック（一文が収まる幅の確保） ───── */
.stack-1{grid-template-columns:1fr}
