    /* ===========================================
       Design Tokens
       =========================================== */
    :root {
      /* Color */
      --teal: #00aba9;
      --teal-dark: #007f7d;
      --pink: #d92980;
      --dark: #0f2322;
      --border: #d9ebe9;
      --bg-light: #f5fbfa;
      --bg-teal: #e1f5f4;
      --bg-teal-faint: rgba(0, 171, 169, 0.08);
      --bg-pink-faint: #fae4f0;
      /* Layout */
      --content-width: 1160px;
      --padding-sp: 20px;
      --padding-pc: 40px;
    }

    /* ===========================================
       Reset / Base
       =========================================== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      -webkit-text-size-adjust: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: #f5fbfa;
      color: #0f2322;
      line-height: 1.6;
      word-break: break-word;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }
    a:visited { color: inherit; }

    ol,
    ul {
      list-style: none;
    }

    button {
      font: inherit;
      cursor: pointer;
    }

    /* テンプレート干渉リセット */
    .header { display: none; }
    .wrapUnder-content { all: unset; display: block; }
    main { padding-top: 0 !important; }
    .check-icon img { display: block !important; width: 32px !important; height: 32px !important; }

    /* ===========================================
       .lp-container — 各セクションの内側 wrapper
       max-width + margin auto のみを担う
       =========================================== */
    .lp-container {
      width: 100%;
      max-width: var(--content-width);
      margin-inline: auto;
      padding-inline: var(--padding-sp);
    }

    @media (min-width: 1024px) {
      .lp-container {
        padding-inline: var(--padding-pc);
      }
    }

    /* ===========================================
       共通パーツ
       =========================================== */
    .section-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--teal);
    }

    .check-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .check-icon img {
      width: 32px;
      height: 32px;
    }

    .step-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--teal);
      border-radius: 50%;
      color: #fff;
      font-weight: 700;
      flex-shrink: 0;
    }

    .step-badge .step-label {
      font-size: 13px;
      line-height: 1;
    }

    .step-badge .step-num {
      font-size: 22px;
      line-height: 1.2;
    }

    .btn-pink {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--pink);
      color: #fff !important;
      font-size: 18px;
      font-weight: 700;
      border-radius: 999px;
      padding: 18px 40px;
      cursor: pointer;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.11);
      transition: box-shadow 0.2s ease;
      text-align: center;
    }
    .btn-pink:hover,
    .btn-pink:visited,
    .btn-pink:active { color: #fff !important; box-shadow: none; }
    .btn-pink:hover { filter: brightness(1.08); }

    .btn-pink-outline {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff8fc;
      color: var(--pink);
      font-size: 16px;
      font-weight: 700;
      border-radius: 999px;
      padding: 16px 24px;
      cursor: pointer;
      border: 3px solid var(--pink);
      box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
      transition: box-shadow 0.2s ease;
      text-align: center;
    }
    .btn-pink-outline:hover { box-shadow: none; color: var(--pink) !important; filter: brightness(1.08); }

    .btn-teal-outline {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 171, 169, 0.1);
      color: var(--teal);
      font-size: 18px;
      font-weight: 700;
      border-radius: 999px;
      padding: 18px 40px;
      cursor: pointer;
      border: 3px solid var(--teal);
      box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
      transition: box-shadow 0.2s ease;
      text-align: center;
    }
    .btn-teal-outline:hover { box-shadow: none; color: var(--teal) !important; filter: brightness(1.08); }

    .card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .warning-box {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      padding: 6px 8px;
      font-weight: 700;
      font-size: 14px;
    }

    .warning-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      object-fit: contain;
      vertical-align: middle;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-q {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 18px 22px;
      cursor: pointer;
      margin: 0;
      font-size: inherit;
      font-weight: inherit;
    }

    .faq-q-label {
      color: var(--teal);
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .faq-q-text {
      flex: 1;
      font-size: 14px;
      font-weight: normal;
      color: var(--dark);
    }

    .faq-plus {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .faq-plus img {
      width: 28px;
      height: 28px;
    }

    .faq-icon-close { display: none; }
    .faq-item.open .faq-icon-open { display: none; }
    .faq-item.open .faq-icon-close { display: block; }
    .faq-item.open .faq-q-text { font-weight: 700; }

    .faq-a {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease;
      font-size: 14px;
      line-height: 1.8;
      color: #444;
    }
    .faq-a p {
      margin: 0;
      padding: 0 22px 12px;
    }

    .faq-a p:last-child { padding-bottom: 20px; }
    .faq-a ul {
      list-style: disc;
      padding: 0 22px 12px 50px;
    }
    .faq-a ul li { line-height: 1.8; margin-bottom: 0.5rem; }

    .num-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: var(--teal);
      border-radius: 50%;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ===========================================
       ユーティリティ
       =========================================== */
    .text-center {
      text-align: center;
    }

    .pink-text {
      color: var(--pink);
    }

    .teal-text {
      color: var(--teal);
    }

    /* ===========================================
       モバイルファースト（デフォルト = スマホスタイル）
       =========================================== */

    /* 内側ラッパー */
    .inner {
      padding: 0;
    }

    /* ===========================================
       グローバルナビ
       =========================================== */
    .global-nav {
      background: rgba(255, 255, 255, 0.86);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
    }

    .global-nav .logo {
      height: 30px;
      width: auto;
    }

    /* ===========================================
       ページ内ナビ
       =========================================== */
    .page-nav {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 10px 16px;
      display: flex;
      gap: 6px;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .page-nav::-webkit-scrollbar {
      display: none;
    }

    .page-nav a {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      padding: 6px 14px;
      border-radius: 999px;
      white-space: nowrap;
    }

    /* ===========================================
       Hero
       =========================================== */
    /* ===========================================
       Hero
       =========================================== */
    .section-hero {
      background: #e1f5f4;
      padding: 16px 16px 40px;
    }
    .breadcrumb {
      font-size: 12px;
      margin-bottom: 16px;
    }
    .breadcrumb ol {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .breadcrumb li + li::before {
      content: "›";
      margin: 0 4px;
      color: var(--dark);
    }
    .breadcrumb a { color: var(--teal); }
    .breadcrumb li[aria-current="page"] { color: var(--dark); }
    .hero-body {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .hero-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
    }
    /* 上グループ：ロゴ ＋ （ラベル＋タイトル） */
    .hero-upper-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    /* ラベル＋タイトルのサブグループ */
    .hero-label-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0;
      font-size: inherit;
      font-weight: inherit;
    }
    /* 下グループ：アラート ＋ ボタン */
    .hero-lower-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }
    .hero-logo-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .hero-logo-block img { height: 42px; width: auto; }
    .hero-campaign-label {
      font-size: clamp(15px, 4vw, 20px);
      font-weight: 700;
      letter-spacing: 0.2em;
      color: #00aba9;
      text-align: center;
      margin-bottom: -8px;
    }
    .hero-title-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1.2;
    }
    .hero-title-line1 {
      position: relative;
      display: flex;
      align-items: baseline;
      justify-content: center;
      margin-bottom: clamp(-16px, -2.2vw, -8px);
    }
    .hero-title-line1-highlight {
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 30%;
      background: #e1f5f4;
      z-index: 0;
    }
    .hero-title-500 {
      font-size: clamp(44px, 13vw, 76px);
      font-weight: 900;
      letter-spacing: 0.04em;
      color: var(--dark);
      position: relative;
      z-index: 1;
      line-height: normal;
    }
    .hero-title-enbun {
      font-size: clamp(34px, 10vw, 56px);
      font-weight: 900;
      letter-spacing: 0.04em;
      color: var(--dark);
      position: relative;
      z-index: 1;
      line-height: normal;
    }
    .hero-title-no {
      font-size: clamp(34px, 10vw, 56px);
      font-weight: 900;
      letter-spacing: 0.04em;
      color: var(--dark);
      position: relative;
      z-index: 1;
      line-height: normal;
    }
    .hero-title-points {
      font-size: clamp(30px, 8.5vw, 48px);
      font-weight: 900;
      letter-spacing: 0.08em;
      color: var(--dark);
      display: block;
      text-align: center;
    }
    .hero-characters-sp { position: relative; width: 100%; max-width: 560px; order: 1; }
    .hero-characters-sp img { width: 100%; display: block; }
    .hero-nekoinu-text {
      position: absolute;
      top: 8%;
      left: 12%;
      z-index: 2;
      font-size: clamp(14px, 3.2vw, 22px);
    }
    .hero-hl {
      position: absolute;
      height: 0.5em;
      background: rgba(222, 214, 63, 0.33);
    }
    .hero-hl-1 { top: 0.7em; left: 0; width: 8.9em; }
    .hero-hl-2 { top: 2.1em; left: 1.1em; width: 8.9em; }
    .hero-nekoinu-msg {
      position: relative;
      z-index: 1;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.4;
      white-space: nowrap;
    }
    .hero-nekoinu-line2 { display: inline-block; margin-left: 1.1em; }
    .hero-warning { font-size: 12px; font-weight: 700; order: 2; }
    .hero-buttons { order: 3; }
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      width: 100%;
    }
    .hero-buttons .btn-pink {
      width: 100%;
      max-width: 320px;
      font-size: 16px;
      padding: 18px 24px;
    }
    .hero-right { display: none; }

    /* ===========================================
       Points
       =========================================== */
    .section-points {
      background: linear-gradient(to bottom, #f5fbfa 50%, #e1f5f4 50%);
      padding: 24px 0;
    }

    .points-card {
      background: #fff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
      padding: 32px 24px;
      margin: 0;
      border-radius: 0;
    }

    .points-header {
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .points-header .sub {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--teal);
    }

    .points-header .main {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.5;
    }

    .points-items {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .point-item-heading {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .point-item-heading span {
      font-size: 18px;
      font-weight: 700;
    }

    .point-item p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--dark);
    }

    /* ===========================================
       Campaign
       =========================================== */
    .section-campaign {
      background: var(--bg-teal);
      border-bottom: 1px solid var(--border);
      padding: 24px 20px 32px;
    }

    .campaign-top {
      display: flex;
      flex-direction: column;
      margin-bottom: 24px;
    }

    .campaign-desc {
      margin-bottom: 24px;
    }

    .campaign-desc .sub {
      font-size: 16px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.04em;
    }

    .campaign-heading {
      text-align: center;
      margin-bottom: 8px;
      font-size: inherit;
      font-weight: inherit;
    }
    .campaign-heading .sub {
      display: block;
      font-size: 15.5px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.04em;
    }
    .campaign-heading .main { display: block; }

    .campaign-desc .main {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.5;
    }

    .campaign-desc > p {
      font-size: 14px;
      line-height: 2;
      color: var(--dark);
      margin-top: 8px;
      text-align: left;
    }

    .campaign-points {
      display: flex;
      gap: 15px;
      align-items: flex-end;
      margin: 0 0 16px;
    }

    .pt-card-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 0;
    }

    .pt-char-area {
      width: 100%;
      height: 80px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    .pt-char-img {
      height: 80px;
      width: auto;
      flex-shrink: 0;
    }

    .pt-char-neko {
      height: 80px;
    }

    .pt-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px 12px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
      overflow: hidden;
    }

    .pt-card .tag {
      border-radius: 999px;
      padding: 3px 0;
      font-size: 12px;
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      width: 100%;
      display: block;
    }

    .pt-card .tag.pink {
      background: #fae4f0;
    }

    .pt-card .tag.teal {
      background: var(--bg-teal);
    }

    .pt-num-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }

    .pt-card .pt-num {
      font-size: 37px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .pt-card .pt-num.pink-num {
      color: var(--pink);
    }

    .pt-card .pt-num.teal-num {
      color: var(--teal);
    }

    .pt-card .pt-unit {
      font-size: 14px;
      font-weight: 700;
      line-height: 2;
      white-space: nowrap;
    }

    .campaign-summary {
      overflow: hidden;
    }

    .campaign-summary h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .summary-cards {
      display: flex;
      flex-direction: row;
      gap: 10px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      padding-bottom: 4px;
    }

    .summary-cards::-webkit-scrollbar {
      display: none;
    }

    .summary-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 17px 16px;
      flex: 0 0 80vw;
      max-width: 280px;
      scroll-snap-align: start;
    }

    .summary-card-head {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .summary-card-head h4 {
      font-size: 16px;
      font-weight: 700;
    }

    .summary-card p {
      font-size: 14px;
      line-height: 1.7;
    }

    /* ===========================================
       About
       =========================================== */
    .section-about {
      background: #f5fbfa;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 40px 20px;
    }

    .about-heading {
      margin-bottom: 24px;
      text-align: center;
    }

    .about-heading .sub {
      display: block;
      font-size: 15.5px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.04em;
    }

    .about-heading .main {
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.5;
    }

    .about-desc {
      font-size: 14px;
      line-height: 2;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .about-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .about-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 25px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }

    .about-card img {
      height: 60px;
      width: auto;
      object-fit: contain;
    }

    .about-card h3 {
      font-size: 14px;
      font-weight: 700;
    }

    .about-card p {
      font-size: 12px;
      line-height: 1.6;
    }

    /* ===========================================
       Steps
       =========================================== */
    .section-steps {
      background: var(--bg-teal-faint);
      padding: 40px 24px;
    }

    .steps-heading {
      margin-bottom: 24px;
      text-align: center;
    }

    .steps-heading .sub {
      display: block;
      font-size: 15.5px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.04em;
    }

    .steps-heading .main {
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
    }

    .steps-carousel {
      position: relative;
    }

    .steps-row {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 4px;
    }

    .steps-row::-webkit-scrollbar {
      display: none;
    }

    .step-card {
      background: var(--bg-teal-faint);
      border: none;
      border-radius: 24px;
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: calc(100% - 36px);
      max-width: 320px;
      flex-shrink: 0;
      scroll-snap-align: start;
      border: 4px solid #ffffff;
    }

    .step-card .step-badge {
      width: 60px;
      height: 60px;
    }

    .step-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      line-height: 1.5;
    }

    .step-card img {
      width: 100%;
      border-radius: 8px;
    }

    .step-card img:not(.step-tori) {
      height: auto;
    }

    .step-card img.step-tori {
      width: 88px;
      height: auto;
      border-radius: 0;
    }
    .step-hint {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .step-tip {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .step-arrow {
      display: none;
    }

    .step-result-card {
      background: #fff !important;
      border-radius: 24px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      align-self: stretch;
    }

    .result-badge {
      background: var(--pink);
      border-radius: 50%;
      width: 72px;
      height: 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      flex-shrink: 0;
      gap: 10px;
      line-height: 1;
    }

    .result-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 23px;
      width: 100%;
    }

    .step-result-card .result-text {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      line-height: 30px;
      letter-spacing: -0.015em;
    }

    .result-bottom {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .result-point-text {
      font-size: 12px;
      font-weight: 700;
      color: #0b2257;
      text-align: center;
      line-height: 1.22;
      white-space: nowrap;
    }

    .steps-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
    }

    .steps-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #c8e0df;
      transition: width 0.25s, background 0.25s;
      flex-shrink: 0;
    }

    .steps-dots .dot.active {
      width: 24px;
      background: var(--teal);
    }

    .summary-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 12px;
    }

    .summary-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #c8e0df;
      transition: width 0.25s, background 0.25s;
      flex-shrink: 0;
    }

    .summary-dots .dot.active {
      width: 24px;
      background: var(--teal);
    }

    .steps-result-bar {
      display: none;
    }

    /* ===========================================
       NoCode
       =========================================== */
    .section-nocode {
      background: var(--bg-light);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 41px 16px;
    }

    .nocode__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .nocode__header {
      text-align: center;
      font-weight: 700;
      width: 100%;
    }
    .nocode__eyebrow {
      display: block;
      margin: 0;
      color: #d92980;
      font-size: 15.5px;
      letter-spacing: 0.56px;
      line-height: 24.8px;
    }
    .nocode__title {
      display: block;
      margin: 0;
      color: #0f2322;
      font-size: 20px;
      letter-spacing: -0.54px;
      line-height: 33.35px;
    }
    .nocode__body {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .nocode__intro {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: center;
      width: 100%;
      align-content: flex-end;
    }
    .nocode__inu {
      width: 107px;
      height: 84px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .nocode__intro-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      justify-content: center;
      color: #0f2322;
      letter-spacing: 0.04em;
      padding-bottom: 8px;
    }
    .nocode__intro-small {
      margin: 0;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.5;
    }
    .nocode__intro-large {
      margin: 0;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.5;
    }
    .nocode__accent { color: #d92980; }
    .nocode__card {
      background: #ffffff;
      border: 1px solid #d5e1de;
      border-radius: 16px;
      padding: 17px 17px 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
    }
    .nocode__check {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .nocode__check img {
      width: 32px;
      height: 32px;
    }
    .nocode__lead-section {
      width: 100%;
      border-bottom: 1px solid #ebebeb;
      padding-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nocode__lead {
      margin: 0;
      text-align: center;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.7;
      color: #0f2322;
      max-width: 324px;
    }
    .nocode__lead .nocode__accent {
      display: block;
      font-size: 20px;
      line-height: 1.4;
      padding-bottom: 8px;
    }
    .nocode__lower {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }
    .nocode__warning {
      display: flex;
      gap: 8px;
      align-items: center;
      width: 100%;
      padding: 0 16px;
    }
    .nocode__warning-icon-wrap {
      position: relative;
      width: 44px;
      height: 38.41px;
      flex-shrink: 0;
    }
    .nocode__warning-icon {
      width: 44px;
      height: 38.41px;
      object-fit: contain;
    }
    .nocode__warning-icon-mark {
      position: absolute;
      left: 17.25px;
      top: 13.71px;
      font-size: 26.376px;
      font-weight: 700;
      line-height: 1;
      color: #0f2322;
    }
    .nocode__warning-text {
      margin: 0;
      flex: 1 0 0;
      font-weight: 400;
      font-size: 12px;
      line-height: 1.5;
      letter-spacing: 1px;
      color: #0f2322;
    }
    .nocode__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff8fc;
      color: #d92980;
      border: 3px solid #d92980;
      font-weight: 700;
      font-size: 16px;
      line-height: 24px;
      width: 100%;
      max-width: 320px;
      padding: 18px 40px;
      border-radius: 999px;
      filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.11));
      transition: filter 0.2s ease;
      white-space: nowrap;
    }
    .nocode__cta:visited { color: #d92980; }
    .nocode__cta:hover { filter: brightness(1.08); color: #d92980 !important; }
    .nocode__sp-br { display: inline; }

    /* ===========================================
       Existing
       =========================================== */
    .section-existing {
      background: #fbfbfb;
      border-bottom: 1px solid var(--border);
      padding: 40px 16px 41px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .existing__inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
      width: 100%;
    }
    .existing__header {
      text-align: center;
      font-weight: 700;
      width: 100%;
    }
    .existing__eyebrow {
      display: block;
      margin: 0;
      color: #00aba9;
      font-size: 15.5px;
      letter-spacing: 0.56px;
      line-height: 24.8px;
    }
    .existing__title {
      display: block;
      margin: 0;
      color: #0f2322;
      font-size: 20px;
      letter-spacing: -0.54px;
      line-height: 33.35px;
    }
    .existing__body {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .existing__intro {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    .existing__neko {
      width: 69px;
      height: 82px;
      flex-shrink: 0;
      object-fit: contain;
    }
    .existing__intro-text {
      font-weight: 700;
      color: #0f2322;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .existing__intro-text p { margin: 0; }
    .existing__intro-text .small { font-size: 12px; line-height: normal; white-space: nowrap; }
    .existing__intro-text .large { font-size: 16px; line-height: normal; }
    .existing__intro-text .accent { color: #00aba9; }
    .existing__card {
      background: #ffffff;
      border: 1px solid #ebebeb;
      border-radius: 16px;
      padding: 17px 0 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
    }
    .existing__check {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .existing__check img {
      width: 32px;
      height: 32px;
    }
    .existing__lead-section {
      width: 336px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
    }
    .existing__how-title {
      margin: 0;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.7;
      color: #0f2322;
    }
    .existing__how-text {
      margin: 0;
      font-weight: 400;
      font-size: 12px;
      line-height: normal;
      color: #0f2322;
      text-align: center;
    }
    .existing__how-section {
      padding: 0 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
    }
    .existing__step-imgs {
      display: flex;
      gap: 8px;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
    }
    .existing__step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4.4px;
      flex: 1 0 0;
    }
    .existing__step-img {
      width: 100%;
      max-width: 110px;
      height: auto;
      border-radius: 8px;
    }
    .existing__step-caption {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .existing__step-num {
      margin: 0;
      font-size: 10px;
      font-weight: 700;
      line-height: normal;
      color: #0f2322;
    }
    .existing__step-desc {
      margin: 0;
      font-size: 10px;
      font-weight: 700;
      line-height: normal;
      color: #0f2322;
      text-align: center;
    }
    .existing__step-sp { display: inline; }
    .existing__step-pc { display: none; }
    .existing__sp-br { display: inline; }
    .existing__step-arrow { display: none; }
    .existing__note {
      margin: 0;
      font-size: 12px;
      line-height: normal;
      color: #0f2322;
      padding: 0 16px;
      width: 100%;
    }
    .existing__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #00aba9;
      color: #ffffff;
      border: none;
      font-weight: 700;
      font-size: 16px;
      line-height: 24px;
      width: 100%;
      max-width: 320px;
      padding: 18px 40px;
      border-radius: 999px;
      filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.11));
      transition: filter 0.2s ease;
      white-space: nowrap;
    }
    .existing__cta:visited { color: #ffffff; }
    .existing__cta:hover { filter: brightness(1.08); color: #ffffff !important; }

    /* ===========================================
       関連記事
       =========================================== */
    .section-article {
      background: #fbfbfb;
      border-bottom: 1px solid #d9ebe9;
      padding: 40px 16px;
    }
    .article-heading { text-align: center; }
    .article-heading .sub {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.56px;
      line-height: 1.3;
    }
    .article-heading .main {
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: #0f2322;
      white-space: nowrap;
    }
    .article-desc {
      font-size: 14px;
      color: #0f2322;
      text-align: center;
      line-height: 1.75;
      margin-top: 8px;
    }
    .article-cards {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin-top: 24px;
      padding-bottom: 4px;
    }
    .article-cards::-webkit-scrollbar { display: none; }
    .article-card {
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid #d9ebe9;
      border-radius: 16px;
      box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.04);
      padding: 16px;
      flex: 1;
      min-width: 240px;
      gap: 8px;
      scroll-snap-align: start;
      transition: box-shadow 0.2s ease;
      position: relative;
    }
    .article-card-link {
      text-decoration: none;
      color: inherit;
    }
    .article-card-link::after {
      content: '';
      position: absolute;
      inset: 0;
    }
    .article-card:hover { box-shadow: none; }
    .article-card-img {
      width: 100%;
      height: 120px;
      overflow: hidden;
    }
    .article-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-card-body {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
    }
    .article-tag {
      display: inline-block;
      background: #0f2322;
      color: #fff;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: -0.225px;
      padding: 0 8px;
      line-height: 26px;
      white-space: nowrap;
    }
    .article-card-title {
      font-size: 14px;
      font-weight: 700;
      color: #0f2322;
      letter-spacing: -0.225px;
      line-height: 1.75;
    }
    .article-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
    }
    .article-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #c8e0df;
      transition: width 0.25s, background 0.25s;
      flex-shrink: 0;
    }
    .article-dots .dot.active {
      width: 24px;
      background: var(--teal);
    }

    /* ===========================================
       FAQ
       =========================================== */
    .section-faq {
      background: var(--bg-light);
      border-bottom: 1px solid var(--border);
      padding: 40px 16px;
    }

    .faq-layout {
      display: flex;
      flex-direction: column;
    }

    .faq-heading {
      margin-bottom: 24px;
      text-align: center;
    }

    .faq-heading .sub {
      display: block;
      font-size: 15.5px;
      font-weight: 700;
      color: var(--teal);
      letter-spacing: 0.04em;
      text-align: center;
    }

    .faq-heading .main {
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
    }

    .faq-heading p {
      font-size: 14px;
      color: var(--dark);
      margin-top: 8px;
      text-align: left;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    /* ===========================================
       Footer CTA
       =========================================== */
    .section-footer-cta {
      background: #e9f8f7;
      padding: 40px 20px;
    }

    .footer-cta-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .footer-cta-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7.5px;
    }

    .footer-cta-tagline {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .footer-cta-tagline p {
      font-size: 14px;
      font-weight: 700;
      color: #0f2322;
      text-align: center;
      white-space: nowrap;
    }

    .footer-deco {
      height: 16px;
      width: auto;
      flex-shrink: 0;
    }

    .footer-chars-sp {
      display: block;
      width: 234px;
      height: auto;
    }

    .footer-chars-pc {
      display: none;
    }

    .footer-cta-copy {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .footer-cta-info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-cta-logo-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .footer-cta-logo {
      height: 43px;
      width: auto;
    }

    .footer-cta-campaign {
      font-size: 20px;
      font-weight: 700;
      color: #0f2322;
      text-align: center;
    }

    .footer-cta-title {
      font-size: 24px;
      font-weight: 700;
      color: #0f2322;
      text-align: center;
      line-height: normal;
    }

    .footer-cta-btn-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .footer-cta-btn {
      width: 100%;
      max-width: 320px;
      font-size: 16px;
    }

    .footer-cta-copy .warning-box {
      font-size: 12px;
      padding: 4px 8px;
    }

    /* ===========================================
       PC スタイル (960px以上)
       =========================================== */
    @media (min-width: 960px) {

      /* 内側ラッパー */
      .inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
        width: 100%;
        box-sizing: border-box;
      }

      /* ===========================================
       グローバルナビ
       =========================================== */
      .global-nav {
        height: 65px;
        padding: 0 32px;
      }

      .global-nav .logo {
        height: 32px;
        width: auto;
      }

      /* ===========================================
       ページ内ナビ
       =========================================== */
      .page-nav {
        height: 58px;
        padding: 0;
        overflow-x: visible;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        top: 28px;
      }

      .page-nav a {
        font-size: 13px;
        padding: 8px 16px;
      }

      .page-nav a:hover {
        background: var(--bg-light);
      }

      /* ===== Hero (PC) ===== */
      .section-hero { padding: 24px 0 40px; }
      .breadcrumb {
        font-size: 12px;
        margin-bottom: 24px;
      }
      .breadcrumb ol {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .breadcrumb li + li::before {
        content: "›";
        margin: 0 4px;
        color: var(--dark);
      }
      .breadcrumb a { color: var(--teal); }
      .breadcrumb li[aria-current="page"] { color: var(--dark); }
      .hero-body {
        flex-direction: row;
        gap: 24px;
        align-items: center;
        justify-content: center;
      }
      .hero-copy {
        align-items: center;
        width: auto;
        flex-shrink: 1;
        gap: 16px;
      }
      .hero-upper-group { gap: 16px; align-items: center; }
      .hero-label-title { align-items: center; }
      .hero-lower-group { gap: 16px; align-items: flex-start; width: auto; }
      .hero-logo-block img { height: 57px; width: auto; }
      .hero-campaign-label { font-size: clamp(16px, 2.1vw, 24px); }
      .hero-title-500 { font-size: clamp(48px, 6vw, 72px); }
      .hero-title-enbun { font-size: clamp(36px, 4.6vw, 55px); }
      .hero-title-no { font-size: clamp(36px, 4.6vw, 55px); }
      .hero-title-points { font-size: clamp(30px, 4vw, 50px); text-align: left; }
      .hero-title-block { align-items: center; }
      .hero-title-line1 { justify-content: flex-start; }
      .hero-characters-sp { display: none; }
      .hero-buttons { width: 100%; max-width: 420px; align-items: stretch; }
      .hero-buttons .btn-pink { max-width: 420px; font-size: 18px; padding: 16px 40px; }
      .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
        flex: 1;
        min-width: 0;
        flex-shrink: 1;
      }
      .hero-nekoinu {
        position: relative;
        width: 100%;
      }
      .hero-nekoinu > img {
        width: 100%;
        max-width: 501px;
        display: block;
      }
      .hero-nekoinu-text { font-size: clamp(14px, 2.2vw, 20px); }

      /* ===========================================
       Points
       =========================================== */
      .section-points {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 24px 52px;
        display: flex;
        justify-content: center;
      }

      .points-card {
        border-radius: 16px;
        border: 1px solid var(--border);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 32px 52px;
        width: 100%;
        max-width: 1174px;
        margin: 0;
      }

      .points-header .sub {
        font-size: 20px;
      }

      .points-header .main {
        font-size: 20px;
      }

      .points-items {
        flex-direction: row;
        gap: 54px;
      }

      .point-item {
        width: 320px;
      }

      .point-item-heading span {
        font-size: 18px;
      }

      .point-item-heading .num-badge {
        color: #fff;
      }

      /* ===========================================
       Campaign
       =========================================== */
      .section-campaign {
        padding: 56px 0 72px;
      }

      .campaign-top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 32px;
      }

      .campaign-desc {
        flex: 1;
        min-width: 0;
        max-width: 487px;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .campaign-desc .sub {
        font-size: 24px;
        letter-spacing: 0.56px;
      }

      .campaign-desc .main {
        font-size: 32px;
        line-height: 1.46;
        letter-spacing: -0.54px;
      }

      .campaign-desc > p {
        font-size: 16px;
        line-height: 1.8;
      }

      .campaign-points {
        margin: 0;
        flex: 1 0 0;
        align-items: flex-end;
        gap: 15px;
      }

      .pt-card-wrap {
        flex: 1 0 0;
        min-width: 0;
      }

      .pt-char-area {
        height: 114px;
      }

      .pt-char-img {
        height: 114px;
        width: auto;
      }

      .pt-char-neko {
        height: 114px;
      }

      .pt-card {
        width: 100%;
        flex: none;
        border-radius: 16px;
        padding: 24px 19px;
      }

      .pt-card .tag {
        font-size: 16px;
        padding: 3px 0;
      }

      .pt-card .pt-num {
        font-size: 56px;
      }

      .pt-card .pt-unit {
        font-size: 16px;
        line-height: 1.75;
      }

      .campaign-summary {
        padding: 0;
        overflow: visible;
      }

      .campaign-summary h3 {
        font-size: 18px;
        margin-bottom: 12px;
      }

      .summary-dots {
        display: none;
      }

      .summary-cards {
        flex-direction: row;
        gap: 24px;
        overflow-x: visible;
      }

      .campaign-heading {
        text-align: left;
      }

      .campaign-desc .main {
        font-size: 32px;
      }

      .pt-num-row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 4px;
      }

      .summary-card {
        flex: 1;
        max-width: none;
        padding: 16px 24px;
      }

      .summary-card-head h4 {
        font-size: 18px;
      }

      .summary-card p {
        font-size: 14px;
        line-height: 1.7;
      }

      /* ===========================================
       About
       =========================================== */
      .section-about {
        background: var(--bg-light);
        padding: 72px 0;
      }

      .about-heading {
        text-align: center;
        margin-bottom: 24px;
      }

      .about-heading .sub {
        font-size: 24px;
      }

      .about-heading .main {
        font-size: 32px;
        line-height: 1.5;
      }

      .about-desc {
        font-size: 16px;
        text-align: center;
        line-height: 1.8;
        margin-bottom: 32px;
      }

      .about-cards {
        display: flex;
        gap: 18px;
        justify-content: center;
        grid-template-columns: none;
      }

      .about-card {
        padding: 24px 16px;
        width: 260px;
      }

      .about-card h3 {
        font-size: 18px;
      }

      .about-card p {
        font-size: 14px;
      }

      /* ===========================================
       Steps
       =========================================== */
      .section-steps {
        padding: 72px 0;
      }

      .steps-heading {
        text-align: center;
        margin-bottom: 40px;
      }

      .steps-heading .sub {
        font-size: 24px;
      }

      .steps-heading .main {
        font-size: 32px;
      }

      .steps-carousel {
        padding: 0 32px;
      }

      .steps-row {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        justify-content: flex-start;
        margin-bottom: 16px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
      }

      .step-card {
        width: 280px;
        background: var(--bg-teal-faint);
        border: none;
        border-radius: 24px;
        padding: 24px 16px 16px;
        box-shadow: none;
        gap: 24px;
        scroll-snap-align: start;
        flex-shrink: 0;
      }

      .step-card .step-badge {
        width: 77px;
        height: 77px;
      }

      .step-card h3 {
        font-size: 18px;
      }

      .step-tip {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px;
        font-size: 14px;
        font-weight: 700;
        color: var(--dark);
        text-align: center;
        line-height: 1.5;
        width: 100%;
        box-shadow: 4px 4px 8px rgba(101, 175, 174, 0.05);
      }

      .step-arrow {
        display: none;
      }

      .step-arrow svg {
        width: 25px;
        height: 44px;
      }

      .step-result-card {
        display: flex;
        width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
      }

      .steps-dots {
        display: flex;
      }

      .steps-result-bar {
        display: none;
      }

      .steps-result-bar .result-badge {
        width: 96px;
        height: 96px;
        font-size: 24px;
      }

      .result-bar-center {
        display: flex;
        align-items: center;
        gap: 24px;
        flex: 1;
      }

      .result-text {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1.8;
      }

      .result-bar-inu {
        position: relative;
        align-self: stretch;
        flex-shrink: 0;
        width: 334px;
        overflow: visible;
      }

      .result-bar-inu img {
        position: absolute;
        height: 195px;
        width: auto;
        max-width: none;
        bottom: -52px;
        right: 0;
      }

      /* ===========================================
       NoCode
       =========================================== */
      .section-nocode {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 72px 32px;
      }

      .nocode__inner {
        gap: 32px;
        max-width: 880px;
      }
      .nocode__header {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .nocode__eyebrow {
        font-size: 24px;
        line-height: 18.2px;
      }
      .nocode__title {
        font-size: 32px;
        line-height: 35px;
        letter-spacing: -0.3px;
      }
      .nocode__intro {
        gap: 24px;
      }
      .nocode__inu {
        width: 162px;
        height: 115.94px;
      }
      .nocode__intro-text {
        gap: 10px;
        font-weight: 700;
      }
      .nocode__intro-small {
        font-weight: 700;
        font-size: 16px;
        white-space: nowrap;
      }
      .nocode__intro-large {
        font-weight: 700;
        font-size: 24px;
      }
      .nocode__intro-large .nocode__accent { display: inline; }
      .nocode__card {
        padding: 24px 56px 40px;
        border-radius: 24px;
      }
      .nocode__check {
        width: 44px;
        height: 44px;
      }
      .nocode__check img {
        width: 44px;
        height: 44px;
      }
      .nocode__lead-section {
        border-bottom: none;
        padding-bottom: 0;
        gap: 8px;
        flex-direction: column;
      }
      .nocode__lead {
        font-size: 24px;
        line-height: 32px;
        max-width: none;
        white-space: nowrap;
      }
      .nocode__lead .nocode__accent { font-size: inherit; line-height: inherit; padding-bottom: 0; }
      .nocode__sp-br { display: none; }
      .nocode__lower {
        background: #f7f7f7;
        padding: 24px 32px;
        gap: 16px;
        align-items: center;
      }
      .nocode__warning {
        background: #ffffff;
        padding: 16px 24px;
        gap: 24px;
        width: fit-content;
      }
      .nocode__warning-icon-wrap {
        width: 40.4px;
        height: 34.6px;
      }
      .nocode__warning-icon {
        width: 40.4px;
        height: 34.6px;
      }
      .nocode__warning-icon-mark {
        left: 15.84px;
        top: 12.35px;
        font-size: 23.764px;
      }
      .nocode__warning-text {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        width: 558px;
        flex: 0 0 auto;
      }
      .nocode__cta {
        width: 100%;
        max-width: 420px;
        font-size: 18px;
        padding: 16px 40px;
      }

      /* ===========================================
       Existing
       =========================================== */
      .section-existing {
        background: #fffffb;
        padding: 72px 32px;
      }

      .existing__inner {
        max-width: 880px;
      }
      .existing__eyebrow {
        font-size: 24px;
        line-height: 18.2px;
      }
      .existing__title {
        font-size: 32px;
        line-height: 46.8px;
      }
      .existing__intro {
        gap: 40px;
        margin-bottom: 0;
      }
      .existing__neko {
        width: 110px;
        height: 120px;
      }
      .existing__intro-text .small {
        font-size: 16px;
        white-space: nowrap;
      }
      .existing__intro-text .large {
        font-size: 24px;
        white-space: nowrap;
      }
      .existing__sp-br { display: none; }
      .existing__card {
        border-color: #d5e1de;
        border-radius: 24px;
        padding: 24px 40px 40px;
        gap: 16px;
      }
      .existing__check {
        width: 44px;
        height: 44px;
      }
      .existing__check img {
        width: 44px;
        height: 44px;
      }
      .existing__lead-section {
        width: auto;
      }
      .existing__how-title {
        font-size: 24px;
        line-height: 46.8px;
        letter-spacing: -0.54px;
      }
      .existing__how-text {
        font-size: 16px;
        line-height: 28px;
        white-space: nowrap;
      }
      .existing__how-section {
        background: #f7f7f7;
        padding: 24px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0;
      }
      .existing__step-imgs {
        flex: 1;
        justify-content: space-between;
        align-items: center;
      }
      .existing__step {
        flex: 0 0 auto;
        width: 220px;
        gap: 8px;
        height: 276px;
        align-items: stretch;
      }
      .existing__step-img {
        width: 220px;
        max-width: none;
        aspect-ratio: 220 / 195;
        flex-shrink: 0;
      }
      .existing__step-caption {
        flex: 1 0 0;
        background: #ffffff;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }
      .existing__step-num { font-size: 20px; flex-shrink: 0; }
      .existing__step-desc { font-size: 14px; }
      .existing__step-sp { display: none; }
      .existing__step-pc { display: inline; }
      .existing__step-arrow {
        display: block;
        width: 13px;
        flex-shrink: 0;
        color: #0f2322;
        font-size: 22px;
        line-height: 1;
        text-align: center;
      }
      .existing__step-arrow::after { content: '›'; }
      .existing__note {
        font-size: 14px;
        line-height: 23.8px;
        white-space: nowrap;
        padding: 0;
        text-align: center;;
      }
      .existing__cta {
        width: 100%;
        max-width: 420px;
        font-size: 18px;
        padding: 16px 40px;
      }

      /* ===========================================
         関連記事
         =========================================== */
      .section-article { padding: 72px 0; }
      .article-heading .sub { font-size: 24px; }
      .article-heading .main { font-size: 32px; }
      .article-desc {
        font-size: 16px;
        max-width: 720px;
        margin: 16px auto 0;
      }
      .article-cards {
        overflow-x: visible;
        margin-top: 24px;
      }
      .article-card {
        flex-direction: row;
        flex: 1 0 0;
        width: auto;
        gap: 24px;
        padding: 24px 16px;
        align-items: center;
      }
      .article-card-img {
        width: 250px;
        height: 126px;
        flex-shrink: 0;
      }
      .article-card-body {
        padding: 13px 0;
        width: 224px;
        flex-shrink: 0;
        margin-top: 0;
      }
      .article-tag {
        display: inline-block;
        background: #0f2322;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: -0.225px;
        padding: 0 8px;
        line-height: 26px;
        white-space: nowrap;
      }
      .article-cards { scroll-snap-type: none; }
      .article-card { scroll-snap-align: none; }
      .article-dots { display: none; }

      /* ===========================================
       FAQ
       =========================================== */
      .section-faq {
        border-bottom: 1px solid var(--border);
        padding: 90px 0;
        background: var(--bg-light);
      }

      .faq-layout {
        flex-direction: row;
        gap: 32px;
      }

      .faq-heading {
        width: 280px;
        flex-shrink: 0;
        margin-bottom: 0;
        text-align: left;
      }

      .faq-heading .sub {
        font-size: 14px;
        text-align: left;
      }

      .faq-heading .main {
        font-size: 28px;
        margin: 8px 0;
      }

      .faq-heading p {
        font-size: 16px;
        line-height: 1.6;
      }

      /* ===========================================
       Footer CTA
       =========================================== */
      .section-footer-cta {
        background: #e1f5f4;
        padding: 70px 0 82px;
      }

      .footer-cta-inner {
        flex-direction: row;
        gap: 120px;
        align-items: center;
        justify-content: center;
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 32px;
      }

      .footer-cta-top {
        order: 2;
        gap: 15px;
      }

      .footer-cta-tagline p {
        font-size: 24px;
      }

      .footer-deco {
        height: 21px;
        width: auto;
      }

      .footer-chars-sp {
        display: none;
      }

      .footer-chars-pc {
        display: block;
        width: auto;
        flex: 1;
        max-width: 350px;
        height: auto;
      }

      .footer-cta-copy {
        order: 1;
        align-items: center;
      }


      .footer-cta-logo { height: 57px; width: auto; }
      .footer-cta-campaign {
        font-size: 20px;
        letter-spacing: 8px;
      }

      .footer-cta-title {
        font-size: 40px;
        font-weight: 900;
        text-align: center;
        line-height: normal;
        white-space: nowrap;
      }

      .footer-cta-btn {
        width: 100%;
        max-width: 420px;
        font-size: 18px;
        padding: 16px 40px;
      }

      .footer-cta-copy .warning-box {
        font-size: 14px;
        padding: 4px 8px;
      }
    }

    /* ===========================================
       Desktop (1024px+)
       =========================================== */
    @media (min-width: 1024px) {
      .inner { padding: 0 32px; max-width: 1160px; }
      .global-nav { padding: 0 80px; }

      /* Hero */
      .section-hero { padding: 24px 0 0; }
      .section-hero .inner { padding: 0 20px; }
      .hero-body { gap: 42px; }
      .hero-copy { flex-shrink: 0; gap: 16px; align-items: center; width: 420px; }
      .hero-upper-group { gap: 32px; align-items: center; }
      .hero-label-title { align-items: center; gap: 0; width: 100%; }
      .hero-title-block { align-items: center; }
      .hero-title-line1 { justify-content: center; }
      .hero-title-line1-highlight { display: none; }
      .hero-lower-group { gap: 16px; align-items: flex-start; width: auto; }
      .hero-warning { width: 100%; padding: 8px; font-size: 14px; order: 0; }
      .hero-buttons { order: 0; }
      .hero-logo-block img { height: 43px; width: auto; }
      .hero-campaign-label { font-size: 24px; letter-spacing: 4px; line-height: 1.4; white-space: nowrap; }
      .hero-title-500 { font-size: 83px; letter-spacing: 3.32px; }
      .hero-title-enbun { font-size: 58px; letter-spacing: 2.32px; }
      .hero-title-no { font-size: 60px; letter-spacing: 2.4px; line-height: normal; }
      .hero-title-points { font-size: 55px; white-space: nowrap; line-height: normal; }
      .hero-buttons { width: 100%; max-width: none; }
      .hero-buttons .btn-pink { max-width: 420px; font-size: 18px; padding: 16px 40px; box-shadow: none; filter: drop-shadow(0px 4px 2px rgba(0,0,0,0.11)); transition: filter 0.2s ease; }
      .hero-buttons .btn-pink:hover { filter: brightness(1.08); }
      .hero-right { width: 658px; flex: none; flex-shrink: 0; }
      .hero-nekoinu > img { max-width: none; height: 405px; width: auto; }
      .hero-nekoinu-text { font-size: 28px; }

      /* Campaign */
      .campaign-top { gap: 28px; }
      .campaign-desc .main { font-size: 32px; }

      /* Steps */
      .section-steps .inner { max-width: 1260px; }
      .steps-carousel { padding: 0; }
      .steps-row {
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 32px;
        justify-content: center;
        margin-bottom: 40px;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
      }
      .step-card { width: 339px; flex-shrink: 0; scroll-snap-align: none; border: 4px solid #ffffff; }
      .step-result-card { display: none; }
      .step-arrow { display: flex; align-items: center; align-self: center; flex-shrink: 0; }
      .steps-dots { display: none; }
      .steps-result-bar { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 24px 48px; margin: 0 auto; }

      /* NoCode */
      .nocode__cta { width: 100%; max-width: 420px; }

      /* Existing */
      .existing__cta { width: 100%; max-width: 420px; }

      /* FAQ */
      .faq-layout { gap: 64px; }
      .faq-heading { width: 413px; }
      .faq-heading .main { font-size: 34px; }
      .faq-q-text { font-size: 16px; font-weight: 700; }

      /* Footer CTA */
      .footer-chars-pc { width: 473px; flex: none; max-width: none; }
      .footer-cta-btn { width: 100%; max-width: 420px; }
    }

    /* ===========================================
     アクセシビリティ：アニメーション低減
     =========================================== */
    @media (prefers-reduced-motion: reduce) {
      .faq-a { transition: none; }
      .steps-bar-fill { transition: none; }
      .article-card { transition: none; }
      .btn-pink, .btn-pink-outline, .btn-teal-outline,
      .nocode__cta, .existing__cta { transition: none; }
      .hero-buttons .btn-pink { transition: none; }
    }

    /* ===========================================
     アクセシビリティ：フォーカススタイル
     =========================================== */
    .btn-pink:focus-visible,
    .btn-pink-outline:focus-visible,
    .nocode__cta:focus-visible,
    .existing__cta:focus-visible {
      outline: 3px solid var(--teal);
      outline-offset: 3px;
    }
    .faq-q:focus-visible {
      outline: 3px solid var(--teal);
      outline-offset: -3px;
    }
    a:focus-visible {
      outline: 3px solid var(--teal);
      outline-offset: 2px;
      border-radius: 2px;
    }

    /* ===========================================
       通常登録確認ダイアログ
       =========================================== */
    .nocode-dialog-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .nocode-dialog-overlay.open { display: flex; }
    .nocode-dialog {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      max-width: 360px;
      width: 100%;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    }
    .nocode-dialog-title {
      font-size: 16px;
      font-weight: 700;
      color: #0f2322;
      margin: 0 0 12px;
    }
    .nocode-dialog-body {
      font-size: 14px;
      color: #555;
      line-height: 1.7;
      margin: 0 0 20px;
    }
    .nocode-dialog-btns {
      display: flex;
      gap: 10px;
    }
    .nocode-dialog-confirm {
      flex: 1;
      display: block;
      text-align: center;
      background: var(--pink) !important;
      color: #fff !important;
      font-size: 14px;
      font-weight: 700;
      padding: 14px 8px;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
    }
    .nocode-dialog-cancel {
      flex: 1;
      display: block;
      text-align: center;
      background: #d9d9d9;
      color: #555;
      font-size: 14px;
      font-weight: 700;
      padding: 14px 8px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
    }

