    :root {
      --bg: #fff8ec;
      --bg-soft: #fffdf7;
      --paper: #ffffff;
      --text: #33241a;
      --muted: #7b6a5d;
      --main: #ff7d73;
      --main-dark: #f0645c;
      --mint: #9bdcc0;
      --yellow: #ffd978;
      --blue: #8dc9f5;
      --lavender: #c9a9f4;
      --pink: #ffb7bf;
      --green: #9edb8c;
      --cream: #fff1d2;
      --line: #efe2cf;
      --shadow: 0 12px 30px rgba(95, 64, 31, .12);
      --shadow-soft: 0 8px 22px rgba(95, 64, 31, .08);
      --radius-xl: 30px;
      --radius-lg: 24px;
      --radius-md: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
      background: #eadfcf;
      color: var(--text);
      letter-spacing: .04em;
    }

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

    button {
      font: inherit;
    }

    img,
    canvas {
      max-width: 100%;
      display: block;
    }

    .page {
      width: 100%;
      max-width: 430px;
      margin: 0 auto;
      min-height: 100vh;
      background:
        radial-gradient(circle at 14% 4%, rgba(255, 183, 191, .32), transparent 22%),
        radial-gradient(circle at 92% 9%, rgba(155, 220, 192, .28), transparent 20%),
        linear-gradient(180deg, #fffaf0 0%, #fff8ec 54%, #fdf2df 100%);
      overflow: hidden;
      position: relative;
      box-shadow: 0 0 60px rgba(70, 45, 20, .13);
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      padding: 0 16px 0 18px;
      background: rgba(255, 248, 236, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(239, 226, 207, .72);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
      flex-shrink: 0;
    }

    .logo img {
      height: 26px;
      width: auto;
      max-width: none;
      display: block;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mini-btn {
      height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(239, 226, 207, .9);
      box-shadow: 0 6px 16px rgba(95, 64, 31, .08);
      font-size: 11px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .mini-btn--primary {
      background: var(--main);
      color: #fff;
      border-color: transparent;
    }

    .menu-btn {
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 6px 16px rgba(95, 64, 31, .1);
      display: grid;
      place-items: center;
      padding: 0;
    }

    .menu-lines {
      position: relative;
      width: 16px;
      height: 12px;
      display: block;
    }

    .menu-lines::before,
    .menu-lines::after,
    .menu-lines span {
      content: "";
      position: absolute;
      left: 0;
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: var(--text);
    }

    .menu-lines::before { top: 0; }
    .menu-lines span { top: 5px; }
    .menu-lines::after { bottom: 0; }

    .menu-lines::before,
    .menu-lines::after,
    .menu-lines span {
      transition: transform .25s ease, opacity .2s ease, top .25s ease, bottom .25s ease;
    }

    .menu-btn.is-open .menu-lines::before {
      top: 5px;
      transform: rotate(45deg);
    }

    .menu-btn.is-open .menu-lines span {
      opacity: 0;
    }

    .menu-btn.is-open .menu-lines::after {
      bottom: 5px;
      transform: rotate(-45deg);
    }

    /* ===== ドロワーメニュー ===== */
    body.is-menu-open {
      overflow: hidden;
    }

    .nav-drawer {
      position: fixed;
      inset: 0;
      margin: 0 auto;
      max-width: 430px;
      z-index: 100;
      visibility: hidden;
      pointer-events: none;
    }

    .nav-drawer.is-open {
      visibility: visible;
      pointer-events: auto;
    }

    .nav-drawer__overlay {
      position: absolute;
      inset: 0;
      background: rgba(28, 19, 13, .5);
      backdrop-filter: blur(2px);
      opacity: 0;
      transition: opacity .3s ease;
    }

    .nav-drawer.is-open .nav-drawer__overlay {
      opacity: 1;
    }

    .nav-drawer__panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(80%, 300px);
      display: flex;
      flex-direction: column;
      padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
      background: linear-gradient(180deg, #fffaf0 0%, #fff3df 100%);
      box-shadow: -16px 0 40px rgba(70, 45, 20, .22);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.4, 0, .2, 1);
      overflow-y: auto;
    }

    .nav-drawer.is-open .nav-drawer__panel {
      transform: translateX(0);
    }

    .nav-drawer__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .nav-drawer__title {
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .16em;
      color: var(--text);
    }

    .nav-drawer__close {
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 12px rgba(95, 64, 31, .12);
      font-size: 20px;
      line-height: 1;
      color: var(--text);
      display: grid;
      place-items: center;
    }

    .nav-drawer__list {
      list-style: none;
      margin: 0 0 20px;
      padding: 0;
    }

    .nav-drawer__list li {
      border-bottom: 1px solid rgba(51, 36, 26, .08);
    }

    .nav-drawer__list a {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 14px 4px;
      font-size: 14px;
      font-weight: 850;
      color: var(--text);
    }

    .nav-drawer__list a::before {
      content: "\0025B8";
      font-size: 11px;
      color: #ff7d5e;
    }

    .nav-drawer__account {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .nav-drawer__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 46px;
      border-radius: 999px;
      background: var(--main);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(255, 125, 115, .32);
    }

    .nav-drawer__btn--ghost {
      background: #fff;
      color: var(--text);
      border: 1px solid rgba(239, 226, 207, .9);
      box-shadow: 0 6px 16px rgba(95, 64, 31, .08);
    }

    .section {
      padding: 46px 22px;
      position: relative;
      z-index: 0;
    }

    /* セクション背景のさりげないアクセント（ドット地紋＋コーナーグロー） */
    .section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    /* パターン\002460：ドット（コーラル） */
    .section:nth-of-type(4n+1)::before {
      background-image:
        radial-gradient(220px 220px at 92% 3%, rgba(255, 129, 119, .14), transparent 70%),
        radial-gradient(circle at center, rgba(255, 129, 119, .12) 1.8px, transparent 2.2px);
      background-size: auto, 20px 20px;
      background-repeat: no-repeat, repeat;
    }

    /* パターン\002461：斜めストライプ（ミント） */
    .section:nth-of-type(4n+2)::before {
      background-image:
        radial-gradient(220px 220px at 6% 3%, rgba(84, 185, 154, .15), transparent 70%),
        repeating-linear-gradient(45deg, rgba(84, 185, 154, .08) 0 2px, transparent 2px 14px);
      background-size: auto, auto;
      background-repeat: no-repeat, repeat;
    }

    /* パターン\002462：グリッド（ラベンダー） */
    .section:nth-of-type(4n+3)::before {
      background-image:
        radial-gradient(240px 240px at 94% 3%, rgba(201, 169, 244, .16), transparent 70%),
        linear-gradient(rgba(201, 169, 244, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 244, .1) 1px, transparent 1px);
      background-size: auto, 26px 26px, 26px 26px;
      background-repeat: no-repeat, repeat, repeat;
    }

    /* パターン\002463：ダイヤ格子（イエロー） */
    .section:nth-of-type(4n)::before {
      background-image:
        radial-gradient(220px 220px at 5% 3%, rgba(255, 191, 67, .16), transparent 70%),
        repeating-linear-gradient(45deg, rgba(240, 165, 54, .08) 0 1.5px, transparent 1.5px 17px),
        repeating-linear-gradient(-45deg, rgba(240, 165, 54, .08) 0 1.5px, transparent 1.5px 17px);
      background-size: auto, auto, auto;
      background-repeat: no-repeat, repeat, repeat;
    }

    .section--white {
      background: rgba(255, 255, 255, .74);
    }

    .section--cream {
      background: rgba(255, 245, 221, .82);
    }

    /* ===== SPECIAL STAGE（特別セクション：アーケード調ダーク帯） ===== */
    #challenge.section {
      padding: 54px 22px 58px;
      overflow: hidden;
      background:
        radial-gradient(120% 60% at 50% 0%, rgba(255, 140, 90, .22), transparent 58%),
        radial-gradient(90% 55% at 50% 100%, rgba(138, 92, 255, .26), transparent 60%),
        linear-gradient(180deg, #181228 0%, #241a3d 48%, #181228 100%);
      box-shadow:
        inset 0 7px 0 -3px #ff6f65,
        inset 0 -7px 0 -3px #8a5cff;
    }

    /* ネオングリッド（上下フェード） */
    #challenge.section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
      background-size: 28px 28px, 28px 28px;
      -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 42%, transparent 60%, #000 100%);
      mask-image: linear-gradient(180deg, #000 0%, transparent 42%, transparent 60%, #000 100%);
    }

    /* 漂うネオンの光 */
    .challenge-aura {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(160px 160px at 10% 16%, rgba(255, 111, 101, .4), transparent 70%),
        radial-gradient(180px 180px at 92% 84%, rgba(138, 92, 255, .4), transparent 70%);
      filter: blur(6px);
      animation: challengeAura 6s ease-in-out infinite alternate;
    }

    @keyframes challengeAura {
      0% { transform: translate3d(0, 0, 0) scale(1); opacity: .85; }
      100% { transform: translate3d(0, -10px, 0) scale(1.06); opacity: 1; }
    }

    /* SPECIAL STAGE バッジ（ネオンピル） */
    #challenge .challenge-badge {
      padding: 6px 16px;
      border-radius: 999px;
      color: #ffe07a;
      border: 1.5px solid rgba(255, 210, 74, .65);
      background: rgba(255, 210, 74, .08);
      text-shadow: 0 0 12px rgba(255, 210, 74, .8);
      box-shadow: 0 0 22px rgba(255, 210, 74, .28), inset 0 0 14px rgba(255, 210, 74, .14);
      animation: badgeGlow 2.2s ease-in-out infinite;
    }

    #challenge .challenge-badge::before,
    #challenge .challenge-badge::after {
      display: none;
    }

    @keyframes badgeGlow {
      0%, 100% { box-shadow: 0 0 18px rgba(255, 210, 74, .22), inset 0 0 12px rgba(255, 210, 74, .12); }
      50% { box-shadow: 0 0 30px rgba(255, 210, 74, .45), inset 0 0 16px rgba(255, 210, 74, .2); }
    }

    #challenge .section-title {
      color: #fff;
      text-shadow: 0 2px 20px rgba(138, 92, 255, .55), 0 0 2px rgba(0, 0, 0, .3);
    }

    #challenge .section-lead {
      text-align: left;
      font-size: 12px;
      color: rgba(255, 255, 255, .78);
    }

    #challenge .section-lead em {
      color: #ffd24a;
      text-shadow: 0 0 12px rgba(255, 210, 74, .5);
    }

    /* 筐体まわりにネオングロー */
    #challenge .challenge-cabinet {
      box-shadow:
        0 18px 36px rgba(255, 111, 101, .34),
        0 0 0 1px rgba(255, 255, 255, .08),
        0 0 60px rgba(255, 120, 80, .28),
        0 0 90px rgba(138, 92, 255, .22);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin: 0 auto 12px;
      color: var(--main-dark);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .kicker::before,
    .kicker::after {
      content: "";
      width: 14px;
      height: 1px;
      background: currentColor;
      opacity: .45;
    }

    .section-head {
      text-align: center;
    }

    .section-title {
      margin: 0;
      font-size: 23px;
      line-height: 1.6;
      text-align: center;
      font-weight: 950;
    }

    /* タイトル装飾ヘルパー */
    .section-title--lg {
      font-size: 22px;
      line-height: 1.55;
      letter-spacing: .01em;
      font-weight: 800;
    }

    .ttl-brand {
      background: linear-gradient(120deg, #ff7d73 0%, #ff9f6a 42%, #f0a536 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      font-weight: 900;
    }

    .ttl-mark {
      position: relative;
      display: inline-block;
      z-index: 0;
      padding: 0 5px;
      color: var(--main-dark);
    }

    .ttl-mark::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 3px;
      height: 38%;
      background: linear-gradient(90deg, rgba(255, 217, 120, .92), rgba(255, 183, 191, .92));
      border-radius: 7px;
      transform: rotate(-1.4deg);
      z-index: -1;
    }

    .ttl-spark {
      position: absolute;
      top: -12px;
      right: -8px;
      font-size: 16px;
      font-style: normal;
      animation: ttlTwinkle 1.9s ease-in-out infinite;
    }

    @keyframes ttlTwinkle {
      0%, 100% { transform: scale(1) rotate(0deg); opacity: .7; }
      50% { transform: scale(1.3) rotate(18deg); opacity: 1; }
    }

    .section-lead {
      margin: 12px 0 0;
      font-size: 13px;
      line-height: 2;
      color: var(--muted);
      text-align: left;
      font-weight: 700;
    }

    /* サブテキストのキーフレーズ強調（共通） */
    .section-lead em {
      font-style: normal;
      font-weight: 900;
      color: var(--main-dark);
    }

    .solution-lead {
      margin-top: 14px;
    }

    .accent {
      color: var(--main-dark);
    }

    /* HERO \002500\002500 画像をrelative、ボタンをabsoluteで配置 */
    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero-image-wrap {
      position: relative;
      width: 100%;
      line-height: 0;
    }

    .hero-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .hero-btn-wrap {
      position: absolute;
      bottom: 14%;
      left: 18px;
      right: 18px;
      display: flex;
      justify-content: center;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: min(370px, 100%);
      min-height: 74px;
      padding: 0 32px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      font-size: 19px;
      font-weight: 950;
      letter-spacing: .04em;
      border: 0;
      box-shadow: 0 18px 38px rgba(255, 125, 115, .46), 0 0 0 5px rgba(255, 255, 255, .6);
      animation: heroCtaFloat 2.8s ease-in-out infinite;
    }

    .hero-cta::after {
      content: "\00203A";
      font-size: 30px;
      line-height: 1;
      transform: translateY(-1px);
    }

    @keyframes heroCtaFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    /* 登録ボタン \002500\002500 自動ドロワー＋動くグラデーション（モバイル向け・ホバー無し） */
    .reg-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 26px;
    }

    .reg-btn--hero {
      width: min(370px, 100%);
      margin-top: 0;
    }

    .reg-btn__main {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      width: 100%;
      min-height: 60px;
      padding: 10px 24px;
      border-radius: 18px;
      border: 0;
      color: #fff;
      font-size: 16px;
      font-weight: 950;
      letter-spacing: .03em;
      text-shadow: 0 1px 2px rgba(90, 8, 10, .32);
      border: 2.5px solid #8a1118;
      background:
        linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(255, 255, 255, .22)),
        linear-gradient(115deg, #ff5a52 0%, #e11d2a 22%, #ff7a5b 48%, #d11530 72%, #ff5a52 100%);
      background-size: auto, 230% 100%;
      box-shadow:
        0 2px 0 rgba(255, 255, 255, .5) inset,
        0 -7px 12px rgba(130, 15, 20, .42) inset,
        0 2px 1px rgba(0, 0, 0, .06),
        0 4px 2px rgba(0, 0, 0, .06),
        0 8px 4px rgba(0, 0, 0, .07),
        0 16px 10px rgba(0, 0, 0, .08),
        0 22px 22px rgba(200, 30, 45, .34);
      animation: regGradient 4.5s linear infinite, regPulse 5s ease-in-out infinite;
      cursor: pointer;
    }

    .reg-btn--hero .reg-btn__main {
      min-height: 74px;
      font-size: 19px;
    }

    .reg-btn__drawer {
      position: absolute;
      z-index: 1;
      display: flex;
      justify-content: center;
      min-height: 34px;
      padding: 6px 18px;
      font-size: 12.5px;
      font-weight: 950;
      letter-spacing: .04em;
      color: #6b3408;
      white-space: nowrap;
      background: linear-gradient(180deg, #ffdf6e 0%, #ffc23d 100%);
      box-shadow: 0 8px 16px rgba(120, 70, 10, .34);
      opacity: 0;
      filter: blur(2px);
    }

    .reg-btn__drawer--top {
      top: 4px;
      left: 30px;
      align-items: flex-start;
      border-radius: 13px 13px 0 0;
      animation: regDrawerTop 5s ease-in-out infinite;
    }

    .reg-btn__drawer--bottom {
      bottom: 4px;
      right: 30px;
      align-items: flex-end;
      border-radius: 0 0 13px 13px;
      animation: regDrawerBottom 5s ease-in-out infinite;
    }

    @keyframes regGradient {
      0% { background-position: 0% 50%, 0% 50%; }
      100% { background-position: 0% 50%, 230% 50%; }
    }

    @keyframes regPulse {
      0%, 18%, 92%, 100% { transform: scale(1); }
      38%, 74% { transform: scale(1.06); }
    }

    @keyframes regDrawerTop {
      0%, 14%, 94%, 100% { opacity: 0; transform: translateY(0) rotateZ(0); filter: blur(3px); }
      34%, 78% { opacity: 1; transform: translateY(-34px) rotateZ(4deg); filter: blur(0); }
    }

    @keyframes regDrawerBottom {
      0%, 14%, 94%, 100% { opacity: 0; transform: translateY(0) rotateZ(0); filter: blur(3px); }
      34%, 78% { opacity: 1; transform: translateY(34px) rotateZ(4deg); filter: blur(0); }
    }

    .cta {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      height: 58px;
      margin-top: 28px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      box-shadow: 0 14px 28px rgba(255, 125, 115, .34);
      font-size: 15px;
      font-weight: 950;
      border: 0;
    }

    .cta::after {
      content: "\00203A";
      font-size: 26px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .sub-link {
      display: inline-flex;
      justify-content: center;
      margin-top: 14px;
      color: #5ba891;
      font-size: 12px;
      font-weight: 950;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* EMPATHY \002500\002500 物語の世界観に合わせた暖色ファンタジー（クエストボード） */
    .empathy {
      position: relative;
      margin-top: 30px;
      padding: 20px 16px 22px;
      border-radius: 32px;
      background:
        radial-gradient(130% 70% at 50% -12%, rgba(255, 216, 122, .65), transparent 60%),
        linear-gradient(180deg, #fbe7bf 0%, #f6d9a4 100%);
      border: 1px solid rgba(201, 135, 31, .4);
      box-shadow:
        0 20px 44px rgba(120, 78, 24, .24),
        inset 0 0 0 4px rgba(255, 255, 255, .55),
        inset 0 0 0 6px rgba(227, 167, 47, .4);
      overflow: hidden;
    }

    .empathy::before {
      content: "\002726";
      position: absolute;
      top: 14px;
      right: 18px;
      color: rgba(255, 255, 255, .7);
      font-size: 16px;
      text-shadow: 0 0 14px rgba(255, 214, 120, .9);
      animation: emTwinkle 3s ease-in-out infinite;
    }

    @keyframes emTwinkle {
      0%, 100% { opacity: .5; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.3); }
    }

    /* 額縁つきイラスト（アーチ窓風） */
    .empathy-frame {
      position: relative;
      padding: 7px;
      border-radius: 30px 30px 24px 24px;
      background: linear-gradient(160deg, #f7cf7d 0%, #e0a338 55%, #c9871f 100%);
      box-shadow: 0 14px 28px rgba(120, 78, 24, .32);
    }

    .empathy-frame__inner {
      position: relative;
      border-radius: 24px 24px 18px 18px;
      overflow: hidden;
      line-height: 0;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55);
    }

    .empathy-frame__inner img {
      width: 100%;
      aspect-ratio: 3 / 2;
      object-fit: cover;
      display: block;
    }

    .empathy-frame__inner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 42%, transparent 52%, rgba(91, 61, 31, .32));
      pointer-events: none;
    }

    .empathy-think {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      padding: 9px 15px;
      border-radius: 18px 18px 18px 5px;
      background: rgba(255, 253, 246, .96);
      color: #6e4a23;
      font-size: 12.5px;
      font-weight: 950;
      letter-spacing: .02em;
      box-shadow: 0 8px 18px rgba(91, 61, 31, .26);
    }

    /* クエストボード見出し */
    .empathy-quest-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 24px 4px 14px;
      color: #6e4a23;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .empathy-quest-head::before {
      content: "\01F4DC";
      font-size: 19px;
    }

    .empathy-quest-head::after {
      content: "";
      flex: 1;
      height: 0;
      border-top: 2px dashed rgba(201, 135, 31, .5);
    }

    /* なやみ＝クエストカード（羊皮紙の付箋） */
    .empathy-quests {
      display: grid;
      gap: 10px;
    }

    .empathy-quest {
      position: relative;
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 14px 16px;
      border-radius: 16px;
      background: linear-gradient(180deg, #fffdf6 0%, #fdf2da 100%);
      border: 1px solid rgba(201, 135, 31, .32);
      box-shadow: 0 7px 16px rgba(120, 78, 24, .13);
      color: #5b3d1f;
      font-size: 13.5px;
      line-height: 1.55;
      font-weight: 850;
    }

    .empathy-quest::before {
      content: "\002726";
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 14px;
      background: linear-gradient(135deg, #f3c969, #dfa235);
      box-shadow: 0 5px 11px rgba(201, 135, 31, .4);
    }

    .empathy-quest:nth-child(2)::before { background: linear-gradient(135deg, #c79cf0, #8a5fc0); }
    .empathy-quest:nth-child(3)::before { background: linear-gradient(135deg, #f5a8c4, #e8729a); }
    .empathy-quest:nth-child(4)::before { background: linear-gradient(135deg, #9bdcc0, #4fae8b); }
    .empathy-quest:nth-child(5)::before { background: linear-gradient(135deg, #8dc9f5, #4f93cf); }

    /* 答え＝光るクリアバナー */
    .empathy-answer {
      position: relative;
      margin-top: 18px;
      padding: 22px 20px;
      border-radius: 22px;
      text-align: left;
      background: linear-gradient(140deg, #7a4fb0 0%, #9a5fb8 55%, #b86fa8 100%);
      color: #fff5dd;
      font-size: 15px;
      line-height: 1.85;
      font-weight: 950;
      box-shadow: 0 16px 32px rgba(110, 60, 140, .34), inset 0 0 0 2px rgba(255, 255, 255, .28);
      overflow: hidden;
    }

    .empathy-answer::before {
      content: "\002605";
      position: absolute;
      top: -12px;
      right: -8px;
      font-size: 70px;
      color: rgba(255, 214, 120, .28);
      text-shadow: 0 0 26px rgba(255, 214, 120, .5);
      line-height: 1;
      transform: rotate(12deg);
    }

    .empathy-answer__label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
      padding: 5px 14px;
      border-radius: 999px;
      background: rgba(255, 245, 221, .2);
      color: #ffe6a8;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .14em;
    }

    .empathy-answer strong {
      display: block;
      position: relative;
      z-index: 2;
      font-size: 19px;
      letter-spacing: .02em;
    }

    .empathy-answer .em-gold {
      color: #ffd978;
      text-shadow: 0 0 16px rgba(255, 214, 120, .6);
    }

    /* SOLUTION \002500\002500 没入感のあるショーケース（画像＋ベネフィット一体型） */
    .solution-stage {
      position: relative;
      margin-top: 26px;
      padding: 14px 14px 18px;
      border-radius: 32px;
      background:
        radial-gradient(120% 80% at 20% 0%, rgba(141, 201, 245, .5), transparent 55%),
        radial-gradient(120% 90% at 95% 10%, rgba(255, 183, 191, .4), transparent 50%),
        linear-gradient(165deg, #4a3a8c 0%, #6b4fa8 48%, #9a6bbe 100%);
      box-shadow: 0 24px 48px rgba(64, 44, 120, .36);
      overflow: hidden;
    }

    /* きらめく粒子 */
    .solution-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(2px 2px at 18% 30%, rgba(255, 255, 255, .9), transparent),
        radial-gradient(2px 2px at 72% 18%, rgba(255, 245, 200, .9), transparent),
        radial-gradient(1.5px 1.5px at 45% 62%, rgba(255, 255, 255, .8), transparent),
        radial-gradient(2px 2px at 88% 54%, rgba(255, 255, 255, .8), transparent),
        radial-gradient(1.5px 1.5px at 30% 80%, rgba(255, 245, 200, .8), transparent);
      pointer-events: none;
      opacity: .85;
    }

    /* 画像：額縁なしで全幅、内側に光フチ */
    .solution-stage__screen {
      position: relative;
      z-index: 2;
      border-radius: 22px;
      overflow: hidden;
      line-height: 0;
      box-shadow: 0 14px 30px rgba(30, 18, 70, .45), inset 0 0 0 2px rgba(255, 255, 255, .35);
    }

    .solution-stage__screen img {
      width: 100%;
      aspect-ratio: 16 / 11;
      object-fit: cover;
      display: block;
    }

    .solution-stage__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .94);
      color: #6b3fa0;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .12em;
      box-shadow: 0 6px 16px rgba(30, 18, 70, .35);
    }

    .solution-stage__badge::before {
      content: "\0025B6";
      font-size: 8px;
    }

    /* タイトル帯 */
    .solution-stage__lead {
      position: relative;
      z-index: 2;
      margin: 16px 4px 14px;
      color: #fff;
      font-size: 14px;
      line-height: 1.6;
      font-weight: 950;
      letter-spacing: .02em;
      text-shadow: 0 2px 10px rgba(30, 18, 70, .4);
    }

    .solution-stage__lead .em-gold {
      color: #ffd978;
      text-shadow: 0 0 16px rgba(255, 214, 120, .65);
    }

    /* ベネフィット：ガラス調カード（2列） */
    .solution-benefits {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 9px;
    }

    .sol-benefit {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 13px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 10px 22px rgba(30, 18, 70, .22);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .sol-benefit:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 28px rgba(30, 18, 70, .3);
    }

    .sol-benefit__icon {
      flex: 0 0 auto;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 23px;
    }

    .sol-benefit:nth-child(1) .sol-benefit__icon { background: linear-gradient(135deg, #aedbff, #4f93cf); box-shadow: 0 6px 14px rgba(79, 147, 207, .45); }
    .sol-benefit:nth-child(2) .sol-benefit__icon { background: linear-gradient(135deg, #ffe39c, #f0a536); box-shadow: 0 6px 14px rgba(240, 165, 54, .45); }
    .sol-benefit:nth-child(3) .sol-benefit__icon { background: linear-gradient(135deg, #ffc4ca, #ff6f65); box-shadow: 0 6px 14px rgba(255, 111, 101, .45); }
    .sol-benefit:nth-child(4) .sol-benefit__icon { background: linear-gradient(135deg, #d8c2f7, #8a5fc0); box-shadow: 0 6px 14px rgba(138, 95, 192, .45); }

    .sol-benefit__body {
      min-width: 0;
    }

    .sol-benefit__title {
      margin: 0;
      font-size: 14px;
      line-height: 1.4;
      font-weight: 900;
      color: var(--text);
    }

    .sol-benefit__text {
      margin: 3px 0 0;
      font-size: 11.5px;
      line-height: 1.5;
      color: var(--muted);
      font-weight: 750;
    }

    /* MOOD \002500\002500 昼\002192夜の気分ステージ（画像とカードを一体化） */
    .mood-stage {
      position: relative;
      margin-top: 24px;
      padding: 14px 14px 18px;
      border-radius: 32px;
      background:
        radial-gradient(120% 70% at 12% 0%, rgba(255, 209, 150, .6), transparent 50%),
        radial-gradient(130% 80% at 92% 98%, rgba(74, 56, 140, .55), transparent 55%),
        linear-gradient(162deg, #ffd6a3 0%, #f3b1bf 36%, #b48fd6 66%, #5f4fa0 100%);
      box-shadow: 0 24px 48px rgba(70, 50, 120, .34);
      overflow: hidden;
    }

    .mood-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(2px 2px at 22% 16%, rgba(255, 255, 255, .9), transparent),
        radial-gradient(1.5px 1.5px at 60% 10%, rgba(255, 245, 210, .9), transparent),
        radial-gradient(2px 2px at 84% 30%, rgba(255, 255, 255, .85), transparent),
        radial-gradient(1.5px 1.5px at 74% 60%, rgba(255, 255, 255, .8), transparent),
        radial-gradient(2px 2px at 90% 84%, rgba(255, 245, 210, .85), transparent);
      pointer-events: none;
      opacity: .9;
    }

    .mood-stage__screen {
      position: relative;
      z-index: 2;
      margin: -14px -14px 0;
      border-radius: 32px 32px 0 0;
      overflow: hidden;
      line-height: 0;
    }

    .mood-stage__screen img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
    }

    /* 画像下端をステージのグラデに溶け込ませる */
    .mood-stage__screen::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 36%;
      background: linear-gradient(to top, #f3b1bf 0%, rgba(243, 177, 191, .55) 34%, transparent 100%);
      pointer-events: none;
    }

    .mood-stage__badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .94);
      color: #6b4fa0;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .12em;
      box-shadow: 0 6px 16px rgba(30, 18, 70, .35);
    }

    .mood-stage__badge::before {
      content: "\01F4AD";
      font-size: 11px;
    }

    .mood-stage__lead {
      position: relative;
      z-index: 2;
      margin: 16px 4px 14px;
      color: #fff;
      font-size: 14px;
      line-height: 1.6;
      font-weight: 950;
      letter-spacing: .02em;
      text-shadow: 0 2px 10px rgba(30, 18, 70, .4);
    }

    /* 気分タイル（2\0000D72のピッカー） */
    .mood-list {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .mood-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 14px 14px;
      border-radius: 20px;
      background: rgba(44, 28, 86, .42);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .22);
      box-shadow: 0 8px 20px rgba(30, 18, 70, .26), inset 0 1px 0 rgba(255, 255, 255, .18);
      overflow: hidden;
    }

    /* 角のカラーグロー */
    .mood-card::before {
      content: "";
      position: absolute;
      right: -22px;
      top: -22px;
      width: 66px;
      height: 66px;
      border-radius: 50%;
      opacity: .4;
      pointer-events: none;
    }

    .mood-card:nth-child(1)::before { background: #ff8f6b; }
    .mood-card:nth-child(2)::before { background: #6b8fe0; }
    .mood-card:nth-child(3)::before { background: #5fc090; }
    .mood-card:nth-child(4)::before { background: #7a6bc0; }

    .mood-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 26px;
      margin-bottom: 11px;
    }

    .mood-card:nth-child(1) .mood-icon { background: linear-gradient(135deg, #ffcf9e, #ff8f6b); box-shadow: 0 6px 14px rgba(255, 143, 107, .42); }
    .mood-card:nth-child(2) .mood-icon { background: linear-gradient(135deg, #bcd9ff, #6b8fe0); box-shadow: 0 6px 14px rgba(107, 143, 224, .42); }
    .mood-card:nth-child(3) .mood-icon { background: linear-gradient(135deg, #bfeccd, #5fc090); box-shadow: 0 6px 14px rgba(95, 192, 144, .42); }
    .mood-card:nth-child(4) .mood-icon { background: linear-gradient(135deg, #c9b8f0, #7a6bc0); box-shadow: 0 6px 14px rgba(122, 107, 192, .42); }

    .mood-body {
      min-width: 0;
      position: relative;
      z-index: 2;
    }

    .mood-tag {
      display: inline-block;
      margin-bottom: 4px;
      font-size: 9px;
      font-weight: 950;
      letter-spacing: .16em;
    }

    .mood-card:nth-child(1) .mood-tag { color: #ffc4ad; }
    .mood-card:nth-child(2) .mood-tag { color: #bcccff; }
    .mood-card:nth-child(3) .mood-tag { color: #a8ecca; }
    .mood-card:nth-child(4) .mood-tag { color: #d6c6f5; }

    .mood-title {
      margin: 0;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 900;
      color: #fff;
      text-shadow: 0 1px 6px rgba(30, 18, 70, .3);
    }

    .mood-text {
      margin: 5px 0 0;
      font-size: 10.5px;
      line-height: 1.55;
      color: rgba(255, 255, 255, .88);
      font-weight: 750;
    }

    /* ===== アーケード筐体 ===== */
    .challenge-cabinet {
      margin-top: 26px;
      padding: 12px;
      border-radius: 28px;
      background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 217, 120, .35), transparent 60%),
        linear-gradient(180deg, #ff8c7f 0%, #ff6f65 100%);
      box-shadow:
        0 18px 36px rgba(255, 111, 101, .34),
        inset 0 2px 0 rgba(255, 255, 255, .35),
        inset 0 -8px 18px rgba(150, 40, 30, .28);
      position: relative;
    }

    /* マーキー（筐体トップの看板） */
    .cab-marquee {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
      padding: 9px 12px;
      border-radius: 16px;
      background: linear-gradient(180deg, #fff7e9, #ffe9c4);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .6), 0 4px 0 rgba(150, 40, 30, .22);
    }

    .cab-title {
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .12em;
      color: #c2412f;
      text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
    }

    .cab-light {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #fff, #ffd24a 55%, #ff8a00);
      box-shadow: 0 0 8px rgba(255, 180, 40, .9);
      animation: cabBlink 1s steps(2, start) infinite;
    }

    .cab-light:last-child { animation-delay: .5s; }

    @keyframes cabBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: .25; }
    }

    /* ゲーム画面（CRT風ベゼル） */
    .challenge-screen {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 5px solid #2a1d14;
      background: #1c130d;
      touch-action: pan-y;
      box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, .06),
        inset 0 0 26px rgba(0, 0, 0, .55);
    }

    #breakoutGame {
      display: block;
      width: 100%;
      height: auto;
      background:
        radial-gradient(circle at 18% 12%, rgba(255, 183, 191, .35), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(155, 220, 192, .35), transparent 22%),
        linear-gradient(180deg, #fff8ec 0%, #fff1d2 100%);
      touch-action: pan-y;
      cursor: pointer;
    }

    /* プレイ中はゲームに操作を専有させ、斜めスワイプでのスクロール誤判定（pointercancel）を防ぐ */
    #breakoutGame.is-playing {
      touch-action: none;
    }

    /* ===== 画面内オーバーレイ（スタート / 結果 / ゲームオーバー） ===== */
    .cg-overlay {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1px;
      padding: 16px;
      text-align: center;
      opacity: 0;
      visibility: hidden;
      transform: scale(.96);
      transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
      overflow: hidden;
    }

    .cg-overlay.is-show {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
    }

    /* スタート画面 */
    .cg-start {
      background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 213, 128, .5), transparent 55%),
        linear-gradient(180deg, #fffaf2 0%, #fff1da 100%);
    }

    .cg-eyebrow {
      margin: 0 0 6px;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .16em;
      color: #ff6f65;
    }

    .cg-title {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 950;
      line-height: 1.3;
      color: var(--text);
    }

    .cg-lead {
      margin: 0 0 12px;
      font-size: 11px;
      line-height: 1.6;
      font-weight: 800;
      color: var(--muted);
    }

    /* スタート画面内の難易度選択 */
    .cg-levels {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
      width: 100%;
      max-width: 250px;
      margin-bottom: 12px;
    }

    .cg-level {
      padding: 9px 6px;
      border: 1.5px solid rgba(255, 125, 115, .4);
      border-radius: 12px;
      background: rgba(255, 255, 255, .7);
      color: var(--muted);
      font-size: 11.5px;
      font-weight: 950;
      cursor: pointer;
      transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
    }

    .cg-level:active { transform: scale(.95); }

    .cg-level.is-active {
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 8px 16px rgba(255, 125, 115, .32);
    }

    /* 共通ボタン（スタート / もう一度） */
    .cg-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      max-width: 250px;
      height: 50px;
      border: 0;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 950;
      letter-spacing: .03em;
      cursor: pointer;
      transition: transform .12s ease, box-shadow .12s ease;
    }

    .cg-btn--primary {
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      box-shadow: 0 12px 22px rgba(255, 125, 115, .4);
      animation: cgBtnPulse 1.8s ease-in-out infinite;
    }

    .cg-btn--primary:active {
      transform: translateY(2px);
      box-shadow: 0 6px 12px rgba(255, 125, 115, .4);
    }

    @keyframes cgBtnPulse {
      0%, 100% { box-shadow: 0 12px 22px rgba(255, 125, 115, .4); }
      50% { box-shadow: 0 12px 30px rgba(255, 125, 115, .6); }
    }

    /* ゲームオーバー画面 */
    .cg-over {
      background: linear-gradient(180deg, rgba(40, 28, 20, .92), rgba(28, 19, 13, .96));
      backdrop-filter: blur(2px);
    }

    .cg-over__icon {
      font-size: 40px;
      margin-bottom: 4px;
    }

    .cg-over__title {
      margin: 0 0 6px;
      font-size: 24px;
      font-weight: 950;
      letter-spacing: .08em;
      color: #ffd978;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    }

    .cg-over__text {
      margin: 0 0 14px;
      font-size: 12px;
      line-height: 1.6;
      font-weight: 800;
      color: rgba(255, 255, 255, .82);
    }

    /* ホワイトアウト */
    .cg-flash {
      position: absolute;
      inset: 0;
      z-index: 8;
      background: #fff;
      opacity: 0;
      pointer-events: none;
    }

    /* 紙吹雪 */
    .cg-confetti {
      position: absolute;
      top: -16px;
      width: 8px;
      height: 12px;
      border-radius: 2px;
      z-index: 7;
      pointer-events: none;
      animation: cgConfetti var(--dur) ease-in var(--delay) both;
    }

    @keyframes cgConfetti {
      0% { transform: translateY(0) rotate(0deg); opacity: 1; }
      100% { transform: translateY(380px) rotate(720deg); opacity: 0; }
    }

    /* コントロールデッキ（プレイ中のみ表示） */
    .cab-deck {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: 16px;
      background: linear-gradient(180deg, #fff7e9, #ffe9c4);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55), 0 4px 0 rgba(150, 40, 30, .22);
    }

    /* HUD：ライフ・進捗バー・残り数 */
    .challenge-hud {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 2px;
    }

    .hud-lives {
      flex: 0 0 auto;
      display: flex;
      gap: 3px;
      font-size: 14px;
      line-height: 1;
    }

    .hud-lives span {
      transition: opacity .25s ease, transform .25s ease, filter .25s ease;
    }

    .hud-lives span.is-lost {
      opacity: .2;
      filter: grayscale(1);
      transform: scale(.82);
    }

    .hud-progress {
      flex: 1;
      height: 9px;
      border-radius: 999px;
      background: #f1e7d6;
      overflow: hidden;
    }

    .hud-progress-bar {
      height: 100%;
      width: 0%;
      border-radius: 999px;
      background: linear-gradient(90deg, #9bdcc0, #5fc8a0);
      transition: width .28s ease;
    }

    .challenge-count {
      flex: 0 0 auto;
      min-width: 56px;
      text-align: center;
      padding: 6px 11px;
      border-radius: 999px;
      background: #eafff4;
      color: #248165;
      font-size: 10px;
      font-weight: 950;
      transition: background .2s ease, color .2s ease;
    }

    .challenge-count.is-miss {
      background: #ffeceb;
      color: #d8584e;
    }

    .challenge-count.is-clear {
      background: linear-gradient(135deg, #ffd978, #ffb347);
      color: #6b4a12;
    }

    .challenge-hint {
      margin: 8px 2px 0;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.5;
      font-weight: 850;
      text-align: center;
      min-height: 16px;
    }

    /* 結果画面（オーバーレイ） */
    .challenge-result {
      gap: 0;
      padding: 14px 16px;
      justify-content: center;
      background: linear-gradient(180deg, rgba(255, 250, 242, .96), rgba(255, 243, 226, .98));
      backdrop-filter: blur(2px);
    }

    /* 結果画面のキラキラ背景（点滅する星屑） */
    .challenge-result::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(255, 210, 74, .95) 0 1.6px, transparent 2.2px),
        radial-gradient(circle, rgba(255, 255, 255, .95) 0 1.3px, transparent 1.9px),
        radial-gradient(circle, rgba(255, 150, 110, .85) 0 1.5px, transparent 2.1px),
        radial-gradient(circle, rgba(155, 220, 192, .8) 0 1.2px, transparent 1.8px);
      background-size: 78px 78px, 104px 104px, 132px 132px, 92px 92px;
      background-position: 12px 18px, 50px 64px, 0 40px, 70px 8px;
      opacity: 0;
    }

    .challenge-result::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(255, 210, 74, .9) 0 1.3px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, .9) 0 1.1px, transparent 1.7px);
      background-size: 116px 116px, 88px 88px;
      background-position: 40px 90px, 16px 50px;
      opacity: 0;
    }

    /* 結果が表示されている時だけキラキラを動かす（プレイ中の再描画負荷を回避） */
    .challenge-result.is-show::before {
      animation: resultSparkle 2.4s ease-in-out infinite;
    }

    .challenge-result.is-show::after {
      animation: resultSparkle 2.4s ease-in-out infinite;
      animation-delay: 1.2s;
    }

    @keyframes resultSparkle {
      0%, 100% { opacity: .25; }
      50% { opacity: 1; }
    }

    .result-label {
      display: inline-flex;
      margin: 0 0 4px;
      padding: 5px 13px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffe9a8, #ffd24a);
      color: #8a5a12;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .04em;
      box-shadow: 0 0 16px rgba(255, 210, 74, .7), inset 0 1px 0 rgba(255, 255, 255, .6);
      position: relative;
      z-index: 2;
    }

    .result-stars {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin: 0 0 3px;
      position: relative;
      z-index: 2;
    }

    .result-stars span {
      font-size: 22px;
      display: inline-block;
      filter: drop-shadow(0 0 8px rgba(255, 200, 60, .9));
      opacity: 0;
      transform: scale(0) rotate(-20deg);
    }

    .challenge-result.is-show .result-stars span {
      animation: starPop .5s cubic-bezier(.17, .67, .35, 1.4) both;
    }

    .challenge-result.is-show .result-stars span:nth-child(1) { animation-delay: .08s; }
    .challenge-result.is-show .result-stars span:nth-child(2) { animation-delay: .22s; }
    .challenge-result.is-show .result-stars span:nth-child(3) { animation-delay: .36s; }

    @keyframes starPop {
      0% { opacity: 0; transform: scale(0) rotate(-20deg); }
      70% { transform: scale(1.35) rotate(8deg); }
      100% { opacity: 1; transform: scale(1) rotate(0deg); }
    }

    .result-icon {
      width: 92px;
      height: 92px;
      margin: 6px auto 8px;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(135deg, #ffb7bf, #ffd978);
      display: grid;
      place-items: center;
      font-size: 44px;
      box-shadow: 0 10px 22px rgba(95, 64, 31, .22);
      position: relative;
      z-index: 2;
    }

    .result-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .challenge-result h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 950;
      line-height: 1.25;
      position: relative;
      z-index: 2;
    }

    .challenge-result p {
      margin: 5px 0 0;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.55;
      font-weight: 750;
      position: relative;
      z-index: 2;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 「このゲームで遊ぶ」CTA */
    .result-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      max-width: 260px;
      height: 48px;
      margin-top: 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: .02em;
      box-shadow: 0 10px 22px rgba(255, 125, 115, .42), inset 0 1px 0 rgba(255, 255, 255, .35);
      position: relative;
      z-index: 2;
      overflow: hidden;
      transition: transform .12s ease, box-shadow .12s ease;
    }

    .result-btn::before {
      content: "\0025B6";
      font-size: 11px;
    }

    .result-btn::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -60%;
      width: 40%;
      height: 200%;
      background: rgba(255, 255, 255, .35);
      transform: skewX(-20deg);
      animation: resultBtnShine 2.6s ease-in-out infinite;
    }

    .result-btn:active {
      transform: translateY(2px);
      box-shadow: 0 5px 12px rgba(255, 125, 115, .42);
    }

    @keyframes resultBtnShine {
      0% { left: -60%; }
      45%, 100% { left: 130%; }
    }

    .cg-retry {
      margin-top: 7px;
      border: 0;
      background: transparent;
      color: var(--muted);
      font-size: 11.5px;
      font-weight: 950;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      position: relative;
      z-index: 2;
    }

    /* TODAY'S PICK \002500\002500 本日のイチオシ（フィーチャーカード） */
    .pick-box {
      position: relative;
      display: block;
      margin-top: 30px;
      padding: 34px 18px 18px;
      border-radius: 28px;
      background:
        radial-gradient(110% 70% at 0% 0%, rgba(255, 183, 191, .4), transparent 55%),
        radial-gradient(110% 70% at 100% 8%, rgba(155, 220, 192, .28), transparent 52%),
        linear-gradient(180deg, #fffdf8 0%, #fff6ea 100%);
      border: 1px solid rgba(255, 183, 191, .55);
      box-shadow:
        0 18px 38px rgba(120, 78, 24, .16),
        inset 0 0 0 4px rgba(255, 255, 255, .6);
      overflow: hidden;
    }

    .pick-box::after {
      content: "\002726";
      position: absolute;
      top: 12px;
      right: 16px;
      color: rgba(255, 159, 106, .55);
      font-size: 15px;
      text-shadow: 0 0 12px rgba(255, 159, 106, .5);
      animation: ttlTwinkle 2.4s ease-in-out infinite;
    }

    /* 上部の「本日のイチオシ」バナー */
    .pick-banner {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 20px 8px;
      border-radius: 0 0 14px 14px;
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: .12em;
      box-shadow: 0 8px 18px rgba(255, 111, 101, .4);
    }

    .pick-banner::before,
    .pick-banner::after {
      content: "\002605";
      font-size: 10px;
      opacity: .9;
    }

    /* サムネ＋情報の横並び */
    .pick-main {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 124px 1fr;
      gap: 16px;
      align-items: center;
    }

    .pick-thumb {
      position: relative;
      width: 124px;
      height: 124px;
      border-radius: 22px;
      overflow: hidden;
      line-height: 0;
      background: linear-gradient(135deg, #ffb7bf, #ffd978);
      box-shadow:
        0 12px 22px rgba(95, 64, 31, .2),
        inset 0 0 0 3px rgba(255, 255, 255, .85);
    }

    .pick-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .pick-info {
      min-width: 0;
    }

    .pick-kana {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 11px;
      border-radius: 999px;
      background: #eafff4;
      color: #248165;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .1em;
      margin-bottom: 9px;
    }

    .pick-kana::before {
      content: "\002666";
      font-size: 9px;
    }

    .pick-title {
      margin: 0;
      color: var(--text);
      font-size: 19px;
      line-height: 1.45;
      font-weight: 950;
      letter-spacing: .01em;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      overflow: hidden;
    }

    .pick-text {
      position: relative;
      z-index: 1;
      margin: 16px 0 0;
      padding-top: 15px;
      border-top: 1px dashed rgba(255, 183, 191, .8);
      color: var(--muted);
      font-size: 12px;
      line-height: 1.85;
      font-weight: 750;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      overflow: hidden;
    }

    .pick-cta {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      min-height: 54px;
      margin-top: 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: .04em;
      box-shadow: 0 14px 26px rgba(255, 125, 115, .34);
    }

    .pick-cta::before {
      content: "\0025B6";
      font-size: 10px;
    }

    .pick-cta::after {
      content: "\002728";
      font-size: 12px;
    }

    /* CATEGORY \002500\002500 ジャンル別カタログ（コンパクト横スクロール） */
    .cat-zone {
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .cat-row-head {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 10px;
    }

    .cat-row-label {
      display: inline-flex;
      align-items: center;
      padding: 3px 9px;
      border-radius: 999px;
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .07em;
      background: #fff0ef;
      color: var(--main-dark);
      white-space: nowrap;
    }

    .cat-block:nth-child(2) .cat-row-label { background: #eafff4; color: #248165; }
    .cat-block:nth-child(3) .cat-row-label { background: #f3ecff; color: #7a4fb0; }
    .cat-block:nth-child(4) .cat-row-label { background: #fff6da; color: #a5701a; }

    .cat-row-name {
      font-size: 15px;
      font-weight: 950;
      color: var(--text);
    }

    .cat-row-more {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 900;
      color: var(--main-dark);
      white-space: nowrap;
    }

    .cat-row-more::after {
      content: "\0025B6";
      font-size: 7px;
    }

    .cat-row-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .cat-game {
      display: block;
      min-width: 0;
    }

    .cat-game-thumb {
      position: relative;
      aspect-ratio: 1 / 1;
      border-radius: 14px;
      overflow: hidden;
      line-height: 0;
      background: linear-gradient(135deg, #ffb7bf, #ffd978);
      box-shadow: var(--shadow-soft);
    }

    .cat-game-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .cat-game span {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      overflow: hidden;
      margin-top: 6px;
      font-size: 11px;
      line-height: 1.4;
      font-weight: 850;
      color: var(--text);
    }

    .game-scroll {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 26px 22px 8px;
      margin: 0 -22px;
      scroll-snap-type: x mandatory;
    }

    .game-scroll::-webkit-scrollbar {
      display: none;
    }

    .game-card {
      flex: 0 0 148px;
      scroll-snap-align: start;
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(95, 64, 31, .1);
      border: 1px solid rgba(239, 226, 207, .8);
      overflow: hidden;
    }

    .game-thumb {
      height: 104px;
      background: linear-gradient(135deg, #ffd978, #ffb7bf);
      position: relative;
      overflow: hidden;
      line-height: 0;
    }

    .game-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .new-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      padding: 4px 8px;
      border-radius: 999px;
      background: var(--main);
      color: #fff;
      font-size: 9px;
      font-weight: 950;
    }

    .game-body {
      padding: 13px 12px 14px;
    }

    .game-title {
      margin: 0;
      font-size: 13px;
      font-weight: 950;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }

    .game-desc {
      margin: 7px 0 0;
      font-size: 11px;
      line-height: 1.6;
      font-weight: 700;
      color: var(--muted);
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }

    .ranking-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    /* 1位：チャンピオンカード（小さめサムネ＋横並び） */
    .rank-top {
      position: relative;
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 24px;
      background:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 191, 67, .35), transparent 58%),
        linear-gradient(180deg, #fffdf8, #fff4e2);
      border: 1px solid rgba(240, 165, 54, .42);
      box-shadow: 0 16px 32px rgba(120, 78, 24, .18);
      overflow: hidden;
    }

    .rank-top-thumb {
      position: relative;
      width: 92px;
      height: 92px;
      border-radius: 18px;
      overflow: hidden;
      line-height: 0;
      background: #f8eddb;
      box-shadow: 0 8px 16px rgba(95, 64, 31, .18);
    }

    .rank-top-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .rank-top-no {
      position: absolute;
      top: 6px;
      left: 6px;
      z-index: 2;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #ffd24a, #f0a536);
      color: #5b3d10;
      font-size: 13px;
      font-weight: 950;
      box-shadow: 0 4px 10px rgba(240, 165, 54, .5);
    }

    .rank-top-body {
      min-width: 0;
    }

    .rank-top-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 11px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffd24a, #f0a536);
      color: #5b3d10;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .05em;
      box-shadow: 0 6px 14px rgba(240, 165, 54, .4);
    }

    .rank-top-name {
      margin: 8px 0 0;
      color: var(--text);
      font-size: 16px;
      line-height: 1.4;
      font-weight: 950;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }

    .rank-top-desc {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 11.5px;
      line-height: 1.7;
      font-weight: 750;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      overflow: hidden;
    }

    /* 2〜5位：コンパクトリスト */
    .ranking-item {
      display: grid;
      grid-template-columns: 26px 58px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 11px 14px 11px 12px;
      border-radius: 20px;
      background: #fff;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(239, 226, 207, .75);
    }

    .rank-no {
      text-align: center;
      font-size: 18px;
      font-weight: 950;
      font-style: italic;
      color: #c9b79c;
      line-height: 1;
    }

    .rank-thumb {
      position: relative;
      width: 58px;
      height: 58px;
      border-radius: 16px;
      overflow: hidden;
      line-height: 0;
      background: #f8eddb;
    }

    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .rank-info {
      min-width: 0;
    }

    .rank-title {
      margin: 4px 0 0;
      font-size: 13.5px;
      font-weight: 950;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow: hidden;
    }

    .rank-label {
      display: inline-flex;
      align-items: center;
      padding: 3px 9px;
      border-radius: 999px;
      background: #f4f6f9;
      font-size: 9px;
      font-weight: 950;
      letter-spacing: .04em;
      color: #6b7280;
      white-space: nowrap;
    }

    .ranking-item:nth-child(2) .rank-label { background: #eef1f6; color: #7c8595; }
    .ranking-item:nth-child(3) .rank-label { background: #f6ece1; color: #b07a45; }

    .rank-arrow {
      color: var(--main);
      font-size: 11px;
      font-weight: 900;
    }

    .register-benefits {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .register-benefit {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 13px;
      align-items: center;
      padding: 14px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(239, 226, 207, .75);
      box-shadow: var(--shadow-soft);
    }

    .register-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(255, 217, 120, .34);
      font-size: 27px;
    }

    .register-benefit:nth-child(2) .register-icon { background: rgba(155, 220, 192, .34); }
    .register-benefit:nth-child(3) .register-icon { background: rgba(255, 183, 191, .34); }
    .register-benefit:nth-child(4) .register-icon { background: rgba(141, 201, 245, .34); }

    .register-title {
      margin: 0;
      font-size: 14px;
      font-weight: 950;
    }

    .register-text {
      margin: 5px 0 0;
      font-size: 11px;
      line-height: 1.65;
      color: var(--muted);
      font-weight: 750;
    }

    /* HOW TO PLAY \002500\002500 没入型フロー・ステージ */
    .flow-stage {
      position: relative;
      margin-top: 24px;
      padding: 14px 14px 18px;
      border-radius: 32px;
      background:
        radial-gradient(120% 70% at 10% 0%, rgba(141, 201, 245, .5), transparent 52%),
        radial-gradient(130% 80% at 92% 98%, rgba(155, 220, 192, .5), transparent 55%),
        linear-gradient(165deg, #2f5fa0 0%, #4a86b0 42%, #5aa896 72%, #79c08a 100%);
      box-shadow: 0 24px 48px rgba(30, 60, 110, .34);
      overflow: hidden;
    }

    .flow-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, .5) 1.4px, transparent 1.8px),
        radial-gradient(circle at 80% 22%, rgba(255, 255, 255, .45) 1.2px, transparent 1.6px),
        radial-gradient(circle at 62% 70%, rgba(255, 255, 255, .4) 1.3px, transparent 1.7px);
      background-size: 150px 150px, 180px 180px, 130px 130px;
      pointer-events: none;
    }

    .flow-stage__screen {
      position: relative;
      z-index: 2;
      margin: -14px -14px 0;
      border-radius: 32px 32px 0 0;
      overflow: hidden;
      line-height: 0;
    }

    .flow-stage__screen img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      display: block;
    }

    .flow-stage__screen::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 38%;
      background: linear-gradient(to top, #2f5fa0 0%, rgba(47, 95, 160, .55) 36%, transparent 100%);
      pointer-events: none;
    }

    .flow-stage__badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .94);
      color: #2f5fa0;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .12em;
      box-shadow: 0 6px 16px rgba(30, 60, 110, .35);
    }

    .flow-stage__badge::before {
      content: "\01F3AE";
      font-size: 11px;
    }

    .flow-stage__lead {
      position: relative;
      z-index: 2;
      margin: 16px 4px 14px;
      color: #fff;
      font-size: 14px;
      line-height: 1.6;
      font-weight: 950;
      letter-spacing: .02em;
      text-shadow: 0 2px 10px rgba(20, 40, 80, .45);
    }

    .flow-stage__lead .em-gold {
      color: #ffd978;
      text-shadow: 0 0 16px rgba(255, 214, 120, .65);
    }

    .flow-steps {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 10px;
    }

    .flow-step {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 13px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(18, 42, 78, .42);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .24);
      box-shadow: 0 8px 20px rgba(20, 40, 80, .26), inset 0 1px 0 rgba(255, 255, 255, .2);
    }

    .flow-step__no {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #ffd24a, #f0a536);
      color: #5b3d10;
      font-size: 17px;
      font-weight: 950;
      box-shadow: 0 6px 14px rgba(240, 165, 54, .5);
    }

    .flow-step__body {
      min-width: 0;
    }

    .flow-step__body h3 {
      margin: 0;
      color: #fff;
      font-size: 15px;
      font-weight: 950;
      line-height: 1.4;
    }

    .flow-step__body p {
      margin: 4px 0 0;
      color: rgba(255, 255, 255, .85);
      font-size: 11.5px;
      line-height: 1.6;
      font-weight: 700;
    }

    .flow-step__icon {
      font-size: 22px;
      filter: drop-shadow(0 3px 6px rgba(20, 40, 80, .4));
    }

    .voice-list {
      display: grid;
      gap: 16px;
      margin-top: 26px;
    }

    .voice {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 14px;
      align-items: start;
    }

    .avatar {
      position: relative;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 26px;
      background: linear-gradient(135deg, #ffb7bf, #ffd978);
      border: 3px solid #fff;
      box-shadow: 0 8px 16px rgba(95, 64, 31, .16);
    }

    .voice:nth-child(2) .avatar { background: linear-gradient(135deg, #9bdcc0, #8dc9f5); }
    .voice:nth-child(3) .avatar { background: linear-gradient(135deg, #c9a9f4, #ffb7bf); }

    .voice-balloon {
      position: relative;
      padding: 14px 16px;
      border-radius: 6px 18px 18px 18px;
      background: #fff;
      border: 1px solid rgba(239, 226, 207, .85);
      box-shadow: 0 10px 22px rgba(95, 64, 31, .1);
    }

    .voice-balloon::before {
      content: "";
      position: absolute;
      top: 15px;
      left: -7px;
      width: 13px;
      height: 13px;
      background: #fff;
      border-left: 1px solid rgba(239, 226, 207, .85);
      border-bottom: 1px solid rgba(239, 226, 207, .85);
      transform: rotate(45deg);
    }

    .voice-stars {
      display: block;
      margin-bottom: 6px;
      color: #ffb300;
      font-size: 12px;
      letter-spacing: 2px;
    }

    .voice-text {
      margin: 0;
      font-size: 12.5px;
      line-height: 1.8;
      font-weight: 800;
      color: var(--text);
    }

    /* FINAL CTA \002500\002500 没入型ポスター（最終CV） */
    .final {
      padding: 44px 18px 100px;
      position: relative;
    }

    .final-box {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .16);
      box-shadow: 0 28px 60px rgba(50, 26, 80, .42);
    }

    .final-img {
      width: 100%;
      aspect-ratio: 3 / 2;
      object-fit: cover;
      display: block;
    }

    .final-content {
      position: relative;
      margin-top: -36px;
      padding: 28px 22px 32px;
      border-radius: 30px 30px 0 0;
      text-align: left;
      background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 159, 106, .3), transparent 60%),
        linear-gradient(180deg, #3a2566 0%, #2a1852 58%, #221446 100%);
      box-shadow: 0 -12px 30px rgba(20, 10, 44, .4);
    }

    .final-kicker {
      margin-left: 0;
      color: #ffe39a;
      text-shadow: 0 0 16px rgba(255, 214, 120, .7);
    }

    .final-title {
      margin: 0;
      color: #fff;
      font-size: 25px;
      line-height: 1.6;
      font-weight: 950;
      text-shadow: 0 2px 18px rgba(15, 8, 35, .75);
    }

    .final-brand {
      background: linear-gradient(120deg, #ffe08a 0%, #ff9f6a 50%, #ff8177 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .final-hl {
      position: relative;
      display: inline-block;
    }

    .final-text {
      margin: 14px 0 0;
      text-align: left;
      font-size: 13px;
      line-height: 2;
      color: rgba(255, 255, 255, .92);
      font-weight: 750;
      text-shadow: 0 1px 10px rgba(15, 8, 35, .65);
    }

    .final-cta {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      height: 62px;
      margin-top: 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ff8177, #ff6f65);
      color: #fff;
      font-size: 16px;
      font-weight: 950;
      border: 0;
      overflow: hidden;
      animation: finalCtaPulse 2.4s ease-in-out infinite;
    }

    .final-cta::after {
      content: "\00203A";
      font-size: 27px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .final-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: -65%;
      width: 50%;
      height: 100%;
      background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
      transform: skewX(-20deg);
      animation: ctaShine 3.2s ease-in-out infinite;
    }

    @keyframes finalCtaPulse {
      0%, 100% { box-shadow: 0 16px 30px rgba(255, 90, 80, .45), 0 0 0 0 rgba(255, 129, 119, .5); }
      50% { box-shadow: 0 20px 38px rgba(255, 90, 80, .6), 0 0 0 12px rgba(255, 129, 119, 0); }
    }

    @keyframes ctaShine {
      0% { left: -65%; }
      55% { left: 130%; }
      100% { left: 130%; }
    }

    .final-sublink {
      display: inline-flex;
      justify-content: center;
      width: 100%;
      margin-top: 16px;
      color: rgba(255, 255, 255, .9);
      font-size: 12px;
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* ===== フッター（リニューアル） ===== */
    .site-footer {
      position: relative;
      padding: 34px 20px calc(96px + env(safe-area-inset-bottom));
      background: linear-gradient(180deg, #fff4e1 0%, #ffe9cb 100%);
      color: var(--text);
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #ff7d73, #ffd978 50%, #9bdcc0);
    }

    .site-footer__glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(120% 55% at 50% 0%, rgba(255, 143, 107, .12), transparent 60%);
    }

    .site-footer__inner {
      position: relative;
      z-index: 1;
      max-width: 360px;
      margin: 0 auto;
    }

    .site-footer__brand {
      text-align: center;
      margin-bottom: 20px;
    }

    .site-footer__logo {
      display: block;
      height: 26px;
      width: auto;
      margin: 0 auto 9px;
    }

    .site-footer__tagline {
      margin: 0;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      color: rgba(51, 36, 26, .55);
    }

    .foot-list {
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid rgba(51, 36, 26, .1);
      border-left: 1px solid rgba(51, 36, 26, .1);
    }

    .foot-list li {
      min-width: 0;
      border-right: 1px solid rgba(51, 36, 26, .1);
      border-bottom: 1px solid rgba(51, 36, 26, .1);
    }

    .foot-list a {
      display: flex;
      align-items: center;
      gap: 7px;
      min-width: 0;
      padding: 12px 10px;
      font-size: 12px;
      font-weight: 800;
      color: rgba(51, 36, 26, .82);
      overflow-wrap: anywhere;
      word-break: break-word;
      transition: color .15s ease, background .15s ease;
    }

    .foot-list a::before {
      content: "\0025B8";
      flex-shrink: 0;
      font-size: 10px;
      color: #ff7d5e;
    }

    .foot-list a:active {
      color: var(--text);
      background: rgba(255, 125, 94, .12);
    }

    .site-footer__bar {
      position: relative;
      z-index: 1;
      margin-top: 20px;
      text-align: center;
    }

    .site-footer__bar .copy {
      margin: 0;
      font-size: 10px;
      letter-spacing: .08em;
      color: rgba(51, 36, 26, .45);
    }

    .fixed-cta {
      position: fixed;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%) translateY(24px);
      width: min(calc(100% - 28px), 402px);
      height: auto;
      min-height: 56px;
      padding: 10px 24px;
      z-index: 80;
      border-radius: 999px;
      background:
        linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(255, 255, 255, .12)),
        linear-gradient(115deg, #ff5a52 0%, #e11d2a 22%, #ff7a5b 48%, #d11530 72%, #ff5a52 100%);
      background-size: auto, 230% 100%;
      animation: regGradient 4.5s linear infinite;
      color: #fff;
      box-shadow: 0 14px 28px rgba(200, 30, 45, .38);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 950;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    }

    .fixed-cta.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .fixed-cta::after {
      content: "\00203A";
      margin-left: 8px;
      font-size: 24px;
      transform: translateY(-1px);
    }

    /* ボタン内の価格テキスト */
    .reg-btn__price {
      display: block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .78);
      text-shadow: none;
      margin-top: 2px;
    }

    .fixed-cta__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1px;
    }

    .fixed-cta__price {
      display: block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .78);
    }

    @media (max-width: 360px) {
      .hero-copy {
        font-size: 28px;
      }

      .header {
        padding-left: 14px;
        padding-right: 12px;
      }

      .mini-btn {
        padding: 0 11px;
      }

      .pick-main {
        grid-template-columns: 96px 1fr;
      }

      .pick-thumb {
        width: 96px;
        height: 96px;
      }

      .cg-level {
        font-size: 11px;
      }
    }
  
