@charset "UTF-8";
/* CSS Document */

  :root{
    --bg:         #F4F8FC;
    --bg-2:       #E8F2FA;
    --bg-3:       #FFFFFF;
    --line:       #CADEEd;
    --ink:        #0D1E30;
    --ink-2:      #2C4A63;
    --muted:      #6A8FAA;
    --red:        #0EA5E9;
    --red-deep:   #0284C7;
    --gold:       #0EA5E9;
    --gold-soft:  rgba(14, 165, 233, 0.15);

    --anton:      "Anton", "Impact", sans-serif;
    --bebas:      "Bebas Neue", "Impact", sans-serif;
    --mono:       "JetBrains Mono", ui-monospace, monospace;
    --sans:       "Noto Sans JP", -apple-system, sans-serif;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }
  body{
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    /* subtle grain */
    background-image:
      radial-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 3px 3px;
  }

  img{ max-width:100%; display:block; }
  button{ font-family: inherit; cursor:pointer; border:none; background:none; color:inherit; }
  a{ color: inherit; text-decoration: none; }

  /* === Layout === */
  .page{ max-width: 1200px; margin: 0 auto; position: relative; }

  section{ padding: 80px 24px; position: relative; overflow: hidden; }
  @media (min-width: 900px){
    section{ padding: 110px 48px; }
  }

  .container{ max-width: 960px; margin: 0 auto; }
  .row-2{ display:grid; grid-template-columns: 1fr; gap: 32px; }
  @media (min-width: 900px){
    .row-2{ grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  }

  /* ===== Type ===== */
  .eyebrow{
    font-family: var(--bebas);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--red);
    display: inline-block;
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
  }
  .eyebrow::before{
    content:""; position: absolute; left:0; top: 50%;
    width: 20px; height: 1px; background: var(--red);
  }

  h2.section-h{
    font-family: var(--anton);
    font-size: clamp(38px, 7vw, 64px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  h2.section-h .ja{
    display: block;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 0.42em;
    letter-spacing: 0.04em;
    margin-top: 14px;
    color: var(--ink);
    line-height: 1.4;
  }
  h2.section-h .red{ color: var(--red); }
  h2.section-h .gold{ color: var(--red); }

  .lead{
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.95;
    max-width: 560px;
    margin-bottom: 40px;
  }

  /* Hazard tape */
  
  .hazard.red{
    background:
      repeating-linear-gradient(
        45deg,
        var(--red) 0 12px,
        #0D1E30 12px 24px
      );
  }

  /* === Topbar === */
  .topbar{
    position: sticky; top: 0; z-index: 80;
    background: rgba(244,248,252,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .topbar-inner{
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px; margin: 0 auto;
  }
  .logo{
    display: flex; align-items: center; gap: 10px;
  }
  .logo .mark{
    width: 32px; height: 32px;
    background: var(--red);
    color: #fff;
    font-family: var(--anton);
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    transform: skewX(-8deg);
  }
  .logo .name{
    font-family: var(--anton);
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--ink);
  }
  .logo .name em{
    font-style: normal;
    color: var(--red);
  }
  .top-promo{
    font-family: var(--bebas);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gold);
  }
  .top-promo .dot{
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.4s infinite;
    vertical-align: middle;
  }
  @keyframes pulse{
    0%, 100%{ opacity: 1; transform: scale(1); }
    50%{ opacity: 0.4; transform: scale(0.7); }
  }
  .top-cta{
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    padding: 10px 18px;
    background: var(--red);
    color: #fff;
    letter-spacing: 0.1em;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }
  @media (max-width: 700px){
    .top-promo{ display: none; }
  }

  /* === Hero === */
  .hero{
    background:
      radial-gradient(ellipse at 70% 30%, rgba(217,37,28,0.18), transparent 60%),
      radial-gradient(ellipse at 30% 80%, rgba(14, 165, 233, 0.15), transparent 60%),
      #F4F8FC;
    padding: 60px 0 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px; margin: 0 auto;
    padding: 0 24px;
  }
  @media (min-width: 900px){
    .hero-inner{ grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; padding: 0 48px; }
  }
  .hero-left{ position: relative; padding: 20px 0 60px; }
  .hero-tag{
    display: inline-block;
    font-family: var(--bebas);
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid var(--gold);
    color: var(--gold);
    letter-spacing: 0.25em;
    margin-bottom: 24px;
  }
  .hero h1{
    font-family: var(--anton);
    font-size: clamp(48px, 9vw, 96px);
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .hero h1 .ja{
    display:block;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 0.36em;
    color: var(--ink);
    margin-top: 18px;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  .hero h1 .strike{
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 4px;
  }
  .hero h1 .red{ color: var(--red); }
  .hero-sub{
    font-size: 15px;
    color: var(--ink-2);
    line-height: 2;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-meta{
    display: flex; gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .hero-meta .item{
    display:flex; flex-direction: column;
  }
  .hero-meta .lbl{
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--muted);
  }
  .hero-meta .val{
    font-family: var(--anton);
    font-size: 30px;
    color: var(--gold);
    line-height: 1;
    margin-top: 4px;
  }
  .hero-meta .val .unit{
    font-family: var(--bebas);
    font-size: 14px;
    color: var(--ink-2);
    margin-left: 4px;
  }

  /* CTA */
  .cta-row{
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
  }
  .cta-primary{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: var(--red);
    color: #fff;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.1em;
    border: 1px solid var(--red);
    transition: background 0.2s, transform 0.2s;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    text-transform: uppercase;
  }
  .cta-primary:hover{
    background: var(--red-deep);
    transform: translateY(-2px);
  }
  .cta-primary .arrow{
    font-family: var(--anton);
    font-size: 20px;
  }
  .cta-note{
    font-family: var(--bebas);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.2em;
  }

  /* Hero visual */
  .hero-visual{
    position: relative;
    aspect-ratio: 3/4;
    background: var(--bg-2);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .hero-visual .hero-photo{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
    filter: contrast(1.05) saturate(0.95);
  }
  .hero-visual::before{
    content:"";
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(135deg, rgba(217,37,28,0.22) 0%, transparent 45%),
      linear-gradient(0deg, rgba(10,10,10,0.55) 0%, transparent 35%),
      repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.025) 39px 40px),
      repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.025) 39px 40px);
  }
  /* Product mock: EMS belt */
  .belt{
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 78%;
    aspect-ratio: 16/7;
    background: linear-gradient(180deg, #DAEAF6, #F0F7FD);
    border: 1px solid #2C4A63;
    border-radius: 100px;
    box-shadow:
      0 30px 60px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
  }
  .belt::before{
    content:"";
    position: absolute;
    inset: 12% 8%;
    border-radius: 60px;
    background:
      radial-gradient(circle at 30% 50%, rgba(217,37,28,0.4), transparent 35%),
      radial-gradient(circle at 70% 50%, rgba(217,37,28,0.4), transparent 35%),
      linear-gradient(180deg, #F4F8FC, #E8F2FA);
  }
  .belt .core{
    position: relative;
    width: 36%;
    aspect-ratio: 1/1;
    background: linear-gradient(180deg, #E8F2FA, #F0F7FD);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items:center; justify-content: center;
    box-shadow: 0 0 30px rgba(217,37,28,0.5), inset 0 0 20px rgba(217,37,28,0.3);
  }
  .belt .core::after{
    content:"M";
    font-family: var(--anton);
    font-size: 36px;
    color: var(--red);
    text-shadow: 0 0 20px rgba(217,37,28,0.8);
  }
  .hero-visual .corner{
    position: absolute;
    top: 20px; right: 20px;
    width: 78px; height: 78px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: rotate(-12deg);
    font-family: var(--bebas);
    letter-spacing: 0.1em;
    line-height: 1;
    font-size: 11px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(217,37,28,0.4);
  }
  .hero-visual .corner .big{
    font-family: var(--anton);
    font-size: 28px;
    color: var(--ink);
    margin: 4px 0;
  }
  .hero-visual .stamp{
    position: absolute;
    bottom: 18px; left: 18px;
    font-family: var(--bebas);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    border: 1px solid var(--gold);
    padding: 6px 10px;
    z-index: 3;
  }
  .hero-visual .ph-label{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, 50%);
    font-family: var(--mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.15em;
    margin-top: 100px;
    z-index: 3;
    pointer-events: none;
  }

  /* Marquee ticker */
  .ticker{
    background: var(--gold);
    color: #F4F8FC;
    overflow: hidden;
    border-top: 1px solid #0D1E30;
    border-bottom: 1px solid #0D1E30;
    padding: 12px 0;
  }
  .ticker-track{
    display: flex; gap: 48px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-family: var(--anton);
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .ticker-track span::after{
    content: "★";
    margin-left: 48px;
    color: var(--red);
  }
  @keyframes scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }

  /* === Worries === */
  .worries{
    background: var(--bg);
  }
  .worry-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
  }
  @media (min-width: 700px){
    .worry-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  }
  .worry-card{
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 28px 24px;
    position: relative;
    display: flex; gap: 18px;
    align-items: flex-start;
  }
  .worry-card .num{
    font-family: var(--anton);
    font-size: 36px;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
  }
  .worry-card .body{ flex: 1; }
  .worry-card .body h4{
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--ink);
    line-height: 1.5;
  }
  .worry-card .body p{
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
  }
  .worry-stamp{
    position: absolute;
    top: -10px; right: -10px;
    width: 60px; height: 60px;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-family: var(--anton);
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transform: rotate(12deg);
    background: var(--bg);
    letter-spacing: 0.1em;
  }

  /* === Solution Declaration === */
  .solution{
    background: var(--bg-2);
    text-align: center;
    padding: 100px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .solution::before, .solution::after{
    content: "";
    position: absolute; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg,
      transparent 0%,
      var(--red) 20%,
      #0284C7 50%,
      var(--red) 80%,
      transparent 100%);
    opacity: 0.6;
  }
  .solution::before{ top: 0; }
  .solution::after{ bottom: 0; }
  .solution .small{
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .solution h2{
    font-family: var(--anton);
    font-size: clamp(56px, 12vw, 140px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .solution h2 .red{ color: var(--red); }
  .solution h2 .gold{ color: var(--red); }
  .solution .answer-ja{
    font-family: var(--sans);
    font-weight: 900;
    font-size: clamp(20px, 3.5vw, 32px);
    color: var(--ink);
    margin-top: 28px;
    letter-spacing: 0.03em;
  }
  .solution .answer-ja em{
    font-style: normal;
    color: var(--gold);
    border-bottom: 3px solid var(--red);
    padding-bottom: 2px;
  }

  /* === Features === */
  .features{
    background: var(--bg);
  }
  .feature-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }
  @media (min-width: 700px){
    .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1000px){
    .feature-grid{ grid-template-columns: repeat(3, 1fr); }
  }
  .feature-card{
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 32px 28px;
    position: relative;
    transition: border 0.2s, transform 0.2s;
  }
  .feature-card:hover{
    border-color: var(--red);
    transform: translateY(-3px);
  }
  .feature-card .id{
    position: absolute;
    top: 16px; right: 18px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
  }
  .feature-card .ico{
    width: 56px; height: 56px;
    background: var(--bg);
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
  }
  .feature-card .ico svg{
    width: 28px; height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
  }
  .feature-card h3{
    font-family: var(--sans);
    font-weight: 900;
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--ink);
    line-height: 1.5;
  }
  .feature-card .tag{
    font-family: var(--bebas);
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--red);
    margin-bottom: 8px;
  }
  .feature-card p{
    font-size: 13px;
    color: var(--muted);
    line-height: 1.9;
  }

  /* Spec table */
  .spec-block{
    margin-top: 60px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 40px 32px;
  }
  .spec-block .spec-head{
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .spec-block .spec-head h4{
    font-family: var(--anton);
    font-size: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .spec-block .spec-head .sn{
    font-family: var(--mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
  }
  .spec-table{
    width: 100%;
    border-collapse: collapse;
  }
  .spec-table tr{
    border-bottom: 1px solid var(--line);
  }
  .spec-table tr:last-child{ border-bottom: 0; }
  .spec-table th, .spec-table td{
    padding: 14px 6px;
    text-align: left;
    font-size: 13px;
  }
  .spec-table th{
    font-family: var(--bebas);
    color: var(--muted);
    letter-spacing: 0.15em;
    font-weight: 400;
    font-size: 12px;
    width: 40%;
  }
  .spec-table td{
    color: var(--ink);
    font-family: var(--mono);
  }

  /* === Steps === */
  .steps{
    background: var(--bg-2);
  }
  .step-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
    position: relative;
  }
  @media (min-width: 900px){
    .step-list{ grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
  .step{
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 32px 28px;
    position: relative;
  }
  .step::before{
    content:"";
    position: absolute;
    top: -1px; left: -1px;
    width: 40%; height: 4px;
    background: var(--red);
  }
  .step .step-num{
    font-family: var(--anton);
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
  }
  .step .step-num .en{
    font-family: var(--bebas);
    font-size: 16px;
    color: var(--muted);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 6px;
  }
  .step h4{
    font-weight: 900;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .step p{
    font-size: 13px;
    color: var(--muted);
    line-height: 1.9;
  }
  .step-time{
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    display: flex; justify-content: space-between; align-items: center;
  }
  .step-time .lbl{
    font-family: var(--bebas);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.2em;
  }
  .step-time .val{
    font-family: var(--anton);
    font-size: 18px;
    color: var(--red);
  }

  /* === Modes === */
  .modes{
    background: var(--bg);
    position: relative;
  }
  .mode-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 48px;
  }
  @media (min-width: 700px){
    .mode-grid{ grid-template-columns: repeat(3, 1fr); }
  }

  .mode-img{
    display: block;
    width: calc(100% + 44px);
    aspect-ratio: 16/7;
    object-fit: cover;
    object-position: center;
    margin: 0 0 20px;
  }
  .mode{
    background: var(--bg);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: background 0.2s;
  }
  .mode:hover{ background: var(--bg-2); }
  .mode .num{
    font-family: var(--anton);
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
  }
  .mode .name{
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .mode .en{
    font-family: var(--bebas);
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }
  .mode .desc{
    font-size: 11px;
    color: var(--muted);
    line-height: 1.8;
  }
  .mode .level{
    margin-top: 14px;
    display: flex; gap: 4px;
  }
  .mode .level i{
    flex: 1; height: 3px;
    background: var(--line);
  }
  .mode .level i.on{ background: var(--red); }

  /* === Before / After / Stats === */
  .stats{
    background: var(--bg-2);
  }
  .stat-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  @media (min-width: 700px){
    .stat-row{ grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
  .stat-card{
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 36px 28px;
    position: relative;
    text-align: left;
  }
  .stat-card .lbl{
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .stat-card .num{
    font-family: var(--anton);
    font-size: 80px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .stat-card .num .unit{
    font-family: var(--bebas);
    font-size: 22px;
    color: var(--gold);
    margin-left: 6px;
    letter-spacing: 0.1em;
  }
  .stat-card .note{
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
  }
  .stat-card .corner{
    position: absolute; top: 16px; right: 16px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.1em;
  }

  /* Chart */
  .chart{
    margin-top: 56px;
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 36px 28px;
  }
  .chart-head{
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .chart-head h4{
    font-family: var(--anton);
    font-size: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .chart-head .meta{
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .bars{
    display: flex; align-items: flex-end; justify-content: space-around;
    height: 220px;
    border-bottom: 1px solid var(--gold);
    gap: 12px;
  }
  .bar{
    flex: 1;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
  }
  .bar .v{
    font-family: var(--anton);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .bar .col{
    width: 80%;
    max-width: 60px;
    background: linear-gradient(180deg, var(--red), var(--red-deep));
    transition: height 1.2s cubic-bezier(0.22,1,0.36,1);
    position: relative;
  }
  .bar.before .col{
    background: linear-gradient(180deg, var(--line), #E8F2FA);
    border-top: 2px solid var(--muted);
  }
  .bar-labels{
    display: flex; justify-content: space-around;
    margin-top: 14px;
    gap: 12px;
  }
  .bar-labels span{
    flex: 1; text-align: center;
    font-family: var(--bebas);
    font-size: 12px;
    color: var(--ink-2);
    letter-spacing: 0.15em;
  }
  .chart-foot{
    margin-top: 18px;
    font-size: 11px;
    color: var(--muted);
    font-family: var(--mono);
  }

  /* === Reviews === */
  .reviews{
    background: var(--bg);
  }
  .review-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }
  @media (min-width: 900px){
    .review-grid{ grid-template-columns: repeat(3, 1fr); }
  }
  .review{
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 32px 28px;
    position: relative;
  }
  .review .quote{
    font-family: var(--anton);
    font-size: 64px;
    color: var(--red);
    line-height: 0.6;
    margin-bottom: -8px;
  }
  .review .stars{
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }
  .review .head{
    font-weight: 900;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.6;
  }
  .review .text{
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.9;
    margin-bottom: 22px;
  }
  .review .author{
    display: flex; align-items: center; gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .review .avatar{
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #CADEEd, #F0F7FD);
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
  }
  .review .avatar i{
    font-size: 22px;
    color: #0EA5E9;
  }
  .review .who{
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
  }
  .review .meta{
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
  }

  /* === Media === */
  .media{
    background: var(--bg-2);
    text-align: center;
  }
  .media-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
  }
  @media (min-width: 700px){
    .media-grid{ grid-template-columns: repeat(4, 1fr); }
  }
  .media-cell{
    aspect-ratio: 3/2;
    background: var(--bg);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--anton);
    font-size: 18px;
    color: var(--ink-2);
    letter-spacing: 0.15em;
  }
  .awards{
    display: flex; justify-content: center; gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
  }
  .award{
    width: 120px; height: 120px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
    background: var(--bg);
  }
  .award::before{
    content: "";
    position: absolute; inset: 6px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
  }
  .award .en{
    font-family: var(--bebas);
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.2em;
  }
  .award .big{
    font-family: var(--anton);
    font-size: 22px;
    color: var(--ink);
    line-height: 1;
    margin: 4px 0;
  }
  .award .yr{
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  /* === Comparison === */
  .compare{
    background: var(--bg);
    overflow-x: auto;
  }
  .compare-wrap{
    overflow-x: auto;
    margin-top: 40px;
  }
  table.compare-table{
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 13px;
  }
  .compare-table th, .compare-table td{
    padding: 18px 16px;
    text-align: center;
    border: 1px solid var(--line);
  }
  .compare-table thead th{
    background: var(--bg-2);
    font-family: var(--anton);
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .compare-table thead th.us{
    background: var(--red);
    color: #fff;
    border-color: var(--red);
  }
  .compare-table tbody th{
    text-align: left;
    background: var(--bg-2);
    color: var(--ink-2);
    font-weight: 500;
    font-family: var(--bebas);
    font-size: 13px;
    letter-spacing: 0.15em;
  }
  .compare-table td.us{
    background: rgba(217,37,28,0.08);
    color: var(--ink);
    font-weight: 700;
    border-left: 1px solid var(--red);
    border-right: 1px solid var(--red);
  }
  .compare-table td.bad{ color: var(--muted); }
  .compare-table .check{ color: var(--gold); font-size: 18px; font-family: var(--anton); }
  .compare-table .cross{ color: var(--muted); font-size: 16px; }

  /* === Scenes === */
  .scenes{
    background: var(--bg-2);
  }
  .scene-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }
  @media (min-width: 700px){
    .scene-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 1000px){
    .scene-grid{ grid-template-columns: repeat(4, 1fr); }
  }
  .scene{
    background: var(--bg);
    border: 1px solid var(--line);
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  .scene-img{
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: none;
  }
  .scene-img::after{
    content: "";
    position: absolute; inset: 0;
    background: none;
    pointer-events: none;
  }
  .scene-overlay{
    position: absolute; bottom: 0; left:0; right:0;
    padding: 24px 22px;
    z-index: 2;
    background: linear-gradient(to top, rgba(244,248,252,0.96) 0%, rgba(244,248,252,0.75) 60%, rgba(244,248,252,0.0) 100%);
  }
  .scene-overlay .tag{
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 700;
  }
  .scene-overlay .title{
    font-family: var(--anton);
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0D1E30;
    line-height: 1;
    margin-bottom: 8px;
  }
  .scene-overlay .title .ja{
    display:block;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 13px;
    color: #2C4A63;
    margin-top: 8px;
    letter-spacing: 0.05em;
  }

  /* === FAQ === */
  .faq{
    background: var(--bg);
  }
  .faq-list{
    margin-top: 40px;
  }
  .faq-item{
    border-top: 1px solid var(--line);
  }
  .faq-item:last-child{ border-bottom: 1px solid var(--line); }
  .faq-q{
    width: 100%;
    padding: 24px 0;
    display: flex; align-items: center; gap: 18px;
    text-align: left;
  }
  .faq-q .mark{
    font-family: var(--anton);
    font-size: 28px;
    color: var(--red);
    flex-shrink: 0;
    line-height: 1;
    width: 32px;
  }
  .faq-q .q{
    flex: 1;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
  }
  .faq-q .ico{
    width: 20px; height: 20px;
    position: relative;
    flex-shrink: 0;
  }
  .faq-q .ico::before, .faq-q .ico::after{
    content:""; position: absolute;
    background: var(--gold);
  }
  .faq-q .ico::before{
    top: 50%; left: 0; width: 100%; height: 2px;
    transform: translateY(-50%);
  }
  .faq-q .ico::after{
    top: 0; left: 50%; width: 2px; height: 100%;
    transform: translateX(-50%);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-q .ico::after{
    transform: translateX(-50%) scaleY(0);
  }
  .faq-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 50px;
  }
  .faq-item.open .faq-a{
    max-height: 320px;
  }
  .faq-a-inner{
    padding-bottom: 24px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.9;
  }

  /* === Price === */
  .price-sec{
    background: var(--bg-2);
    padding-bottom: 120px;
  }
  .price-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  @media (min-width: 900px){
    .price-grid{ grid-template-columns: 1fr 1fr; }
  }
  .price-card{
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 36px 32px;
    position: relative;
  }
  .price-card.featured{
    border: 2px solid var(--red);
  }
  .price-card .ribbon{
    position: absolute;
    top: -14px; left: 24px;
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    font-family: var(--anton);
    font-size: 14px;
    letter-spacing: 0.15em;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  }
  .price-card .plan-name{
    font-family: var(--anton);
    font-size: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .price-card .plan-en{
    font-family: var(--bebas);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
  }
  .price-card .price-main{
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 6px;
  }
  .price-card .yen-mark{
    font-family: var(--bebas);
    font-size: 24px;
    color: var(--gold);
  }
  .price-card .big{
    font-family: var(--anton);
    font-size: 72px;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .price-card .price-sub{
    font-family: var(--bebas);
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
  }
  .price-card ul.includes{
    list-style: none;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
  }
  .price-card ul.includes li{
    padding: 7px 0;
    font-size: 13px;
    color: var(--ink-2);
    display: flex; align-items: center; gap: 12px;
  }
  .price-card ul.includes li::before{
    content: "■";
    color: var(--red);
    font-size: 10px;
  }
  .price-card .cta-primary{
    width: 100%;
    justify-content: center;
  }

  /* === Guarantee === */
  .guarantee{
    background: var(--bg);
    text-align: center;
    padding: 100px 24px;
  }
  .guarantee-seals{
    display: flex; justify-content: center; gap: 32px;
    margin: 40px 0;
    flex-wrap: wrap;
  }
  .seal{
    width: 160px; height: 160px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
    background: var(--bg-2);
  }
  .seal::before{
    content:""; position: absolute; inset: 6px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
  }
  .seal .en{
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold);
  }
  .seal .big{
    font-family: var(--anton);
    font-size: 52px;
    color: var(--ink);
    line-height: 1;
    margin: 6px 0;
  }
  .seal .ja{
    font-weight: 900;
    font-size: 11px;
    color: var(--ink-2);
    letter-spacing: 0.05em;
  }
  .guarantee p{
    max-width: 560px;
    margin: 0 auto;
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.95;
  }

  /* === Final CTA === */
  .final{
    background:
      radial-gradient(ellipse at 50% 0%, rgba(217,37,28,0.25), transparent 60%),
      var(--bg);
    padding: 120px 24px 100px;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--line);
  }
  .final h2{
    font-family: var(--anton);
    font-size: clamp(48px, 9vw, 96px);
    line-height: 0.95;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .final h2 .red{ color: var(--red); }
  .final .sub{
    font-weight: 900;
    font-size: clamp(16px, 2.4vw, 22px);
    color: var(--ink);
    margin-bottom: 24px;
  }
  .final p.lead-c{
    max-width: 540px; margin: 0 auto 40px;
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.9;
  }
  .final .cta-primary{
    font-size: 18px;
    padding: 24px 36px;
  }
  .final .trust{
    display: flex; justify-content: center; gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
    font-family: var(--bebas);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.2em;
  }
  .final .trust span::before{ content: "● "; color: var(--gold); }

  /* === Footer === */
  footer{
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 48px 24px 36px;
    text-align: center;
  }
  footer .flogo{
    font-family: var(--anton);
    font-size: 24px;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
  }
  footer .flogo em{ color: var(--red); font-style: normal; }
  footer .fsub{
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-bottom: 24px;
  }
  footer .flinks{
    display: flex; justify-content: center; gap: 24px;
    margin: 16px 0;
    flex-wrap: wrap;
  }
  footer .flinks a{
    font-size: 12px;
    color: var(--ink-2);
  }
  footer .flinks a:hover{ color: var(--gold); }
  footer .copy{
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-top: 18px;
  }

  /* === Floating CTA === */
  .floating-cta{
    position: fixed;
    bottom: 16px; left: 50%; transform: translateX(-50%) translateY(150%);
    z-index: 90;
    width: calc(100% - 32px);
    max-width: 480px;
    transition: transform 0.3s;
  }
  .floating-cta.show{
    transform: translateX(-50%) translateY(0);
  }
  .floating-cta a{
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    padding: 16px 22px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.1em;
    font-size: 14px;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    box-shadow: 0 10px 30px rgba(217,37,28,0.4);
  }
  .floating-cta a .arrow{
    font-family: var(--anton);
    font-size: 20px;
  }

  /* Reveal */
  .reveal{ opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
  .reveal.in{ opacity: 1; transform: none; }
