    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:    #0d0d0d;
      --bg2:   #141414;
      --bg3:   #1a1a1a;
      --white: #ffffff;
      --muted: rgba(255,255,255,0.55);
      --body:  rgba(255,255,255,0.82);
      --line:  rgba(255,255,255,0.10);
      --grad:  linear-gradient(135deg,#00c6ff 0%,#0072ff 100%);
      --grad-h:linear-gradient(90deg,#00c6ff 0%,#0072ff 100%);
      --grad-f:linear-gradient(135deg,#ff4e00 0%,#ec9f05 100%);
      --red:   #ff3a3a;
      --grad-r:linear-gradient(90deg,#ff3a3a 0%,#cc0033 100%);
      --max-w: 1080px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family:'Noto Sans JP',sans-serif;
      color:var(--white);
      background:var(--bg);
      font-size:16px;
      line-height:1.8;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    a { text-decoration:none; }
    img { display:block; max-width:100%; }

    /* ─── LAYOUT ─── */
    .container { max-width:var(--max-w); margin:0 auto; padding:0 48px; }
    section { padding:120px 0; }

    /* ─── GRADIENT TEXT ─── */
    .gt {
      background:var(--grad-h);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .gt-fire {
      background:var(--grad-f);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      background-clip:text;
    }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity:0; transform:translateY(36px);
      transition:opacity .8s ease, transform .8s ease;
    }
    .reveal.on { opacity:1; transform:translateY(0); }
    .reveal-l {
      opacity:0; transform:translateX(-36px);
      transition:opacity .8s ease, transform .8s ease;
    }
    .reveal-l.on { opacity:1; transform:translateX(0); }
    .d1{transition-delay:.1s} .d2{transition-delay:.2s}
    .d3{transition-delay:.3s} .d4{transition-delay:.4s}

    /* ─── SECTION LABELS ─── */
    .lbl {
      font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600;
      letter-spacing:.25em; color:var(--muted);
      text-transform:uppercase;
      display:flex; align-items:center; gap:12px;
      margin-bottom:20px;
    }
    .lbl::before {
      content:''; width:32px; height:1px;
      background:var(--grad-h); flex-shrink:0;
    }
    .lbl-center { justify-content:center; }
    .lbl-center::before { display:none; }

    .ttl {
      font-size:clamp(30px,4vw,48px);
      font-weight:700; line-height:1.25;
      margin-bottom:56px;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes slideUp {
      from { transform:translateY(110%); }
      to   { transform:translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(32px); }
      to   { opacity:1; transform:translateY(0); }
    }
    @keyframes ticker {
      from { transform:translateX(0); }
      to   { transform:translateX(-50%); }
    }

    /* ─── NAV ─── */
    #nav {
      position:fixed; top:0; left:0; right:0; z-index:200;
      height:72px; display:flex; align-items:center;
      transition:background .4s, border-color .4s;
      border-bottom:1px solid transparent;
      overflow:visible;
    }
    #nav.sc {
      background:rgba(0,0,0,.92);
      backdrop-filter:blur(16px);
      border-bottom-color:var(--line);
    }
    .nav-in {
      max-width:var(--max-w); margin:0 auto; padding:0 48px;
      width:100%; display:flex; align-items:center;
      justify-content:space-between;
      overflow:visible;
    }
    .nav-logo {
      font-family:'Inter',sans-serif;
      font-weight:900; font-size:22px; letter-spacing:.05em;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .nav-links {
      display:flex; align-items:center; gap:36px; list-style:none;
      overflow:visible;
    }
    .nav-links a {
      font-size:13px; font-weight:500; color:var(--muted);
      letter-spacing:.04em; transition:color .2s;
    }
    .nav-links a:hover { color:var(--white); }
    .nav-cta {
      background:#06C755; color:#fff !important;
      padding:10px 22px; font-size:13px; font-weight:600;
      border-radius:3px; transition:opacity .2s !important;
    }
    .nav-cta:hover { opacity:.82 !important; }

    /* ─── DROPDOWN ─── */
    .nav-drop { position:relative; }
    .nav-drop > a { display:flex; align-items:center; gap:6px; }
    .nav-drop > a::after {
      content:''; width:6px; height:6px;
      border-right:1.5px solid var(--muted);
      border-bottom:1.5px solid var(--muted);
      transform:rotate(45deg) translateY(-2px);
      transition:transform .2s, border-color .2s;
    }
    .nav-drop:hover > a::after { transform:rotate(-135deg) translateY(-2px); border-color:var(--white); }
    .drop-menu {
      position:absolute; top:100%; left:50%;
      min-width:240px;
      background:rgba(0,0,0,.97);
      border:1px solid var(--line);
      backdrop-filter:blur(16px);
      padding-top:20px; padding-bottom:8px;
      z-index:9999;
      opacity:0; visibility:hidden; pointer-events:none;
      transform:translateX(-50%) translateY(0);
      transition:opacity .2s ease, visibility .2s;
    }
    .nav-drop:hover .drop-menu {
      opacity:1; visibility:visible; pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }
    .drop-menu a {
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 24px;
      font-size:13px; font-weight:500; color:var(--body);
      border-bottom:1px solid var(--line);
      transition:color .2s, background .2s;
      letter-spacing:.02em;
    }
    .drop-menu a:last-child { border-bottom:none; }
    .drop-menu a:hover { color:var(--white); background:rgba(255,255,255,.04); }
    .drop-menu a::after {
      content:'→';
      font-family:'Inter',sans-serif; font-size:12px;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
      opacity:0; transform:translateX(-4px);
      transition:opacity .2s, transform .2s;
    }
    .drop-menu a:hover::after { opacity:1; transform:translateX(0); }

    /* mobile ham */
    .ham { display:none; cursor:pointer; padding:8px; }
    .ham span {
      display:block; width:22px; height:2px;
      background:var(--white); margin:5px 0;
      transition:transform .3s, opacity .3s;
    }
    .mobile-menu {
      display:none;
      position:fixed; top:72px; left:0; right:0; z-index:199;
      background:rgba(0,0,0,.97);
      border-bottom:1px solid var(--line);
      padding:24px 48px 32px;
    }
    .mobile-menu.open { display:block; }
    .ham.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity:0; }
    .ham.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
    .mobile-menu a {
      display:block; padding:14px 0;
      font-size:15px; color:var(--body);
      border-bottom:1px solid var(--line);
      transition:color .2s;
    }
    .mobile-menu a:last-child { border:none; }
    .mobile-menu a:hover { color:var(--white); }
    .mob-drop { border-bottom:1px solid rgba(255,255,255,.08); }
    .mob-drop-toggle {
      display:flex; justify-content:space-between; align-items:center;
      padding:14px 0; font-size:15px; color:var(--body);
      cursor:pointer; user-select:none;
    }
    .mob-drop-toggle:hover { color:var(--white); }
    .mob-drop-arrow { font-size:10px; transition:transform .25s; }
    .mob-drop-toggle.open .mob-drop-arrow { transform:rotate(180deg); }
    .mob-drop-items { display:none; }
    .mob-drop-items.open { display:block; }
    .mob-drop-items a {
      padding-left:16px; font-size:14px;
      border-bottom:1px solid rgba(255,255,255,.05);
    }
    .mob-drop-items a:last-child { border-bottom:1px solid rgba(255,255,255,.08); }

    /* ─── HERO ─── */
    #hero {
      min-height:100vh;
      display:flex; align-items:center;
      padding:140px 0 80px;
      position:relative; overflow:hidden;
    }
    .hero-bg {
      position:absolute; inset:0; pointer-events:none;
      background:
        radial-gradient(ellipse 80% 70% at 60% 40%,rgba(0,150,255,.40) 0%,transparent 65%),
        radial-gradient(ellipse 50% 60% at 90% 80%,rgba(0,198,255,.28) 0%,transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 60%,rgba(0,100,220,.20) 0%,transparent 60%);
    }
    .hero-in { position:relative; }
    .hero-eyebrow {
      font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600;
      letter-spacing:.28em; color:var(--muted);
      text-transform:uppercase;
      display:flex; align-items:center; gap:12px;
      margin-bottom:40px;
      animation:fadeUp .8s ease .15s both;
    }
    .hero-eyebrow::before {
      content:''; width:32px; height:1px;
      background:var(--grad-h); flex-shrink:0;
    }
    .hero-title {
      font-family:'Inter',sans-serif;
      font-size:clamp(80px,14vw,136px);
      font-weight:900; letter-spacing:-.03em;
      line-height:.95; margin-bottom:44px;
    }
    .hl { overflow:hidden; display:block; }
    .hl span {
      display:block;
      animation:slideUp 1s cubic-bezier(.16,1,.3,1) both;
    }
    .hl:nth-child(1) span { animation-delay:.25s; }
    .hl:nth-child(2) span { animation-delay:.42s; }
    .hero-sub {
      font-size:clamp(17px,2.5vw,22px);
      font-weight:300; color:var(--body);
      margin-bottom:12px;
      animation:fadeUp .8s ease .72s both;
    }
    .hero-desc {
      font-size:14px; color:var(--muted);
      margin-bottom:56px; max-width:520px; line-height:2;
      animation:fadeUp .8s ease .88s both;
    }
    .hero-stats {
      display:flex; gap:48px; flex-wrap:wrap;
      margin-bottom:60px;
      animation:fadeUp .8s ease 1.05s both;
    }
    .hs-num {
      font-family:'Inter',sans-serif;
      font-size:34px; font-weight:700; line-height:1;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .hs-lbl { font-size:11px; color:var(--muted); margin-top:6px; }
    .hs-div { width:1px; height:48px; background:linear-gradient(to bottom,#00c6ff,#ff3a3a); align-self:center; }
    .btn-line {
      display:inline-flex; align-items:center; gap:10px;
      background:#06C755; color:#fff;
      padding:16px 36px; font-size:15px; font-weight:700;
      letter-spacing:.04em; border-radius:3px;
      transition:opacity .2s, transform .2s;
      animation:fadeUp .8s ease 1.2s both;
    }
    .btn-line:hover { opacity:.85; transform:translateY(-2px); }
    .btn-line svg { flex-shrink:0; }

    /* ─── TICKER ─── */
    .ticker-wrap {
      background:var(--bg2);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      padding:14px 0; overflow:hidden;
    }
    .ticker-track {
      display:flex; width:max-content;
      animation:ticker 28s linear infinite;
    }
    .ti {
      font-family:'Inter',sans-serif;
      font-size:12px; font-weight:600;
      letter-spacing:.2em; color:var(--muted);
      padding:0 40px; white-space:nowrap;
      text-transform:uppercase;
    }
    .ti.a {
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .ti.a:nth-child(even) {
      background:var(--grad-r);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }

    /* ─── PAIN ─── */
    #pain { background:var(--bg2); }
    .grid3 {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:1px; background:var(--line);
    }
    .pain-card {
      background:var(--bg2); padding:52px 40px;
      transition:background .3s;
    }
    .pain-card:hover { background:var(--bg3); }
    .pain-q {
      font-size:16px; font-weight:700;
      line-height:1.5; margin-bottom:18px;
    }
    .pain-q::before {
      content:'"';
      font-family:'Inter',sans-serif; font-size:52px; font-weight:700;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
      display:block; line-height:1; margin-bottom:12px;
    }
    .pain-a { font-size:14px; color:var(--body); line-height:1.9; }
    .pain-resolve {
      margin-top:72px; text-align:center;
      font-size:22px; font-weight:700; line-height:1.6;
    }

    /* ─── WHY ─── */
    #why { background:var(--bg); }
    .why-row {
      display:grid; grid-template-columns:80px 1fr;
      gap:44px; padding:52px 0;
      border-bottom:1px solid var(--line);
      align-items:start;
    }
    .why-row:first-child { border-top:1px solid var(--line); }
    .why-n {
      font-family:'Inter',sans-serif;
      font-size:52px; font-weight:900;
      color:rgba(255,255,255,.05); line-height:1;
      transition:color .3s;
    }
    .why-row:hover .why-n { color:var(--red); opacity:.35; }
    .why-t { font-size:18px; font-weight:700; margin-bottom:12px; line-height:1.4; }
    .why-b { font-size:14px; color:var(--body); line-height:1.95; }

    /* ─── RESULTS ─── */
    #results { background:var(--bg2); }
    .grid4 {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1px; background:var(--line);
      margin-bottom:80px;
    }
    .res-card {
      background:var(--bg2); padding:60px 40px;
      transition:background .3s;
    }
    .res-card:hover { background:var(--bg3); }
    .res-card.d2 .res-num,
    .res-card.d4 .res-num {
      background:var(--grad-r);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .res-num {
      font-family:'Inter',sans-serif;
      font-size:clamp(44px,5.5vw,64px); font-weight:900;
      line-height:1; margin-bottom:14px;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .res-lbl { font-size:13px; color:var(--muted); line-height:1.7; }

    /* ─── VOICE ─── */
    #voice { background:var(--bg); }
    .voice-card {
      background:var(--bg); padding:44px 36px;
      transition:background .3s;
    }
    .voice-card:hover { background:var(--bg2); }
    .voice-txt {
      font-size:14px; color:var(--body);
      line-height:1.9; margin-bottom:20px;
    }
    .voice-txt::before { content:'「'; }
    .voice-txt::after  { content:'」'; }
    .voice-from { font-size:11px; color:var(--muted); letter-spacing:.1em; }

    /* ─── SERVICE ─── */
    #service { background:var(--bg2); }
    .plans {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:1px; background:var(--line);
      margin-bottom:72px;
    }
    .plan {
      background:var(--bg2); padding:52px 40px;
      transition:background .3s;
    }
    .plan:hover { background:var(--bg3); }
    .plan.feat {
      background:linear-gradient(135deg,rgba(0,114,255,.15),rgba(0,198,255,.08));
      border:1px solid rgba(0,198,255,.18);
    }
    .plan.feat:hover {
      background:linear-gradient(135deg,rgba(0,114,255,.22),rgba(0,198,255,.14));
    }
    .plan-lbl {
      font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600;
      letter-spacing:.2em; color:var(--muted);
      text-transform:uppercase; margin-bottom:8px;
    }
    .plan.feat .plan-lbl {
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .plan-name { font-size:22px; font-weight:700; margin-bottom:16px; }
    .plan-price {
      font-family:'Inter',sans-serif;
      font-size:42px; font-weight:900;
      line-height:1; margin-bottom:8px;
    }
    .plan.feat .plan-price {
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .plan-note { font-size:12px; color:var(--muted); margin-bottom:28px; }
    .plan-div { height:1px; background:var(--line); margin-bottom:28px; }
    .plan-feats { list-style:none; }
    .plan-feats li {
      font-size:13px; color:var(--body);
      padding:8px 0; border-bottom:1px solid var(--line);
      display:flex; align-items:flex-start; gap:10px;
    }
    .plan-feats li::before {
      content:'—';
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text; flex-shrink:0;
    }

    .svc-sub {
      font-size:15px; font-weight:700; color:var(--body);
      margin-bottom:24px; padding-bottom:16px;
      border-bottom:1px solid var(--line);
    }
    .opt-list { list-style:none; margin-bottom:64px; }
    .opt-list li {
      display:flex; justify-content:space-between;
      font-size:14px; color:var(--body);
      padding:14px 0; border-bottom:1px solid var(--line);
      transition:color .2s;
    }
    .opt-list li:hover { color:var(--white); }

    table { width:100%; border-collapse:collapse; margin-bottom:64px; }
    th,td { text-align:left; padding:14px 16px; font-size:14px; border-bottom:1px solid var(--line); }
    th { font-size:11px; font-weight:600; letter-spacing:.1em; color:var(--muted); background:rgba(255,255,255,.02); }
    td { color:var(--body); }
    tr:hover td { color:var(--white); }

    /* ─── FLOW ─── */
    #flow { background:var(--bg); }
    .flow-grid {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
      gap:1px; background:var(--line);
    }
    .flow-step {
      background:var(--bg); padding:52px 32px;
      transition:background .3s;
    }
    .flow-step:hover { background:var(--bg2); }
    .flow-step.d2 .flow-n,
    .flow-step.d4 .flow-n {
      background:var(--grad-r);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .flow-n {
      font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600;
      letter-spacing:.2em; color:var(--muted);
      margin-bottom:20px;
    }
    .flow-t { font-size:16px; font-weight:700; margin-bottom:10px; }
    .flow-d { font-size:13px; color:var(--body); line-height:1.8; }

    /* ─── BLOG ─── */
    #blog { background:var(--bg2); }
    .blog-grid {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:1px; background:var(--line);
      margin-bottom:48px;
    }
    .blog-card {
      background:var(--bg2); padding:44px 36px;
      transition:background .3s;
      display:flex; flex-direction:column;
      color:var(--white);
    }
    .blog-card:hover { background:var(--bg3); }
    .blog-date {
      font-family:'Inter',sans-serif;
      font-size:11px; color:var(--muted);
      letter-spacing:.1em; margin-bottom:14px;
    }
    .blog-ttl {
      font-size:15px; font-weight:700;
      line-height:1.65; margin-bottom:24px;
      flex:1;
    }
    .blog-lnk {
      font-family:'Inter',sans-serif;
      font-size:12px; font-weight:600;
      letter-spacing:.08em;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .blog-loading {
      grid-column:1/-1; text-align:center;
      padding:80px; color:var(--muted); font-size:14px;
    }
    .btn-outline {
      display:inline-flex; align-items:center; gap:8px;
      border:1px solid var(--line); color:var(--body);
      padding:14px 36px; font-size:13px; font-weight:500;
      letter-spacing:.05em; border-radius:2px;
      transition:border-color .2s, color .2s;
    }
    .btn-outline:hover { border-color:rgba(255,255,255,.25); color:var(--white); }

    /* ─── PROFILE ─── */
    #profile { background:var(--bg); }
    .prof-in {
      display:grid; grid-template-columns:1fr 2fr;
      gap:80px; align-items:start;
    }
    .prof-img {
      width:100%; aspect-ratio:3/4;
      object-fit:cover; object-position:center top;
      filter:grayscale(25%); transition:filter .5s;
    }
    .prof-img:hover { filter:grayscale(0%); }
    .prof-name { font-size:28px; font-weight:700; margin-bottom:4px; }
    .prof-en {
      font-family:'Inter',sans-serif;
      font-size:13px; color:var(--muted);
      letter-spacing:.05em; margin-bottom:36px;
    }
    .prof-body { font-size:14px; color:var(--body); line-height:1.95; margin-bottom:28px; }
    .prof-quote {
      border-left:2px solid var(--red);
      padding-left:20px; font-size:14px;
      font-style:italic; color:var(--body);
    }

    /* ─── FAQ ─── */
    #faq { background:var(--bg2); }
    details { border-bottom:1px solid var(--line); }
    details:first-of-type { border-top:1px solid var(--line); }
    summary {
      font-size:15px; font-weight:500;
      padding:24px 0; cursor:pointer;
      list-style:none; display:flex;
      justify-content:space-between; align-items:center;
      color:var(--body); transition:color .2s;
    }
    summary:hover { color:var(--white); }
    summary::-webkit-details-marker { display:none; }
    summary::after {
      content:'+'; font-family:'Inter',sans-serif;
      font-size:20px; font-weight:300; color:var(--muted);
      transition:transform .3s; flex-shrink:0; margin-left:16px;
    }
    details[open] summary::after { transform:rotate(45deg); }
    details[open] summary { color:var(--white); }
    .faq-a { font-size:14px; color:var(--body); line-height:1.95; padding-bottom:24px; }

    /* ─── CTA ─── */
    #cta {
      background:var(--bg); text-align:center;
      padding:160px 0; position:relative; overflow:hidden;
    }
    .cta-glow {
      position:absolute; inset:0; pointer-events:none;
      background:radial-gradient(ellipse 70% 70% at 50% 50%,rgba(0,114,255,.09) 0%,transparent 70%);
    }
    .cta-ttl {
      font-size:clamp(30px,5.5vw,56px); font-weight:900;
      line-height:1.25; margin-bottom:20px; position:relative;
    }
    .cta-sub { font-size:15px; color:var(--muted); margin-bottom:56px; position:relative; }
    .btn-cta {
      display:inline-flex; align-items:center; gap:12px;
      background:#06C755; color:#fff;
      padding:20px 60px; font-size:16px; font-weight:700;
      letter-spacing:.05em; border-radius:3px;
      transition:opacity .2s, transform .2s; position:relative;
    }
    .btn-cta:hover { opacity:.85; transform:translateY(-2px); }

    /* ─── CONTACT ─── */
    #contact { background:var(--bg2); }
    .contact-wrap {
      max-width:600px; margin:0 auto; text-align:center;
    }
    .contact-body {
      font-size:15px; color:var(--body);
      line-height:1.95; margin-bottom:12px;
    }
    .contact-note { font-size:13px; color:var(--muted); margin-bottom:44px; }
    .btn-line-lg {
      display:inline-flex; align-items:center; gap:14px;
      background:#06C755; color:#fff;
      padding:22px 56px; font-size:17px; font-weight:700;
      letter-spacing:.05em; border-radius:3px;
      transition:opacity .2s, transform .2s;
    }
    .btn-line-lg:hover { opacity:.85; transform:translateY(-2px); }

    /* ─── FOOTER ─── */
    footer {
      background:var(--bg);
      border-top:1px solid var(--line);
      padding:56px 48px; text-align:center;
    }
    .foot-logo {
      font-family:'Inter',sans-serif;
      font-weight:900; font-size:20px; letter-spacing:.05em;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text; display:block; margin-bottom:14px;
    }
    .foot-tag { font-size:13px; color:var(--muted); margin-bottom:24px; }
    .foot-links {
      display:flex; justify-content:center; gap:32px;
      margin-bottom:24px; flex-wrap:wrap;
    }
    .foot-links a { font-size:13px; color:var(--muted); transition:color .2s; }
    .foot-links a:hover { color:var(--white); }
    .foot-copy { font-size:12px; color:rgba(255,255,255,.18); }

    /* ─── SERVICE BLOCKS ─── */
    .svc-block { margin-bottom:96px; }
    .svc-block:last-child { margin-bottom:0; }
    .svc-block-hd {
      display:flex; align-items:baseline; gap:16px;
      margin-bottom:16px; padding-bottom:20px;
      border-bottom:1px solid var(--line);
    }
    .svc-block-name { font-size:22px; font-weight:700; }
    .svc-block-tag {
      font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600;
      letter-spacing:.18em; color:var(--muted); text-transform:uppercase;
    }
    .svc-block-desc { font-size:14px; color:var(--body); line-height:1.95; margin-bottom:40px; }

    /* HP pricing */
    .hp-grid {
      display:grid;
      grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
      gap:1px; background:var(--line); margin-bottom:20px;
    }
    .hp-cell {
      background:var(--bg2); padding:32px 20px; text-align:center;
      transition:background .3s;
    }
    .hp-cell:hover { background:var(--bg3); }
    .hp-cell.hl { background:linear-gradient(135deg,rgba(0,114,255,.14),rgba(0,198,255,.07)); }
    .hp-page { font-family:'Inter',sans-serif; font-size:12px; font-weight:600; color:var(--muted); letter-spacing:.12em; margin-bottom:14px; }
    .hp-init {
      font-family:'Inter',sans-serif; font-size:20px; font-weight:700;
      background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
      margin-bottom:6px; line-height:1;
    }
    .hp-monthly { font-size:12px; color:var(--muted); }
    .hp-caption { font-size:12px; color:var(--muted); line-height:1.9; margin-top:16px; }

    /* Design grid */
    .design-grid {
      display:grid;
      grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
      gap:1px; background:var(--line); margin-bottom:20px;
    }
    .design-item { background:var(--bg2); padding:32px 24px; transition:background .3s; }
    .design-item:hover { background:var(--bg3); }
    .design-name { font-size:14px; font-weight:700; margin-bottom:10px; }
    .design-price {
      font-family:'Inter',sans-serif; font-size:22px; font-weight:700; line-height:1;
      background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    }
    .design-sub { font-size:11px; color:var(--muted); margin-top:4px; }
    .design-caption { font-size:12px; color:var(--muted); line-height:1.9; margin-top:16px; }

    /* Consult */
    .consult-grid {
      display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:1px; background:var(--line); margin-bottom:20px;
    }
    .consult-card { background:var(--bg2); padding:48px 36px; transition:background .3s; }
    .consult-card:hover { background:var(--bg3); }
    .consult-card.feat {
      background:linear-gradient(135deg,rgba(0,114,255,.14),rgba(0,198,255,.07));
      border:1px solid rgba(0,198,255,.18);
    }
    .consult-lbl { font-family:'Inter',sans-serif; font-size:11px; font-weight:600; letter-spacing:.2em; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
    .consult-card.feat .consult-lbl { background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .consult-name { font-size:20px; font-weight:700; margin-bottom:16px; }
    .consult-price { font-family:'Inter',sans-serif; font-size:40px; font-weight:900; line-height:1; margin-bottom:6px; }
    .consult-card.feat .consult-price { background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .consult-period { font-size:12px; color:var(--muted); margin-bottom:28px; }
    .consult-div { height:1px; background:var(--line); margin-bottom:28px; }
    .consult-feats { list-style:none; }
    .consult-feats li { font-size:13px; color:var(--body); padding:8px 0; border-bottom:1px solid var(--line); display:flex; align-items:flex-start; gap:10px; }
    .consult-feats li::before { content:'—'; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; flex-shrink:0; }

    /* Coming soon */
    .cs-card {
      background:var(--bg2); border:1px solid var(--line);
      padding:72px 40px; text-align:center;
    }
    .cs-badge {
      display:inline-block; font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600; letter-spacing:.22em;
      color:var(--muted); text-transform:uppercase;
      border:1px solid var(--line); padding:6px 16px; margin-bottom:20px;
    }
    .cs-title { font-size:24px; font-weight:700; margin-bottom:12px; }
    .cs-desc { font-size:14px; color:var(--muted); max-width:400px; margin:0 auto; line-height:1.9; }

    /* ─── SCHOOL ─── */
    .school-intro { font-size:13px; color:var(--body); line-height:1.9; margin-bottom:32px; padding:18px 24px; border-left:2px solid rgba(0,114,255,.5); background:rgba(0,114,255,.04); }
    .school-plans { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1px; background:var(--line); margin-bottom:16px; }
    .school-plan { background:var(--bg2); padding:48px 36px; transition:background .3s; }
    .school-plan:hover { background:var(--bg3); }
    .school-plan.feat { background:linear-gradient(135deg,rgba(0,114,255,.15),rgba(0,198,255,.08)); border:1px solid rgba(0,198,255,.18); }
    .school-plan-lbl { font-family:'Inter',sans-serif; font-size:11px; font-weight:600; letter-spacing:.2em; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
    .school-plan.feat .school-plan-lbl { background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .school-plan-name { font-size:20px; font-weight:700; margin-bottom:20px; line-height:1.3; }
    .school-prices { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:6px; }
    .school-price-col { flex:1; min-width:70px; }
    .school-price-type { font-size:10px; font-weight:600; letter-spacing:.1em; color:var(--muted); text-transform:uppercase; margin-bottom:4px; }
    .school-price-val { font-family:'Inter',sans-serif; font-size:20px; font-weight:700; line-height:1; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .school-price-note { font-size:11px; color:var(--muted); margin-bottom:24px; }
    .school-plan-div { height:1px; background:var(--line); margin-bottom:20px; }
    .school-feats { list-style:none; }
    .school-feats li { font-size:13px; color:var(--body); padding:7px 0; border-bottom:1px solid var(--line); display:flex; gap:10px; }
    .school-feats li::before { content:'—'; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; flex-shrink:0; }
    .school-note { font-size:12px; color:var(--muted); line-height:2; margin:16px 0 48px; }
    .corp-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1px; background:var(--line); margin-bottom:16px; }
    .corp-card { background:var(--bg2); padding:44px 32px; transition:background .3s; }
    .corp-card:hover { background:var(--bg3); }
    .corp-card.feat { background:linear-gradient(135deg,rgba(0,114,255,.14),rgba(0,198,255,.07)); border:1px solid rgba(0,198,255,.18); }
    .corp-lbl { font-family:'Inter',sans-serif; font-size:11px; font-weight:600; letter-spacing:.2em; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
    .corp-card.feat .corp-lbl { background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .corp-name { font-size:20px; font-weight:700; margin-bottom:16px; }
    .corp-price { font-family:'Inter',sans-serif; font-size:36px; font-weight:900; line-height:1; margin-bottom:6px; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .corp-period { font-size:12px; color:var(--muted); margin-bottom:24px; }
    .corp-div { height:1px; background:var(--line); margin-bottom:20px; }
    .corp-feats { list-style:none; }
    .corp-feats li { font-size:13px; color:var(--body); padding:7px 0; border-bottom:1px solid var(--line); display:flex; gap:10px; }
    .corp-feats li::before { content:'—'; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; flex-shrink:0; }

    /* ─── LINE PLAN ─── */
    .line-plan-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1px; background:var(--line); margin-bottom:16px; }
    .line-plan-card { background:var(--bg2); padding:44px 32px; transition:background .3s; }
    .line-plan-card:hover { background:var(--bg3); }
    .line-plan-card.feat { background:linear-gradient(135deg,rgba(6,199,85,.08),rgba(0,114,255,.08)); border:1px solid rgba(6,199,85,.2); }
    .line-plan-lbl { font-family:'Inter',sans-serif; font-size:11px; font-weight:600; letter-spacing:.2em; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
    .line-plan-card.feat .line-plan-lbl { color:#06C755; }
    .line-plan-name { font-size:20px; font-weight:700; margin-bottom:16px; }
    .line-plan-price { font-family:'Inter',sans-serif; font-size:40px; font-weight:900; line-height:1; margin-bottom:6px; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .line-plan-period { font-size:12px; color:var(--muted); margin-bottom:24px; }
    .line-plan-div { height:1px; background:var(--line); margin-bottom:24px; }
    .line-plan-feats { list-style:none; }
    .line-plan-feats li { font-size:13px; color:var(--body); padding:8px 0; border-bottom:1px solid var(--line); display:flex; gap:10px; }
    .line-plan-feats li::before { content:'—'; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; flex-shrink:0; }

    /* ─── VIDEO EDIT ─── */
    .vedit-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); margin-bottom:16px; }
    .vedit-main { background:var(--bg2); padding:52px 40px; }
    .vedit-price { font-family:'Inter',sans-serif; font-size:56px; font-weight:900; line-height:1; margin-bottom:8px; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .vedit-per { font-size:13px; color:var(--muted); margin-bottom:24px; }
    .vedit-body { font-size:14px; color:var(--body); line-height:1.9; }
    .vedit-packs { background:var(--bg2); padding:52px 40px; }
    .vedit-pack-ttl { font-size:14px; font-weight:700; margin-bottom:20px; color:var(--body); padding-bottom:16px; border-bottom:1px solid var(--line); }
    .pack-list { list-style:none; }
    .pack-list li { display:flex; justify-content:space-between; align-items:center; font-size:14px; color:var(--body); padding:13px 0; border-bottom:1px solid var(--line); transition:color .2s; }
    .pack-list li:hover { color:var(--white); }
    .pack-price { font-family:'Inter',sans-serif; font-weight:600; background:var(--grad-h); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

    /* ─── FC ─── */
    .fc-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1px; background:var(--line); margin-bottom:16px; }
    .fc-card { background:var(--bg2); padding:52px 40px; transition:background .3s; }
    .fc-card:hover { background:var(--bg3); }
    .fc-card.feat { background:linear-gradient(135deg,rgba(255,78,0,.1),rgba(236,159,5,.07)); border:1px solid rgba(255,78,0,.2); }
    .fc-lbl { font-family:'Inter',sans-serif; font-size:11px; font-weight:600; letter-spacing:.2em; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
    .fc-card.feat .fc-lbl { background:var(--grad-f); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .fc-name { font-size:20px; font-weight:700; margin-bottom:16px; }
    .fc-price { font-family:'Inter',sans-serif; font-size:40px; font-weight:900; line-height:1; margin-bottom:6px; }
    .fc-card.feat .fc-price { background:var(--grad-f); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    .fc-period { font-size:12px; color:var(--muted); margin-bottom:24px; }
    .fc-div { height:1px; background:var(--line); margin-bottom:24px; }
    .fc-feats { list-style:none; }
    .fc-feats li { font-size:13px; color:var(--body); padding:8px 0; border-bottom:1px solid var(--line); display:flex; gap:10px; }
    .fc-feats li::before { content:'—'; background:var(--grad-f); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; flex-shrink:0; }

    /* ─── RESPONSIVE ─── */
    @media (max-width:768px) {
      /* ── Layout ── */
      .container { padding:0 20px; }
      section { padding:48px 0; }
      .ttl { font-size:clamp(22px,6vw,32px); margin-bottom:20px; }

      /* ── Nav ── */
      .nav-in { padding:0 20px; }
      .nav-links { display:none; }
      .ham { display:block; }
      .mobile-menu { padding:20px 20px 28px; }
      .nav-logo-img { height:28px; }

      /* ── Hero ── */
      .hero-in { padding:0 20px; }
      .hero-title { font-size:clamp(48px,13vw,72px); }
      .hero-sub { font-size:15px; }
      .hero-stats { gap:20px 32px; flex-wrap:wrap; }
      .hs-num { font-size:26px; }
      .hs-div { display:none; }
      .hero-desc { font-size:13px; }
      .btn-line { width:100%; justify-content:center; padding:16px 24px; }

      /* ── Why rows：2列タイル ── */
      .why-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); }
      .why-grid .why-row,
      .cs-grid .why-row { border-top:none; border-bottom:none; background:var(--bg2); padding:18px 14px; }
      .why-row { grid-template-columns:32px 1fr; gap:10px; padding:18px 0; }
      .why-n { font-size:20px; }
      .why-t { font-size:13px; margin-bottom:0; line-height:1.5; }
      .why-b { display:none; }

      /* ── Case Study：2列タイル ── */
      .cs-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); }
      .cs-grid .why-row:last-child:nth-child(odd) { grid-column:1/-1; }

      /* ── Pain cards：3列タイル ── */
      .grid3 { grid-template-columns:1fr 1fr 1fr; }
      .pain-card { padding:18px 12px; }
      .pain-q { font-size:12px; line-height:1.5; margin-bottom:0; }
      .pain-a { display:none; }

      /* ── Results ── */
      .res-card { padding:28px 20px; }
      .res-num { font-size:clamp(32px,8vw,44px); margin-bottom:8px; }
      .res-lbl { font-size:12px; }
      .grid4 { grid-template-columns:1fr 1fr; margin-bottom:40px; }

      /* ── Plans (SNS page) ── */
      .plan { padding:36px 24px; }
      .plan-price { font-size:34px; }
      .plans { grid-template-columns:1fr; }

      /* ── Service cards：2列タイル ── */
      .svc-cards-grid { grid-template-columns:1fr 1fr; }
      .svc-card-item { padding:20px 14px 18px; }
      .svc-card-icon { width:28px; height:28px; margin-bottom:10px; }
      .svc-card-name { font-size:13px; margin-bottom:0; }
      .svc-card-desc { display:none; }
      .svc-card-link { display:none; }
      .svc-card-item::before { font-size:8px; right:-22px; }

      /* ── Flow ── */
      .flow-step { padding:28px 20px; }
      .flow-grid { grid-template-columns:1fr 1fr; }

      /* ── Voice ── */
      .voice-card { padding:24px 18px; }
      .voice-txt { font-size:13px; }

      /* ── Blog ── */
      .blog-grid { grid-template-columns:1fr; }
      .blog-card { padding:32px 24px; }

      /* ── Profile ── */
      .prof-in { grid-template-columns:1fr; gap:24px; }
      .prof-img { max-width:160px; }
      .prof-body { font-size:13px; line-height:1.85; }

      /* ── FAQ ── */
      details { padding:4px 0; }
      summary { font-size:14px; padding:14px 0; }
      .faq-a { font-size:13px; padding:8px 0 12px; }

      /* ── CTA ── */
      #cta { padding:96px 0; }
      .btn-cta { width:100%; max-width:360px; justify-content:center; padding:18px 24px; display:inline-flex; margin:0 auto; }

      /* ── Footer ── */
      footer { padding:40px 20px; }
      .foot-links { gap:16px; }

      /* ── Tables (service pages) ── */
      table { display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; }

      /* ── Service page general ── */
      .pg-hero { padding:120px 0 64px; }
      .pg-hero-ttl { font-size:clamp(36px,10vw,72px); }
      .pg-section { padding:64px 0; }
      .svc-nav { flex-wrap:nowrap; overflow-x:auto; gap:0; scrollbar-width:none; }
      .svc-nav::-webkit-scrollbar { display:none; }

      /* ── Feat cards (service pages) ── */
      .feat-card { padding:36px 24px; }
      .feat-grid { grid-template-columns:1fr; }

      /* ── Design grid ── */
      .design-grid { grid-template-columns:1fr 1fr; }
      .design-item { padding:24px 16px; }

      /* ── HP grid ── */
      .hp-grid { grid-template-columns:1fr 1fr; }
      .hp-cell { padding:24px 12px; }
      .hp-init { font-size:16px; }

      /* ── Consult / School / Corp / LINE / FC grids ── */
      .consult-grid { grid-template-columns:1fr; }
      .consult-card { padding:36px 24px; }
      .consult-price { font-size:34px; }
      .school-plans { grid-template-columns:1fr; }
      .school-plan { padding:36px 24px; }
      .corp-grid { grid-template-columns:1fr; }
      .corp-card { padding:36px 24px; }
      .line-plan-grid { grid-template-columns:1fr; }
      .line-plan-card { padding:36px 24px; }
      .line-plan-price { font-size:34px; }
      .fc-grid { grid-template-columns:1fr; }
      .fc-card { padding:36px 24px; }
      .fc-price { font-size:34px; }

      /* ── Video edit ── */
      .vedit-grid { grid-template-columns:1fr; }
      .vedit-main { padding:36px 24px; }
      .vedit-packs { padding:36px 24px; }
      .vedit-price { font-size:44px; }

      /* ── Client logo marquee ── */
      .client-logo { width:56px; height:56px; border-radius:10px; }
      .client-section { padding:28px 0 24px; }
      .client-section-ttl { font-size:15px; margin-bottom:16px; }
      .client-section-sub { font-size:12px; margin-bottom:16px; }
    }

    /* ─── PAGE HERO (service pages) ─── */
    .pg-hero { position:relative; z-index:1; }
    .pg-hero {
      padding:180px 0 100px;
      background:var(--bg);
      position:relative; overflow:hidden;
    }
    .pg-hero-bg {
      position:absolute; inset:0; pointer-events:none;
      background:
        radial-gradient(ellipse 60% 70% at 80% 50%,rgba(0,114,255,.08) 0%,transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%,rgba(0,198,255,.04) 0%,transparent 70%);
    }
    .pg-hero-inner { position:relative; }
    .pg-breadcrumb {
      font-family:'Inter',sans-serif;
      font-size:11px; font-weight:600; letter-spacing:.2em;
      color:var(--muted); text-transform:uppercase;
      display:flex; align-items:center; gap:12px;
      margin-bottom:32px;
      animation:fadeUp .6s ease both;
    }
    .pg-breadcrumb a { color:var(--muted); transition:color .2s; }
    .pg-breadcrumb a:hover { color:var(--white); }
    .pg-breadcrumb span { opacity:.4; }
    .pg-hero-ttl {
      font-family:'Inter',sans-serif;
      font-size:clamp(52px,9vw,110px);
      font-weight:900; letter-spacing:-.03em;
      line-height:.95; margin-bottom:28px;
      animation:fadeUp .8s ease .1s both;
    }
    .pg-hero-sub {
      font-size:clamp(15px,2vw,20px);
      font-weight:300; color:var(--body);
      max-width:560px; line-height:1.8;
      animation:fadeUp .8s ease .2s both;
    }

    /* ─── SERVICE NAV (横並びサービスリンク) ─── */
    .svc-nav-wrap {
      background:var(--bg2);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      padding:0;
      position:relative;
      z-index:1;
    }
    .svc-nav {
      display:flex; align-items:center;
      overflow-x:auto; gap:0;
      scrollbar-width:none;
    }
    .svc-nav::-webkit-scrollbar { display:none; }
    .svc-nav a {
      font-family:'Inter',sans-serif;
      font-size:12px; font-weight:600; letter-spacing:.1em;
      color:var(--muted); text-transform:uppercase;
      padding:18px 24px; white-space:nowrap;
      border-right:1px solid var(--line);
      transition:color .2s, background .2s;
    }
    .svc-nav a:hover { color:var(--white); background:rgba(255,255,255,.03); }
    .svc-nav a.active {
      color:var(--white);
      background:rgba(0,114,255,.08);
    }

    /* ─── SERVICE DETAIL PAGE ─── */
    .pg-section { padding:100px 0; }
    .pg-section.alt { background:var(--bg2); }
    .pg-ttl {
      font-size:clamp(26px,3.5vw,40px);
      font-weight:700; line-height:1.25; margin-bottom:48px;
    }
    .feat-grid {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:1px; background:var(--line); margin-bottom:64px;
    }
    .feat-card {
      background:var(--bg2); padding:52px 40px;
      transition:background .3s;
    }
    .feat-card:hover { background:var(--bg3); }
    .feat-n {
      font-family:'Inter',sans-serif;
      font-size:44px; font-weight:900;
      color:rgba(255,255,255,.05); line-height:1; margin-bottom:24px;
    }
    .feat-t { font-size:17px; font-weight:700; margin-bottom:12px; }
    .feat-d { font-size:14px; color:var(--body); line-height:1.9; }
    .target-list { list-style:none; }
    .target-list li {
      font-size:15px; color:var(--body);
      padding:16px 0; border-bottom:1px solid var(--line);
      display:flex; align-items:flex-start; gap:16px;
    }
    .target-list li::before {
      content:'→';
      font-family:'Inter',sans-serif; font-weight:700;
      background:var(--grad-h);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      background-clip:text; flex-shrink:0; margin-top:2px;
    }
    .faq-list details { border-bottom:1px solid var(--line); }
    .faq-list details:first-of-type { border-top:1px solid var(--line); }

/* ── CLIENT MARQUEE ── */
.client-section {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}
.client-section .lbl { text-align: center; }
.client-section-ttl {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.client-section-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 56px;
}
.client-marquee-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.client-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: client-scroll 28s linear infinite;
}
.client-track:hover { animation-play-state: paused; }
.client-logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.client-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,180,255,0.25);
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
@keyframes client-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SERVICE CARDS ─── */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: 80px;
}
.svc-card-item {
  position: relative;
  background: var(--bg2);
  padding: 44px 32px 40px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: background .3s;
}
.svc-card-item:hover { background: var(--bg3); }
.svc-card-item::before {
  content: attr(data-tag);
  position: absolute;
  top: 18px;
  right: -26px;
  width: 100px;
  text-align: center;
  background: var(--grad-r);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 5px 0;
  transform: rotate(35deg);
  letter-spacing: .07em;
}
.svc-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: #00c9ff;
}
.svc-card-icon svg { width: 100%; height: 100%; }
.svc-card-name {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.5;
}
.svc-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.svc-card-link {
  font-size: 11px;
  font-weight: 600;
  color: #00c9ff;
  letter-spacing: .06em;
}
/* 赤リボン（偶数カード） */
.svc-card-item.d2::before,
.svc-card-item.d4::before {
  background: var(--grad-r);
}
@media (max-width: 900px) {
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
}

/* ─── NAV LOGO IMAGE ─── */
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(2.5) contrast(1.1) drop-shadow(0 0 8px rgba(255,255,255,0.25));
}
@media (max-width: 768px) {
  .nav-logo-img { height: 28px; }
}

/* ─── RESULTS PAGE ─── */
.result-case {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 40px;
  margin-bottom: 24px;
  background: var(--bg2);
  transition: background .3s;
}
.result-case:hover { background: var(--bg3); }
.result-case-hd {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.result-case-num {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-h);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 52px;
}
.result-case-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.result-case-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}
.result-case-body { padding-left: 76px; }
.result-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 20px;
}
.result-meta-item {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--body);
}
.result-meta-lbl {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.result-case-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.95;
}
.result-industry-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.result-industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.result-industry-item {
  border: 1px solid var(--line);
  padding: 10px 20px;
  font-size: 13px;
  color: var(--body);
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.result-industry-item:hover { border-color: rgba(0,150,255,.4); color: var(--white); }

@media (max-width: 768px) {
  .result-case { padding: 24px 20px; }
  .result-case-hd { gap: 16px; }
  .result-case-num { font-size: 28px; width: 36px; }
  .result-case-ttl { font-size: 15px; }
  .result-case-body { padding-left: 0; }
}

/* ─── RED ACCENT EXTRAS ─── */

/* 実績カード d2/d4 に赤いトップボーダー（数字色と統一） */
.res-card.d2,
.res-card.d4 { border-top: 2px solid var(--red); }

/* フッター上部アクセントライン */
footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff 0%, #ff3a3a 100%);
  opacity: .45;
}

/* ─── iPhone / Safe Area 対応 ─── */
#nav {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
footer {
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

/* ─── iPhone 12 Pro (390px) 細かい調整 ─── */
@media (max-width:430px) {
  /* Hero */
  .hero-in { padding:0 16px; }
  .hero-title { font-size:clamp(44px,12vw,60px); }
  .hero-stats { gap:14px 24px; }
  .hs-num { font-size:22px; }

  /* ヒーロー下クライアントロゴ */
  .client-section-hero { padding:20px 0 18px !important; }
  .client-section { padding:20px 0 18px; }
  .client-logo { width:48px; height:48px; }

  /* Pain 3列：フォントを少し大きく */
  .pain-card { padding:16px 10px; }
  .pain-q { font-size:11px; }

  /* Why / CS タイル */
  .why-grid .why-row,
  .cs-grid .why-row { padding:14px 12px; }
  .why-n { font-size:16px; }
  .why-t { font-size:12px; }

  /* Results */
  .res-card { padding:22px 14px; }

  /* Service cards */
  .svc-card-item { padding:16px 12px 14px; }
  .svc-card-icon { width:24px; height:24px; margin-bottom:8px; }
  .svc-card-name { font-size:12px; }

  /* Flow */
  .flow-step { padding:22px 14px; }
  .flow-t { font-size:14px; }

  /* 全体 container */
  .container { padding:0 16px; }
  section { padding:40px 0; }
}
