    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    :root {
      /* ===== 配色（案A: セージティール／自然で落ち着いた寒色寄り） ===== */
      --red: oklch(0.5 0.085 178);
      --red-dark: oklch(0.42 0.09 178);
      --ink: oklch(0.24 0.016 200);
      --body-c: oklch(0.43 0.012 200);
      --muted: oklch(0.62 0.008 200);
      --line: oklch(0.9 0.006 200);
      --bg: oklch(0.995 0.002 200);
      --bg-soft: oklch(0.965 0.005 195);
      --dark: oklch(0.2 0.014 200);
      --font-jp: 'Shippori Mincho', 'Zen Old Mincho', 'Hiragino Mincho ProN', serif;
      --font-en: 'Inter', 'Helvetica Neue', sans-serif;
    }
    body {
      font-family: var(--font-jp);
      color: var(--ink);
      line-height: 1.9;
      background: var(--bg);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      font-size: 16px;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    strong { font-weight: 700; }

    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .wrap-n { max-width: 840px; margin: 0 auto; padding: 0 24px; }

    /* ===== Reveal animation ===== */
    .rv { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
    .rv.v { opacity: 1; transform: none; }
    .rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; }
    .rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; } .rv-d5 { transition-delay: .4s; }

    /* グリッド内カードの時間差リビール */
    .stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
    .stagger.v > * { opacity: 1; transform: none; }
    .stagger.v > *:nth-child(1) { transition-delay: .05s; }
    .stagger.v > *:nth-child(2) { transition-delay: .15s; }
    .stagger.v > *:nth-child(3) { transition-delay: .25s; }
    .stagger.v > *:nth-child(4) { transition-delay: .35s; }
    .stagger.v > *:nth-child(5) { transition-delay: .45s; }
    .stagger.v > *:nth-child(6) { transition-delay: .55s; }

    /* セクション英ラベルの赤線ドロー */
    .sec-en::before { width: 0; transition: width .7s cubic-bezier(.2,.7,.2,1) .2s; }
    .sec-en.v::before { width: 34px; }

    /* 画像のワイプリビール */
    .wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s cubic-bezier(.2,.7,.2,1) .15s; }
    .wipe.v { clip-path: inset(0 0 0 0); }

    @media (prefers-reduced-motion: reduce) {
      .rv, .stagger > * { opacity: 1; transform: none; transition: none; }
      .sec-en::before { width: 34px; transition: none; }
      .wipe { clip-path: none; transition: none; }
      html { scroll-behavior: auto; }
    }

    /* ===== Header ===== */
    header {
      position: fixed; inset: 0 0 auto 0; z-index: 100;
      transition: background .35s, box-shadow .35s;
    }
    header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(8px); }
    .h-inner {
      max-width: 1480px; margin: 0 auto; padding: 0 20px 0 28px;
      display: flex; align-items: center; gap: 28px; height: 76px;
    }
    .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .logo-name { font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; color: #fff; transition: color .35s; }
    header.scrolled .logo-name { color: var(--ink); }
    .h-nav { display: flex; gap: 30px; margin-left: auto; }
    .h-nav a {
      font-size: .9rem; font-weight: 700; color: #fff; padding: 6px 0; position: relative;
      transition: color .35s;
    }
    header.scrolled .h-nav a { color: var(--ink); }
    .h-nav a::after {
      content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
      background: var(--red); transition: right .3s;
    }
    .h-nav a:hover::after { right: 0; }
    .h-actions { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
    .h-cta {
      display: inline-flex; align-items: center; justify-content: center;
      height: 76px; padding: 0 28px; font-size: .9rem; font-weight: 700;
      color: #fff; border-left: 1px solid rgba(255,255,255,.25); transition: color .35s, border-color .35s, background .25s;
    }
    header.scrolled .h-cta { color: var(--ink); border-color: var(--line); }
    .h-cta:hover { background: color-mix(in oklch, var(--red) 8%, transparent); }
    .h-menu-btn {
      width: 76px; height: 76px; border: none; cursor: pointer;
      background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
      transition: background .25s;
    }
    .h-menu-btn:hover { background: var(--red-dark); }
    .h-menu-btn svg { width: 26px; height: 26px; }

    /* Drawer */
    .h-drawer {
      position: fixed; inset: 0; z-index: 200; background: rgba(14,15,17,.55);
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .h-drawer.open { opacity: 1; pointer-events: auto; }
    .h-drawer-inner {
      position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
      background: var(--dark); padding: 96px 40px 40px;
      display: flex; flex-direction: column; gap: 4px;
      transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.6,.2,1);
    }
    .h-drawer.open .h-drawer-inner { transform: none; }
    .h-drawer-inner a {
      color: #fff; font-weight: 700; font-size: 1.05rem; padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: 12px;
    }
    .h-drawer-inner a::before { content: ""; width: 8px; height: 2px; background: var(--red); }
    .h-drawer-close {
      position: absolute; top: 18px; right: 18px; width: 44px; height: 44px;
      background: var(--red); border: none; color: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .h-drawer-close svg { width: 22px; height: 22px; }

    /* ===== Hero ===== */
    .hero { position: relative; height: 100svh; min-height: 620px; max-height: 1080px; overflow: hidden; background: var(--dark); }
    .hero-bg { position: absolute; inset: 0; overflow: hidden; }
    .hero-bg picture, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-bg img { animation: kenburns 16s cubic-bezier(.2,.4,.4,1) both; }
    @keyframes kenburns { from { transform: scale(1.1) translateX(1.5%); } to { transform: scale(1); } }
    .hero-bg::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(100deg, rgba(10,11,13,.46) 0%, rgba(10,11,13,.18) 55%, rgba(10,11,13,.3) 100%);
    }
    .hero-block {
      position: absolute; left: 0; top: 24%; bottom: 0; width: clamp(150px, 17vw, 300px);
      background: var(--red); z-index: 1;
      transform-origin: top; animation: blockIn 1s cubic-bezier(.2,.7,.2,1) .15s both;
    }
    @keyframes blockIn { from { transform: scaleY(0); } to { transform: scaleY(1); } }
    .hero-inner {
      position: relative; z-index: 2; height: 100%;
      max-width: 1480px; margin: 0 auto; padding: 0 24px 0 clamp(28px, 8vw, 120px);
      display: flex; flex-direction: column; justify-content: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
      background: #fff; color: var(--ink); font-size: .8rem; font-weight: 700;
      padding: 7px 18px; margin-bottom: 28px;
    }
    .hero-pulse { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 1.8s infinite; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
    .hero h1 {
      font-size: clamp(2.1rem, 5.4vw, 4.3rem); font-weight: 800; line-height: 1.42;
      color: #fff; letter-spacing: .015em;
      text-shadow: 0 2px 28px rgba(10,11,13,.35);
      margin-bottom: 26px;
    }
    /* 見出し1行ずつのせり上がり */
    .hl { display: inline-block; overflow: hidden; vertical-align: bottom; }
    .hl-in { display: inline-block; transform: translateY(110%); animation: lineUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
    .hl:nth-child(1) .hl-in { animation-delay: .35s; }
    .hl:nth-child(2) .hl-in { animation-delay: .5s; }
    .hl:nth-child(3) .hl-in { animation-delay: .65s; }
    @keyframes lineUp { to { transform: translateY(0); } }
    /* ロード時の順次フェード */
    .fade-in { opacity: 0; animation: fadeUp .9s cubic-bezier(.2,.6,.2,1) forwards; }
    .fi-1 { animation-delay: .25s; } .fi-2 { animation-delay: 1s; } .fi-3 { animation-delay: 1.15s; }
    .fi-4 { animation-delay: 1.3s; } .fi-5 { animation-delay: 1.5s; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
    @media (prefers-reduced-motion: reduce) {
      .hero-bg img { animation: none; }
      .hl-in { transform: none; animation: none; }
      .fade-in { opacity: 1; animation: none; }
      .hero-block { animation: none; }
    }
    .hero h1 .em { color: #fff; position: relative; }
    .hero h1 .em::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .22em;
      background: var(--red); z-index: -1;
    }
    .hero-sub { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 700; color: #fff; margin-bottom: 14px; text-shadow: 0 1px 16px rgba(10,11,13,.45); }
    .hero-body { font-size: clamp(.9rem, 1.25vw, 1rem); color: rgba(255,255,255,.92); margin-bottom: 36px; text-shadow: 0 1px 14px rgba(10,11,13,.5); }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      font-weight: 700; font-size: .95rem; padding: 16px 34px; cursor: pointer;
      transition: transform .25s, background .25s, color .25s, border-color .25s;
    }
    .btn svg { width: 18px; height: 18px; }
    .btn:hover { transform: translateY(-2px); }
    .btn-red { background: var(--red); color: #fff; }
    .btn-red:hover { background: var(--red-dark); }
    .btn-outline-white { border: 2px solid rgba(255,255,255,.85); color: #fff; }
    .btn-outline-white:hover { background: #fff; color: var(--ink); }
    .btn-dark { background: var(--ink); color: #fff; }
    .btn-dark:hover { background: var(--red); }
    .btn-white { background: #fff; color: var(--ink); }
    .btn-white:hover { background: var(--red); color: #fff; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; }
    .hero-trust span {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9);
    }
    .hero-trust svg { width: 16px; height: 16px; color: var(--red); background: #fff; border-radius: 50%; }
    .hero-scroll {
      position: absolute; right: clamp(20px, 4vw, 56px); bottom: 36px; z-index: 2;
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-en); font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: #fff;
    }
    .hero-scroll .arrow { color: var(--red); font-weight: 800; animation: scrollNudge 1.8s infinite; }
    @keyframes scrollNudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

    /* ===== Section heads ===== */
    .sec { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
    .sec-soft { background: var(--bg-soft); }
    .sec-head { margin-bottom: clamp(40px, 5vw, 64px); }
    .sec-en {
      font-family: var(--font-en); font-weight: 800; font-size: clamp(.8rem, 1vw, .9rem);
      letter-spacing: .18em; text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
    }
    .sec-en::before { content: ""; width: 34px; height: 2px; background: var(--red); }
    .sec-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1.45; letter-spacing: .01em; }
    .sec-sub { margin-top: 16px; color: var(--body-c); font-size: clamp(.95rem, 1.2vw, 1.05rem); }

    /* ===== News ===== */
    .news-bar { background: var(--bg); border-bottom: 1px solid var(--line); }
    .news-bar-inner { max-width: 1160px; margin: 0 auto; padding: 44px 24px; display: grid; grid-template-columns: 200px 1fr; gap: 28px; }
    .news-bar-title { font-family: var(--font-en); font-weight: 800; font-size: 1.3rem; letter-spacing: .04em; }
    .news-bar-title small { display: block; font-family: var(--font-jp); font-size: .78rem; font-weight: 700; color: var(--red); margin-top: 4px; }
    .news-list { display: flex; flex-direction: column; }
    .news-item {
      display: flex; align-items: baseline; gap: 16px; padding: 13px 0;
      border-bottom: 1px solid var(--line); font-size: .9rem;
    }
    .news-item:first-child { padding-top: 0; }
    .news-date { font-family: var(--font-en); font-weight: 600; color: var(--muted); flex-shrink: 0; font-size: .82rem; }
    .news-tag {
      flex-shrink: 0; font-size: .7rem; font-weight: 700; padding: 2px 12px;
      border: 1px solid var(--ink); color: var(--ink);
    }
    .news-tag.tag-event { border-color: var(--red); color: var(--red); }
    .news-tag.tag-blog { border-color: var(--muted); color: var(--muted); }
    .news-text { color: var(--body-c); }
    .news-text a { text-decoration: underline; text-underline-offset: 3px; }
    .news-text a:hover { color: var(--red); }

    /* ===== Stat banner ===== */
    .stat-banner { background: var(--dark); color: #fff; padding: clamp(56px, 7vw, 90px) 0; position: relative; overflow: hidden; }
    .stat-banner::before {
      content: ""; position: absolute; right: -60px; top: 0; bottom: 0; width: 220px;
      background: var(--red); transform: skewX(-12deg) translateX(160%);
      transition: transform 1s cubic-bezier(.2,.7,.2,1) .2s;
    }
    .stat-banner.v::before { transform: skewX(-12deg) translateX(0); }
    /* マーキー（流れるアウトライン文字） */
    .marquee { overflow: hidden; padding: clamp(36px, 5vw, 64px) 0; background: var(--bg); border-top: 1px solid var(--line); }
    .marquee-track { display: flex; gap: 56px; width: max-content; animation: marqueeMove 28s linear infinite; }
    .marquee-track span {
      font-family: var(--font-en); font-weight: 300; letter-spacing: .08em;
      font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1; white-space: nowrap;
      color: color-mix(in oklch, var(--ink) 28%, transparent);
    }
    .marquee-track span:nth-child(even) { color: var(--red); }
    @keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (prefers-reduced-motion: reduce) {
      .stat-banner::before { transform: skewX(-12deg); transition: none; }
      .marquee-track { animation: none; }
    }
    .stat-banner-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 18px 48px; }
    .stat-banner-num { font-family: var(--font-en); font-weight: 800; font-size: clamp(3.4rem, 7vw, 5.5rem); line-height: 1; }
    .stat-banner-num span { font-size: .45em; color: var(--red); margin-left: 4px; -webkit-text-stroke: 0; }
    .stat-banner-text { font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 700; max-width: 430px; line-height: 1.7; }
    .stat-banner-source { width: 100%; font-size: .75rem; color: rgba(255,255,255,.55); }

    /* ===== Problem ===== */
    .prob-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .prob-card {
      background: #fff; border: 1px solid var(--line); padding: 34px 30px;
      display: flex; gap: 22px; position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .prob-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,15,17,.08); border-color: transparent; }
    .prob-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
    .prob-num {
      font-family: var(--font-en); font-weight: 800; font-size: 2.6rem; line-height: 1;
      color: transparent; -webkit-text-stroke: 1.5px var(--red); flex-shrink: 0;
    }
    .prob-title { font-weight: 800; font-size: 1.08rem; margin-bottom: 8px; line-height: 1.6; }
    .prob-desc { font-size: .9rem; color: var(--body-c); }
    .prob-bridge {
      margin-top: 48px; text-align: center; font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 800;
    }
    .prob-bridge em { font-style: normal; color: var(--red); }

    /* ===== Solution ===== */
    .sol-img { margin-bottom: 56px; position: relative; }
    .sol-img img { width: 100%; }
    .sol-img::after {
      content: ""; position: absolute; right: -18px; bottom: -18px; width: 38%; height: 52%;
      border: 3px solid var(--red); z-index: -1;
    }
    .sol-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-bottom: 48px; }
    .sol-pillar { padding: 38px 34px 38px 0; border-bottom: 1px solid var(--ink); display: flex; gap: 26px; }
    .sol-pillar + .sol-pillar { padding-left: 34px; border-left: 1px solid var(--ink); padding-right: 0; }
    .sol-pillar-num { font-family: var(--font-en); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--red); flex-shrink: 0; }
    .sol-pillar-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
    .sol-pillar p { font-size: .92rem; color: var(--body-c); }
    .sol-intro { font-size: 1rem; color: var(--body-c); max-width: 800px; margin-bottom: 56px; }
    .uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .uc-card {
      background: #fff; border: 1px solid var(--line); padding: 30px 26px;
      transition: transform .3s, box-shadow .3s;
    }
    .uc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,15,17,.08); }
    .uc-icon { width: 46px; height: 46px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .uc-card:hover .uc-icon { background: var(--red); }
    .uc-icon svg { width: 24px; height: 24px; }
    .uc-name { font-weight: 800; font-size: 1.02rem; margin-bottom: 8px; }
    .uc-desc { font-size: .85rem; color: var(--body-c); margin-bottom: 16px; }
    .ba { display: flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 700; }
    .ba-tag { padding: 3px 12px; }
    .ba-before { background: var(--bg-soft); color: var(--muted); text-decoration: line-through; }
    .ba-after { background: var(--red); color: #fff; }
    .ba > span:nth-child(2) { color: var(--red); font-weight: 800; }

    /* ===== Flow ===== */
    .flow-list { counter-reset: flow; display: flex; flex-direction: column; }
    .flow-item { display: grid; grid-template-columns: 72px 1fr; gap: 26px; }
    .flow-left { display: flex; flex-direction: column; align-items: center; }
    .flow-dot {
      width: 54px; height: 54px; background: var(--ink); color: #fff;
      font-family: var(--font-en); font-weight: 800; font-size: 1.3rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .flow-item:nth-child(2) .flow-dot { background: var(--red); }
    .flow-line { width: 2px; flex: 1; background: var(--line); margin: 8px 0; }
    .flow-card { padding-bottom: 44px; }
    .flow-tag { font-size: .78rem; font-weight: 700; color: var(--red); letter-spacing: .04em; margin-bottom: 8px; }
    .flow-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
    .flow-card p { font-size: .92rem; color: var(--body-c); max-width: 640px; margin-bottom: 14px; }
    .flow-price { display: inline-block; font-weight: 800; font-family: var(--font-en); font-size: .95rem; border: 2px solid var(--ink); padding: 4px 18px; }

    /* ===== Pricing ===== */
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-bottom: 56px; }
    .plan-card {
      background: #fff; border: 1px solid var(--line); padding: 36px 30px;
      display: flex; flex-direction: column; position: relative;
      transition: transform .3s, box-shadow .3s;
    }
    .plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,15,17,.08); }
    .plan-card.featured { border: 2px solid var(--red); }
    .plan-card.featured::before {
      content: "人気"; position: absolute; top: 0; right: 0;
      background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 16px;
    }
    .plan-name { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; padding-left: 14px; border-left: 4px solid var(--red); line-height: 1.5; }
    .plan-desc { font-size: .85rem; color: var(--body-c); margin-bottom: 20px; }
    .plan-price { font-family: var(--font-en); font-weight: 800; font-size: 2.1rem; line-height: 1.2; }
    .plan-price span { font-family: var(--font-jp); font-size: .85rem; font-weight: 700; color: var(--muted); }
    .plan-time { font-size: .82rem; font-weight: 700; color: var(--red); margin: 4px 0 20px; }
    .plan-features { list-style: none; border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 20px; flex: 1; }
    .plan-features li { font-size: .85rem; color: var(--body-c); padding: 5px 0 5px 20px; position: relative; }
    .plan-features li::before { content: ""; position: absolute; left: 0; top: .95em; width: 10px; height: 2px; background: var(--red); }
    .plan-features-title { font-weight: 800; color: var(--ink) !important; padding-left: 0 !important; }
    .plan-features-title::before { display: none; }
    .plan-tag { font-size: .78rem; background: var(--bg-soft); padding: 10px 14px; color: var(--body-c); }

    .pricing-cases { background: var(--dark); color: #fff; padding: clamp(36px, 4vw, 56px); margin-bottom: 32px; }
    .pricing-cases-head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 30px; }
    .pricing-cases-badge { background: var(--red); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 14px; }
    .pricing-cases-title { font-size: 1.15rem; font-weight: 800; }
    .pricing-cases-grid { display: flex; flex-direction: column; gap: 24px; margin-bottom: 30px; }
    .pricing-cases-label { font-weight: 700; font-size: .92rem; margin-bottom: 10px; color: rgba(255,255,255,.95); }
    .pricing-cases-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
    .pricing-cases-step {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
      font-size: .8rem; font-weight: 500; padding: 8px 14px; line-height: 1.55; text-align: center;
    }
    .pricing-cases-step small { color: rgba(255,255,255,.6); font-size: .85em; }
    .pricing-cases-arrow { color: var(--red); font-weight: 800; }
    .pricing-cases-other { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
    .pricing-cases-other-title { width: 100%; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 6px; }
    .pricing-cases-other span { font-size: .8rem; border: 1px solid rgba(255,255,255,.3); padding: 4px 14px; color: rgba(255,255,255,.85); }

    .pricing-curriculum { border: 1px solid var(--line); padding: 32px 30px; margin-bottom: 24px; background: #fff; }
    .pricing-curriculum-title { font-weight: 800; margin-bottom: 18px; }
    .pricing-curriculum-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; }
    .pricing-curriculum-item { font-size: .9rem; color: var(--body-c); padding-left: 18px; position: relative; }
    .pricing-curriculum-item::before { content: ""; position: absolute; left: 0; top: .85em; width: 10px; height: 2px; background: var(--red); }
    .pricing-note { font-size: .8rem; color: var(--muted); }

    /* ===== Profile ===== */
    .profile-wrap { border: 1px solid var(--line); background: #fff; padding: clamp(32px, 4vw, 52px); }
    .profile-name { font-size: 1.7rem; font-weight: 800; }
    .profile-role { font-size: .85rem; font-weight: 700; color: var(--red); margin: 4px 0 22px; }
    .profile-bio { font-size: .92rem; color: var(--body-c); margin-bottom: 18px; }
    .profile-motto { font-weight: 800; padding: 14px 20px; background: var(--bg-soft); border-left: 4px solid var(--red); margin-bottom: 26px; }
    .profile-creds-label { font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: 12px; letter-spacing: .04em; }
    .profile-creds-list { display: flex; flex-wrap: wrap; gap: 10px; }
    .profile-cred-badge {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid var(--line); padding: 10px 16px; font-size: .82rem; font-weight: 700;
      background: #fff;
    }
    .profile-cred-badge svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
    .profile-cred-badge img { width: 56px; height: auto; }
    .cred-text { display: flex; flex-direction: column; line-height: 1.5; }
    .cred-issuer { display: block; font-size: .7rem; font-weight: 500; color: var(--muted); }

    /* ===== Achievements ===== */
    .case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .case-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); padding: 34px 30px; }
    .case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
    .case-industry { background: var(--ink); color: #fff; font-size: .72rem; font-weight: 700; padding: 3px 14px; }
    .case-tag { border: 1px solid var(--line); color: var(--body-c); font-size: .72rem; font-weight: 700; padding: 3px 14px; }
    .case-title { font-size: 1.15rem; font-weight: 800; line-height: 1.6; margin-bottom: 12px; }
    .case-desc { font-size: .88rem; color: var(--body-c); margin-bottom: 22px; }
    .case-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .case-result-item { background: var(--bg-soft); padding: 12px 16px; }
    .case-result-item-wide { grid-column: 1 / -1; }
    .case-result-label { font-size: .7rem; font-weight: 700; color: var(--muted); margin-bottom: 2px; }
    .case-result-val { font-size: .88rem; font-weight: 800; }

    /* ===== Company ===== */
    .company-table dl { display: grid; grid-template-columns: 180px 1fr; border-top: 1px solid var(--line); }
    .company-table dt {
      padding: 18px 20px; font-weight: 800; font-size: .88rem;
      border-bottom: 1px solid var(--line); background: var(--bg-soft);
    }
    .company-table dd { padding: 18px 24px; font-size: .92rem; color: var(--body-c); border-bottom: 1px solid var(--line); }
    .company-table a { color: var(--red); font-weight: 700; }
    .company-table a:hover { text-decoration: underline; }

    /* ===== CTA Final ===== */
    .cta-end { background: var(--dark); color: #fff; padding: clamp(90px, 11vw, 150px) 0; position: relative; overflow: hidden; }
    .cta-end::before {
      content: ""; position: absolute; left: -70px; top: -40px; bottom: -40px; width: 230px;
      background: var(--red); transform: skewX(-12deg);
    }
    .cta-end-inner { position: relative; }
    .cta-en { font-family: var(--font-en); font-weight: 800; font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red); text-align: center; margin-bottom: 18px; }
    .cta-end .sec-title { text-align: center; color: #fff; }
    .cta-end .sec-sub { text-align: center; color: rgba(255,255,255,.85); }
    .cta-btns { display: flex; justify-content: center; margin-top: 40px; }
    .cta-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 28px; }
    .cta-notes span { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.85); }
    .cta-notes svg { width: 16px; height: 16px; color: var(--red); background: #fff; border-radius: 50%; }

    /* ===== Footer ===== */
    footer { background: color-mix(in oklch, var(--dark) 88%, black); color: #fff; padding: 72px 24px 36px; }
    .footer-logo { max-width: 1160px; margin: 0 auto 44px; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: 12px; }
    .footer-logo::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.15); }
    .footer-info { max-width: 1160px; margin: 0 auto 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--red); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col a { font-size: .88rem; color: rgba(255,255,255,.8); }
    .footer-col a:hover { color: #fff; text-decoration: underline; }
    .footer-info-row { display: flex; gap: 16px; font-size: .85rem; color: rgba(255,255,255,.8); }
    .footer-info-row span:first-child { color: rgba(255,255,255,.45); flex-shrink: 0; width: 48px; }
    .footer-links { max-width: 1160px; margin: 0 auto 20px; display: flex; flex-wrap: wrap; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
    .footer-links a { font-size: .8rem; color: rgba(255,255,255,.6); }
    .footer-links a:hover { color: #fff; }
    .footer-copy { max-width: 1160px; margin: 0 auto; font-size: .75rem; color: rgba(255,255,255,.4); }

    /* ===== Sticky mobile CTA ===== */
    .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; transform: translateY(100%); transition: transform .35s ease; }
    .sticky-cta.show { transform: none; }
    .sticky-cta .btn { width: 100%; border-radius: 0; padding: 18px; }

    /* ===== Responsive ===== */
    @media (max-width: 960px) {
      .h-nav { display: none; }
      .h-cta { display: none; }
      .prob-grid, .uc-grid, .case-grid { grid-template-columns: 1fr; }
      .sol-pillars { grid-template-columns: 1fr; }
      .sol-pillar + .sol-pillar { padding-left: 0; border-left: none; }
      .sol-pillar { padding-right: 0; }
      .news-bar-inner { grid-template-columns: 1fr; gap: 18px; }
      .pricing-curriculum-grid { grid-template-columns: 1fr; }
      .company-table dl { grid-template-columns: 1fr; }
      .company-table dt { border-bottom: none; padding-bottom: 6px; }
      .sticky-cta { display: block; }
      footer { padding-bottom: 110px; }
      .footer-info { grid-template-columns: 1fr; }
      .hero-block { top: 30%; width: 26vw; }
    }
    @media (max-width: 640px) {
      .news-item { flex-wrap: wrap; gap: 8px 12px; }
      .news-text { width: 100%; }
      .case-results { grid-template-columns: 1fr; }
      .hero-scroll { display: none; }
      .hero { height: auto; min-height: 100svh; max-height: none; }
      .hero-inner { height: auto; min-height: 100svh; padding-top: 104px; padding-bottom: 56px; }
      .hero h1 { font-size: 1.7rem; }
      .hero-badge { margin-bottom: 20px; }
      .hero-bg img { object-position: 78% 50%; }
    }

    /* =========================================================
       Subpage components（サブページ共通・2026-06-28 追加）
       既存トークン（--red / --dark / 直角 / Noto Sans JP）を流用
       ========================================================= */
    /* ページ見出し帯（固定ヘッダーの下に敷くダーク帯） */
    .page-hero { position: relative; background: var(--dark); color: #fff; padding: clamp(122px, 15vw, 168px) 0 clamp(48px, 7vw, 70px); overflow: hidden; }
    .page-hero::before { content: ""; position: absolute; left: -70px; top: -40px; bottom: -40px; width: 230px; background: var(--red); transform: skewX(-12deg); }
    .page-hero-inner { position: relative; z-index: 1; }
    .page-hero .sec-en { color: #fff; }
    .page-hero .sec-en::before { background: var(--red); }
    .page-hero h1 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 800; line-height: 1.45; letter-spacing: .01em; color: #fff; }
    .page-hero-sub { margin-top: 16px; font-size: clamp(.95rem, 1.3vw, 1.08rem); color: rgba(255,255,255,.85); max-width: 720px; line-height: 1.85; }

    /* パンくず */
    .breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .78rem; margin-bottom: 16px; font-family: var(--font-en); letter-spacing: .03em; }
    .breadcrumb a { color: rgba(255,255,255,.7); }
    .breadcrumb a:hover { color: #fff; text-decoration: underline; }
    .breadcrumb .sep { color: rgba(255,255,255,.4); }
    .breadcrumb .cur { color: #fff; }

    /* 本文プローズ */
    .prose p { font-size: .95rem; color: var(--body-c); margin-bottom: 16px; line-height: 1.95; }
    .prose h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin: 32px 0 12px; padding-left: 14px; border-left: 4px solid var(--red); line-height: 1.6; }
    .prose ul { list-style: none; padding-left: 0; margin-bottom: 18px; }
    .prose ul li { position: relative; padding: 5px 0 5px 20px; font-size: .92rem; color: var(--body-c); line-height: 1.85; }
    .prose ul li::before { content: ""; position: absolute; left: 0; top: .9em; width: 10px; height: 2px; background: var(--red); }
    .prose strong { font-weight: 700; color: var(--ink); }

    /* 汎用カードグリッド（サービス3本柱など） */
    .feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
    .feat-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); padding: 32px 28px; transition: transform .3s, box-shadow .3s; }
    .feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,15,17,.08); }
    .feat-card .feat-num { font-family: var(--font-en); font-weight: 800; font-size: 2rem; line-height: 1; color: var(--red); margin-bottom: 14px; }
    .feat-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; line-height: 1.5; }
    .feat-card p { font-size: .9rem; color: var(--body-c); line-height: 1.85; }

    /* 含む／含まない 2カラム */
    .incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .incl-card { border: 1px solid var(--line); background: #fff; padding: 28px 26px; }
    .incl-card h4 { font-weight: 800; font-size: 1.02rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; color: var(--ink); }
    .incl-card.yes h4 { color: var(--red); }
    .incl-card ul { list-style: none; }
    .incl-card li { position: relative; padding: 7px 0 7px 24px; font-size: .9rem; color: var(--body-c); line-height: 1.7; }
    .incl-card.yes li::before { content: "✓"; position: absolute; left: 0; top: .5em; color: var(--red); font-weight: 800; }
    .incl-card.no li::before { content: "−"; position: absolute; left: 2px; top: .5em; color: var(--muted); font-weight: 800; }

    /* 比較表 */
    .compare-wrap { overflow-x: auto; margin: 20px 0; }
    .compare { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 560px; }
    .compare th, .compare td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; line-height: 1.6; }
    .compare thead th { background: var(--dark); color: #fff; font-weight: 700; font-size: .82rem; }
    .compare tbody th { background: var(--bg-soft); font-weight: 800; color: var(--ink); }
    .compare td { color: var(--body-c); }
    .compare .em { color: var(--red); font-weight: 800; }

    /* 問い合わせ手段カード */
    .contact-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .contact-card { border: 1px solid var(--line); border-top: 4px solid var(--red); background: #fff; padding: 34px 30px; display: flex; flex-direction: column; }
    .contact-card .cm-label { font-family: var(--font-en); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
    .contact-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
    .contact-card p { font-size: .9rem; color: var(--body-c); margin-bottom: 22px; flex: 1; line-height: 1.85; }
    .contact-card .btn { width: 100%; }
    .contact-card .cm-note { margin-top: 14px; font-size: .78rem; color: var(--muted); }

    /* 補足ボックス（安心材料・注記） */
    .note-box { background: var(--bg-soft); border-left: 4px solid var(--red); padding: 20px 24px; font-size: .9rem; color: var(--body-c); line-height: 1.85; }
    .note-box strong { color: var(--ink); }

    /* 末尾の小型CTAバンド */
    .mini-cta { background: var(--dark); color: #fff; padding: clamp(48px, 6vw, 72px) 0; position: relative; overflow: hidden; }
    .mini-cta::before { content: ""; position: absolute; right: -70px; top: -40px; bottom: -40px; width: 220px; background: var(--red); transform: skewX(-12deg); }
    .mini-cta-inner { position: relative; z-index: 1; text-align: center; }
    .mini-cta h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.5; }
    .mini-cta p { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 28px; }
    .mini-cta .cta-notes { margin-top: 24px; }

    @media (max-width: 640px) {
      .incl-grid, .contact-methods { grid-template-columns: 1fr; }
    }
