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

    :root {
      --green: #D3E173;
      --green-dark: #8A9E00;
      --green-mid: #DDE88D;
      --green-light: #EBF1B3;
      --green-pale: #F5F9D8;
      --green-section: #F2F7C8;
      --text: #1a1a1a;
      --text-mid: #444;
      --text-light: #888;
      --border: #e5e7eb;
      --white: #fff;
      --black: #111;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.7;
      padding-bottom: 80px;
    }

    /* =====================
       HEADER
    ===================== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      height: 64px;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      height: 100%;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }
    .logo .plus { color: var(--green-dark); }
    .logo-prefix {
      display: block;
      font-size: 10px;
      font-weight: 600;
      color: var(--text-light);
      letter-spacing: 0.05em;
      margin-bottom: 1px;
    }

    .nav-tagline {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 0.04em;
    }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--text); transition: transform 0.25s, opacity 0.25s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ドロワーメニュー */
    .mobile-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 300;
      opacity: 0;
      transition: opacity 0.25s;
    }
    .mobile-overlay.open { display: block; opacity: 1; }

    .mobile-drawer {
      position: fixed;
      top: 0; right: 0;
      width: min(300px, 85vw);
      height: 100dvh;
      background: #fff;
      z-index: 310;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
      display: flex;
      flex-direction: column;
      padding: 0;
      overflow-y: auto;
    }
    .mobile-drawer.open { transform: translateX(0); }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      height: 64px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .drawer-logo {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }
    .drawer-logo .plus { color: var(--green-dark); }
    .drawer-close {
      background: none; border: none; cursor: pointer;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text);
    }
    .drawer-close svg { width: 20px; height: 20px; }

    .drawer-nav {
      flex: 1;
      padding: 12px 0;
    }
    .drawer-nav a {
      display: flex;
      align-items: center;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      gap: 8px;
    }
    .drawer-nav a:last-child { border-bottom: none; }
    .drawer-nav a:active { background: var(--green-pale); }

    .drawer-cta {
      padding: 20px;
      flex-shrink: 0;
    }
    .drawer-cta a {
      display: block;
      background: var(--green-dark);
      color: #fff;
      text-align: center;
      padding: 16px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
    }

    /* =====================
       HERO
    ===================== */
    .hero {
      margin-top: 64px;
      background: #111;
      min-height: calc(100vh - 64px);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 80px 100px;
    }

    /* 動画背景 */
    .hero-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    /* 動画の上に暗いオーバーレイ（テキストを読みやすくする） */
    .hero-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.02);
      z-index: 0;
    }

    .hero-deco { position: absolute; pointer-events: none; }
    .deco-tri-lg {
      top: 100px; right: 260px;
      width: 0; height: 0;
      border-left: 28px solid transparent;
      border-right: 28px solid transparent;
      border-bottom: 48px solid var(--green);
      opacity: 0.9;
    }
    .deco-tri-sm {
      top: 155px; right: 210px;
      width: 0; height: 0;
      border-left: 16px solid transparent;
      border-right: 16px solid transparent;
      border-bottom: 28px solid rgba(255,255,255,0.3);
    }
    .deco-diamond {
      bottom: 180px; right: 140px;
      width: 20px; height: 20px;
      background: var(--green);
      transform: rotate(45deg);
      opacity: 0.7;
    }
    .deco-dot { border-radius: 50%; background: var(--green-light); opacity: 0.5; }
    .deco-dot-1 { top: 90px; right: 480px; width: 10px; height: 10px; }
    .deco-dot-2 { bottom: 100px; left: 80px; width: 7px; height: 7px; }
    .deco-dots-row {
      top: 50%; right: 360px; transform: translateY(-50%);
      display: flex; gap: 6px;
    }
    .deco-dots-row span {
      display: block; width: 5px; height: 5px;
      border-radius: 50%; background: var(--green);
      opacity: 0.5;
    }

    .hero-content { position: relative; z-index: 1; max-width: 780px; }

    .hero-bubble {
      margin-bottom: 10px;
      padding: 16px 20px;
      background: rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 4px;
      display: inline-block;
      backdrop-filter: blur(4px);
    }
    .hero-bubble p {
      font-size: 16px;
      color: rgba(255,255,255,0.88);
      line-height: 2;
    }
    .hero-bubble p strong {
      color: #fff;
      border-bottom: 2px solid var(--green);
      font-weight: 700;
    }

    .hero-connector {
      display: block;
      width: 1px; height: 16px;
      background: linear-gradient(#bbb, transparent);
      margin: 0 0 6px 8px;
    }

    .hero-lead {
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.15em;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.8);
    }
    .hero-lead::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--green);
    }

    .hero-title {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      color: var(--white);
      line-height: 1.25;
      text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5);
    }
    .hero-title .line1 {
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 700;
      display: block;
      margin-bottom: 4px;
    }
    .hero-title .line1 .accent {
      color: var(--green);
      font-weight: 800;
      font-size: 1.15em;
    }
    .hero-title .line2 {
      display: block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: #666;
      margin-bottom: 8px;
    }
    .hero-title .line3 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 800;
      display: block;
      letter-spacing: 0.05em;
    }

    .hero-scroll {
      margin-top: 56px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-scroll span { font-size: 10px; letter-spacing: 0.2em; color: #555; }
    .scroll-bar {
      width: 1px; height: 48px;
      background: #333;
      overflow: hidden;
      position: relative;
    }
    .scroll-bar::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 100%;
      background: var(--green);
      animation: scrollDown 1.8s ease-in-out infinite;
      transform-origin: top;
    }
    @keyframes scrollDown {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
      50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    .hero-sub {
      margin-top: 16px;
      font-size: 21px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.04em;
      text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,0.8);
    }
    .hero-sub .brand {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-weight: 800;
      color: var(--green);
    }

    /* =====================
       STICKY CTA
    ===================== */
    .sticky-cta {
      position: fixed;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      z-index: 300;
      width: min(720px, 92vw);
      background: var(--green);
      border-radius: 14px 14px 0 0;
      padding: 12px 28px 16px;
      text-align: center;
      box-shadow: 0 -6px 28px rgba(163,177,0,0.3);
      text-decoration: none;
      display: block;
    }
    .sticky-cta .s-small { display: block; font-size: 11px; color: rgba(0,0,0,0.65); margin-bottom: 2px; letter-spacing: 0.04em; }
    .sticky-cta .s-main { display: block; font-size: 18px; font-weight: 900; color: #3d3d3d; letter-spacing: 0.03em; font-family: 'M PLUS Rounded 1c', sans-serif; }

    /* =====================
       SECTIONS共通
    ===================== */
    .section-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.3em;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .section-title-jp {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800;
      text-align: center;
      margin-bottom: 48px;
      line-height: 1.4;
    }
    .section-title-jp .hl { color: var(--green-dark); }

    .inner { max-width: 1060px; margin: 0 auto; padding: 0 40px; }

    /* =====================
       WHAT'S NEW
    ===================== */
    .whatsnew {
      background: var(--white);
      padding: 72px 0 64px;
      position: relative;
    }

    .whatsnew-card {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 40px;
      background: var(--white);
      border-radius: 16px;
    }

    .news-list { list-style: none; border-top: 1px solid var(--border); }
    .news-item {
      display: flex;
      align-items: baseline;
      gap: 20px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
    }
    .news-date { color: var(--text-light); white-space: nowrap; font-size: 13px; }
    .news-tag {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green-dark);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .news-text { color: var(--text); flex: 1; }

    /* =====================
       悩みセクション
    ===================== */
    .worries {
      padding: 80px 0;
      background: var(--white);
    }

    .worries-grid {
      max-width: 1060px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 64px;
      align-items: start;
    }

    .worries-vert {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: 0.04em;
      color: var(--text);
    }
    .worries-vert .v-green { color: var(--green-dark); }

    .worries-right { padding-top: 4px; }
    .worries-sublabel { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
    .worries-subtitle {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .worries-subtitle .hl {
      background: linear-gradient(transparent 58%, #fef08a 58%);
    }

    .worry-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .worry-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 40px;
      padding: 14px 22px;
      font-size: 15px;
      font-weight: 500;
    }
    .worry-icon {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--green-pale);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 12px;
      color: var(--green-dark);
    }
    .worry-item .hy { background: linear-gradient(transparent 55%, #fef08a 55%); font-weight: 700; }

    .worries-resolve {
      margin-top: 28px;
      padding: 18px 22px;
      background: var(--green-pale);
      border-left: 3px solid var(--green);
      border-radius: 0 8px 8px 0;
      font-size: 15px;
      line-height: 1.9;
      color: var(--text-mid);
    }
    .worries-resolve .g { color: var(--green-dark); font-weight: 700; }

    /* =====================
       ソリューション
    ===================== */
    .solution {
      padding: 80px 0;
      background: var(--green-section);
    }

    .solution-grid {
      max-width: 1060px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .solution-img {
      background: var(--green-light);
      border-radius: 12px;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 500;
    }

    .solution-copy {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: clamp(24px, 2.8vw, 34px);
      font-weight: 800;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .solution-copy .q { color: var(--green-dark); }

    .solution-body {
      font-size: 15px;
      line-height: 1.9;
      color: var(--text-mid);
    }
    .solution-body .num { font-weight: 700; color: var(--green-dark); }

    /* =====================
       特徴カード
    ===================== */
    .features {
      padding: 80px 0 60px;
      background: var(--green-section);
    }

    .features-wave {
      height: 60px;
      background: var(--white);
      clip-path: ellipse(55% 100% at 50% 0%);
      margin-bottom: -2px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 8px;
    }

    .feat-card {
      background: var(--white);
      border: 2px dashed #cde8d7;
      border-radius: 12px;
      padding: 28px 24px;
      position: relative;
    }

    .feat-tag {
      display: inline-block;
      background: var(--white);
      border: 1.5px solid var(--green);
      color: var(--text);
      font-size: 12px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
      line-height: 1.4;
    }
    .feat-tag .accent { color: var(--green-dark); font-size: 1.3em; }

    .feat-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.5;
    }
    .feat-title .hl { background: linear-gradient(transparent 58%, var(--green-light) 58%); }

    .feat-body { font-size: 13px; color: var(--text-mid); line-height: 1.8; }

    .features-cta-wrap {
      margin-top: 48px;
      text-align: center;
    }

    .btn-full {
      display: inline-block;
      background: var(--green);
      color: #3d3d3d;
      font-size: 17px;
      font-weight: 900;
      padding: 18px 60px;
      border-radius: 40px;
      text-decoration: none;
      font-family: 'M PLUS Rounded 1c', sans-serif;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 20px rgba(163,177,0,0.3);
    }
    .btn-full:hover { background: var(--green-dark); transform: translateY(-2px); }

    /* =====================
       会員活動イメージ
    ===================== */
    .how-it-works {
      padding: 80px 0;
      background: var(--green-section);
    }

    .hiw-steps {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      margin-bottom: 56px;
    }

    .hiw-step {
      flex: 1;
      max-width: 240px;
      text-align: center;
      padding: 0 16px;
    }

    .hiw-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--green);
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #3d3d3d;
      margin-bottom: 14px;
    }

    .hiw-step-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .hiw-step-desc {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.8;
    }

    .hiw-divider {
      display: flex;
      align-items: center;
      padding-top: 24px;
      color: var(--green-dark);
      font-size: 20px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .hiw-screens {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .hiw-screens img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    }

    /* =====================
       料金プラン
    ===================== */
    .pricing {
      padding: 80px 0;
      background: var(--white);
    }

    .pricing-card-wrap {
      display: flex;
      justify-content: center;
    }

    .pricing-card {
      width: min(480px, 90vw);
      border: 2px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    }

    .pricing-head {
      background: var(--green);
      padding: 22px 28px;
      text-align: center;
    }
    .pricing-head .plan-name {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: rgba(0,0,0,0.6);
      margin-bottom: 4px;
    }
    .pricing-head .plan-title {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: #3d3d3d;
    }

    .pricing-body { padding: 28px; }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 14px 0;
      border-bottom: 1px dashed var(--border);
      font-size: 15px;
    }
    .price-row:last-of-type { border-bottom: none; }
    .price-label { color: var(--text-mid); font-weight: 500; }
    .price-val { font-weight: 700; font-size: 17px; }
    .price-val .big { font-size: 28px; color: var(--green-dark); font-family: 'M PLUS Rounded 1c', sans-serif; }
    .price-val .yen { font-size: 14px; }
    .price-note { font-size: 12px; color: var(--text-light); }
    .price-free { font-size: 20px; font-weight: 900; color: var(--green-dark); }

    .pricing-perks {
      background: var(--green-pale);
      border-radius: 10px;
      padding: 16px 20px;
      margin: 20px 0;
    }
    .perk-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      padding: 5px 0;
      color: var(--text-mid);
    }
    .perk-check {
      width: 18px; height: 18px;
      background: var(--green);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #3d3d3d;
      font-size: 10px;
    }

    .pricing-refund {
      font-size: 12px;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 16px;
      line-height: 1.7;
    }

    .btn-pricing {
      display: block;
      background: var(--green);
      color: #3d3d3d;
      font-size: 15px;
      font-weight: 900;
      padding: 16px;
      border-radius: 10px;
      text-align: center;
      text-decoration: none;
      font-family: 'M PLUS Rounded 1c', sans-serif;
    }

    /* =====================
       会員インタビュー
    ===================== */
    .interviews {
      padding: 0 0 72px;
      background: var(--white);
    }

    .interview-hero {
      background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                  linear-gradient(135deg, #8A9E00, #D3E173);
      height: 280px;
      display: flex;
      align-items: flex-end;
      padding: 0 40px 40px;
      margin-bottom: 0;
    }

    .interview-hero-content { max-width: 1060px; width: 100%; margin: 0 auto; }

    .interview-hero .sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
    .interview-hero h2 {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: #fff;
    }
    .interview-hero p { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 10px; line-height: 1.7; max-width: 520px; }

    .interview-cards {
      max-width: 1060px;
      margin: -32px auto 0;
      padding: 0 40px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .icard {
      background: var(--white);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }

    .icard-img {
      height: 180px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      font-size: 12px;
    }

    .icard-body { padding: 18px 20px; }
    .icard-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
    .icard-body .more { color: var(--green-dark); font-size: 12px; margin-top: 8px; display: block; text-decoration: none; font-weight: 700; }

    /* =====================
       比較表
    ===================== */
    .comparison {
      padding: 80px 0;
      background: var(--green-section);
    }

    .comparison-head { max-width: 1060px; margin: 0 auto 40px; padding: 0 40px; }
    .comparison-sub { font-size: 14px; color: var(--text-light); margin-bottom: 6px; }
    .comparison-title {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800;
      line-height: 1.3;
    }

    .comp-table-wrap { max-width: 1060px; margin: 0 auto; padding: 0 40px; overflow-x: auto; }

    .comp-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .comp-table th {
      background: var(--green-pale);
      color: var(--text-mid);
      font-weight: 700;
      padding: 14px 16px;
      text-align: center;
      border: 1.5px solid var(--border);
    }
    .comp-table th:first-child { background: transparent; border-color: transparent; }
    .comp-table td {
      padding: 16px;
      text-align: center;
      border: 1.5px solid var(--border);
      background: var(--white);
      line-height: 1.6;
    }
    .comp-table .featured td {
      background: #fff;
      border-color: var(--green-dark);
      font-weight: 500;
    }
    .comp-table .featured td:first-child {
      background: var(--green-pale);
      font-weight: 700;
      color: var(--green-dark);
    }
    .comp-table .green { color: var(--green-dark); font-weight: 700; }
    .comp-table .big-zero { font-size: 28px; font-weight: 900; color: var(--green-dark); line-height: 1; }

    .comp-note { max-width: 1060px; margin: 16px auto 0; padding: 0 40px; font-size: 12px; color: var(--text-light); }

    /* =====================
       代表メッセージ
    ===================== */
    .about {
      padding: 80px 0;
      background: var(--white);
    }

    .about-grid {
      max-width: 1060px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 60px;
      align-items: start;
    }

    .about-vert {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0.04em;
    }
    .about-vert .v-green { color: var(--green-dark); }

    .about-right { display: flex; flex-direction: column; gap: 28px; }

    .about-profile { display: flex; gap: 28px; align-items: flex-start; }

    .about-photo {
      width: 140px; height: 140px;
      border-radius: 50%;
      background: var(--green-light);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--green-dark);
      font-weight: 500;
      text-align: center;
      line-height: 1.6;
    }

    .about-name {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 4px;
    }
    .about-name strong { font-size: 22px; color: var(--text); font-weight: 700; display: block; margin-top: 2px; }
    .about-text { font-size: 14px; line-height: 1.9; color: var(--text-mid); }

    .about-credos h3 {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .credo-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .credo-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      font-weight: 700;
    }
    .credo-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 2px solid var(--green);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .credo-icon svg { color: var(--green-dark); }

    /* =====================
       FAQ
    ===================== */
    .faq {
      padding: 80px 0;
      background: var(--green-section);
    }

    .faq-list { max-width: 760px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 16px; }

    .faq-item {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      border: 1.5px solid var(--border);
    }
    .faq-q {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 22px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
    }
    .faq-q-icon {
      width: 26px; height: 26px;
      background: var(--green);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #3d3d3d;
      font-size: 13px;
      font-weight: 900;
      flex-shrink: 0;
    }
    .faq-a {
      padding: 0 22px 20px 62px;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.9;
    }

    /* =====================
       フッター
    ===================== */
    footer {
      background: var(--green-pale);
      padding: 60px 0 32px;
    }

    .footer-inner {
      max-width: 1060px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }

    .footer-logo {
      font-family: 'M PLUS Rounded 1c', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--text);
      text-decoration: none;
    }
    .footer-logo .plus { color: var(--green-dark); }
    .footer-tagline { font-size: 12px; color: var(--text-light); margin-top: 6px; line-height: 1.6; }

    .footer-info { font-size: 13px; color: var(--text-mid); line-height: 2; }
    .footer-info .fi-row { display: flex; align-items: baseline; gap: 8px; }
    .footer-info .fi-icon { color: var(--green-dark); font-size: 14px; }

    .footer-bottom {
      max-width: 1060px;
      margin: 40px auto 0;
      padding: 20px 40px 0;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-light);
    }

    .footer-links { display: flex; gap: 20px; }
    .footer-links a { color: var(--text-light); text-decoration: none; }
    .footer-links a:hover { color: var(--green-dark); }

    /* =====================
       MOBILE
    ===================== */
    @media (max-width: 768px) {
      /* Nav */
      .nav-tagline { display: none; }
      .nav-inner { padding: 0 20px; }
      .hamburger { display: flex; }

      /* Hero */
      .hero { padding: 40px 20px 100px; min-height: calc(100svh - 64px); }
      .hero-video { object-position: 40% center; }
      .hero-bubble { width: 100%; padding: 12px 14px; }
      .hero-bubble p { font-size: 12px; line-height: 1.8; white-space: nowrap; }
      .hero-title .line1 { font-size: 28px; }
      .hero-title .line3 { font-size: 34px; }
      .hero-sub { font-size: 17px; }
      /* 装飾を非表示（はみ出し防止） */
      .hero-deco { display: none; }

      /* WHAT'S NEW */
      .whatsnew-card { padding: 0 20px; }
      .news-item { flex-wrap: wrap; gap: 8px; }

      /* 悩みセクション */
      .worries { padding: 56px 0; }
      .worries-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
      .worries-vert { writing-mode: horizontal-tb; font-size: 20px; letter-spacing: 0; }
      .worries-subtitle { font-size: 18px; }
      .worries-resolve { font-size: 13px; line-height: 1.85; }
      .worry-item { font-size: 14px; padding: 12px 16px; }

      /* ソリューション */
      .solution { padding: 56px 0; }
      .solution-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
      .solution-img { aspect-ratio: 16/9; }
      .solution-copy { font-size: 22px; }

      /* 特徴カード */
      .features { padding: 56px 0 40px; }
      .features .inner { padding: 0 20px; }
      .features-grid { grid-template-columns: 1fr; gap: 16px; }
      .section-title-jp { font-size: 24px; margin-bottom: 32px; }

      /* 特徴CTAボタン */
      .btn-full { font-size: 14px; padding: 16px 24px; display: block; text-align: center; }

      /* 会員活動イメージ */
      .how-it-works { padding: 56px 0; }
      .hiw-steps { flex-direction: column; align-items: center; gap: 24px; margin-bottom: 36px; }
      .hiw-divider { padding-top: 0; transform: rotate(90deg); }
      .hiw-screens { grid-template-columns: repeat(2, 1fr); gap: 12px; }

      /* 料金 */
      .pricing { padding: 56px 0; }
      .pricing .inner { padding: 0 20px; }
      .pricing-body { padding: 20px; }
      .price-val .big { font-size: 24px; }

      /* 会員インタビュー */
      .interview-hero { padding: 0 20px 32px; height: 220px; }
      .interview-cards { grid-template-columns: 1fr; padding: 0 20px; margin-top: -24px; }
      .icard-img { height: 260px; }

      /* 比較表 */
      .comparison { padding: 56px 0; }
      .comparison-head { padding: 0 20px; margin-bottom: 24px; }
      .comparison-title { font-size: 26px; }
      .comp-table-wrap { padding: 0 20px; }
      .comp-table { min-width: 540px; font-size: 12px; }
      .comp-note { padding: 0 20px; }

      /* 代表メッセージ */
      .about { padding: 56px 0; }
      .about-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
      .about-vert { writing-mode: horizontal-tb; font-size: 24px; }
      .about-profile { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
      .about-photo { width: 120px; height: 120px; }
      .about-text { text-align: left; }

      /* FAQ */
      .faq { padding: 56px 0; }
      .faq .inner { padding: 0 20px; }
      .faq-list { padding: 0 20px; }
      .faq-q { font-size: 14px; }
      .faq-a { padding: 0 16px 16px 48px; }

      /* フッター */
      footer { padding: 40px 0 24px; }
      .footer-inner { flex-direction: column; gap: 20px; padding: 0 20px; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 20px 0;
        margin-top: 24px;
      }
      .footer-links { flex-wrap: wrap; gap: 12px; }

      /* Sticky CTA */
      .sticky-cta { width: 100%; border-radius: 0; }
      .sticky-cta .s-main { font-size: 16px; }
    }

    /* ===== スキップリンク（アクセシビリティ） ===== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--black);
      color: var(--white);
      padding: 8px 18px;
      z-index: 9999;
      text-decoration: none;
      font-size: 14px;
      border-radius: 0 0 4px 4px;
      transition: top 0.1s;
    }
    .skip-link:focus { top: 0; }

/* =====================
   BLOG
===================== */
.blog-preview { padding: 80px 0; background: var(--green-pale); }
.blog-preview .inner { max-width: 1060px; margin: 0 auto; padding: 0 40px; }
.blog-more { text-align: center; margin-top: 40px; }

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--green-pale); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img--noimg { background: var(--green-section); }
.blog-card-body { padding: 20px; flex: 1; }
.blog-card-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.blog-card-title { font-size: 15px; font-weight: 700; line-height: 1.6; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

.blog-archive-page .blog-cards { margin-top: 40px; }

.post-content h2 { font-size: 22px; font-weight: 900; margin: 48px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green); }
.post-content h3 { font-size: 18px; font-weight: 700; margin: 36px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; line-height: 1.8; }
.post-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.post-content a { color: var(--green-dark); text-decoration: underline; }

@media (max-width: 768px) {
  .blog-cards { grid-template-columns: 1fr; gap: 16px; }
  .blog-preview .inner { padding: 0 20px; }
}
