/* AI参謀構築サポート LP — page layout & responsive rules.
   Breakpoints: mobile <768px (default/mobile-first) / tablet 768–1023px / PC >=1024px */

.lp-scope{overflow-x:hidden}

/* ---------- Header ---------- */
.lp-scope .site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border-subtle);
}
.lp-scope .site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.lp-scope .site-header .logo img{height:24px}
.lp-scope .header-brand{
  display:flex;align-items:center;gap:8px;
  min-width:0;
}
.lp-scope .header-service-name{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:var(--fs-header-brand);
  color:var(--text-strong);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.lp-scope .header-actions{
  display:flex;align-items:center;gap:32px;
}
.lp-scope .site-nav{
  display:flex;align-items:center;gap:28px;
}
.lp-scope .site-nav a{color:var(--text-body);font-size:var(--fs-sm);font-family:var(--font-display);font-weight:500}
.lp-scope .nav-cta{display:none}
.lp-scope .nav-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:var(--radius-pill);
  border:1.5px solid var(--border-default);background:var(--surface-card);
  cursor:pointer;
}
.lp-scope .nav-toggle span,.lp-scope .nav-toggle span::before,.lp-scope .nav-toggle span::after{
  content:'';display:block;width:18px;height:2px;background:var(--text-strong);border-radius:2px;
  position:relative;transition:transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.lp-scope .nav-toggle span::before{position:absolute;top:-6px}
.lp-scope .nav-toggle span::after{position:absolute;top:6px}
.lp-scope .nav-toggle[aria-expanded="true"] span{background:transparent}
.lp-scope .nav-toggle[aria-expanded="true"] span::before{transform:translateY(6px) rotate(45deg)}
.lp-scope .nav-toggle[aria-expanded="true"] span::after{transform:translateY(-6px) rotate(-45deg)}

/* ---------- Mobile nav (right slide-in) ---------- */
.lp-scope .mobile-nav-overlay{
  position:fixed;inset:0;z-index:100;
  background:rgba(17,24,39,0.5);
  opacity:0;pointer-events:none;
  transition:opacity var(--dur) var(--ease-out);
}
.lp-scope body.nav-open .mobile-nav-overlay{opacity:1;pointer-events:auto}

.lp-scope .mobile-nav{
  position:fixed;top:0;right:0;z-index:101;
  width:min(82vw,340px);height:100vh;height:100dvh;
  background:var(--white);
  box-shadow:-8px 0 30px rgba(0,0,0,0.12);
  display:flex;flex-direction:column;
  padding:20px 28px 32px;
  transform:translateX(100%);
  transition:transform var(--dur) var(--ease-out);
  overflow-y:auto;
}
.lp-scope body.nav-open .mobile-nav{transform:translateX(0)}

.lp-scope .mobile-nav-top{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:24px;
}
.lp-scope .mobile-nav-logo img{height:26px;display:block}
.lp-scope .mobile-nav-close{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:var(--radius-pill);
  border:1.5px solid var(--border-default);background:var(--surface-card);
  cursor:pointer;position:relative;flex-shrink:0;
}
.lp-scope .mobile-nav-close span{position:relative;display:block;width:16px;height:16px}
.lp-scope .mobile-nav-close span::before,.lp-scope .mobile-nav-close span::after{
  content:'';position:absolute;top:50%;left:0;width:16px;height:2px;
  background:var(--text-strong);border-radius:2px;
}
.lp-scope .mobile-nav-close span::before{transform:translateY(-50%) rotate(45deg)}
.lp-scope .mobile-nav-close span::after{transform:translateY(-50%) rotate(-45deg)}

.lp-scope .mobile-nav-links{
  display:flex;flex-direction:column;gap:2px;
}
.lp-scope .mobile-nav-links a{
  padding:14px 4px;font-size:var(--fs-body);font-family:var(--font-display);font-weight:500;
  color:var(--text-body);border-bottom:1px solid var(--border-subtle);
}
.lp-scope .mobile-nav-links a.btn{border-bottom:none;margin-top:16px;color:var(--white)}

.lp-scope .mobile-nav-close-btn{
  align-self:center;margin-top:28px;
  padding:10px 30px;border-radius:var(--radius-pill);
  border:1.5px solid var(--gray-400);background:transparent;
  font-family:var(--font-latin);font-weight:700;letter-spacing:0.08em;
  font-size:var(--fs-sm);color:var(--gray-600);cursor:pointer;
  transition:background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.lp-scope .mobile-nav-close-btn:hover{background:var(--gray-100);color:var(--gray-800)}

/* PC: show inline nav + CTA, hide hamburger */
@media (min-width:1024px){
  .lp-scope .site-nav{display:flex}
  .lp-scope .nav-cta{display:inline-flex}
  .lp-scope .nav-toggle,.lp-scope .mobile-nav,.lp-scope .mobile-nav-overlay{display:none !important}
  .lp-scope .header-service-name{font-size:var(--fs-header-brand-lg)}
}
@media (max-width:1023.98px){
  .lp-scope .site-nav{display:none}
}

/* ---------- Hero ---------- */
.lp-scope .hero{
  background:linear-gradient(180deg,var(--blue-50),var(--white) 70%);
  padding:24px 0 32px;
}
.lp-scope .hero .container{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  grid-template-areas:
    "head"
    "visual"
    "tag-sp"
    "body";
  gap:14px;
  align-items:center;
}
.lp-scope .hero-head{grid-area:head}
.lp-scope .hero-visual{grid-area:visual}
.lp-scope .hero-body{grid-area:body}
.lp-scope .hero h1{font-size:var(--fs-display);font-weight:var(--fw-black);line-height:1.22;margin:18px 0 0;letter-spacing:0.07em}
.lp-scope .chatdemo h2 .accent{color:var(--blue-500)}
.lp-scope .hero h1 .accent{color:var(--blue-500)}
.lp-scope .hero h1 .accent-red{color:#d80000}
.lp-scope .ba-heading .accent{color:var(--blue-500)}
.lp-scope .hero-service-tag{font-size:var(--fs-body);color:var(--text-body);margin:16px 0 0;font-family:var(--font-display);font-weight:var(--fw-bold);padding:10px 18px;border:1.5px solid var(--border-default);border-radius:0;display:inline-block;background:#fff}
.lp-scope .hero-service-tag .tag-label{font-size:var(--fs-body)}
.lp-scope .hero-service-tag .tag-name{color:var(--blue-500);font-weight:var(--fw-black);font-size:var(--fs-h3);margin-left:6px}
.lp-scope .hero-service-tag.show-sp{grid-area:tag-sp;display:none;justify-self:start;width:fit-content}
.lp-scope .hero-service-tag.show-pc{display:inline-block}
@media (max-width:767.98px){
  .lp-scope .hero-service-tag.show-sp{display:inline-block}
  .lp-scope .hero-service-tag.show-pc{display:none}
}
.lp-scope .hero p.lead{font-size:var(--fs-lead);color:var(--text-muted);margin-top:20px;margin-bottom:0;max-width:460px;line-height:1.75;font-weight:var(--fw-bold);text-align:left}
.lp-scope .hero-ctas{display:flex;gap:14px;margin-top:16px;flex-wrap:wrap}
.lp-scope .hero-proof{display:flex;gap:12px;margin-top:26px;color:var(--text-muted);font-size:var(--fs-sm);flex-wrap:wrap}
.lp-scope .hero-proof span{display:flex;gap:7px;align-items:center}
.lp-scope .hero-proof .proof-newline{flex-basis:100%}

.lp-scope .hero-chat{padding:0;overflow:hidden;box-shadow:var(--shadow-lg)}
.lp-scope .hero-chat-head{
  display:flex;align-items:center;gap:10px;padding:14px 18px;
  border-bottom:1px solid var(--border-subtle);background:var(--surface-subtle);
}
.lp-scope .hero-chat-avatar{
  width:34px;height:34px;border-radius:50%;background:var(--blue-400);
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:18px;flex-shrink:0;
}
.lp-scope .hero-chat-title{font-family:var(--font-display);font-weight:700;font-size:var(--fs-chat-title);color:var(--text-strong)}
.lp-scope .hero-chat-sub{font-size:var(--fs-chat-sub);color:var(--text-faint)}
.lp-scope .hero-chat-body{padding:18px;display:flex;flex-direction:column;gap:12px;background:var(--white)}

@media (min-width:1024px){
  .lp-scope .hero .container{
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    grid-template-areas:
      "head head"
      "body visual";
    gap:28px 56px;
    align-items:start;
  }
  .lp-scope .hero{padding:60px 0 56px}
  .lp-scope .hero p.lead{margin-top:0}
}

/* ---------- Generic section ---------- */
.lp-scope section{padding:56px 0}
@media (min-width:768px){ .lp-scope section{padding:72px 0} }
@media (min-width:1024px){ .lp-scope section{padding:80px 0} }
.lp-scope .section-subtle{background:var(--surface-subtle)}

/* ---------- 3-card grid (Pains / Features / Steps) ---------- */
.lp-scope .grid-3{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:40px;
}
.lp-scope .grid-3 .card{height:100%}
@media (min-width:768px) and (max-width:1023.98px){
  .lp-scope .grid-3{grid-template-columns:repeat(2,1fr)}
  .lp-scope .grid-3 > :last-child{grid-column:1 / -1;max-width:calc(50% - 10px);margin-inline:auto}
}
@media (min-width:1024px){
  .lp-scope .grid-3{grid-template-columns:repeat(3,1fr)}
}

.lp-scope .feature-num{font-family:var(--font-latin);font-weight:700;font-size:var(--fs-feature-num);color:var(--blue-200)}
.lp-scope .feature-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.lp-scope .feature-icon{width:64px;height:64px;object-fit:contain;flex-shrink:0}
.lp-scope .grid-3 h3{font-size:var(--fs-h4);margin:6px 0 8px}
.lp-scope .grid-3 p{margin:0;font-size:var(--fs-sm);color:var(--text-muted)}

/* Features (contrast cards): "代行ではなく、伴走" style */
.lp-scope .feature-contrast{display:flex;flex-direction:column;gap:10px}
.lp-scope .feature-contrast .not{
  font-family:var(--font-latin);font-size:var(--fs-sm);color:var(--text-faint);
  text-decoration:line-through;text-decoration-color:var(--gray-300);
}
.lp-scope .feature-contrast .yes{font-size:var(--fs-h3);font-weight:var(--fw-black);color:var(--text-strong);font-family:var(--font-display)}
.lp-scope .feature-contrast .yes .accent{color:var(--blue-700)}

/* ---------- Pricing ---------- */
.lp-scope .grid-pricing{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:40px;
  align-items:stretch;
}
.lp-scope .plan-card{display:flex;flex-direction:column}
.lp-scope .plan-card.is-primary{border:2px solid var(--blue-400)}
.lp-scope .plan-name{font-family:var(--font-display);font-weight:700;color:var(--text-strong)}
.lp-scope .plan-price-row{margin-top:8px;margin-bottom:16px}
.lp-scope .plan-price{font-family:var(--font-latin);font-weight:700;font-size:var(--fs-price-sub);color:var(--text-strong)}
.lp-scope .plan-unit{font-size:var(--fs-sm);color:var(--text-muted);margin-left:4px}
.lp-scope .plan-feats{list-style:none;padding:0;margin:0 0 22px;display:flex;flex-direction:column;gap:10px;flex:1}
.lp-scope .plan-feats li{display:flex;gap:8px;font-size:var(--fs-sm);color:var(--text-body);align-items:flex-start}
.lp-scope .plan-feats li::before{content:'✓';color:var(--success);font-weight:700;flex-shrink:0}

@media (min-width:1024px){
  .lp-scope .grid-pricing{grid-template-columns:repeat(3,1fr)}
}

/* ---------- CTA band ---------- */
.lp-scope .cta-band{
  border-radius:var(--radius-lg);
  padding:40px 24px;
  text-align:center;
  background:linear-gradient(135deg,var(--blue-500),var(--blue-700));
}
.lp-scope .cta-band h2{color:#fff;font-size:var(--fs-h1);margin:0}
.lp-scope .cta-band p{color:rgba(255,255,255,.88);font-size:var(--fs-lead);margin-top:14px}
.lp-scope .cta-band .btn-wrap{margin-top:26px;display:flex;justify-content:center}
@media (min-width:768px){ .lp-scope .cta-band{padding:56px} }

/* ---------- Footer ---------- */
.lp-scope .site-footer{padding:44px 0 28px;background:var(--surface-inverse);color:#fff}

/* ---------- Toast ---------- */
.lp-scope .toast{
  position:fixed;bottom:24px;left:50%;
  transform:translateX(-50%) translateY(20px);
  opacity:0;pointer-events:none;
  transition:all .3s var(--ease-out);
  background:var(--gray-900);color:#fff;
  padding:12px 22px;border-radius:var(--radius-pill);
  font-size:var(--fs-toast);font-family:var(--font-display);
  box-shadow:var(--shadow-lg);z-index:50;
  max-width:calc(100vw - 32px);
  text-align:center;
}
.lp-scope .toast.is-visible{transform:translateX(-50%) translateY(0);opacity:1}

/* ============================================================
   Part 1 sections — header → program (Claude Design content)
   ============================================================ */

/* ---------- Ghost button (hero secondary CTAs) ---------- */
.lp-scope .btn-ghost{background:transparent;color:var(--text-body);border:1.5px solid var(--border-default);box-shadow:none}
.lp-scope .btn-ghost:hover{background:var(--surface-subtle);color:var(--text-strong)}

/* ---------- Hero lead + visual ---------- */
.lp-scope .hero-lead{font-size:var(--fs-body);color:var(--text-muted);margin:16px 0 0;font-family:var(--font-display);font-weight:var(--fw-bold)}
.lp-scope .hero h1{margin-top:10px}
.lp-scope .hero-visual{
  position:relative;border-radius:var(--radius-xl);overflow:hidden;
  aspect-ratio:3/2;box-shadow:var(--shadow-lg);
  background:linear-gradient(150deg,var(--blue-200),var(--blue-500) 60%,var(--blue-700));
}
.lp-scope .hero-visual-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center;
}
.lp-scope .hero-visual .visual-badge{
  position:absolute;left:20px;bottom:20px;z-index:1;
  background:rgba(255,255,255,.92);backdrop-filter:blur(6px);
  color:var(--blue-700);font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);
  padding:9px 16px;border-radius:var(--radius-pill);box-shadow:var(--shadow-sm);
}

/* ---------- Chat demo (standalone section) ---------- */
.lp-scope .chatdemo .section-heading{margin-bottom:32px}
.lp-scope .chatdemo-card{max-width:640px;margin-inline:auto;padding:0;overflow:hidden;box-shadow:var(--shadow-lg)}
.lp-scope .chatdemo .hero-chat-body{padding:22px}
.lp-scope .chatdemo .chat-bubble{max-width:82%}

/* ---------- Pains (checklist) ---------- */
.lp-scope .pains-list{
  list-style:none;padding:0;margin:36px auto 0;max-width:760px;
  display:flex;flex-direction:column;gap:14px;
}
.lp-scope .pains-list li{
  display:flex;gap:14px;align-items:flex-start;
  background:var(--surface-card);border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);padding:18px 20px;box-shadow:var(--shadow-xs);
  font-size:var(--fs-body);color:var(--text-body);line-height:var(--lh-snug);font-weight:var(--fw-bold);
}
.lp-scope .pains-list li .ph-duotone{color:var(--blue-500);font-size:24px;flex-shrink:0;margin-top:1px}
.lp-scope .pains-list li .pain-text{flex:1;min-width:0}

/* 診断内容(4カード)の項目リストのみ:枠なし・詰めた表示にする */
.lp-scope .grid-4 .pains-list{gap:8px;width:100%;max-width:none;margin:0}
.lp-scope .grid-4 .pains-list li{background:none;border:none;box-shadow:none;padding:4px 0;align-items:center}

/* サービスメニュー(プレミアムプラン)の項目リスト:PCのみ2列にして高さを抑える */
.lp-scope .menu-main .pains-list{max-width:none;margin:0}
@media (min-width:768px){
  .lp-scope .menu-main .pains-list{display:grid;grid-template-columns:1fr 1fr;gap:14px}
}
.lp-scope .pains-summary{
  text-align:center;margin:32px auto 0;max-width:640px;
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-h4);
  color:var(--text-strong);line-height:var(--lh-snug);
}
.lp-scope .pains-summary .accent{color:var(--blue-700)}

/* ---------- Concept (AI参謀とは) ---------- */
.lp-scope .concept-body{max-width:760px;margin:32px auto 0;display:flex;flex-direction:column;gap:20px}
.lp-scope .concept-body p{margin:0;font-size:var(--fs-body);line-height:var(--lh-body);color:var(--text-body)}
.lp-scope .concept-contrast{
  display:grid;grid-template-columns:1fr;gap:16px;align-items:stretch;
  max-width:900px;margin:44px auto 0;
}
.lp-scope .concept-side{
  background:var(--surface-card);border:1px solid var(--border-subtle);
  border-radius:var(--radius-lg);padding:26px 24px;text-align:center;box-shadow:var(--shadow-sm);
}
.lp-scope .concept-side.is-accent{background:var(--surface-accent-soft);border-color:var(--blue-100)}
.lp-scope .concept-side h4{font-size:var(--fs-h4);margin:0 0 8px}
.lp-scope .concept-side.is-accent h4{color:var(--blue-700)}
.lp-scope .concept-side p{margin:0;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-snug)}
.lp-scope .concept-arrow{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
  color:var(--blue-700);
}
.lp-scope .concept-arrow span{font-family:var(--font-display);font-weight:700;font-size:var(--fs-xs);letter-spacing:var(--ls-label);white-space:nowrap}
.lp-scope .concept-arrow .ph-duotone{font-size:30px;transform:rotate(90deg)}
@media (min-width:768px){
  .lp-scope .concept-contrast{grid-template-columns:1fr auto 1fr}
  .lp-scope .concept-arrow .ph-duotone{transform:none}
}

/* ---------- Before / After ---------- */
.lp-scope .ba-wrap{max-width:920px;margin:40px auto 0;display:flex;flex-direction:column;gap:32px}
.lp-scope .ba-heads{display:none}
.lp-scope .ba-row{
  display:grid;grid-template-columns:1fr;gap:8px;align-items:stretch;
  padding-bottom:32px;border-bottom:1px solid var(--border-subtle);
}
.lp-scope .ba-row:last-child{padding-bottom:0;border-bottom:none}
.lp-scope .ba-cell{
  border-radius:var(--radius-md);padding:16px 18px;font-size:var(--fs-ba-cell);line-height:var(--lh-snug);
  align-self:center;
}
.lp-scope .ba-before{background:#444444;color:#ffffff;border:1px solid #444444;font-weight:var(--fw-bold)}
.lp-scope .ba-after{background:#ffffff;color:var(--gray-800);border:1px solid var(--blue-100);font-weight:500}
.lp-scope .ba-wrap-lg .ba-cell{font-size:var(--fs-lead)}
.lp-scope .ba-arrow{
  display:flex;align-items:center;justify-content:center;color:var(--blue-500);
  font-size:22px;line-height:1;
}
.lp-scope .ba-arrow .ph-duotone{transform:rotate(90deg)}
@media (min-width:768px){
  .lp-scope .ba-heads{display:grid;grid-template-columns:1fr 48px 1fr;gap:10px;margin-bottom:2px}
  .lp-scope .ba-heads .ba-head{font-family:var(--font-display);font-weight:700;font-size:var(--fs-ba-head);text-align:center;padding:4px}
  .lp-scope .ba-heads .ba-head .ph-duotone{font-size:16px;margin-right:4px;vertical-align:-2px}
  .lp-scope .ba-heads .ba-before-head{color:var(--text-muted)}
  .lp-scope .ba-heads .ba-after-head{color:var(--blue-700)}
  .lp-scope .ba-row{grid-template-columns:1fr 48px 1fr}
  .lp-scope .ba-arrow .ph-duotone{transform:none}
}

/* ---------- Why AI (4 cards) ---------- */
.lp-scope .grid-4{display:grid;grid-template-columns:1fr;gap:20px;margin-top:40px;max-width:900px;margin-inline:auto}
.lp-scope .grid-4 .card{display:flex;flex-direction:column;gap:10px;height:100%}
.lp-scope .grid-4 .card .ph-duotone{font-size:32px;color:var(--blue-500)}
.lp-scope .grid-4 .card h3{font-size:var(--fs-h4);margin:0}
.lp-scope .grid-4 .card p{margin:0;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-body)}
@media (min-width:768px){.lp-scope .grid-4{grid-template-columns:repeat(2,1fr)}}
/* 診断内容(2カード)のみ、上の見える化レポートプレミアムカード(max-width:960px)と両端を揃える。
   カード自体の幅は変えず、gapを広げることで揃える。:not(.grid-3)で3カードのメリット欄には影響させない */
.lp-scope .grid-4:not(.grid-3){max-width:960px}
@media (min-width:768px){.lp-scope .grid-4:not(.grid-3){row-gap:40px;column-gap:80px}}
.lp-scope .menu-main + .section-heading{margin-top:60px}
.lp-scope .why-arrow{text-align:center;margin-top:36px;color:var(--blue-400);line-height:1}
.lp-scope .why-arrow .ph-duotone{font-size:40px}
.lp-scope .why-summary{
  text-align:center;margin:16px auto 0;max-width:680px;
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-h4);
  color:var(--text-strong);line-height:var(--lh-snug);
}
.lp-scope .why-summary .accent{color:var(--blue-700)}

/* ---------- Benefits section (dark bg) ---------- */
.lp-scope .section-benefits{background:var(--surface-inverse)}
.lp-scope .section-benefits .section-heading h2{color:#ffffff}
.lp-scope .section-benefits .section-heading .lead{color:rgba(255,255,255,0.82)}
.lp-scope .section-benefits .why-arrow{color:#ffffff}
.lp-scope .section-benefits .why-summary{color:#ffffff}
.lp-scope .section-benefits .why-summary .accent{color:var(--blue-500)}

/* ---------- Menu section (blue bg) ---------- */
.lp-scope .section-menu-blue{background:var(--blue-500)}
.lp-scope .section-menu-blue .section-heading h2{color:#ffffff}
.lp-scope .section-menu-blue .section-heading .lead{color:#ffffff;font-weight:var(--fw-bold)}
.lp-scope .section-menu-blue .section-heading .cat-label{color:#ffffff}

/* ---------- Program: category label + sub-heading ---------- */
.lp-scope .section-heading .cat-label{
  display:inline-block;font-family:var(--font-latin);font-weight:700;
  letter-spacing:var(--ls-label);text-transform:uppercase;font-size:var(--fs-sm);
  color:var(--blue-500);
}
.lp-scope .program-sub{
  font-family:var(--font-display);font-weight:500;font-size:var(--fs-lead);
  color:var(--blue-700);margin:2px 0 0;
}

/* ---------- Program: step cards ---------- */
.lp-scope .step-grid{display:grid;grid-template-columns:1fr;gap:20px;margin-top:40px;align-items:stretch}
.lp-scope .step-card{display:flex;flex-direction:column;height:100%}
.lp-scope .step-tag{
  display:flex;align-items:baseline;gap:8px;margin-bottom:12px;
  font-family:var(--font-latin);font-weight:700;
}
.lp-scope .step-tag .step-no{font-size:var(--fs-step-no);color:var(--blue-300);line-height:1}
.lp-scope .step-tag .step-month{font-family:var(--font-display);font-size:var(--fs-sm);font-weight:700;color:var(--blue-700)}
.lp-scope .step-card h3{font-size:var(--fs-h4);margin:0 0 6px}
.lp-scope .step-note{font-size:var(--fs-lead);color:var(--blue-500);margin:14px 0 16px;font-weight:var(--fw-bold);line-height:var(--lh-snug)}
.lp-scope .step-feats{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.lp-scope .step-feats li{display:flex;gap:8px;font-size:var(--fs-sm);color:var(--text-body);align-items:flex-start;line-height:var(--lh-snug)}
.lp-scope .step-feats li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--blue-400);flex-shrink:0;margin-top:8px}
@media (min-width:768px){.lp-scope .step-grid{grid-template-columns:repeat(3,1fr)}}

/* ---------- Program: price card ---------- */
.lp-scope .price-card{
  max-width:560px;margin:36px auto 0;text-align:center;
  border-radius:var(--radius-xl);padding:40px 32px;
  background:linear-gradient(135deg,var(--blue-500),var(--blue-700));
  color:#fff;box-shadow:var(--shadow-accent);border:none;
}
.lp-scope .price-card h3{color:#fff;font-size:var(--fs-h4);margin:0 0 14px}
.lp-scope .price-amount{display:flex;align-items:baseline;justify-content:center;gap:4px;line-height:1}
.lp-scope .price-amount .price-num{font-family:var(--font-latin);font-weight:700;font-size:var(--fs-price-main);color:#fff}
.lp-scope .price-amount .price-unit{font-family:var(--font-display);font-weight:700;font-size:var(--fs-h4);color:#fff}
.lp-scope .price-total{font-size:var(--fs-sm);color:rgba(255,255,255,.85);margin:8px 0 0;font-family:var(--font-display);font-weight:500}
.lp-scope .price-desc{font-size:var(--fs-sm);color:rgba(255,255,255,.9);margin:16px 0 0}

/* ---------- Program: 3 features ---------- */
.lp-scope .program-features{margin-top:56px}
.lp-scope .program-features .pf-heading{text-align:center;font-size:var(--fs-h3);margin:0 0 28px}
.lp-scope .pf-grid{display:grid;grid-template-columns:1fr;gap:20px;align-items:stretch}
.lp-scope .pf-card{display:flex;flex-direction:column;gap:10px;height:100%}
.lp-scope .pf-card .pf-label{font-size:var(--fs-h4);font-family:var(--font-display);font-weight:900;color:var(--text-strong)}
.lp-scope .pf-card .pf-label .accent{color:var(--blue-500)}
.lp-scope .pf-card p{margin:0;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-body)}
.lp-scope .pf-card .ph-duotone{font-size:30px;color:var(--blue-500)}
@media (min-width:768px){.lp-scope .pf-grid{grid-template-columns:repeat(3,1fr)}}

/* ============================================================
   Part 2 sections — reasons → FAQ (Claude Design content)
   ============================================================ */

/* ---------- 8. Why chosen (reasons) — stacked, horizontal cards ---------- */
/* ---------- Concept photo ---------- */
.lp-scope .concept-photo{
  position:relative;
  margin:32px auto 0;max-width:900px;border-radius:var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow-sm);
}
.lp-scope .concept-photo img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover}
.lp-scope .concept-photo.concept-photo-wide img{aspect-ratio:32/9}
.lp-scope .concept-photo-caption{
  position:absolute;left:50%;top:62%;transform:translate(-50%,-50%);
  width:100%;text-align:center;
  font-family:var(--font-display);font-weight:700;color:#ffffff;
  font-size:var(--fs-concept-caption);line-height:var(--lh-snug);
  text-shadow:0 2px 12px rgba(0,0,0,0.45);
  padding:0 16px;pointer-events:none;
}

/* ---------- Concept card (答え + 01/02) ---------- */
.lp-scope .concept-card-wrap{max-width:900px;margin:40px auto 0}
.lp-scope .concept-card{display:flex;flex-direction:column;gap:28px;padding:var(--space-7) var(--space-6)}
.lp-scope .concept-answer h3{
  font-size:var(--fs-concept-answer);line-height:var(--lh-snug);margin:0 0 12px;
  color:var(--text-strong);
}
.lp-scope .concept-answer h3 .answer-highlight{color:#d80000}
.lp-scope .concept-answer h3 .answer-highlight.answer-highlight-blue{color:var(--blue-500)}

/* コンセプトカード内「対象」ブロック */
.lp-scope .concept-target{
  display:flex;align-items:flex-start;gap:14px;
  background:var(--surface-accent-soft);border-radius:var(--radius-md);
  padding:16px 18px;
}
.lp-scope .concept-target-label{
  flex-shrink:0;display:inline-block;
  background:var(--blue-500);color:#fff;font-family:var(--font-display);font-weight:700;
  font-size:var(--fs-body);padding:4px 16px;border-radius:var(--radius-pill);
}
.lp-scope .concept-target p{margin:0;font-size:var(--fs-body);font-weight:var(--fw-bold);color:var(--text-body);line-height:var(--lh-body)}
@media (max-width:767.98px){
  .lp-scope .concept-target{flex-direction:column;gap:8px}
}

/* 見出し内の一部を青字にする（再利用可能） */
.lp-scope .text-accent{color:var(--blue-500)}
.lp-scope .concept-answer p{margin:0;font-size:var(--fs-body);color:var(--text-body);line-height:var(--lh-body)}
.lp-scope .concept-item{display:flex;flex-direction:row;align-items:flex-start;gap:20px}
.lp-scope .concept-num{
  flex-shrink:0;font-family:var(--font-latin);font-weight:700;
  font-size:var(--fs-concept-num);color:var(--blue-200);line-height:1;
  font-variant-numeric:tabular-nums;
}
.lp-scope .concept-item-body{min-width:0}
.lp-scope .concept-item-body h4{font-size:var(--fs-h4);margin:0 0 6px;color:var(--text-strong)}
.lp-scope .concept-item-body p{margin:0;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-body)}
@media (max-width:767.98px){
  .lp-scope .concept-answer h3{font-size:var(--fs-concept-answer-sp)}
  .lp-scope .concept-item{gap:14px}
}

/* ---------- Reason cards (選ばれる理由) ---------- */
.lp-scope .reason-grid{display:flex;flex-direction:column;gap:20px;margin:40px auto 0;max-width:900px}
.lp-scope .reason-card{display:flex;flex-direction:row;align-items:flex-start;gap:18px}
.lp-scope .reason-icon{
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  width:56px;height:56px;border-radius:var(--radius-md);
  background:var(--surface-accent-soft);
}
.lp-scope .reason-icon .ph-duotone{font-size:30px;color:var(--blue-500)}
.lp-scope .reason-body{min-width:0}
.lp-scope .reason-card h3{font-size:var(--fs-h4);margin:0 0 6px}
.lp-scope .reason-card p{margin:0;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-body)}

/* ---------- 9. Results ---------- */
.lp-scope .results-block{margin-top:44px}
.lp-scope .results-block-talks{margin-top:72px}
.lp-scope .results-block + .results-block{margin-top:56px}
.lp-scope .results-subhead{
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-h4);
  color:var(--text-strong);text-align:center;margin:0 0 24px;
}
.lp-scope .case-grid{display:grid;grid-template-columns:1fr;gap:24px;align-items:stretch}
.lp-scope .case-card{display:flex;flex-direction:column;gap:14px;height:100%}
.lp-scope .case-tag{
  align-self:flex-start;
  background:var(--surface-accent);color:var(--text-on-accent);
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-xs);
  letter-spacing:var(--ls-label);padding:5px 14px;border-radius:var(--radius-pill);
}
.lp-scope .case-card h3{font-size:var(--fs-h4);line-height:var(--lh-snug);margin:0}
.lp-scope .case-meta{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.lp-scope .case-meta li{display:flex;gap:10px;font-size:var(--fs-sm);line-height:var(--lh-snug)}
.lp-scope .case-meta .meta-label{
  flex-shrink:0;min-width:112px;font-family:var(--font-display);font-weight:700;
  color:var(--blue-700);
}
.lp-scope .case-meta .meta-value{color:var(--text-body)}
.lp-scope .case-photo{margin:0;line-height:0;border-radius:var(--radius-md);overflow:hidden}
.lp-scope .case-photo img{display:block;width:100%;aspect-ratio:2.4/1;object-fit:cover}
.lp-scope .case-photo + .case-block{border-top:none;padding-top:0}
.lp-scope .case-block{border-top:1px solid var(--border-subtle);padding-top:14px}
.lp-scope .case-block .block-label{
  display:inline-block;font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);
  color:var(--text-strong);margin:0 0 6px;
}
.lp-scope .case-block p{margin:0;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-body)}
.lp-scope .case-block + .case-block{margin-top:12px}
@media (min-width:1024px){.lp-scope .case-grid{grid-template-columns:repeat(2,1fr)}}

/* Testimonials (voices) */
.lp-scope .voice-grid{display:grid;grid-template-columns:1fr;gap:20px;align-items:stretch}
.lp-scope .voice-card{display:flex;flex-direction:column;gap:14px;height:100%}
.lp-scope .voice-card .voice-quote{position:relative;margin:0;font-size:var(--fs-sm);color:var(--text-body);line-height:var(--lh-body)}
.lp-scope .voice-card .ph-duotone{font-size:28px;color:var(--blue-300)}
.lp-scope .voice-card .voice-by{margin:auto 0 0;font-size:var(--fs-xs);color:var(--text-muted);font-family:var(--font-display);font-weight:700}
@media (min-width:768px){.lp-scope .voice-grid{grid-template-columns:repeat(3,1fr)}}

/* Talks / seminars */
.lp-scope .talks-lead{text-align:center;max-width:720px;margin:0 auto 24px;font-size:var(--fs-body);color:var(--text-muted);line-height:var(--lh-body)}
.lp-scope .talk-list{list-style:none;padding:0;margin:0 auto;max-width:860px;display:grid;grid-template-columns:1fr;gap:22px;align-items:start}
.lp-scope .talk-item{
  display:flex;flex-direction:column;gap:14px;height:100%;
  background:var(--surface-card);border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);padding:18px 18px 20px;box-shadow:var(--shadow-xs);
}
.lp-scope .talk-text{display:flex;flex-direction:column;gap:6px}
.lp-scope .talk-date{font-family:var(--font-latin);font-weight:700;font-size:var(--fs-sm);color:var(--blue-700)}
.lp-scope .talk-title{font-family:var(--font-display);font-weight:700;font-size:var(--fs-body);color:var(--text-strong);line-height:var(--lh-snug)}
.lp-scope .talk-desc{font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-snug)}
.lp-scope .talk-flyer{margin-top:auto;border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--border-subtle);box-shadow:var(--shadow-sm)}
.lp-scope .talk-flyer img{display:block;width:100%;height:auto}
.lp-scope .talk-link-wrap{text-align:center;margin-top:28px}
.lp-scope .talk-link-wrap .btn{white-space:normal;max-width:100%;line-height:1.4;text-align:center}
@media (min-width:768px){
  .lp-scope .talk-list{grid-template-columns:1fr 1fr;gap:24px}
}

/* ---------- 10. Recommended for ---------- */
.lp-scope .reco-grid{
  list-style:none;padding:0;margin:40px auto 0;max-width:900px;
  display:grid;grid-template-columns:1fr;gap:14px;
}
.lp-scope .reco-grid li{
  display:flex;gap:12px;align-items:flex-start;
  background:var(--surface-card);border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);padding:16px 18px;box-shadow:var(--shadow-xs);
  font-size:var(--fs-sm);color:var(--text-body);line-height:var(--lh-snug);font-weight:var(--fw-bold);
}
.lp-scope .reco-grid li .ph-duotone{color:var(--blue-500);font-size:22px;flex-shrink:0;margin-top:1px}
@media (min-width:768px){.lp-scope .reco-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.lp-scope .reco-grid li{font-size:var(--fs-reco-pc)}}

/* ---------- 11. FAQ ---------- */
.lp-scope .faq-list{max-width:760px;margin:40px auto 0;display:flex;flex-direction:column;gap:14px}
.lp-scope .faq-item{
  background:var(--surface-card);border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);box-shadow:var(--shadow-xs);overflow:hidden;
}
.lp-scope .faq-item summary{
  display:flex;align-items:flex-start;gap:12px;cursor:pointer;list-style:none;
  padding:18px 20px;font-family:var(--font-display);font-weight:700;
  color:var(--text-strong);font-size:var(--fs-body);line-height:var(--lh-snug);
}
.lp-scope .faq-item summary::-webkit-details-marker{display:none}
.lp-scope .faq-item summary .faq-q{
  flex-shrink:0;font-family:var(--font-latin);font-weight:700;color:var(--blue-700);
}
.lp-scope .faq-item summary .faq-chevron{
  margin-left:auto;flex-shrink:0;color:var(--blue-400);font-size:20px;
  transition:transform var(--dur) var(--ease-out);
}
.lp-scope .faq-item[open] summary .faq-chevron{transform:rotate(180deg)}
.lp-scope .faq-answer{display:flex;gap:12px;padding:0 20px 20px;font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-body)}
.lp-scope .faq-answer .faq-a{flex-shrink:0;font-family:var(--font-latin);font-weight:700;color:var(--text-faint)}
@media (min-width:1024px){
  .lp-scope .faq-item summary{font-size:var(--fs-faq-q-pc)}
  .lp-scope .faq-answer{font-size:15px}
}

/* ============================================================
   Part 3 sections — profile → footer (Claude Design content)
   ============================================================ */

/* ---------- 12. Profile ---------- */
.lp-scope .profile-card{
  margin-top:40px;display:grid;grid-template-columns:1fr;gap:26px;align-items:start;
  padding:var(--space-7) var(--space-6);
}
.lp-scope .profile-name{font-family:var(--font-display);font-weight:900;font-size:var(--fs-h3);color:var(--text-strong);margin:0}
.lp-scope .profile-name .name-kana{font-size:var(--fs-sm);font-weight:500;color:var(--text-muted);margin-left:10px}
.lp-scope .profile-role{font-size:var(--fs-sm);color:var(--blue-700);font-family:var(--font-display);font-weight:700;margin:8px 0 0;line-height:var(--lh-snug)}
.lp-scope .profile-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:22px 0}
.lp-scope .stat-tile{
  background:var(--surface-accent-soft);border-radius:var(--radius-md);
  padding:16px 10px;text-align:center;
}
.lp-scope .stat-tile .stat-num{display:block;font-family:var(--font-latin);font-weight:700;font-size:var(--fs-stat-num);color:var(--blue-600);line-height:1.1}
.lp-scope .stat-tile .stat-label{display:block;font-size:var(--fs-xs);color:var(--text-muted);margin-top:6px;line-height:var(--lh-snug)}

/* スマホのみ:実績カードを縦1列・横長レイアウトに(数字を左、ラベルを右) */
@media (max-width:767.98px){
  .lp-scope .profile-stats{grid-template-columns:1fr;gap:10px}
  .lp-scope .stat-tile{
    display:flex;align-items:center;gap:16px;text-align:left;
    padding:14px 20px;
  }
  .lp-scope .stat-tile .stat-num{flex-shrink:0;min-width:96px;text-align:center}
  .lp-scope .stat-tile .stat-label{margin-top:0}
}
.lp-scope .profile-intro{margin:0;font-size:var(--fs-sm);color:var(--text-body);line-height:var(--lh-body)}
.lp-scope .founder-grid{margin-top:26px;display:grid;grid-template-columns:1fr;gap:24px;align-items:stretch}
.lp-scope .founder-card{height:100%}
@media (min-width:768px){.lp-scope .founder-grid{grid-template-columns:1fr 1fr}}
.lp-scope .founder-card .founder-label{
  display:block;font-family:var(--font-display);font-weight:700;
  font-size:var(--fs-founder-label);color:var(--text-strong);margin:0 0 12px;
}
.lp-scope .founder-card .founder-label .ph-duotone{color:var(--blue-500);font-size:22px;margin-right:8px;vertical-align:middle}
.lp-scope .founder-card p{margin:0;font-size:var(--fs-founder-body);color:var(--text-muted);line-height:var(--lh-body)}
.lp-scope .founder-card p + p{margin-top:12px}
@media (min-width:768px){
  .lp-scope .profile-card{grid-template-columns:200px 1fr;gap:40px}
  .lp-scope .profile-photo{margin:0}
}

/* ---------- 13. Blog (placeholder) ---------- */
.lp-scope .blog-grid{display:grid;grid-template-columns:1fr;gap:20px;margin-top:40px;align-items:stretch}
.lp-scope .blog-card{display:flex;flex-direction:column;padding:0;overflow:hidden;height:100%;text-decoration:none;color:inherit}
.lp-scope .blog-card:hover{text-decoration:none}
.lp-scope .blog-thumb{
  height:120px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:40px;
  background:linear-gradient(135deg,var(--blue-200),var(--blue-500));
}
.lp-scope .blog-thumb.has-img{padding:0;background:var(--surface-sunken)}
.lp-scope .blog-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.lp-scope .blog-body{padding:20px 22px;display:flex;flex-direction:column;gap:10px;flex:1}
.lp-scope .blog-cat{
  align-self:flex-start;background:var(--surface-accent-soft);color:var(--blue-700);
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-xs);letter-spacing:var(--ls-label);
  padding:4px 12px;border-radius:var(--radius-pill);
}
.lp-scope .blog-title{font-family:var(--font-display);font-weight:700;font-size:var(--fs-body);color:var(--text-strong);line-height:var(--lh-snug);margin:0}
.lp-scope .blog-note{text-align:center;margin:28px auto 0;max-width:680px;font-size:var(--fs-sm);color:var(--text-faint);line-height:var(--lh-body)}
@media (min-width:768px){.lp-scope .blog-grid{grid-template-columns:repeat(3,1fr)}}

/* ---------- 14. Company ---------- */
.lp-scope .company-card{max-width:720px;margin:40px auto 0;text-align:left;padding:var(--space-7) var(--space-6)}
.lp-scope .company-card p{margin:0 0 22px;font-size:var(--fs-body);color:var(--text-body);line-height:var(--lh-body)}
.lp-scope .company-photos{display:grid;grid-template-columns:1fr;gap:14px;margin:0 0 24px}
.lp-scope .company-photo{margin:0}
.lp-scope .company-photo img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:var(--radius-md)}
@media (min-width:768px){.lp-scope .company-photos{grid-template-columns:1fr 1fr}}

/* ---------- 15. Final CTA ---------- */
.lp-scope .btn-on-dark{background:#fff;color:var(--blue-700);box-shadow:var(--shadow-sm)}
.lp-scope .btn-on-dark:hover{background:var(--blue-50);color:var(--blue-700)}
.lp-scope .btn-ghost-light{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.6);box-shadow:none}
.lp-scope .btn-ghost-light:hover{background:rgba(255,255,255,.14);color:#fff}
.lp-scope .cta-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:28px}
.lp-scope .cta-note{margin:20px auto 0;max-width:560px;font-size:var(--fs-xs);color:rgba(255,255,255,.82);line-height:var(--lh-snug)}

/* ---------- Footer (rebuild) ---------- */
.lp-scope .footer-top{display:grid;grid-template-columns:1fr;gap:32px}
.lp-scope .footer-brand img{height:24px}
.lp-scope .footer-brand p{margin:12px 0 0;font-size:var(--fs-xs);color:#ffffff;line-height:var(--lh-body);max-width:340px}
.lp-scope .footer-col h4{font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);color:#fff;margin:0 0 14px}
.lp-scope .footer-col{display:flex;flex-direction:column}
.lp-scope .footer-col a{
  color:rgba(255,255,255,.72);font-size:var(--fs-sm);padding:6px 0;
  font-family:var(--font-display);font-weight:500;
}
.lp-scope .footer-col a:hover{color:var(--blue-300)}
.lp-scope .footer-bottom{
  margin-top:32px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);
  font-family:var(--font-latin);font-size:var(--fs-xs);color:rgba(255,255,255,.5);letter-spacing:.02em;
}
@media (min-width:768px){
  .lp-scope .footer-top{grid-template-columns:1.6fr 1fr 1fr;gap:40px}
}

/* ============================================================
   Part 4 — image assets
   ============================================================ */

/* Concept: portrait beside body text */
.lp-scope .concept-intro{
  max-width:960px;margin:32px auto 0;
  display:grid;grid-template-columns:1fr;gap:28px;align-items:center;
}
.lp-scope .concept-intro .concept-body{max-width:none;margin:0}
.lp-scope .concept-portrait{
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-md);border:1px solid var(--border-subtle);
  align-self:center;
}
.lp-scope .concept-portrait img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover}
@media (min-width:900px){
  .lp-scope .concept-intro{grid-template-columns:1.25fr .85fr;gap:44px}
}

/* Concept: vertically center the contrast card content */
.lp-scope .concept-side{display:flex;flex-direction:column;justify-content:center}

/* Concept: いにしえの軍師 image trio */
.lp-scope .armor-imgs{display:flex;gap:10px;margin-bottom:16px}
.lp-scope .armor-imgs figure{flex:1;min-width:0;margin:0}
.lp-scope .armor-imgs img{
  display:block;width:100%;aspect-ratio:1/1;object-fit:cover;
  border-radius:var(--radius-md);border:1px solid var(--border-subtle);
  box-shadow:var(--shadow-xs);background:#fff;
}
/* あなたのAI参謀 — transparent illustration icons in framed tiles */
.lp-scope .armor-imgs.is-icons figure{
  aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;padding:14px;
  background:#fff;border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);box-shadow:var(--shadow-xs);
}
.lp-scope .armor-imgs.is-icons img{
  width:100%;height:100%;aspect-ratio:auto;object-fit:contain;
  border:none;box-shadow:none;background:transparent;border-radius:0;
}

/* Profile: photo card */
.lp-scope .profile-photo{
  width:100%;max-width:220px;margin-inline:auto;
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-md);border:1px solid var(--border-subtle);
}
.lp-scope .profile-photo img{display:block;width:100%;aspect-ratio:3/4;object-fit:cover}

/* Team: 3-card layout (担当者紹介 3名版) */
.lp-scope .team-grid{margin-top:40px;display:grid;grid-template-columns:1fr;gap:24px}
@media (min-width:768px){.lp-scope .team-grid{grid-template-columns:repeat(3,1fr)}}
.lp-scope .team-card{display:flex;flex-direction:column;gap:12px}
.lp-scope .team-card .profile-photo{max-width:none;margin-inline:0}
.lp-scope .team-card .profile-role{margin-top:0}
.lp-scope .team-card .profile-name{font-size:var(--fs-h4)}

/* おすすめ: audience photos above the checklist */
.lp-scope .reco-photos{
  max-width:900px;margin:40px auto 0;
  display:grid;grid-template-columns:1fr 1fr;gap:16px;
}
.lp-scope .reco-photo{
  margin:0;border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-md);border:1px solid var(--border-subtle);
}
.lp-scope .reco-photo img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}

/* ===== 料金メニュー(カフェ相談LP) ===== */
.lp-scope .menu-main{
  max-width:960px;margin:40px auto 0;padding:var(--space-7) var(--space-6);
  position:relative;border:2px solid var(--blue-200);
}
.lp-scope .menu-badge{
  display:inline-block;background:var(--blue-500);color:#fff;
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);
  padding:5px 16px;border-radius:var(--radius-pill);margin-bottom:16px;
}
.lp-scope .menu-main-head{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:16px;flex-wrap:wrap;border-bottom:1px solid var(--border-subtle);
  padding-bottom:16px;margin-bottom:16px;
}
.lp-scope .menu-title{font-size:var(--fs-h3);margin:0}
.lp-scope .menu-title-accent{color:var(--blue-500);font-size:clamp(28px,2.9vw,34px)}
.lp-scope .menu-price{display:flex;align-items:baseline;gap:4px}
.lp-scope .menu-price .price-num{font-family:var(--font-latin);font-weight:700;font-size:var(--fs-price-sub);color:var(--blue-600)}
.lp-scope .menu-price .price-unit{font-size:var(--fs-sm);color:var(--text-muted)}

/* プレミアムカード見出し内:3プランの名称+価格リスト */
.lp-scope .menu-price-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:4px}
.lp-scope .menu-price-list li{display:flex;align-items:baseline;justify-content:flex-end;gap:10px}
.lp-scope .menu-price-list-name{font-size:var(--fs-body);color:var(--text-muted);min-width:86px;text-align:left}
.lp-scope .menu-price-list-amount{font-family:var(--font-latin);font-weight:700;font-size:var(--fs-h4);color:var(--blue-600);white-space:nowrap}
.lp-scope .menu-price-list-amount span{font-family:var(--font-display);font-weight:500;color:var(--text-muted);font-size:var(--fs-sm);margin-left:2px}
.lp-scope .menu-desc{margin:0 0 24px;font-size:var(--fs-body);color:var(--text-body);line-height:var(--lh-body)}
.lp-scope .menu-block-heading{
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-body);
  color:var(--text-strong);margin:0 0 10px;
}
.lp-scope .menu-block-heading .ph-duotone,
.lp-scope .menu-flow-lg .menu-flow-heading .ph-duotone{color:var(--blue-500);margin-right:4px;vertical-align:-1px}
.lp-scope .menu-flow-lg .menu-flow-heading{font-size:var(--fs-body)}
.lp-scope .menu-desc-cols{display:grid;grid-template-columns:1fr;gap:24px;margin-bottom:24px}
.lp-scope .menu-desc-cols .menu-desc{margin-bottom:0}
@media (min-width:768px){
  .lp-scope .menu-desc-cols{grid-template-columns:1fr 1fr;gap:40px}
}

/* プラン比較表 */
.lp-scope .plan-compare{
  overflow-x:auto;margin:0 0 28px;
  border:1px solid var(--border-subtle);border-radius:var(--radius-md);
}
.lp-scope .plan-compare-table{
  width:100%;min-width:520px;border-collapse:collapse;font-size:var(--fs-sm);
}
.lp-scope .plan-compare-table th,
.lp-scope .plan-compare-table td{
  padding:14px 12px;text-align:center;border-bottom:1px solid var(--border-subtle);
  border-left:1px solid var(--border-subtle);
}
.lp-scope .plan-compare-table th:first-child,
.lp-scope .plan-compare-table td:first-child{border-left:none}
.lp-scope .plan-compare-table thead th{
  background:var(--blue-50);font-family:var(--font-display);font-weight:700;
  color:var(--text-strong);vertical-align:top;
}
.lp-scope .plan-compare-table thead th:first-child{background:var(--white)}
.lp-scope .plan-compare-price{
  display:block;margin-top:6px;font-family:var(--font-latin);font-weight:700;
  color:var(--blue-600);font-size:var(--fs-body);
}
.lp-scope .plan-compare-price span{
  display:inline;margin-left:2px;font-family:var(--font-display);font-weight:500;
  color:var(--text-muted);font-size:var(--fs-xs);
}
.lp-scope .plan-compare-table tbody th{
  text-align:left;font-weight:700;color:var(--text-strong);
  background:var(--surface-subtle);white-space:nowrap;
}
.lp-scope .plan-compare-yes{color:var(--blue-500);font-weight:var(--fw-black);font-size:var(--fs-h3)}
.lp-scope .plan-compare-no{color:var(--text-muted)}
.lp-scope .menu-flow-heading{
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);
  color:var(--text-strong);margin:0 0 14px;
}
.lp-scope .menu-flow .step-grid{margin-top:0}
.lp-scope .menu-flow .step-card h4{font-size:var(--fs-body);margin:8px 0 6px}
.lp-scope .step-note-sm{font-size:var(--fs-sm);color:var(--text-muted);margin:0;line-height:var(--lh-snug)}

.lp-scope .menu-sub{
  max-width:960px;margin:32px auto 0;
  background:var(--surface-subtle);border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);padding:20px 24px;
}
.lp-scope .menu-sub-label{
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);
  color:var(--blue-700);margin-bottom:6px;
}
.lp-scope .menu-sub-row{display:flex;flex-direction:column;gap:4px}
.lp-scope .menu-sub-title{font-size:var(--fs-body);color:var(--text-strong)}
.lp-scope .menu-sub-title strong{color:var(--blue-600)}
.lp-scope .menu-sub-desc{font-size:var(--fs-sm);color:var(--text-muted);line-height:var(--lh-snug)}

/* ---------- アクセス/対面相談カード（メニューセクション内） ---------- */
.lp-scope .access-card{
  max-width:960px;margin:32px auto 0;
  background:var(--white);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);overflow:hidden;
  display:grid;grid-template-columns:1fr 1fr;
}
.lp-scope .access-info{padding:32px 32px 34px}
.lp-scope .access-title{font-size:var(--fs-h4);color:var(--text-strong);margin:0 0 12px}
.lp-scope .access-lead{font-size:var(--fs-sm);color:var(--text-body);line-height:var(--lh-body);margin:0 0 20px}
.lp-scope .access-list{margin:0}
.lp-scope .access-row{display:flex;gap:14px;padding:12px 0;border-top:1px solid var(--border-subtle)}
.lp-scope .access-row:first-child{border-top:none;padding-top:0}
.lp-scope .access-row dt{
  flex-shrink:0;width:64px;font-family:var(--font-display);font-weight:700;
  font-size:var(--fs-sm);color:var(--blue-600);
}
.lp-scope .access-row dd{margin:0;font-size:var(--fs-sm);color:var(--text-body);line-height:var(--lh-body)}
.lp-scope .access-map{position:relative;min-height:320px}
.lp-scope .access-map iframe{position:absolute;inset:0;width:100%;height:100%;display:block}
@media (max-width:767.98px){
  .lp-scope .access-card{grid-template-columns:1fr}
  .lp-scope .access-info{padding:24px 22px 26px}
  .lp-scope .access-map{min-height:280px;order:2}
}

/* メリットセクションを3列に */
.lp-scope .grid-4.grid-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:767.98px){
  .lp-scope .grid-4.grid-3{grid-template-columns:1fr}
  .lp-scope .menu-main-head{flex-direction:column;gap:6px}
}

/* 最終CTAの補足 */
.lp-scope .cta-note{margin-top:16px;font-size:var(--fs-sm);opacity:.85}

/* ---------- 黄色マーカー（再利用可能） ----------
   任意のテキストを <span class="marker">〜</span> で囲むと、
   文字の下半分に黄色い蛍光ペンを引いた表現になる。 */
.lp-scope .marker{
  background:linear-gradient(transparent 55%, #fff44f 55%);
  font-weight:inherit;
  display:inline;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

/* ---------- ページトップへ戻るボタン ---------- */
.lp-scope .pagetop{
  width:46px;height:46px;
  position:fixed;bottom:50px;right:20px;
  transition:opacity .5s var(--ease-out);
  opacity:0;pointer-events:none;
  cursor:pointer;z-index:90;
  display:block;line-height:0;
}
.lp-scope .pagetop.is-active{opacity:1;pointer-events:auto}
.lp-scope .pagetop img{width:100%;height:100%;display:block}
@media (max-width:991px){
  .lp-scope .pagetop{width:35px;height:35px;bottom:80px;right:10px}
}

/* ヒーローのバッジ: PC幅のみ少し大きく */
@media (min-width:1024px){
  .lp-scope .hero .badge-accent{font-size:var(--fs-sm);padding:7px 16px}
}

/* ヒーロー直後のPainsセクション: 上の間隔を詰める */
.lp-scope .section-pains{padding-top:36px}
@media (min-width:1024px){ .lp-scope .section-pains{padding-top:44px} }
.lp-scope .section-pains .lead{text-align:left;font-size:var(--fs-body);font-weight:var(--fw-regular)}
.lp-scope .section-pains .pains-list li{font-size:var(--fs-h4)}
