body{
  line-height:1.7;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/* ===== Header ===== */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(254,249,244,.9);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--divider);
}
.header-inner{
  max-width:1040px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;
  height:56px;
}
.brand{display:flex;align-items:center;gap:9px}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  background:#1a1a2e;color:#e8a0b4;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.88rem;flex-shrink:0;
}
.brand-name{font-family:'Quicksand',sans-serif;font-weight:700;font-size:.95rem;letter-spacing:.01em;white-space:nowrap}
.header-actions{display:flex;align-items:center;gap:10px}
@media(max-width:400px){
  .brand-name{font-size:.78rem}
  .header-login{padding:.3rem .4rem;font-size:.72rem}
  .header-cta{padding:.38rem .65rem;font-size:.68rem;gap:3px}
  .header-inner{padding:0 12px}
}
.header-login{
  font-size:.78rem;font-weight:600;color:var(--text-sub);
  padding:.38rem .7rem;border-radius:999px;transition:color .15s;
}
.header-login:hover{color:var(--pink)}
.header-cta{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--pink);color:#fff;
  padding:.42rem .9rem;border-radius:999px;
  font-size:.72rem;font-weight:700;border:none;cursor:pointer;
  transition:opacity .15s;
}
.header-cta:hover{opacity:.88}

/* ===== Hero ===== */
.hero-bg{
  background:radial-gradient(circle at 80% 20%,rgba(232,160,180,.18),transparent 40%),radial-gradient(circle at 10% 60%,rgba(212,237,227,.5),transparent 35%),var(--bg);
}
.hero{
  max-width:1040px;margin:0 auto;padding:64px 20px 56px;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
  gap:48px;align-items:center;
  overflow:hidden;
}
@media(max-width:700px){
  .hero{padding:40px 20px 36px;gap:32px}
  .hero-visual{order:-1}
}
@media(max-width:360px){
  .hero{padding-left:16px;padding-right:16px}
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--pink-pale);color:var(--pink-deep);
  font-size:.65rem;font-weight:700;padding:.3rem .7rem;border-radius:999px;
  margin-bottom:1rem;letter-spacing:.04em;line-height:1.5;text-wrap:balance;
}
.hero-title{
  font-size:2.1rem;font-weight:700;line-height:1.35;
  margin-bottom:.9rem;
  text-wrap:balance;
  word-break:keep-all;
  overflow-wrap:anywhere;
}
.hero-title em{
  font-style:normal;
  background:linear-gradient(135deg,var(--pink-deep),#e8a0b4);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-desc{font-size:.82rem;color:#7a6358;line-height:1.8;margin-bottom:1rem;max-width:34em;text-wrap:pretty;word-break:keep-all;overflow-wrap:anywhere}
.hero-trial-note{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.42rem .9rem;border-radius:999px;
  background:#fff;border:1.5px solid var(--pink-soft);color:var(--pink-deep);
  font-size:.78rem;font-weight:700;line-height:1.45;box-shadow:0 6px 18px rgba(232,160,180,.16);
  text-wrap:balance;
}
@media(max-width:700px){
  .hero-title{font-size:1.55rem;text-align:center}
  .hero-eyebrow{display:flex;justify-content:center;max-width:100%;margin-left:auto;margin-right:auto;text-align:center}
  .hero-desc{text-align:center}
  .hero-trial-note{display:flex;width:max-content;max-width:100%;margin:0 auto}
}
@media(max-width:360px){
  .hero-title{font-size:1.36rem}
}

/* ===== 事前登録フォーム ===== */
.prereg-box{
  background:var(--card);border:1.5px solid var(--pink-soft);border-radius:18px;
  padding:1.4rem 1.2rem;box-shadow:var(--shadow);
}
.prereg-box-title{
  font-size:.8rem;font-weight:700;margin-bottom:.3rem;
  display:flex;align-items:center;gap:.4rem;
}
.prereg-box-sub{font-size:.68rem;color:var(--muted);margin-bottom:.9rem;line-height:1.6}
.prereg-form{display:flex;gap:.5rem;flex-wrap:wrap}
.prereg-input{
  flex:1;min-width:180px;
  border:1.5px solid var(--divider);border-radius:999px;
  padding:.55rem 1rem;font-size:.78rem;font-family:inherit;
  background:#fff;color:var(--text);outline:none;
  transition:border-color .15s;
}
.prereg-input:focus{border-color:var(--pink)}
.prereg-btn{
  background:var(--pink);color:#fff;
  border:none;border-radius:999px;
  padding:.55rem 1.1rem;font-size:.78rem;font-weight:700;
  cursor:pointer;font-family:inherit;white-space:nowrap;
  transition:opacity .15s;
}
.prereg-btn:hover{opacity:.88}
.prereg-note{font-size:.62rem;color:var(--muted);margin-top:.6rem;line-height:1.5}
.prereg-benefit{
  display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:.8rem;
}
.prereg-chip{
  display:inline-flex;align-items:center;gap:.3rem;
  background:var(--mint-pale);color:#3a8a6a;
  font-size:.62rem;font-weight:700;padding:.2rem .6rem;border-radius:999px;
}

/* 成功・エラーメッセージ */
.prereg-ok{
  background:#e8f7f0;border:1.5px solid #a8d8c0;color:#2d7a5a;
  border-radius:12px;padding:.7rem 1rem;font-size:.75rem;font-weight:700;
  display:flex;align-items:center;gap:.5rem;
}
.prereg-status{margin-bottom:1rem}
.prereg-err{
  background:#fdf0f3;border:1.5px solid var(--pink-soft);color:var(--pink-deep);
  border-radius:12px;padding:.7rem 1rem;font-size:.75rem;font-weight:700;
  display:flex;align-items:center;gap:.5rem;
}
.prereg-form-stack{display:flex;flex-direction:column;gap:.5rem}
.prereg-input-rounded{border-radius:10px}
.prereg-input-select{cursor:pointer}
.prereg-textarea{resize:vertical;line-height:1.6}
.prereg-legal{font-size:.58rem;color:var(--muted);text-align:center;line-height:1.6;margin-top:.3rem}
.prereg-legal a{color:var(--pink)}

/* ===== Hero Visual (重ね表示) ===== */
.hero-visual{display:flex;justify-content:center;align-items:center;min-width:0}
.hero-stack{position:relative;width:min(380px,100%);margin:0 auto;padding-top:18px;padding-right:18px}
.hero-stack-back{position:absolute;top:0;right:0;width:100%;height:100%;z-index:1;box-shadow:0 12px 28px rgba(0,0,0,.08);display:flex;flex-direction:column;transform:translate(14px,-14px)}
.hero-stack-back .fv-body{flex:1;min-height:0;overflow:hidden}
.hero-stack-front{position:relative;width:100%;z-index:2;box-shadow:0 18px 40px rgba(0,0,0,.14)}
@media(max-width:700px){
  .hero-stack{max-width:340px;margin-top:22px;padding-top:14px;padding-right:14px}
  .hero-stack-back{transform:translate(10px,-10px)}
}
.phone-mock{
  width:min(260px,90%);
  background:var(--card);border-radius:28px;
  box-shadow:var(--shadow-lg);
  border:1.5px solid var(--divider);
  overflow:hidden;
  padding:0;
}
.phone-bar{
  background:#1a1a2e;height:40px;
  display:flex;align-items:center;padding:0 14px;gap:8px;
}
.phone-bar-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.2)}
.phone-bar-dot:first-child{background:#e8a0b4}
.phone-screen{padding:14px 14px 18px}
.mock-card{
  background:var(--bg);border-radius:12px;padding:10px 12px;margin-bottom:8px;
  border:1px solid var(--divider);
}
.mock-label{font-size:.52rem;color:var(--muted);margin-bottom:2px}
.mock-value{font-size:.82rem;font-weight:700}
.mock-value.pink{color:var(--pink-deep)}
.mock-value.green{color:#3a8a6a}
.mock-row{display:flex;justify-content:space-between;align-items:center;gap:8px}
.mock-chip{
  font-size:.48rem;font-weight:700;padding:.15rem .4rem;border-radius:999px;
  background:var(--pink-pale);color:var(--pink-deep);
}
.mock-divider{height:1px;background:var(--divider);margin:6px 0}
.mock-split{display:flex;gap:10px}
.mock-split-col{flex:1}
.mock-value-sm{font-size:.75rem}
.mock-list{margin-top:4px;display:flex;flex-direction:column;gap:5px}
.mock-row-plain{padding:0;border:none;font-size:.62rem}
.mock-row-tight{padding:4px 0;border:none;font-size:.62rem}
.mock-status-ok{color:#3a8a6a;font-weight:700}
.mock-status-warn{color:#e07000;font-weight:700}
.mock-status-muted{color:var(--muted)}
.mock-bar-wrap{margin-top:4px}
.mock-bar{height:6px;border-radius:999px;background:var(--divider)}
.mock-bar-fill{height:100%;border-radius:999px;background:linear-gradient(90deg,var(--pink),#f4b8cb)}
.mock-bar-fill-pink-72{width:72%;background:linear-gradient(90deg,#e8a0b4,#f4b8cb)}
.mock-bar-fill-warn-18{width:18%;background:linear-gradient(90deg,#f4b56a,#f4d08a)}

/* ===== セクション共通 ===== */
.section{max-width:1040px;margin:0 auto;padding:56px 20px}
.section-center{text-align:center}
.section-soft-bg{background:linear-gradient(180deg,var(--bg) 0%,rgba(244,210,220,.12) 100%)}
.section-eyebrow{
  font-size:.65rem;font-weight:700;color:var(--pink-deep);letter-spacing:.06em;
  text-transform:uppercase;margin-bottom:.5rem;
}
.section-title{font-size:clamp(1.1rem,3vw,1.55rem);font-weight:700;margin-bottom:.7rem;line-height:1.4;text-wrap:balance;word-break:keep-all;overflow-wrap:anywhere}
.section-desc{font-size:.8rem;color:#7a6358;line-height:1.8;max-width:520px;margin:0 auto;text-wrap:pretty;word-break:keep-all;overflow-wrap:anywhere}
.section-spaced{margin-top:2rem}

/* ===== 課題セクション ===== */
.pain-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px;
  margin-top:2rem;
}
.pain-card{
  background:var(--card);border-radius:16px;padding:1.1rem 1rem;
  border:1px solid var(--divider);
  display:flex;flex-direction:column;gap:.4rem;
}
.pain-icon{font-size:1.4rem;margin-bottom:.2rem}
.pain-text{font-size:.76rem;color:#7a6358;line-height:1.65}
.pain-text strong{color:var(--text);display:block;font-size:.82rem;margin-bottom:.15rem}

/* ===== 機能セクション ===== */
.feature-list{display:flex;flex-direction:column;gap:40px;margin-top:2.5rem;overflow:visible;max-width:980px;margin-left:auto;margin-right:auto}
.feature-item{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;overflow:visible;
}
.feature-item.reverse{direction:rtl}
.feature-item.reverse>*{direction:ltr;text-align:left}
.feature-item>*{min-width:0}
.feature-item .feature-visual{justify-self:center;width:100%;max-width:360px}
@media(max-width:700px){
  .feature-item,.feature-item.reverse{grid-template-columns:1fr;direction:ltr;gap:18px}
  .feature-item .feature-visual{max-width:100%}
}
.feature-tag{
  display:inline-flex;align-items:center;gap:.3rem;
  font-size:.8rem;font-weight:700;color:var(--pink-deep);
  background:var(--pink-pale);padding:.2rem .6rem;border-radius:999px;
  margin-bottom:.5rem;letter-spacing:.03em;
}
.feature-title{font-size:1.05rem;font-weight:700;margin-bottom:.5rem;line-height:1.4;text-wrap:balance;word-break:keep-all;overflow-wrap:anywhere}
.feature-desc{font-size:.78rem;color:#7a6358;line-height:1.8;text-wrap:pretty;word-break:keep-all;overflow-wrap:anywhere}
.feature-checks{margin-top:.7rem;display:flex;flex-direction:column;gap:.3rem}
.feature-check{font-size:.74rem;display:flex;align-items:flex-start;gap:.4rem}
.feature-check::before{content:'✓';color:var(--pink-deep);font-weight:700;flex-shrink:0;margin-top:.05rem}
.feature-visual{
  background:var(--card);border-radius:18px;
  border:1.5px solid var(--divider);box-shadow:var(--shadow);
  overflow:hidden;
}
.feature-visual-center{
  background:none;border:none;box-shadow:none;
  display:flex;align-items:center;justify-content:center;overflow:visible;
}
@media(max-width:700px){
  .feature-visual-center{order:2}
}
.fv-header{
  background:#1a1a2e;padding:10px 14px;
  display:flex;align-items:center;gap:6px;
}
.fv-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.15)}
.fv-dot:first-child{background:#e8a0b4}
.fv-title{font-size:.58rem;color:rgba(255,255,255,.5);margin-left:4px}
.fv-body{padding:14px}
.fv-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:7px 0;border-bottom:1px solid var(--divider);font-size:.7rem;
}
.fv-row:last-child{border-bottom:none}
.fv-key{color:var(--muted)}
.fv-val{font-weight:700}
.fv-val.pink{color:var(--pink-deep)}
.fv-val.green{color:#3a8a6a}
.fv-val-pink-deep{color:var(--pink-deep)}
.fv-val-green{color:#3a8a6a}
.fv-tag{font-size:.54rem;font-weight:700;padding:.15rem .45rem;border-radius:999px}
.fv-tag.warn{background:#fff3e0;color:#e07000}
.fv-tag.ok{background:#e8f7f0;color:#2d7a5a}
.fv-progress{height:5px;border-radius:999px;background:var(--divider);margin-top:4px}
.fv-progress-fill{height:100%;border-radius:999px}
.fv-progress-fill-green-76{width:76%;background:linear-gradient(90deg,#3a8a6a,#6abfa0)}
.fv-progress-fill-warn-16{width:16%;background:linear-gradient(90deg,#f4a540,#f4c870)}
.fv-progress-fill-green-55{width:55%;background:linear-gradient(90deg,#3a8a6a,#6abfa0)}
.stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.stat-card{background:var(--bg);border-radius:10px;padding:9px 10px;border:1px solid var(--divider)}
.stat-label{font-size:.54rem;color:var(--muted);margin-bottom:2px}
.stat-num{font-size:.9rem;font-weight:700}
.feature-note{margin-top:10px;font-size:.6rem;color:var(--muted)}

/* ===== マルチデバイス枠 ===== */
.dev-showcase{
  display:flex;align-items:flex-end;justify-content:center;
  gap:16px;overflow:visible;max-width:100%;
}
.dev{display:flex;flex-direction:column;align-items:center;}
.dev-screen{
  overflow:hidden;
  background:#f0f0f0;
  border:2.5px solid #2c2c2e;
}
.dev-img{
  width:100%;height:100%;object-fit:cover;object-position:top left;display:block;
}

/* PC モニター：モニター本体はボーダーがベゼル、スタンドは別色 */
.dev-pc .dev-screen{
  width:200px;height:130px;
  border-radius:6px;
  border:4px solid #1c1c1e;
}
/* iMac風スタンド：アルミ色で独立して見える */
.dev-neck{
  width:10px;height:22px;
  background:#1c1c1e;
}
.dev-foot{
  width:90px;height:7px;
  background:#1c1c1e;
  border-radius:999px;
}

/* タブレット */
.dev-tablet .dev-screen{
  width:90px;height:120px;
  border-radius:8px;
}

/* スマホ */
.dev-sp .dev-screen{
  width:52px;height:90px;
  border-radius:8px;
}
@media(max-width:700px){
  .dev-showcase{
    width:100%;
    gap:clamp(8px,2.4vw,14px);
    justify-content:center;
    overflow:hidden;
  }
  .dev-pc .dev-screen{
    width:clamp(170px,52vw,220px);
    height:auto;
    aspect-ratio:20/13;
  }
  .dev-tablet .dev-screen{
    width:clamp(72px,22vw,92px);
    height:auto;
    aspect-ratio:3/4;
  }
  .dev-sp .dev-screen{
    width:clamp(42px,13vw,54px);
    height:auto;
    aspect-ratio:26/45;
  }
  .dev-foot{
    width:45%;
  }
}
@media(max-width:380px){
  .dev-pc .dev-screen{width:50vw}
  .dev-tablet .dev-screen{width:20vw}
  .dev-sp .dev-screen{width:12vw}
}

/* feature-item グリッドセルがネック/台座を切らないよう */
.feature-item{overflow:visible;}

/* ===== プランセクション ===== */
.plan-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto auto;
  column-gap:14px;row-gap:0;
  margin-top:2rem;
}
.pricing-trial-note{
  display:inline-flex;align-items:center;justify-content:center;
  margin:1rem auto 0;padding:.42rem .9rem;
  border-radius:999px;background:var(--pink-pale);color:var(--pink-deep);
  font-size:.86rem;font-weight:700;line-height:1.5;text-wrap:balance;
}
@media(max-width:700px){
  .plan-grid{display:flex !important;flex-direction:column;gap:14px}
  .plan-card{display:block !important;grid-row:auto !important}
  .plan-zone-header,.plan-zone-price,.plan-zone-body{display:block !important}
}
.plan-card{
  grid-row:span 3;
  display:grid;grid-template-rows:subgrid;
  background:var(--bg);border-radius:18px;
  border:1.5px solid var(--divider);position:relative;
}
.plan-zone-header{padding:1.3rem 1.1rem .8rem}
.plan-zone-price{
  padding:.6rem 1.1rem;
  border-top:1px solid var(--divider);border-bottom:1px solid var(--divider);
  display:flex;align-items:center;justify-content:center;text-align:center;
}
.plan-zone-body{padding:.8rem 1.1rem 1.3rem}
.plan-features{display:flex;flex-direction:column;gap:.1rem;margin-top:.6rem}
.plan-card.featured{background:var(--pink-pale);border-color:var(--pink);box-shadow:0 0 0 2px var(--pink-pale)}
.plan-badge{
  position:absolute;top:-10px;left:50%;transform:translateX(-50%);
  background:var(--pink);color:#fff;font-size:.58rem;font-weight:700;
  padding:.2rem .7rem;border-radius:999px;white-space:nowrap;
}
.plan-icon{font-size:1.3rem;margin-bottom:.05rem}
.plan-name{font-size:.88rem;font-weight:700;margin-bottom:.25rem}
.plan-price-wrap{
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
}
.plan-price{font-size:1.4rem;font-weight:700;line-height:1}
.plan-price span{font-size:.65rem;font-weight:400;color:var(--muted)}
.plan-price-sub{font-size:.6rem;color:var(--muted);margin-top:.2rem}
.plan-desc{font-size:.7rem;color:#7a6358;margin-bottom:.1rem;line-height:1.6;text-wrap:pretty}
.plan-feature{font-size:.68rem;display:flex;align-items:flex-start;gap:.35rem}
.plan-feature::before{content:'✓';color:var(--pink-deep);font-weight:700;flex-shrink:0}
.plan-coming{
  font-size:.9rem;color:var(--muted);display:flex;align-items:center;gap:.35rem;
  padding:.5rem .7rem;
  background:var(--bg);border-radius:8px;border:1px dashed var(--divider);
  text-align:center;justify-content:center;
}
.plan-card-muted{opacity:.65}
.plan-price-strike{color:var(--muted);}
.plan-price-strike s{text-decoration:line-through;color:var(--muted);}
.plan-price-free{
  font-size:.88rem;font-weight:700;color:var(--pink-deep);
  background:var(--pink-pale);border-radius:999px;
  padding:.3rem .8rem;display:inline-block;margin:.3rem 0 -.4rem;
}

/* ===== CTAセクション ===== */
.cta-section{
  background:linear-gradient(135deg,#fbeef2 0%,#fef9f4 60%,#f0faf5 100%);
  border-top:1px solid var(--divider);border-bottom:1px solid var(--divider);
}
.cta-inner{max-width:600px;margin:0 auto;padding:60px 20px;text-align:center}
.cta-title{font-size:clamp(1.15rem,3.5vw,1.6rem);font-weight:700;margin-bottom:.7rem;line-height:1.4;text-wrap:balance;word-break:keep-all;overflow-wrap:anywhere}
.cta-lead{font-size:.88rem;color:#7a6358;margin-bottom:1.8rem;line-height:1.8;text-wrap:pretty;word-break:keep-all;overflow-wrap:anywhere}
.cta-desc{font-size:.8rem;color:#7a6358;margin-bottom:1.6rem;line-height:1.8}
.cta-form{display:flex;gap:.5rem;max-width:440px;margin:0 auto 1rem;flex-wrap:wrap;justify-content:center}
.cta-input{
  flex:1;min-width:200px;
  border:1.5px solid var(--divider);border-radius:10px;
  padding:.6rem 1.1rem;font-size:.8rem;font-family:inherit;
  background:#fff;color:var(--text);outline:none;
  transition:border-color .15s;
}
.cta-input:focus{border-color:var(--pink)}
.cta-btn{
  display:inline-block;
  background:var(--pink);color:#fff;
  border:none;border-radius:10px;
  padding:.8rem 2rem;font-size:.9rem;font-weight:700;
  cursor:pointer;font-family:inherit;
  transition:opacity .15s;
  margin-bottom:1rem;
}
.cta-btn:hover{opacity:.88}
.cta-note{font-size:.64rem;color:var(--muted)}
.cta-icon{font-size:2rem;margin-bottom:.6rem}
.cta-ok{max-width:420px;margin:0 auto 1rem}
.cta-form-stack{max-width:440px;margin:0 auto;display:flex;flex-direction:column;gap:.5rem}
.cta-input-select{cursor:pointer}
.cta-textarea{resize:vertical;line-height:1.6}
.cta-legal{font-size:.58rem;text-align:center;line-height:1.6;margin-top:.3rem}
.cta-legal a{color: var(--muted);}
.cta-note-spaced{margin-bottom:1rem}
.cta-perks{display:flex;flex-direction:column;gap:.75rem;margin-bottom:1.6rem;text-align:left}
.cta-perk{display:flex;align-items:flex-start;gap:.75rem;background:rgba(255,255,255,.6);border-radius:12px;padding:.75rem 1rem}
.cta-perk-icon{font-size:1.4rem;line-height:1;flex-shrink:0;margin-top:.1rem}
.cta-perk-title{font-size:.92rem;font-weight:700;color:#3d2b1f;margin-bottom:.15rem}
.cta-perk-desc{font-size:.78rem;color:#7a6358;line-height:1.5}
.cta-form-lead{font-size:1rem;font-weight:700;color:#3d2b1f;margin:2rem 0 0}

/* ===== Footer ===== */
.footer{
  background:#1a1a2e;color:rgba(255,255,255,.5);
  padding:32px 20px;text-align:center;
}
.footer-brand{
  display:flex;align-items:center;justify-content:center;gap:8px;margin-bottom:.6rem;
}
.footer-brand-mark{
  width:28px;height:28px;border-radius:8px;background:#e8a0b4;
  display:flex;align-items:center;justify-content:center;
  color:#1a1a2e;font-weight:700;font-size:.75rem;
}
.footer-brand-name{font-family:'Quicksand',sans-serif;font-weight:700;font-size:.85rem;color:rgba(255,255,255,.8)}
.footer-text{font-size:.65rem;margin-bottom:.4rem}
.footer-links{display:flex;justify-content:center;gap:1rem;margin-bottom:.6rem}
.footer-links a{font-size:.64rem;color:rgba(255,255,255,.4)}
.footer-links a:hover{color:rgba(255,255,255,.7)}
.footer-copy{font-size:.6rem;color:rgba(255,255,255,.25)}

/* ===== 区切りの波線 ===== */
.wave{width:100%;overflow:hidden;line-height:0;margin-bottom:-1px}
.wave svg{display:block;width:100%}

/* ===== 事前登録カウンター風 ===== */
.counter-row{
  display:flex;align-items:center;justify-content:center;gap:1.2rem;
  margin-top:1.4rem;flex-wrap:wrap;
}
.counter-item{text-align:center}
.counter-num{font-size:1.5rem;font-weight:700;color:var(--pink-deep)}
.counter-label{font-size:.62rem;color:var(--muted)}

/* ===== Hero CTA ===== */
.hero-fv-cta{display:none}
@media(max-width:700px){
  .hero-fv-cta{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 20px 8px;order:0}
  .hero-fv-cta .hero-trust{justify-content:center;margin-top:.5rem}
}
.hero-cta-wrap{margin-bottom:1rem}
.hero-cta-btn{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--pink);color:#fff;
  padding:.75rem 1.6rem;border-radius:999px;
  font-size:.95rem;font-weight:700;
  box-shadow:0 4px 20px rgba(232,160,180,.5);
  transition:opacity .15s,transform .15s;
}
.hero-cta-btn:hover{opacity:.88;transform:translateY(-1px)}
.hero-cta-sub{
  font-size:.68rem;color:var(--pink-deep);font-weight:700;
  margin-top:.55rem;letter-spacing:.02em;
}
.hero-trust{
  display:flex;gap:.8rem;flex-wrap:wrap;margin-top:.9rem;
}
.hero-trust-item{
  font-size:.62rem;color:var(--muted);
  display:flex;align-items:center;gap:.25rem;
}

/* ===== 計算ショックセクション ===== */
.calc-compare{
  display:flex;align-items:center;justify-content:center;
  gap:1.2rem;flex-wrap:wrap;
}
.calc-card{
  background:var(--card);border-radius:16px;padding:1.2rem 1.1rem;
  flex:1;min-width:220px;max-width:300px;text-align:left;
}
.calc-card-bad{border:1.5px solid #f4c0c8;}
.calc-card-real{border:1.5px solid var(--pink);box-shadow:0 0 0 3px var(--pink-pale);}
.calc-card-label{
  font-size:.65rem;font-weight:700;margin-bottom:.7rem;
  padding:.25rem .6rem;border-radius:999px;display:inline-flex;align-items:center;gap:.3rem;
}
.calc-card-bad .calc-card-label{background:#fdf0f3;color:#c94f6d;}
.calc-card-real .calc-card-label{background:var(--pink-pale);color:var(--pink-deep);}
.calc-row{
  display:flex;justify-content:space-between;align-items:center;
  font-size:.72rem;padding:4px 0;border-bottom:1px solid var(--divider);
  color:var(--muted);
}
.calc-row:last-of-type{border-bottom:none;}
.calc-row span:last-child{font-weight:600;color:var(--text);}
.calc-divider{height:1.5px;background:var(--divider);margin:.5rem 0;}
.calc-row-result{padding-top:.4rem;}
.calc-row-result span:first-child{font-weight:700;color:var(--text);font-size:.78rem;}
.calc-val-bad{font-size:1rem;font-weight:700;color:#c94f6d;}
.calc-val-real{font-size:1rem;font-weight:700;color:#3a8a6a;}
.calc-comment{font-size:.62rem;color:var(--muted);margin-top:.5rem;line-height:1.5;}
.calc-comment strong{color:var(--text);}
.calc-arrow{font-size:1.4rem;color:var(--pink-deep);font-weight:700;flex-shrink:0;}
@media(max-width:600px){.calc-arrow{transform:rotate(90deg);}}
.calc-hook{
  margin-top:2rem;font-size:.85rem;line-height:1.8;color:#7a6358;
}
.calc-hook strong{color:var(--text);}

/* ===== 時給ショック ===== */
/* コスト内訳テーブル */
.wage-breakdown{
  max-width:400px;margin:0 auto;
  background:var(--card);border-radius:14px;
  padding:1rem 1.2rem;border:1.5px solid var(--divider);
  box-shadow:var(--shadow);
}
.wage-breakdown-row{
  display:flex;justify-content:space-between;
  font-size:.76rem;padding:6px 0;
  border-bottom:1px solid var(--divider);
  color:var(--muted);
}
.wage-breakdown-row span:last-child{font-weight:600;color:var(--text);}
.wage-breakdown-total{
  display:flex;justify-content:space-between;
  font-size:.84rem;font-weight:700;padding-top:10px;margin-top:4px;
  color:var(--text);border-top:2px solid var(--divider);
}

/* 時給ドーン */
.wage-hero{margin:2.5rem 0 1.8rem;text-align:center;}
.wage-hero-label{font-size:.78rem;color:var(--muted);margin-bottom:.4rem;}
.wage-hero-num{
  font-size:clamp(4.5rem,16vw,8rem);font-weight:700;line-height:1;
  color:var(--pink-deep);
}
.wage-hero-unit{font-size:.95rem;color:var(--muted);margin-top:.3rem;}

/* バー比較 */
.wage-bars{
  max-width:460px;margin:0 auto 2rem;
  display:flex;flex-direction:column;gap:14px;
}
.wage-bar-row{display:flex;align-items:center;gap:10px;}
.wage-bar-label{font-size:.68rem;color:var(--muted);width:58px;flex-shrink:0;text-align:right;}
.wage-bar-track{
  flex:1;height:24px;
  background:var(--divider);border-radius:999px;overflow:hidden;
}
.wage-bar-fill{height:100%;border-radius:999px;}
.wage-bar-fill-min{width:100%;background:linear-gradient(90deg,#6abfa0,#3a8a6a);}
.wage-bar-fill-you{width:46%;background:linear-gradient(90deg,#f4b8cb,var(--pink-deep));}
.wage-bar-val{font-size:.76rem;font-weight:700;color:var(--text);width:50px;flex-shrink:0;}
.wage-bar-val-you{color:var(--pink-deep);}

.wage-note{
  font-size:.78rem;color:#7a6358;line-height:1.8;
  max-width:460px;margin:0 auto;
}
.wage-note strong{color:var(--text);}

/* ===== 計算式 + 時間給 2カラム ===== */
.wage-split{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;
  max-width:680px;margin-left:auto;margin-right:auto;
}
@media(max-width:640px){.wage-split{grid-template-columns:1fr;}}

/* 左：計算式カード */
.wage-formula{
  background:var(--card);border:1.5px solid var(--divider);border-radius:16px;
  padding:1.2rem 1.1rem;text-align:left;
}
.wage-formula-row{
  display:flex;justify-content:space-between;align-items:center;
  font-size:.78rem;padding:5px 0;
  color:var(--muted);
}
.wage-formula-row span:last-child{font-weight:600;color:var(--text);}
.wage-formula-row-price{
  font-size:.85rem;font-weight:700;color:var(--text) !important;
  border-bottom:1.5px solid var(--divider);padding-bottom:8px;margin-bottom:4px;
}
.wage-formula-row-price span{color:var(--text) !important;}
.wage-formula-minus{
  font-size:.82rem;font-weight:700;color:var(--muted);
  padding:2px 0;letter-spacing:.05em;
}
.wage-formula-eq{
  font-size:.9rem;font-weight:700;color:var(--pink-deep);
  border-top:2px solid var(--divider);margin-top:6px;padding-top:8px;
}
.wage-formula-row-profit{
  font-size:.9rem;font-weight:700;
  padding-top:2px;
}
.wage-formula-row-profit span:first-child{color:var(--text);}
.wage-formula-row-profit span:last-child{color:var(--pink-deep);font-size:1rem;}

/* 右：時間給エリア */
.wage-time{
  background:linear-gradient(135deg,#fff0f4,#fff8f0);
  border:1.5px solid var(--pink-soft);border-radius:16px;
  padding:1.4rem 1.1rem;text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.6rem;
}
.wage-time-row{
  display:flex;align-items:center;gap:.4rem;
  font-size:.82rem;color:var(--muted);
}
.wage-time-icon{font-size:1rem;}
.wage-time-label{font-weight:600;}
.wage-time-val{font-weight:700;color:var(--text);}
.wage-time-divider{
  width:100%;height:1.5px;background:var(--pink-soft);
  border-radius:999px;
}
.wage-time-label-sm{
  font-size:.7rem;font-weight:700;color:var(--muted);letter-spacing:.04em;
  text-transform:uppercase;
}
.wage-time-num{
  font-size:clamp(2.4rem,10vw,3.5rem);font-weight:700;line-height:1;
  color:#c94f6d;
}
.wage-time-note{
  font-size:.78rem;font-weight:700;color:var(--pink-deep);line-height:1.55;
  margin-top: 20px;text-wrap:balance;
}
.wage-time-bridge{
  font-size:.78rem;color:var(--text-sub);margin-top:16px;font-style:italic;text-wrap:pretty;
  white-space:nowrap;
}

/* ===== 痛みビジュアル ===== */
.pain-visual-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
  max-width:720px;margin-left:auto;margin-right:auto;
}
@media(max-width:600px){.pain-visual-grid{grid-template-columns:repeat(2,1fr);}}
.pain-visual-card{
  background:var(--card);border:1.5px solid var(--divider);border-radius:16px;
  padding:1.2rem .8rem;text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
.pain-visual-icon{font-size:2rem;margin-bottom:.6rem;}
.pain-visual-title{font-size:.85rem;font-weight:700;line-height:1.6;color:var(--text);text-wrap:balance;margin-bottom:.35rem;}
.pain-visual-desc{font-size:.72rem;line-height:1.7;color:var(--muted);text-wrap:balance;}

/* ===== AI デモ ===== */
.ai-demo{
  display:grid;grid-template-columns:auto 1fr;gap:2.5rem;align-items:center;
  max-width:800px;margin-left:auto;margin-right:auto;text-align:left;
}
@media(max-width:700px){.ai-demo{grid-template-columns:1fr;}}

/* ===== iPhoneフレーム ===== */
.iphone-frame{
  position:relative;
  width:min(160px,42vw);
  margin:0 auto;
  background:#1c1c1e;
  border-radius:14px;
  padding:2px 3px 3px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 0 0 3px #0a0a0a,
    0 28px 64px rgba(0,0,0,.55);
  flex-shrink:0;
}
@media(max-width:700px){
  .iphone-frame{width:min(130px,38vw);}
}
/* Screen */
.iphone-screen{
  position:relative;
  border-radius:10px;
  overflow:hidden;
  background:#000;
  aspect-ratio:9/16;
}
.iphone-screen .ai-video{width:100%;height:100%;object-fit:cover;display:block;}
/* 動画が読み込まれたらプレースホルダーを隠す */
.iphone-screen .ai-video:not([src=""]) ~ .ai-video-placeholder{display:none;}
/* プレースホルダー */
.ai-video-placeholder{
  position:absolute;inset:0;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:.6rem;
  background:linear-gradient(135deg,#1a1a2e,#2d1f3d);
}
.ai-video-placeholder-icon{font-size:2.5rem;}
.ai-video-placeholder-text{font-size:.78rem;color:rgba(255,255,255,.7);text-align:center;line-height:1.6;}
.ai-video-placeholder-text span{font-size:.62rem;color:rgba(255,255,255,.35);}
/* 側面ボタン */
.iphone-vol,.iphone-pwr{
  position:absolute;
  background:linear-gradient(90deg,#3a3a3c,#2c2c2e);
  border-radius:3px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.iphone-vol-up{left:-4px;top:52px;width:4px;height:26px;}
.iphone-vol-dn{left:-4px;top:86px;width:4px;height:26px;}
.iphone-pwr   {right:-4px;top:64px;width:4px;height:44px;}
/* Home indicator */
.iphone-home{
  width:36%;height:4px;
  background:rgba(255,255,255,.22);
  border-radius:2px;
  margin:4px auto 0;
}

.ai-points{display:flex;flex-direction:column;gap:1.2rem;justify-content:center;}
.ai-point{display:flex;gap:.8rem;align-items:flex-start;}
.ai-point-num{font-size:1.4rem;flex-shrink:0;margin-top:.1rem;}
.ai-point-title{font-size:.82rem;font-weight:700;margin-bottom:.25rem;}
.ai-point-desc{font-size:.72rem;color:#7a6358;line-height:1.65;}

/* ===== 計算結論 ===== */
.calc-conclusion{
  margin-top:2rem;padding:1.4rem 1.2rem;
  background:linear-gradient(135deg,#fff0f4,#fff8f0);
  border:1.5px solid var(--pink-soft);border-radius:16px;
  text-align:center;
}
.calc-conclusion-main{font-size:.78rem;color:var(--muted);margin-bottom:.2rem;}
.calc-conclusion-num{
  font-size:2rem;font-weight:700;color:#c94f6d;margin:0 .2rem;
}
.calc-conclusion-sub{font-size:.85rem;font-weight:700;color:var(--text);margin-bottom:.8rem;}
.calc-conclusion-note{font-size:.72rem;color:#7a6358;line-height:1.75;}

/* ===== 共感リスト（新） ===== */
.pain-list{
  display:flex;flex-direction:column;gap:14px;
  max-width:600px;margin-left:auto;margin-right:auto;text-align:left;
}
.pain-list-item{
  display:flex;align-items:flex-start;gap:.9rem;
  background:var(--card);border:1px solid var(--divider);border-radius:14px;
  padding:1rem 1.1rem;
}
.pain-list-icon{font-size:1.4rem;flex-shrink:0;margin-top:.1rem;}
.pain-list-title{font-size:.82rem;font-weight:700;margin-bottom:.2rem;}
.pain-list-desc{font-size:.72rem;color:#7a6358;line-height:1.65;}

/* ===== AI機能 ===== */
.ai-features{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;
}
.ai-feature-card{
  background:linear-gradient(135deg,var(--card),rgba(232,160,180,.06));
  border:1.5px solid var(--pink-soft);border-radius:16px;
  padding:1.2rem 1rem;text-align:left;
}
.ai-feature-icon{font-size:1.6rem;margin-bottom:.5rem;}
.ai-feature-title{font-size:.85rem;font-weight:700;margin-bottom:.4rem;color:var(--pink-deep);}
.ai-feature-desc{font-size:.72rem;color:#7a6358;line-height:1.7;}

/* ===== 3ステップ ===== */
.steps{
  display:flex;align-items:flex-start;justify-content:center;
  gap:1rem;flex-wrap:wrap;
}
.step{
  flex:1;min-width:180px;max-width:220px;text-align:center;
}
.step-num{
  width:28px;height:28px;border-radius:50%;
  background:var(--pink);color:#fff;
  font-size:.7rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto .5rem;
}
.step-icon{font-size:1.8rem;margin-bottom:.4rem;}
.step-title{font-size:.82rem;font-weight:700;margin-bottom:.35rem;}
.step-desc{font-size:.7rem;color:#7a6358;line-height:1.65;}
.step-arrow{
  font-size:1.4rem;color:var(--pink-deep);
  align-self:center;flex-shrink:0;margin-top:-1rem;
}
@media(max-width:600px){.step-arrow{display:none;}}
.steps-cta{margin-top:2rem;}

/* ===== 共感チェックリスト ===== */
.checklist-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:10px;max-width:720px;margin-left:auto;margin-right:auto;
  text-align:left;
}
.checklist-item{
  display:flex;align-items:flex-start;gap:.6rem;
  background:var(--card);border:1px solid var(--divider);border-radius:12px;
  padding:.8rem 1rem;font-size:.8rem;line-height:1.6;color:var(--text);
}
.checklist-x{
  color:#c94f6d;font-weight:700;font-size:.9rem;flex-shrink:0;margin-top:.05rem;
}
.checklist-hook{
  margin-top:2rem;font-size:.9rem;font-weight:700;
  color:var(--pink-deep);
  text-wrap:balance;word-break:keep-all;overflow-wrap:anywhere;
}

/* ===== 原因提示 ===== */
.cause-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;
}
.cause-card{
  background:var(--card);border-radius:16px;padding:1.2rem 1rem;
  border:1px solid var(--divider);text-align:left;
}
.cause-icon{font-size:1.6rem;margin-bottom:.5rem}
.cause-title{font-size:.85rem;font-weight:700;margin-bottom:.4rem}
.cause-desc{font-size:.74rem;color:#7a6358;line-height:1.7}

/* ===== 最終CTAボタン ===== */
.cta-signup-btn{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--pink);color:#fff;
  padding:.8rem 2rem;border-radius:999px;
  font-size:1rem;font-weight:700;
  box-shadow:0 4px 24px rgba(232,160,180,.5);
  transition:opacity .15s,transform .15s;
}
.cta-signup-btn:hover{opacity:.88;transform:translateY(-1px)}

/* アニメーション */
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
.anim{animation:fadeUp .6s ease both}
.anim-d1{animation-delay:.1s}
.anim-d2{animation-delay:.2s}
.anim-d3{animation-delay:.3s}

/* ===== フォントサイズ ===== */
.hero-desc{font-size:clamp(.95rem,2.5vw,1.05rem)}
.section-desc{font-size:clamp(.92rem,2.2vw,1rem)}
.feature-desc{font-size:clamp(.9rem,2.2vw,.95rem)}
.feature-title{font-size:clamp(1rem,3vw,1.1rem)}
.plan-price{font-size:clamp(1.2rem,4vw,1.4rem)}
.plan-name{font-size:clamp(.95rem,2.5vw,1rem)}
.plan-desc{font-size:clamp(.85rem,2.2vw,.9rem)}
.plan-feature{font-size:clamp(.82rem,2vw,.86rem)}
.counter-num{font-size:clamp(1.2rem,5vw,1.5rem)}
.step-title{font-size:clamp(.92rem,2.5vw,.98rem)}
.step-desc{font-size:clamp(.84rem,2.2vw,.88rem)}
.ai-point-title{font-size:clamp(.92rem,2.5vw,.98rem)}
.ai-point-desc{font-size:clamp(.86rem,2.2vw,.92rem)}
.cta-title{font-size:clamp(1.15rem,3.5vw,1.6rem)}
.cta-desc{font-size:clamp(.92rem,2.5vw,1rem)}
.pain-visual-title{font-size:clamp(.86rem,2.5vw,.92rem)}
.checklist-hook{font-size:clamp(1rem,3vw,1.1rem)}
.pain-text{font-size:clamp(.88rem,2.2vw,.92rem)}
.wage-breakdown-row{font-size:clamp(.84rem,2.2vw,.9rem)}
.wage-formula-row{font-size:clamp(.84rem,2.2vw,.9rem)}
.wage-time-label{font-size:clamp(.86rem,2.2vw,.92rem)}
.wage-time-val{font-size:clamp(.86rem,2.2vw,.92rem)}
.wage-time-note{font-size:clamp(.88rem,2.5vw,.95rem)}
.cta-note{font-size:clamp(.78rem,2vw,.82rem)}
.cta-legal{font-size:clamp(.72rem,1.8vw,.76rem)}
.plan-price-sub{font-size:clamp(.72rem,1.8vw,.76rem)}

@media(max-width:480px){
  .section{padding:40px 16px}
  .section-title{font-size:1.28rem}
  .pain-visual-grid{gap:8px}
  .pain-visual-card{padding:.9rem .7rem}
  .ai-demo{gap:1.5rem}
  .wage-time-bridge{font-size:.76rem}
}

/* ===== サービス比較テーブル ===== */
.lp-compare-section { padding-top: 4rem; padding-bottom: 1rem; }
.lp-compare-wrap { }
.lp-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .83rem;
  min-width: 640px;
}
.lp-compare-table th,
.lp-compare-table td {
  padding: .55rem .6rem;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
.lp-cmp-feat-col {
  text-align: left !important;
  font-weight: 400;
  color: #444;
  width: 34%;
}
.lp-cmp-our-col {
  background: #fff8fa;
}
.lp-compare-table thead th { font-weight: 700; color: #333; border-bottom: 2px solid #eee; font-size: .8rem; position: sticky; top: 56px; z-index: 10; background: #fff; }
.lp-cmp-our-col.lp-compare-table th,
.lp-compare-table thead .lp-cmp-our-col { border-bottom: 3px solid #e8668c; background: #fff8fa; }
.lp-cmp-our-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.lp-cmp-our-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: linear-gradient(135deg,#e8668c,#c84b7a);
  color: #fff;
  border-radius: 6px;
  font-weight: 900;
  font-size: .85rem;
  margin-bottom: .1rem;
}
.lp-cmp-badge {
  display: inline-block;
  background: #e8668c;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .4rem;
  border-radius: 4px;
}
.lp-cmp-section-row td {
  background: #f8f4fc;
  font-weight: 700;
  font-size: .78rem;
  color: #6b4f8a;
  text-align: left !important;
  padding: .4rem .6rem;
  border-bottom: 1px solid #ede5f8;
}
.lp-cmp-yes  { color: #27ae60; font-weight: 700; }
.lp-cmp-no   { color: #bbb; }
.lp-cmp-partial { color: #f39c12; font-size: .78rem; }
.lp-cmp-price { color: #e8668c; font-weight: 700; }
.lp-compare-disclaimer {
  font-size: .72rem;
  color: #bbb;
  margin-top: 1rem;
  line-height: 1.7;
  padding-bottom: 2rem;
}

/* 無料ツールグリッドを2列に（サービス比較カード削除後） */
.lp-tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.lp-tool-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
}
.lp-tool-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.lp-tool-icon { font-size: 2rem; margin-bottom: .75rem; }
.lp-tool-name { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: .5rem; }
.lp-tool-desc { font-size: .83rem; color: #666; line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.lp-tool-link { font-size: .83rem; font-weight: 700; color: #e8668c; }

/* 控えめ版 */
.lp-tools-section-quiet { padding-top: 2.4rem; padding-bottom: 2.4rem; opacity: .96; }
.lp-tools-quiet-lead { font-size: .78rem; color: var(--muted); line-height: 1.7; max-width: 480px; margin: .4rem auto 1.1rem; }
.lp-tools-grid-quiet { max-width: 680px; margin-left: auto; margin-right: auto; gap: .85rem; }
.lp-tool-card-quiet { padding: 1rem 1.1rem; border-radius: 12px; }
.lp-tool-card-quiet .lp-tool-icon { font-size: 1.4rem; margin-bottom: .35rem; }
.lp-tool-card-quiet .lp-tool-name { font-size: .88rem; margin-bottom: .25rem; }
.lp-tool-card-quiet .lp-tool-desc { font-size: .72rem; line-height: 1.6; color: #7a6358; margin-bottom: .55rem; }
.lp-tool-card-quiet .lp-tool-link { font-size: .72rem; }

/* 比較 PC/SP 切り替え */
.lp-cmp-pc-only { display: none !important; }
.lp-cmp-sp-only { display: grid !important; }
@media(min-width: 700px) {
  .lp-cmp-pc-only { display: block !important; }
  .lp-cmp-sp-only { display: none !important; }
}

/* SP カードUI */
.lp-cmp-sp-cards {
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media(max-width: 480px) {
  .lp-cmp-sp-cards { grid-template-columns: 1fr; }
}
.lp-cmp-sp-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  font-size: .82rem;
}
.lp-cmp-sp-card-our {
  border-color: #f5c0d0;
  box-shadow: 0 0 0 2px #e8668c;
  grid-column: 1 / -1;
}
.lp-cmp-sp-head {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  padding: .6rem .75rem;
  background: #fafaf8;
  border-bottom: 1px solid #eee;
}
.lp-cmp-sp-card-our .lp-cmp-sp-head { background: #fff8fa; }
.lp-cmp-sp-name { font-weight: 700; color: #1a1a2e; font-size: .85rem; }
.lp-cmp-sp-rows { padding: .25rem .75rem .25rem; }
.lp-cmp-sp-rows-our {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}
.lp-cmp-sp-rows-our .lp-cmp-sp-cat { grid-column: 1 / -1; }
.lp-cmp-sp-cat {
  font-size: .72rem;
  font-weight: 700;
  color: #6b4f8a;
  background: #f8f4fc;
  margin: .5rem -.75rem .2rem;
  padding: .2rem .75rem;
}
.lp-cmp-sp-row {
  padding: .28rem 0;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.4;
  font-size: .76rem;
  text-align: left;
}
.lp-cmp-sp-row:last-child { border-bottom: none; }
.lp-cmp-sp-price {
  padding: .5rem .75rem .6rem;
  font-size: .8rem;
  font-weight: 700;
  color: #555;
  border-top: 1px solid #f0f0f0;
  text-align: left;
}

/* 比較表 注釈・記号 */
.lp-cmp-note {
  font-size: .68rem;
  color: #aaa;
  margin-left: .15rem;
  vertical-align: super;
}
.lp-cmp-footnotes {
  font-size: .72rem;
  color: #aaa;
  line-height: 2;
  margin-top: .75rem;
  text-align: left;
}
/* ○/—/△ の見た目を統一 */
.lp-cmp-yes  { color: #27ae60; font-weight: 700; }
.lp-cmp-no   { color: #ccc; }
.lp-cmp-partial { color: #f39c12; font-weight: 700; }

/* 比較セクション タグライン */
.lp-compare-tagline {
  margin-top: .75rem;
  font-size: .88rem;
  color: #555;
  line-height: 1.8;
  background: linear-gradient(135deg, #fff8fa, #f8f4fc);
  border: 1px solid #f0ddf0;
  border-radius: 10px;
  padding: .75rem 1.25rem;
  display: inline-block;
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.lp-compare-tagline strong { color: #c84b7a; }

/* SP 比較 ドロップダウンUI */
.lp-cmp-sp-wrap { width: 100%; }
.lp-cmp-sp-selector-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.lp-cmp-sp-selector-label { font-size: .78rem; color: #666; white-space: nowrap; }
.lp-cmp-sp-select {
  font-size: .82rem;
  border: 1.5px solid #e0d0da;
  border-radius: 8px;
  padding: .4rem .6rem;
  background: #fff;
  color: #1a1a2e;
  flex: 1;
  min-width: 0;
}
.lp-cmp-sp-table-wrap { }
.lp-cmp-sp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
}
.lp-cmp-sp-table th {
  background: #fafaf8;
  padding: .4rem .25rem;
  font-size: .65rem;
  text-align: center;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 56px;
  z-index: 10;
  line-height: 1.3;
  word-break: break-all;
}
.lp-cmp-sp-th-feat { text-align: left; padding-left: .5rem; word-break: keep-all; }
.lp-cmp-sp-th-our { background: #fff8fa; border-bottom-color: #f5c0d0; }
.lp-cmp-sp-mark { display: inline-block; margin-right: .25rem; }
.lp-cmp-sp-table td {
  padding: .65rem .6rem;
  border-bottom: 1px solid #f5f5f5;
  text-align: center;
  vertical-align: middle;
}
.lp-cmp-sp-feat { text-align: left; font-size: .7rem; color: #555; padding-left: .5rem; line-height: 1.4; }
.lp-cmp-sp-our { background: #fffafc; }
.lp-cmp-sp-cat-row td {
  background: #f8f4fc;
  color: #6b4f8a;
  font-size: .72rem;
  font-weight: 700;
  text-align: left;
  padding: .3rem .5rem;
}
.lp-cmp-sp-price-row td {
  font-weight: 700;
  font-size: .82rem;
  background: #fafaf8;
  border-top: 2px solid #eee;
  white-space: nowrap;
}
.lp-cmp-sp-price-row .lp-cmp-sp-our { background: #fff8fa; }
.lp-cmp-sp-note {
  font-size: .7rem;
  color: #aaa;
  margin-top: .5rem;
  text-align: left;
}

/* ===== 改行制御 ===== */
/* PCでのみ改行、SPでは自然な折り返しに任せる */
.br-pc { display: inline; }
@media (max-width: 720px) {
  .br-pc { display: none; }
}
/* SPでのみ改行、PCでは1行に */
.br-sp { display: none; }
@media (max-width: 720px) {
  .br-sp { display: inline; }
}
/* 文節の途中で折り返さないラッパー（日本語の自然な折り返しを補助） */
.nowrap { white-space: nowrap; }
.keep-together { display: inline-block; }

/* ===== FV 作品カードモック ===== */
.mock-product-card { padding: 12px; }
.mock-product-head { display: flex; align-items: center; gap: 10px; }
.mock-product-thumb {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #fde7ee, #f8d3df);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.mock-product-meta { flex: 1; min-width: 0; }
.mock-product-title { font-size: .78rem; font-weight: 700; color: #333; line-height: 1.3; }
.mock-product-sub { font-size: .55rem; color: var(--muted); margin-top: 2px; }
.mock-memo {
  font-size: .6rem; color: #555; line-height: 1.55;
  background: #fffaf3; border-left: 2px solid #f4c47a;
  padding: 6px 8px; border-radius: 0 6px 6px 0; margin-top: 4px;
}

/* ===== 制作の悩み（Recall）セクション ===== */
.recall-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  text-align: left;
}
.recall-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--divider);
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.recall-card-pain {
  background: linear-gradient(180deg, #fff8f3, #fff);
  border-color: #f5d9c4;
}
.recall-card-solve {
  background: linear-gradient(180deg, #fff5f8, #fff);
  border-color: #f3c8d4;
}
.recall-card-head {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px dashed var(--divider);
}
.recall-card-icon { font-size: 1.5rem; }
.recall-card-title { font-size: 1rem; font-weight: 700; color: #333; }
.recall-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .65rem;
}
.recall-list li {
  font-size: .9rem; line-height: 1.5; color: #444;
  padding-left: 1.4rem; position: relative;
  word-break: keep-all; overflow-wrap: anywhere;
}
.recall-card-pain .recall-list li::before {
  content: '×'; position: absolute; left: 0; top: 0;
  color: #d49a6a; font-weight: 700;
}
.recall-card-solve .recall-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--pink-deep); font-weight: 700;
}
.recall-card-bridge {
  margin-top: 1.1rem; padding-top: .85rem;
  border-top: 1px dashed var(--divider);
  font-size: .85rem; color: var(--pink-deep);
  font-weight: 700; text-align: center;
}
.recall-card-text {
  font-size: .9rem; line-height: 1.7; color: #444;
  margin: 0;
}
@media (max-width: 720px) {
  .recall-split { grid-template-columns: 1fr; gap: 1rem; }
  .recall-card { padding: 1.2rem 1.1rem; }
  .recall-list li { font-size: .85rem; }
}

/* ===== 機能：作品ノートのビジュアル ===== */
.product-note-meta {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .75rem;
  background: linear-gradient(135deg, #fff5f8, #fff);
  border: 1px solid #f3d8e2;
  border-radius: 10px;
  margin-bottom: .85rem;
}
.product-note-thumb {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, #fde7ee, #f8d3df);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.product-note-info { flex: 1; min-width: 0; }
.product-note-title { font-size: .95rem; font-weight: 700; color: #333; }
.product-note-sub { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.product-note-memo {
  font-size: .82rem; line-height: 1.7; color: #444;
  background: #fffaf3; border-left: 3px solid #f4c47a;
  padding: .65rem .85rem; border-radius: 0 8px 8px 0;
  margin-top: .35rem;
}

/* レシピ画面：作品ヘッダ */
.recipe-prod-row{display:flex;align-items:center;gap:.6rem;padding:.55rem .7rem;background:linear-gradient(135deg,#fff5f8,#fff);border:1px solid #f3d8e2;border-radius:10px;margin-bottom:.7rem}
.recipe-prod-thumb{width:36px;height:36px;border-radius:8px;background:linear-gradient(135deg,#fde7ee,#f8d3df);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.recipe-prod-name{font-size:.9rem;font-weight:700;color:#333}

/* レシピ画面：ステップ行 */
.recipe-step-row{display:flex;align-items:center;gap:.55rem;padding:.5rem .7rem;background:#fff;border:1px solid var(--divider);border-radius:8px;margin-bottom:.35rem}
.recipe-step-num{width:22px;height:22px;border-radius:50%;background:var(--pink-deep);color:#fff;font-size:.7rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.recipe-step-thumb{width:32px;height:32px;border-radius:6px;background:#faf2e6;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}
.recipe-step-text{font-size:.74rem;color:#444;line-height:1.5;flex:1;min-width:0}

/* レシピ画面：材料表 */
.recipe-mat-list{margin-top:.4rem;display:flex;flex-direction:column;gap:.3rem}
.recipe-mat-row{display:flex;justify-content:space-between;align-items:center;padding:.45rem .7rem;background:#fffaf3;border:1px solid #f4dcb4;border-radius:8px;font-size:.78rem}
.recipe-mat-name{color:#444}
.recipe-mat-qty{color:var(--muted);font-weight:700;font-size:.72rem}

/* 材料一覧画面 */
.mat-list-header{display:grid;grid-template-columns:24px 1fr 70px 56px;gap:.4rem;padding:.35rem .55rem;font-size:.6rem;color:var(--muted);border-bottom:1px solid var(--divider);margin-bottom:.3rem}
.mat-list-h-name{grid-column:2}
.mat-list-h-price{grid-column:3;text-align:right}
.mat-list-h-stock{grid-column:4;text-align:right}
.mat-list-row{display:grid;grid-template-columns:24px 1fr 70px 56px;gap:.4rem;align-items:center;padding:.45rem .55rem;background:#fff;border:1px solid var(--divider);border-radius:8px;font-size:.76rem;margin-bottom:.3rem}
.mat-list-thumb{width:24px;height:24px;border-radius:6px;background:#faf2e6;display:flex;align-items:center;justify-content:center;font-size:.9rem}
.mat-list-name{color:#333;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.mat-list-price{color:var(--muted);font-size:.7rem;text-align:right}
.mat-list-stock{color:#333;font-weight:700;font-size:.74rem;text-align:right}
.mat-list-stock-low{color:#e07000}

/* あと何個作れる */
.can-make-list{display:flex;flex-direction:column;gap:.3rem;margin-top:.35rem}
.can-make-row{display:flex;align-items:center;gap:.5rem;padding:.45rem .65rem;background:#fff;border:1px solid var(--divider);border-radius:8px}
.can-make-thumb{width:26px;height:26px;border-radius:6px;background:#fde7ee;display:flex;align-items:center;justify-content:center;font-size:.95rem;flex-shrink:0}
.can-make-name{flex:1;font-size:.78rem;color:#333;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.can-make-chip{font-size:.66rem;font-weight:700;padding:.18rem .55rem;border-radius:999px;flex-shrink:0}
.can-make-ok{background:#e8f7f0;color:#2d7a5a}
.can-make-warn{background:#fff3e0;color:#e07000}

/* 制作カレンダー（実画面型：日付セル+期間バー） */
.cal2-head{display:flex;align-items:center;justify-content:center;gap:.6rem;padding:.2rem 0 .55rem}
.cal2-nav{font-size:.7rem;color:var(--muted)}
.cal2-month{font-size:.85rem;font-weight:700;color:#333}
.cal2-weekdays{display:grid;grid-template-columns:repeat(7,1fr);font-size:.6rem;color:var(--muted);text-align:center;padding:.25rem 0;border-bottom:1px solid var(--divider)}
.cal2-sun{color:#d04a6a}
.cal2-sat{color:#4a7ad0}
.cal2-week{position:relative;display:grid;grid-template-columns:repeat(7,1fr);min-height:54px;border-bottom:1px solid var(--divider)}
.cal2-day{padding:.3rem .35rem;font-size:.7rem;color:#333;border-right:1px solid var(--divider)}
.cal2-day:last-of-type{border-right:none}
.cal2-day.cal2-today{background:#fff5f8;color:var(--pink-deep);font-weight:700}
.cal2-bar{position:absolute;top:24px;height:18px;line-height:18px;font-size:.62rem;color:#fff;font-weight:700;padding:0 .45rem;border-radius:4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.cal2-bar-progress{background:linear-gradient(90deg,#d49a6a,#e0b388)}
.cal2-bar-pending{background:linear-gradient(90deg,#9aa8c0,#b8c4d6)}

/* 制作予定の詳細プレビュー（コンパクト版） */
.cal-detail-card{margin-top:.4rem;padding:.55rem .65rem;background:#fff;border:1px solid var(--divider);border-radius:10px}
.cal-detail-meta{display:flex;flex-wrap:wrap;gap:.3rem;margin-bottom:.4rem}
.cal-detail-chip{display:inline-flex;align-items:center;gap:.25rem;font-size:.62rem;color:var(--muted);background:#faf6f1;border:1px solid var(--divider);border-radius:999px;padding:.15rem .5rem;line-height:1.4}
.cal-detail-chip strong{color:#333;font-weight:700;font-size:.66rem}
.cal-detail-chip-deadline strong{color:#e07000}
.cal-detail-chip-event{background:var(--pink-pale);border-color:#f3c8d4;color:var(--pink-deep)}
.cal-detail-memo{font-size:.68rem;color:#444;line-height:1.5;background:#fffaf3;border:1px solid #f4dcb4;border-radius:6px;padding:.35rem .55rem;margin-bottom:.45rem}
.cal-detail-memo-compact{padding:.3rem .55rem}
.cal-detail-section{font-size:.58rem;color:var(--muted);margin:.3rem 0 .2rem}
.cal-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:.55rem}
@media(max-width:380px){.cal-detail-grid{grid-template-columns:1fr}}
.cal-detail-steps{display:flex;flex-direction:column;gap:.2rem}
.cal-detail-step{display:flex;align-items:flex-start;gap:.3rem;font-size:.66rem;color:#444;line-height:1.4}
.cal-detail-num{width:15px;height:15px;border-radius:50%;background:var(--pink-deep);color:#fff;font-size:.55rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.cal-detail-mats{display:flex;flex-direction:column;gap:.2rem}
.cal-detail-mat-compact{display:flex;justify-content:space-between;align-items:center;padding:.22rem .45rem;background:#fffaf3;border:1px solid #f4dcb4;border-radius:5px;font-size:.66rem;color:#444}
.cal-detail-mat-qty{color:var(--muted);font-weight:700;font-size:.62rem}

/* 材料費の合計行 */
.fv-row-total {
  margin-top: .5rem;
  padding-top: .55rem;
  border-top: 1px solid var(--divider);
  font-weight: 700;
}

/* ===== FV 機能リスト ===== */
.hero-features {
  list-style: none; padding: 0; margin: 0 0 1.1rem 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.hero-features li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .88rem; color: #5a4a42; line-height: 1.55;
  word-break: keep-all; overflow-wrap: anywhere;
}
.hero-features-mark {
  flex-shrink: 0; font-size: 1rem; line-height: 1.35;
  width: 1.4em; text-align: center;
}
@media (max-width: 700px) {
  .hero{text-align:center}
  .hero-features { display:inline-flex; max-width: 240px; margin: 0 auto 1.1rem; text-align: left; }
  .hero-features li { font-size: .82rem; }
}

/* ===== 機能：ちなみに（補助機能） ===== */
.feature-tag-muted {
  background: #f5f1ea !important;
  color: #8a7560 !important;
}
.feature-item-aside {
  background: linear-gradient(135deg, #fffaf3, #fff);
  border: 1px dashed #f0d8b4;
  border-radius: 18px;
  padding: 1.6rem 1.75rem;
  display: block !important;
  grid-template-columns: none !important;
}
.feature-aside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  margin-top: 1rem;
}
.feature-aside-card {
  background: #fff;
  border: 1px solid #f0e6d6;
  border-radius: 12px;
  padding: .85rem 1rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.feature-aside-icon { font-size: 1.4rem; line-height: 1; }
.feature-aside-name {
  font-size: .92rem; font-weight: 700; color: #5a4a42;
}
.feature-aside-desc {
  font-size: .78rem; color: #7a6358; line-height: 1.55;
  word-break: keep-all; overflow-wrap: anywhere;
}
.feature-aside-note {
  margin-top: .9rem;
  font-size: .72rem; color: #a0907a;
  line-height: 1.6;
  word-break: keep-all; overflow-wrap: anywhere;
}
@media (max-width: 700px) {
  .feature-item-aside { padding: 1.25rem 1.1rem; }
  .feature-aside-grid { grid-template-columns: 1fr; gap: .65rem; }
}

/* ===== 比較表：折りたたみ ===== */
.lp-compare-details {
  margin-top: 1.2rem;
  text-align: left;
}
.lp-compare-summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem;
  background: #fff;
  border: 1.5px solid var(--pink-soft, #f3c8d4);
  border-radius: 999px;
  color: var(--pink-deep, #c84b7a);
  font-size: .88rem; font-weight: 700;
  transition: background .15s ease, transform .15s ease;
  margin: 0 auto;
}
.lp-compare-details {
  text-align: center;
}
.lp-compare-summary::-webkit-details-marker { display: none; }
.lp-compare-summary:hover {
  background: #fff5f8;
}
.lp-compare-summary-icon {
  display: inline-block;
  transition: transform .2s ease;
  font-size: .9rem;
}
.lp-compare-details[open] .lp-compare-summary-icon {
  transform: rotate(180deg);
}
.lp-compare-details[open] .lp-compare-summary-text::after {
  content: '（閉じる）';
  margin-left: .35rem;
  font-weight: 500;
  color: #a0708a;
  font-size: .78rem;
}
.lp-compare-details > *:not(.lp-compare-summary) {
  text-align: center;
}
.lp-compare-details[open] > *:not(.lp-compare-summary) {
  animation: lp-compare-fade .25s ease;
}
@keyframes lp-compare-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== 作家さんへの約束セクション ===== */
.promise-section {
  background: linear-gradient(180deg, #fffafc, #fff);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  text-align: left;
}
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
}
.promise-card {
  background: #fff;
  border: 1px solid #f3e3eb;
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 2px 8px rgba(232,160,180,.06);
}
.promise-icon {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: .55rem;
}
.promise-title {
  font-size: 1rem; font-weight: 700; color: #444;
  margin-bottom: .4rem;
  word-break: keep-all; overflow-wrap: anywhere;
}
.promise-desc {
  font-size: .85rem; color: #6a5950; line-height: 1.7;
  word-break: keep-all; overflow-wrap: anywhere;
}
@media (max-width: 720px) {
  .promise-grid { grid-template-columns: 1fr; gap: .8rem; }
  .promise-card { padding: 1.1rem 1.15rem; }
}
