/* FIT LOGIC ガイド共通 CSS（2026-09-25）
   LP v8（main.css）とは独立。演出なし・読みやすさ優先。
   ブランド：白 × ターコイズ #00C8B4／絵文字なし（lucide 系インライン SVG）。 */
:root{
  --bg:#ffffff; --bg-soft:#f7f8fa; --bg-tint:#f0fbf9;
  --ink:#231c37; --ink-soft:rgba(35,28,55,.66); --ink-faint:rgba(35,28,55,.44);
  --turq:#00C8B4; --turq-deep:#00a897; --turq-pale:#e3faf6;
  --line:rgba(35,28,55,.10);
  --amber:#ff8a1e; --amber-pale:#fff3e6;
  --violet:#8c6dff; --violet-pale:#f1ecff;
  --radius:16px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Noto Sans JP',system-ui,-apple-system,sans-serif;color:var(--ink);background:var(--bg);
  -webkit-font-smoothing:antialiased;line-height:1.9;font-size:16px}
a{color:var(--turq-deep)}
img{max-width:100%;height:auto;display:block}
.wrap{max-width:1040px;margin:0 auto;padding:0 20px}

/* ---------- header ---------- */
.g-head{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line)}
.g-head .wrap{display:flex;align-items:center;justify-content:space-between;height:58px;gap:12px}
.g-brand{display:flex;align-items:center;gap:9px;text-decoration:none;font-family:'Outfit',sans-serif;font-size:13px;letter-spacing:4px}
.g-brand svg{width:28px;height:28px;flex:none}
.g-brand .fit{color:var(--turq)}
.g-brand .logic{color:rgba(20,10,40,.95)}
.g-brand .tag{font-family:'Noto Sans JP',sans-serif;letter-spacing:.06em;font-size:12px;font-weight:700;color:var(--ink-soft);
  margin-left:6px;padding:3px 8px;border-radius:6px;background:var(--bg-soft)}
.g-nav{display:flex;align-items:center;gap:10px}
.g-nav a.guide-link{font-size:13px;font-weight:700;color:var(--ink-soft);text-decoration:none;padding:6px 8px}
.g-badge{display:inline-flex;align-items:center;gap:7px;padding:7px 13px 7px 11px;border-radius:9px;background:#151220;text-decoration:none;color:#fff}
.g-badge svg{width:14px;height:14px;fill:#fff;flex:none}
.g-badge span{display:flex;flex-direction:column;line-height:1.12}
.g-badge small{font-size:7.5px;color:rgba(255,255,255,.72);font-weight:500}
.g-badge strong{font-size:12px;font-weight:700;font-family:-apple-system,system-ui,sans-serif}
@media(max-width:560px){.g-brand .tag,.g-nav a.guide-link{display:none}}

/* ---------- breadcrumb ---------- */
.crumb{font-size:12.5px;color:var(--ink-faint);padding:18px 0 0;display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.crumb a{color:var(--ink-soft);text-decoration:none}
.crumb a:hover{text-decoration:underline}
.crumb svg{width:12px;height:12px;stroke:var(--ink-faint)}

/* ---------- article ---------- */
.g-main{padding:24px 0 72px}
.article{max-width:760px}
.eyebrow{font-family:'Outfit',sans-serif;font-size:11px;font-weight:600;letter-spacing:2.6px;color:var(--turq-deep);text-transform:uppercase;
  display:flex;align-items:center;gap:10px;margin:22px 0 12px}
.eyebrow::before{content:"";width:22px;height:2px;border-radius:2px;background:var(--turq)}
h1{font-size:clamp(26px,4.6vw,38px);font-weight:900;line-height:1.35;letter-spacing:.01em;margin-bottom:14px}
.lead{font-size:clamp(15px,1.9vw,17px);color:var(--ink-soft);line-height:2;margin-bottom:28px}
.meta{font-size:12.5px;color:var(--ink-faint);margin-bottom:28px;display:flex;gap:14px;flex-wrap:wrap}
h2{font-size:clamp(20px,3vw,26px);font-weight:900;line-height:1.45;margin:56px 0 16px;padding-top:14px;border-top:1px solid var(--line)}
h2:first-of-type{margin-top:24px}
h3{font-size:17px;font-weight:700;margin:30px 0 10px}
p{margin-bottom:16px}
ul,ol{margin:0 0 18px 1.3em}
li{margin-bottom:6px}
strong{font-weight:700}
.note{font-size:13px;color:var(--ink-faint);line-height:1.8}

/* ---------- scene chips ---------- */
.scenes{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:10px;margin:14px 0 8px;list-style:none;margin-left:0}
.scenes li{background:var(--bg-soft);border-radius:12px;padding:12px 14px;font-size:14px;line-height:1.7;display:flex;gap:10px;align-items:flex-start;margin:0}
.scenes svg{width:18px;height:18px;flex:none;stroke:var(--turq-deep);margin-top:4px}

/* ---------- steps ---------- */
.steps{counter-reset:step;list-style:none;margin:8px 0 0}
.step{counter-increment:step;display:grid;grid-template-columns:1fr 200px;gap:22px;align-items:start;padding:22px 0;border-bottom:1px dashed var(--line)}
.step:last-child{border-bottom:0}
.step .txt{padding-top:2px}
.step .txt h3{margin:0 0 8px;display:flex;align-items:center;gap:12px;font-size:17px}
.step .txt h3::before{content:counter(step);flex:none;width:30px;height:30px;border-radius:50%;background:var(--turq);color:#fff;
  font-family:'Outfit',sans-serif;font-weight:700;font-size:14px;display:inline-flex;align-items:center;justify-content:center}
.step .txt p{margin-bottom:8px;font-size:15px}
.step .txt p:last-child{margin-bottom:0}
.step .shot{margin:0}
.shot{width:200px;max-width:100%;border-radius:22px;overflow:hidden;border:1px solid var(--line);box-shadow:0 12px 28px -18px rgba(35,28,55,.35);background:#fff}
.shot img{width:100%;display:block}
.shot.placeholder{aspect-ratio:9/19.5;display:flex;align-items:center;justify-content:center;text-align:center;font-size:12px;color:var(--ink-faint);
  background:repeating-linear-gradient(45deg,#fafafa,#fafafa 8px,#f2f2f4 8px,#f2f2f4 16px);padding:12px}
figcaption{font-size:12px;color:var(--ink-faint);margin-top:8px;text-align:center;line-height:1.6}
@media(max-width:640px){
  .step{grid-template-columns:1fr;gap:14px}
  .step .shot{margin:0 auto;width:180px}
}

/* ---------- callouts ---------- */
.callout{border-radius:var(--radius);padding:18px 20px;margin:22px 0;display:grid;grid-template-columns:22px 1fr;gap:12px;font-size:15px;line-height:1.85}
.callout svg{width:22px;height:22px;margin-top:4px}
.callout p{margin:0}
.callout.tip{background:var(--bg-tint);border:1px solid rgba(0,200,180,.25)}
.callout.tip svg{stroke:var(--turq-deep)}
.callout.warn{background:var(--amber-pale);border:1px solid rgba(255,138,30,.25)}
.callout.warn svg{stroke:#c96300}
.callout.info{background:var(--violet-pale);border:1px solid rgba(140,109,255,.22)}
.callout.info svg{stroke:var(--violet)}
.callout .ttl{font-weight:700;display:block;margin-bottom:4px}

/* ---------- tips list ---------- */
.tips{list-style:none;margin:8px 0 0;display:grid;gap:10px}
.tips li{display:grid;grid-template-columns:22px 1fr;gap:10px;padding:14px 16px;border:1px solid var(--line);border-radius:12px;font-size:15px;line-height:1.8;margin:0}
.tips svg{width:20px;height:20px;stroke:var(--turq-deep);margin-top:5px}
.tips b{display:block}

/* ---------- table ---------- */
table{width:100%;border-collapse:collapse;font-size:14.5px;margin:12px 0 22px}
th,td{padding:11px 12px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top;line-height:1.7}
th{font-weight:700;background:var(--bg-soft);font-size:13.5px}
td.num{font-family:'Outfit',sans-serif;font-weight:600}

/* ---------- related ---------- */
.related{margin:44px 0 0}
.related h2{font-size:18px;margin:0 0 12px;border:0;padding:0}
.card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:12px;list-style:none;margin:0}
.card-grid li{margin:0}
.card{display:flex;gap:12px;align-items:flex-start;padding:16px;border:1px solid var(--line);border-radius:14px;text-decoration:none;color:var(--ink);
  background:#fff;transition:border-color .2s,transform .2s;height:100%}
.card:hover{border-color:var(--turq);transform:translateY(-1px)}
.card .ic{flex:none;width:36px;height:36px;border-radius:10px;background:var(--turq-pale);display:flex;align-items:center;justify-content:center}
.card .ic svg{width:18px;height:18px;stroke:var(--turq-deep)}
.card b{display:block;font-size:14.5px;line-height:1.5;margin-bottom:3px}
.card span{font-size:12.5px;color:var(--ink-soft);line-height:1.6}
.related .blog{margin-top:18px;font-size:14px}
.related .blog a{display:block;margin:6px 0}

/* ---------- CTA ---------- */
.cta{margin:52px 0 0;border-radius:20px;padding:30px 24px;text-align:center;background:linear-gradient(135deg,#f0fbf9,#eef6ff);border:1px solid rgba(0,200,180,.25)}
.cta h2{border:0;padding:0;margin:0 0 8px;font-size:22px}
.cta p{color:var(--ink-soft);font-size:14.5px;margin-bottom:16px}
.cta .btn{display:inline-flex;align-items:center;gap:8px;background:var(--turq);color:#fff;font-weight:700;text-decoration:none;padding:14px 26px;border-radius:999px;
  box-shadow:0 10px 24px -12px rgba(0,200,180,.9);font-size:16px}
.cta .btn svg{width:18px;height:18px;fill:#fff}
.cta .sub{font-size:12.5px;color:var(--ink-faint);margin:10px 0 0}

/* ---------- disclaimer ---------- */
.disclaimer{margin-top:36px;padding:16px 18px;border-radius:12px;background:var(--bg-soft);font-size:12.5px;color:var(--ink-faint);line-height:1.8}

/* ---------- hub ---------- */
.hub-hero{padding:40px 0 20px}
.hub-hero h1{font-size:clamp(28px,5vw,44px)}
.hub-hero .lead{max-width:640px}
.hub-start{display:grid;grid-template-columns:1fr;gap:14px;margin:26px 0 8px}
.start-card{display:grid;grid-template-columns:1fr 150px;gap:18px;align-items:center;padding:22px;border-radius:20px;background:linear-gradient(135deg,#f0fbf9,#f4f1ff);
  border:1px solid rgba(0,200,180,.28);text-decoration:none;color:var(--ink)}
.start-card b{font-size:19px;display:block;margin-bottom:6px}
.start-card span{font-size:14px;color:var(--ink-soft);line-height:1.7}
.start-card .go{display:inline-flex;align-items:center;gap:6px;margin-top:12px;font-weight:700;color:var(--turq-deep);font-size:14px}
.start-card .shot{width:120px;justify-self:end;border-radius:18px}
@media(max-width:560px){.start-card{grid-template-columns:1fr}.start-card .shot{justify-self:center}}
.hub-sec{margin-top:44px}
.hub-sec h2{border:0;padding:0;margin:0 0 4px;font-size:22px;display:flex;align-items:center;gap:10px}
.hub-sec h2 svg{width:22px;height:22px;stroke:var(--turq-deep)}
.hub-sec .desc{font-size:14px;color:var(--ink-soft);margin-bottom:14px}
.card.soon{opacity:.55;pointer-events:none}
.card.soon b::after{content:"準備中";font-size:10.5px;font-weight:700;color:var(--ink-faint);background:var(--bg-soft);border-radius:4px;padding:2px 6px;margin-left:8px;vertical-align:middle}

/* ---------- footer ---------- */
footer{border-top:1px solid var(--line);padding:32px 0 40px;font-size:12.5px;color:var(--ink-faint)}
.foot-links{display:flex;flex-wrap:wrap;gap:6px 18px;margin-bottom:12px}
.foot-links a{color:var(--ink-soft);text-decoration:none}
.foot-brand{font-family:'Outfit',sans-serif;letter-spacing:.06em;font-weight:600;color:var(--ink-soft)}

/* ---------- toc (article) ---------- */
.toc{border:1px solid var(--line);border-radius:14px;padding:16px 18px;margin:0 0 28px;font-size:14px;background:var(--bg-soft)}
.toc b{display:block;font-size:12.5px;letter-spacing:.1em;color:var(--ink-faint);margin-bottom:8px}
.toc ol{margin:0 0 0 1.2em}
.toc li{margin-bottom:3px}
.toc a{color:var(--ink);text-decoration:none}
.toc a:hover{color:var(--turq-deep)}

/* ---------- hub: ＋α band（2026-09-25 追加） ---------- */
.plus-alpha{margin-top:40px;padding:32px 24px;border-radius:24px;background:linear-gradient(135deg,#f0fbf9 0%,#f4f1ff 60%,#fff5ea 100%);border:1px solid rgba(0,200,180,.22)}
.plus-alpha .eyebrow{margin-top:0}
.plus-alpha h2{border:0;padding:0;margin:0 0 10px;font-size:clamp(22px,3.6vw,30px)}
.pa-lead{font-size:15px;color:var(--ink-soft);line-height:1.95;max-width:680px;margin-bottom:22px}
.pa-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px}
.pa-card{display:flex;flex-direction:column;gap:6px;padding:18px 16px;border-radius:16px;background:rgba(255,255,255,.85);border:1px solid rgba(35,28,55,.08);text-decoration:none;color:var(--ink);transition:transform .2s,border-color .2s}
.pa-card:hover{transform:translateY(-2px);border-color:var(--turq)}
.pa-card .ic{width:36px;height:36px;border-radius:10px;background:var(--turq-pale);display:flex;align-items:center;justify-content:center;margin-bottom:4px}
.pa-card .ic svg{width:18px;height:18px;stroke:var(--turq-deep)}
.pa-card b{font-size:17px}
.pa-card span:last-child{font-size:13px;color:var(--ink-soft);line-height:1.7}
.pa-shots{display:flex;gap:14px;justify-content:center;margin:26px 0 0;flex-wrap:wrap}
.pa-shots img{width:150px;border-radius:20px;border:1px solid var(--line);box-shadow:0 12px 28px -18px rgba(35,28,55,.35)}
@media(max-width:560px){.plus-alpha{padding:24px 18px}.pa-shots img{width:120px}}

/* =================================================================
   ビジュアル部品（2026-09-26 追加）：図解・イメージ図・写真・エムロン
   ================================================================= */
.viz{margin:26px 0;padding:24px 20px 18px;border-radius:20px;background:linear-gradient(180deg,#fbfcfd,#f4f7f8);border:1px solid var(--line)}
.viz>figcaption,.viz .cap{margin-top:14px;font-size:12.5px;color:var(--ink-faint);text-align:center;line-height:1.7}
.viz svg{display:block;width:100%;height:auto;max-width:720px;margin:0 auto}
.viz .svg-scroll{overflow-x:auto}
.viz .svg-scroll svg{min-width:560px}
.viz-tag{display:inline-block;font:600 10.5px/1 'Outfit',sans-serif;letter-spacing:.14em;color:var(--turq-deep);background:var(--turq-pale);padding:5px 8px;border-radius:6px;margin-bottom:12px;text-transform:uppercase}
.mock-note{font-size:11.5px;color:var(--ink-faint);text-align:center;margin-top:10px}

/* 写真 */
.photo{margin:24px 0}
.photo img{width:100%;border-radius:18px;border:1px solid var(--line);aspect-ratio:4/3;object-fit:cover}
.photo figcaption{text-align:left}
.photo-pair{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:22px 0}
.photo-pair figure{margin:0;position:relative}
.photo-pair img{width:100%;border-radius:14px;aspect-ratio:4/3;object-fit:cover;border:1px solid var(--line)}
.photo-pair .verdict{position:absolute;top:10px;left:10px;display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:700;padding:6px 10px;border-radius:999px;background:#fff;box-shadow:0 4px 12px -6px rgba(35,28,55,.4)}
.photo-pair .verdict svg{width:14px;height:14px}
.verdict.ok{color:var(--turq-deep)}.verdict.ng{color:#c96300}
.photo-pair figcaption{text-align:left;font-size:13px;color:var(--ink-soft);margin-top:8px}
@media(max-width:560px){.photo-pair{grid-template-columns:1fr}}

/* エムロンの並び */
.emrow{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-end;gap:22px 26px;padding:10px 0 4px}
.emrow .em-item{display:flex;flex-direction:column;align-items:center;gap:14px;min-width:64px}
.emrow .em-item b{font-size:13px}
.emrow .em-item span{font-size:11.5px;color:var(--ink-faint);text-align:center;line-height:1.5}
.emrow.tight{gap:16px 14px}
.em-hero{display:flex;justify-content:center;padding:24px 0 30px}
.em-side{float:right;margin:0 0 12px 24px;padding:18px 10px 24px}
@media(max-width:560px){.em-side{float:none;margin:0 auto 12px;display:flex;justify-content:center}}

/* 吹き出し */
.bubble-say{position:relative;background:#fff;border:1px solid rgba(0,200,180,.28);border-radius:16px;padding:12px 16px;font-size:14px;line-height:1.75;box-shadow:0 10px 22px -18px rgba(0,120,110,.6);max-width:420px}
.bubble-say::before{content:"";position:absolute;left:-7px;top:22px;width:12px;height:12px;background:#fff;border-left:1px solid rgba(0,200,180,.28);border-bottom:1px solid rgba(0,200,180,.28);transform:rotate(45deg)}
.say-row{display:flex;align-items:center;gap:22px;margin:20px 0}
.say-row .char{flex:none}
@media(max-width:480px){.say-row{gap:14px}}

/* 精霊フォーム */
.spf-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(172px,1fr));gap:14px;margin:18px 0}
.spf-grid figure{margin:0;display:flex;flex-direction:column;align-items:center}
.spf-grid .spf{width:100%;display:flex;justify-content:center}
.spf-grid .spf .stage{transform:scale(.78);transform-origin:top center;margin-bottom:-52px}
.spf-grid figcaption{margin-top:4px;font-weight:700;font-size:14px;color:var(--ink)}
.spf-grid figcaption span{display:block;font-weight:400;font-size:11.5px;color:var(--ink-faint)}
.locked{width:100%;max-width:160px;aspect-ratio:205/255;border-radius:20px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:#fff;font-size:12px;letter-spacing:.08em}
.locked.shine{background:radial-gradient(60% 50% at 50% 45%,rgba(255,220,140,.55),rgba(40,32,20,0) 70%),linear-gradient(180deg,#2c2618,#14110b)}
.locked.dusk{background:radial-gradient(60% 50% at 50% 45%,rgba(160,110,230,.45),rgba(10,8,16,0) 70%),linear-gradient(180deg,#1c1726,#08070c)}
.locked .sil{width:62px;height:52px;border-radius:50% 50% 48% 48%/58% 58% 44% 44%;background:rgba(0,0,0,.55);box-shadow:0 0 22px 2px rgba(255,255,255,.18)}
.locked svg{width:16px;height:16px;stroke:#fff;opacity:.8}

/* UI イメージ図（スマホ風カード） */
.phone{width:260px;max-width:100%;margin:0 auto;border-radius:34px;padding:12px;background:#1a1726;box-shadow:0 20px 40px -24px rgba(35,28,55,.6)}
.phone .scr{border-radius:24px;background:linear-gradient(180deg,#f7fbfb,#f3f1f6);padding:18px 14px 20px;min-height:200px;font-size:12px;color:var(--ink)}
.phone .scr h5{font-size:14px;font-weight:900;margin:0 0 4px}
.phone .scr .sub{font-size:10.5px;color:var(--ink-faint);margin-bottom:12px}
.opt{display:flex;justify-content:space-between;align-items:center;gap:8px;padding:10px 12px;border-radius:14px;background:#fff;border:1px solid var(--line);margin-bottom:8px}
.opt b{font-size:12.5px}.opt small{font-size:10.5px;color:var(--ink-faint)}
.opt.on{border-color:var(--turq);box-shadow:0 0 0 2px rgba(0,200,180,.18);background:#f2fdfb}
.pill-btn{display:block;text-align:center;background:var(--turq);color:#fff;font-weight:700;border-radius:999px;padding:9px;margin-top:10px;font-size:12.5px}
.chip-row{display:flex;flex-wrap:wrap;gap:6px;margin:6px 0 10px}
.chip{font-size:11px;padding:5px 9px;border-radius:999px;background:#fff;border:1px solid var(--line)}
.chip.on{background:var(--turq);color:#fff;border-color:var(--turq)}
.mock-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;align-items:start}

/* Sora's Note モック */
.note-card{max-width:420px;margin:0 auto;border-radius:22px;padding:18px 18px 16px;background:linear-gradient(160deg,#ffffff,#f3fbfa 60%,#f6f2ff);border:1px solid rgba(0,200,180,.25);box-shadow:0 18px 34px -26px rgba(0,110,100,.7)}
.note-card .theme{font-weight:900;font-size:16px;margin:4px 0 10px;text-align:center}
.note-card .dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--turq);margin-right:6px}
.note-card p{font-size:13px;line-height:1.85;margin:0 0 8px;color:var(--ink-soft)}
.note-card .daily{margin-top:10px;padding:10px 12px;border-radius:12px;background:#fff;border:1px dashed rgba(0,200,180,.4);font-size:12.5px}
.note-card .daily b{color:var(--turq-deep);font-size:11px;letter-spacing:.1em;display:block;margin-bottom:2px}
.manual-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px}
.manual-grid div{border-radius:16px;padding:14px;background:linear-gradient(170deg,#fbf9ff,#f3efff);border:1px solid rgba(140,109,255,.22);font-size:12.5px;line-height:1.75;color:var(--ink-soft)}
.manual-grid b{display:flex;align-items:center;gap:6px;color:var(--ink);font-size:13px;margin-bottom:4px}
.manual-grid b svg{width:15px;height:15px;stroke:var(--violet)}

/* タイル（4 つのクイックアクション） */
.tiles{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;max-width:420px;margin:0 auto}
.tile{aspect-ratio:1;border-radius:18px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;font:700 10px/1 'Outfit',sans-serif;letter-spacing:.12em;background:#f1f1f4;color:var(--ink-faint);border:1px solid var(--line)}
.tile svg{width:20px;height:20px}
.tile.lit{background:linear-gradient(160deg,#fff7e6,#ffe7c2);color:#a45a00;border-color:rgba(255,160,60,.45);box-shadow:0 0 16px -4px rgba(255,170,70,.7)}
.tile.lit:nth-child(2){background:linear-gradient(160deg,#eafff9,#c9f7ec);color:#00897b;border-color:rgba(0,200,180,.45);box-shadow:0 0 16px -4px rgba(0,200,180,.6)}
.tile.lit:nth-child(3){background:linear-gradient(160deg,#fff0f3,#ffd9e2);color:#b8325a;border-color:rgba(255,120,150,.45);box-shadow:0 0 16px -4px rgba(255,120,150,.6)}
.tile.lit:nth-child(4){background:linear-gradient(160deg,#fffbe8,#fff0b8);color:#8a6d00;border-color:rgba(230,190,40,.5);box-shadow:0 0 16px -4px rgba(230,190,40,.6)}
.gauge{max-width:420px;margin:14px auto 0;font-size:12px;color:var(--ink-soft);text-align:center}
.gauge .bar{height:8px;border-radius:999px;background:#ecebf0;overflow:hidden;margin-top:6px}
.gauge .bar i{display:block;height:100%;background:linear-gradient(90deg,var(--turq),#8c6dff);border-radius:inherit}

/* 週カレンダー（ストリーク保険） */
.week{display:grid;grid-template-columns:repeat(7,1fr);gap:8px;max-width:520px;margin:0 auto}
.week .d{border-radius:14px;padding:10px 4px;text-align:center;background:#fff;border:1px solid var(--line);font-size:11px;color:var(--ink-faint)}
.week .d b{display:block;font:700 15px/1.3 'Outfit',sans-serif;color:var(--ink)}
.week .d svg{width:18px;height:18px;margin:6px auto 0;display:block}
.week .d.done svg{stroke:#ff8a1e}
.week .d.shield{background:#f2fdfb;border-color:rgba(0,200,180,.45)}
.week .d.shield svg{stroke:var(--turq-deep)}
.week .d.todo svg{stroke:#d5d3dc}
@media(max-width:480px){.week{gap:4px}.week .d{padding:8px 2px;font-size:10px}}

/* トライアル・タイムライン等の横並びステップ */
.hsteps{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:10px;counter-reset:hs}
.hsteps>div{position:relative;border-radius:16px;padding:14px 12px;background:#fff;border:1px solid var(--line);font-size:12.5px;line-height:1.65;color:var(--ink-soft)}
.hsteps>div b{display:block;color:var(--ink);font-size:13.5px;margin-bottom:4px}
.hsteps>div .k{font:700 10.5px/1 'Outfit',sans-serif;letter-spacing:.14em;color:var(--turq-deep);display:block;margin-bottom:8px}
.hsteps>div.hl{border-color:rgba(0,200,180,.5);background:#f2fdfb}
.hsteps>div.warm{border-color:rgba(255,138,30,.45);background:#fff8ef}

/* iOS 設定モック */
.ios{max-width:340px;margin:0 auto;border-radius:18px;background:#f2f2f7;padding:14px;font-family:-apple-system,system-ui,sans-serif}
.ios .grp{background:#fff;border-radius:12px;overflow:hidden;margin-bottom:12px}
.ios .row{display:flex;align-items:center;gap:10px;padding:11px 12px;border-bottom:1px solid #ececf0;font-size:13px;color:#111}
.ios .row:last-child{border-bottom:0}
.ios .row .ico{width:26px;height:26px;border-radius:7px;display:flex;align-items:center;justify-content:center;flex:none}
.ios .row .ico svg{width:15px;height:15px;stroke:#fff}
.ios .row .chev{margin-left:auto;color:#c4c4c8}
.ios .row.hl{background:#eafaf8}
.ios .row.red{color:#e5333b;justify-content:center;font-weight:600}
.ios .step-n{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:var(--turq);color:#fff;font:700 11px/1 'Outfit',sans-serif;margin-left:6px}

/* ハブ：3 ステップの約束 */
.promise{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:28px 0 6px}
.promise div{border-radius:18px;padding:18px 16px;background:#fff;border:1px solid var(--line);position:relative}
.promise .n{font:800 30px/1 'Outfit',sans-serif;color:var(--turq);opacity:.9}
.promise b{display:block;font-size:16px;margin:8px 0 4px}
.promise span{font-size:13px;color:var(--ink-soft);line-height:1.7}
@media(max-width:640px){.promise{grid-template-columns:1fr}}
.hub-hero-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:24px;align-items:center}
@media(max-width:720px){.hub-hero-grid{grid-template-columns:1fr}}
/* コレクション棚・確率・天使の輪 */
.shelf{display:grid;grid-template-columns:repeat(8,1fr);gap:8px;max-width:460px;margin:0 auto}
.shelf .cc{aspect-ratio:1;border-radius:12px;background:#f1f0f4;display:flex;align-items:center;justify-content:center;border:1px dashed #dcd9e4}
.shelf .cc svg{width:18px;height:18px;stroke:#cfccd9}
.shelf .cc.on{background:#fff;border:1px solid rgba(0,200,180,.35);box-shadow:0 0 12px -6px rgba(0,200,180,.8)}
.shelf .cc.on svg{stroke:var(--turq-deep)}
.shelf .cc.on:nth-child(3n) svg{stroke:#8c6dff}.shelf .cc.on:nth-child(4n) svg{stroke:#ff8a1e}
@media(max-width:480px){.shelf{grid-template-columns:repeat(4,1fr)}}
.odds{display:flex;justify-content:center;gap:10px}
.odds i{width:26px;height:26px;border-radius:50%;background:#e9e7ef}
.odds i.hit{background:conic-gradient(#ff8a1e,#00C8B4,#8c6dff,#ff5e9a,#ff8a1e);box-shadow:0 0 14px -2px rgba(140,109,255,.7)}
.halo-wrap{position:relative;display:flex;justify-content:center;padding:34px 20px 16px;align-self:center}
.halo-wrap .halo{position:absolute;top:10px;left:50%;width:62px;height:16px;margin-left:-31px;border-radius:50%;border:2px solid rgba(255,214,120,.95);box-shadow:0 0 12px 2px rgba(255,214,120,.55)}
@media(max-width:640px){.halo-wrap{padding-top:30px}}
/* モック補助 */
.step .mockfig{margin:0;width:210px;max-width:100%}
.mockfig .phone{width:210px}
.mockfig figcaption{text-align:center}
@media(max-width:640px){.step .mockfig{margin:0 auto}}
.pfcbars{display:grid;gap:6px;margin:10px 0}
.pfcbars i{display:block;height:7px;border-radius:999px;background:linear-gradient(90deg,var(--c) calc(var(--v)*100%),#ecebf0 0)}
.camera-box{margin-top:10px;border-radius:16px;border:1.5px dashed rgba(0,200,180,.5);background:#f2fdfb;height:120px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;color:var(--turq-deep)}
.camera-box svg{width:28px;height:28px}
.camera-box small{font-size:10.5px;color:var(--ink-faint)}
.stars{display:flex;gap:4px;margin:4px 0 10px}.stars svg{width:18px;height:18px;fill:#ffb020;stroke:#ffb020}.stars .off svg{fill:none;stroke:#d5d3dc}
.stars .off{display:flex;gap:4px}
.backfill{font-size:10.5px;background:#fff8ef;border:1px solid rgba(255,138,30,.35);color:#9a5200;border-radius:12px;padding:8px 10px;margin-bottom:8px;display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.backfill svg{width:14px;height:14px}.backfill span{margin-left:auto;color:var(--turq-deep);font-weight:700}
.tgl{margin-left:auto;width:34px;height:20px;border-radius:999px;background:#e5e5ea;position:relative;flex:none}
.tgl.on{background:#34c759}.tgl::after{content:"";position:absolute;top:2px;left:2px;width:16px;height:16px;border-radius:50%;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.2)}
.tgl.on::after{left:16px}
.opt .tgl{margin-left:auto}
.opt svg{width:16px;height:16px;stroke:#d23b3b}
.flow-mini{margin:0}.flow-mini .hsteps>div{padding:10px 12px}
.cat4{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.cat4 div{background:#fff;border:1px solid var(--line);border-radius:16px;padding:16px 12px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:6px}
.cat4 svg{width:26px;height:26px;stroke:var(--turq-deep)}
.cat4 b{font-size:14px}.cat4 span{font-size:11.5px;color:var(--ink-faint);line-height:1.5}
@media(max-width:560px){.cat4{grid-template-columns:repeat(2,1fr)}}
.intensity{display:grid;grid-template-columns:repeat(5,1fr);gap:8px}
.intensity div{border-radius:14px;padding:12px 8px;background:#fff;border:1px solid var(--line);text-align:center;display:flex;flex-direction:column;gap:4px}
.intensity .s{font:800 16px/1 'Outfit',sans-serif;color:#ffb020}
.intensity b{font-size:13px}.intensity span:last-child{font-size:11px;color:var(--ink-faint);line-height:1.5}
.intensity div:nth-child(1){background:#f7fdfc}.intensity div:nth-child(5){background:#fff7ef}
.intensity .hl{border-color:rgba(0,200,180,.5)}
@media(max-width:560px){.intensity{grid-template-columns:1fr 1fr}}
.medals{display:flex;flex-wrap:wrap;gap:10px;margin:8px 0 16px}
.medal{width:62px;height:62px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#f1f0f4;color:var(--ink-faint);border:2px dashed #dcd9e4}
.medal b{font:800 18px/1 'Outfit',sans-serif}.medal span{font-size:10px}
.medal.on{background:radial-gradient(circle at 35% 30%,#fff6d8,#ffd166);color:#8a5a00;border:2px solid #f2b705;box-shadow:0 0 14px -4px rgba(242,183,5,.8)}
.layers{display:grid;gap:8px;max-width:560px;margin:0 auto}
.layers div{border-radius:14px;padding:12px 16px;display:flex;flex-direction:column;gap:2px;background:#fff;border:1px solid var(--line)}
.layers b{font-size:14px}.layers span{font-size:12.5px;color:var(--ink-soft)}
.layers .l1{border-left:5px solid #8c6dff}.layers .l2{border-left:5px solid #00C8B4;margin-left:14px}.layers .l3{border-left:5px solid #ff8a1e;margin-left:28px}.layers .l4{border-left:5px solid #ff5e9a;margin-left:42px}
@media(max-width:480px){.layers .l2,.layers .l3,.layers .l4{margin-left:0}}
.sumrow{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;text-align:center}
.sumrow b{display:block;font:800 22px/1.1 'Outfit',sans-serif;color:var(--turq-deep)}.sumrow span{font-size:11px;color:var(--ink-faint)}
.logins{display:flex;flex-wrap:wrap;gap:8px;margin:6px 0 14px}
.lg{display:inline-flex;align-items:center;gap:6px;padding:10px 14px;border-radius:12px;font-size:13px;font-weight:700;border:1px solid var(--line);background:#fff}
.lg svg{width:15px;height:15px;stroke:var(--turq-deep)}
.lg.apple{background:#111;color:#fff;border-color:#111}.lg.google{color:#3c4043}
.viz,.photo,.photo-pair{clear:both}

/* レア・スーパーレアの「？」オーブ（LP v8 と同じ表現・中身は出さない） */
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.orb-row{display:flex;justify-content:center;align-items:flex-start;gap:38px;flex-wrap:wrap;margin-top:34px}
.orb-group{display:flex;flex-direction:column;align-items:center;gap:14px}
.orbs{display:flex;gap:14px;align-items:center}
.orb{width:52px;height:44px;border-radius:50% 50% 48% 48% / 58% 58% 44% 44%;
  background:linear-gradient(175deg,#3a3352,#231c37 70%);
  display:flex;align-items:center;justify-content:center;position:relative;
  box-shadow:0 0 0 1px rgba(35,28,55,.18),0 10px 18px -10px rgba(45,35,70,.5),0 0 18px -4px var(--og,rgba(0,200,180,.35));
  animation:floaty 5.6s ease-in-out infinite}
.orb:nth-child(2){animation-delay:.5s}
.orb:nth-child(3){animation-delay:1s}
.orb:nth-child(4){animation-delay:1.5s}
.orb:nth-child(5){animation-delay:2s}
.orb::after{content:"";position:absolute;left:22%;top:14%;width:26%;height:20%;border-radius:50%;
  background:rgba(255,255,255,.22);filter:blur(1px)}
.orb span{font-family:'Outfit',sans-serif;font-size:17px;font-weight:800;color:rgba(255,255,255,.6)}
.orb-super{width:58px;height:49px;
  background:linear-gradient(175deg,#2c2544,#161022 70%);
  box-shadow:0 0 0 1px rgba(35,28,55,.22),0 12px 20px -10px rgba(20,10,30,.6),
    0 0 22px -4px rgba(255,214,160,.45),0 0 40px -12px rgba(179,155,255,.45)}
.orb-super svg{width:19px;height:19px;stroke:rgba(255,235,200,.75);filter:drop-shadow(0 0 5px rgba(255,214,160,.6))}
.orb-label{font-size:11.5px;font-weight:700;color:var(--ink-faint);letter-spacing:.04em}
.collect-note{font-size:11px;color:var(--ink-faint);margin-top:26px;line-height:1.9}
@media(prefers-reduced-motion:reduce){.orb{animation:none}}
/* ひみつ（隠し要素の予告） */
.secrets{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;margin:18px 0}
.secrets .sc{position:relative;border-radius:18px;padding:18px 16px 16px;background:linear-gradient(165deg,#2c2544,#161022 75%);color:#fff;display:flex;flex-direction:column;gap:6px;overflow:hidden;box-shadow:0 14px 30px -20px rgba(20,10,30,.8)}
.secrets .sc::after{content:"";position:absolute;right:-30px;top:-30px;width:110px;height:110px;border-radius:50%;background:radial-gradient(circle,rgba(179,155,255,.35),transparent 70%)}
.secrets .q{width:40px;height:34px;border-radius:50% 50% 48% 48%/58% 58% 44% 44%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;font:800 17px/1 'Outfit',sans-serif;color:rgba(255,235,200,.85);box-shadow:0 0 16px -4px rgba(255,214,160,.6);margin-bottom:4px}
.secrets .q svg{width:17px;height:17px;stroke:rgba(255,235,200,.85)}
.secrets b{font-size:14.5px}.secrets span:last-child{font-size:12.5px;color:rgba(255,255,255,.7);line-height:1.7}

/* ---- 動画（2026-09-25） ---- */
.g-video{margin:4px auto 36px;max-width:420px}
.g-video video{display:block;width:100%;height:auto;border-radius:18px;background:#f1f6f6;box-shadow:0 14px 36px rgba(20,30,50,.10)}
.g-video figcaption{margin-top:10px;font-size:12px;color:var(--ink-faint);text-align:center;line-height:1.8}
.g-video figcaption a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.hub-film{margin:28px 0 8px}
.hub-film .film-cap{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:700;color:var(--ink-soft);margin-bottom:10px}
.hub-film .film-cap svg{width:18px;height:18px;color:#00C8B4}
.yt-lite{position:relative;aspect-ratio:16/9;border-radius:18px;overflow:hidden;background:#eef5f5;box-shadow:0 14px 36px rgba(20,30,50,.10)}
.yt-lite button{all:unset;cursor:pointer;display:block;width:100%;height:100%;position:relative}
.yt-lite img{width:100%;height:100%;object-fit:cover;display:block}
.yt-lite .yt-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);transition:transform .2s}
.yt-lite button:hover .yt-play,.yt-lite button:focus-visible .yt-play{transform:translate(-50%,-50%) scale(1.08)}
.yt-lite iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
@media (prefers-reduced-motion:reduce){.g-video video{animation:none}}
