    
    :root {
      --bp-mobile-base: 390px;
      --bp-tablet: 800px;
      --bp-pc: 1440px;
      --main-section-max-width: var(--bp-mobile-base);
      --intro-video-parallax-active-travel: 72px;
      --connect-area-parallax-active-travel: 120px;
      --connect-label-parallax-shift: 22px;
      --notice-video-overlap-shift: 72px;
      --intro-video-overlap-shift: 128px;
      --play-connect-overlap-shift: 72px;
      --campaign-connect-overlap-shift: 128px;
      
      --intro-video-section-height: 480px;
      --intro-video-inner-min-height: 640px;
    }
    @media (min-width: 800px) {
      :root {
        --main-section-max-width: var(--bp-tablet);
        --intro-video-section-height: 596px;
        
        --intro-video-inner-min-height: calc(640px * 596 / 480);
      }
    }
    @media (min-width: 1440px) {
      :root {
        --main-section-max-width: var(--bp-pc);
        
        --campaign-section-pc-width: var(--bp-pc);
        --intro-video-section-height: 932px;
        --intro-video-inner-min-height: calc(640px * 932 / 480);
      }
    }
    
    *, *::before, *::after { box-sizing: border-box; }
    
    html {
      max-width: 100%;
      overflow-x: hidden;
    }
    
    
    body {
      margin: 0;
      padding: 0;
      padding-bottom: 100px;
      font-family: "M PLUS 1p", sans-serif;
      min-width: 0;
      max-width: 100%;
      overflow-x: hidden;
      background: #f1f7ff;
      position: relative;
    }
    body.is-scroll-locked {
      position: fixed;
      left: 0;
      right: 0;
      width: 100%;
      overflow: hidden;
    }

    
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: calc(48px + env(safe-area-inset-top));
      padding: calc(8px + env(safe-area-inset-top)) 20px 8px;
      min-width: 0;
      box-sizing: border-box;
      background: transparent;
      box-shadow: none;
      transition: box-shadow 0.35s ease-out;
    }
    
    .header::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.5));
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      transition: opacity 0.35s ease-out;
    }
    .header.is-scrolled {
      box-shadow: 0 4px 8px 0 rgba(160, 190, 201, 0.1);
    }
    .header.is-scrolled::before {
      opacity: 1;
    }
    @media (prefers-reduced-motion: reduce) {
      .header,
      .header::before,
      .header__brand {
        transition: none;
      }
    }

    .header__brand {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
      flex: 1 1 auto;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease-out;
    }
    .header.is-scrolled .header__brand {
      opacity: 1;
      pointer-events: auto;
    }
    .header__logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      min-width: 0;
      text-decoration: none;
    }
    .header__logo:hover { opacity: 0.8; }
    .header__logo img {
      display: block;
      height: 26px;
      width: 88px;
      max-width: 88px;
      object-fit: contain;
      object-position: left center;
    }
    .header__tagline {
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-shrink: 0;
      color: #5f6dff;
      font-family: "M PLUS 1p", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      line-height: 1.27;
      white-space: nowrap;
    }
    .header__tagline-line {
      margin: 0;
    }
    .header__pc-nav {
      display: none;
    }

    .header__menu-btn {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
    }
    .header__menu-btn:hover { opacity: 0.8; }
    .header__menu-btn img {
      display: block;
      width: 24px;
      height: 24px;
      object-fit: contain;
    }
    @media (min-width: 1440px) {
      .header {
        padding: calc(8px + env(safe-area-inset-top)) 48px 8px;
      }
      .header__pc-nav {
        display: flex;
        align-items: center;
        gap: 44px;
        flex-shrink: 0;
        opacity: 1;
        pointer-events: auto;
      }
      .header__pc-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #333c4d;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
      }
      .header__pc-link:hover {
        opacity: 0.7;
      }
      .header__menu-btn {
        display: none;
      }
    }

    
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      width: 100%;
      min-height: 100vh;
      min-height: 100dvh;
      background: rgba(236, 242, 255, 0.9);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
    }
    .modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    
    .modal-overlay--center {
      align-items: center;
      justify-content: center;
    }

    
    .modal__panel {
      width: 100%;
      max-width: none;
      height: 100%;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      background: transparent;
      padding: 0;
      padding-top: env(safe-area-inset-top);
      padding-bottom: calc(24px + env(safe-area-inset-bottom));
      overflow: auto;
      align-items: center;
    }

    
    .modal__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 8px 20px;
      flex-shrink: 0;
      min-height: 48px;
      box-sizing: border-box;
    }
    .modal__logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .modal__logo:hover { opacity: 0.8; }
    
    .modal__logo img {
      display: block;
      height: 26px;
      width: 88px;
      object-fit: contain;
      object-position: left center;
    }
    .modal__close {
      width: 24px;
      height: 24px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
    }
    .modal__close:hover { opacity: 0.8; }
    
    .modal__close img {
      display: block;
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .modal__menu-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
      flex: 1;
      padding: 0 8px;
      justify-content: center;
    }
    .modal__heading {
      margin: 0;
      font-size: 16px;
      font-weight: 800;
      color: #5f6dff;
      letter-spacing: 0.1em;
    }
    .modal__nav {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .modal__nav li { margin: 0; }
    .modal__nav a {
      display: block;
      font-size: 21px;
      font-weight: 700;
      color: #333c4d;
      text-decoration: none;
      letter-spacing: 0.1em;
    }
    .modal__nav a:hover { opacity: 0.85; }

    .modal__stores {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-top: 0;
      padding-top: 10px;
      flex-shrink: 0;
    }
    .modal__campaign-bubble {
      margin: 0;
      padding: 0;
      background: transparent;
      text-align: center;
      line-height: 0;
    }
    
    .modal__campaign-bubble img {
      display: block;
      width: 218px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }
    .modal__store-btns {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }
    .modal__store-btn {
      display: inline-block;
      padding: 0;
      border: none;
      background: transparent;
      text-decoration: none;
      cursor: pointer;
      line-height: 0;
    }
    .modal__store-btn:hover { opacity: 0.9; }
    .modal__store-btn img {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
    }
    
    .notice-modal .notice-modal__wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: 100%;
      max-width: 326px;
      margin: 0 8px;
    }
    .notice-modal .notice-modal__box {
      width: 100%;
      padding: 8px;
      border: 1px solid #d9fdfa;
      border-radius: 24px;
      background: linear-gradient(141.89deg, rgba(163, 214, 255, 0.6) 0%, rgba(149, 177, 228, 0.6) 50%, rgba(145, 162, 235, 0.6) 100%);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .notice-modal .notice-modal__box::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
      pointer-events: none;
    }
    .notice-modal .notice-modal__inner {
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 320px;
      height: 480px;
      max-height: min(480px, 85vh);
      padding: 24px 16px 16px;
      background: #f5f8ff;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      position: relative;
      box-sizing: border-box;
    }
    .notice-modal .notice-modal__head {
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex-shrink: 0;
    }
    .notice-modal .notice-modal__title {
      margin: 0;
      min-height: 40px;
      display: flex;
      align-items: center;
      font-size: 16px;
      font-weight: 700;
      color: #4a5161;
      line-height: 1.25;
    }
    .notice-modal .notice-modal__divider {
      margin: 0;
      border: none;
      border-bottom: 1px solid #dde4f0;
      flex-shrink: 0;
    }
    .notice-modal .notice-modal__content {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1 1 0;
      min-height: 0;
      overflow: hidden;
    }
    .notice-modal .notice-modal__date {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: #4a5161;
      line-height: 1.5;
      flex-shrink: 0;
    }
    .notice-modal .notice-modal__body {
      margin: 0;
      font-size: 14px;
      font-weight: 500;
      color: #4a5161;
      line-height: 1.6;
      text-align: justify;
      overflow-y: auto;
      flex: 1 1 0;
      min-height: 0;
    }
    .notice-modal .notice-modal__body p { margin: 0 0 8px; }
    .notice-modal .notice-modal__body p:last-child { margin-bottom: 0; }
    @media (max-width: 1439.98px) {
      .notice-modal .notice-modal__title,
      .notice-modal .notice-modal__date,
      .notice-modal .notice-modal__body {
        text-align: left;
      }
    }
    .notice-modal .notice-modal__close {
      padding: 8px 16px;
      border: none;
      background: transparent;
      font-size: 16px;
      font-weight: 700;
      color: #333c4d;
      letter-spacing: 0.1em;
      cursor: pointer;
    }
    .notice-modal .notice-modal__close:hover { opacity: 0.85; }
    @media (min-width: 1440px) {
      .notice-modal .notice-modal__wrap {
        max-width: 656px;
        margin: 0;
      }
      .notice-modal .notice-modal__box {
        width: 656px;
      }
      .notice-modal .notice-modal__inner {
        height: 480px;
        max-height: 480px;
      }
    }
    
    .play-modal .play-modal__wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      width: 100%;
      max-width: 342px;
      margin: 0 8px;
    }
    .play-modal .play-modal__card {
      flex-shrink: 0;
      width: 252px;
      height: 419px;
      border: none;
      border-radius: 24px;
      box-shadow: 8px 20px 20px rgba(53, 65, 160, 0.3);
      overflow: hidden;
      transform: translateY(-15px) rotate(3deg);
      background: transparent;
      touch-action: pan-y;
      user-select: none;
      cursor: grab;
    }
    .play-modal .play-modal__card:active { cursor: grabbing; }
    .play-modal .play-modal__card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }
    .play-modal .play-modal__caption {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      width: 342px;
      min-height: 56px;
      gap: 9px;
    }
    .play-modal .play-modal__caption-text {
      margin: 0;
      min-height: 27px;
      font-family: "M PLUS 1p", sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.5;
      text-align: center;
      white-space: nowrap;
    }
    .play-modal .play-modal__caption-copy {
      background-image: linear-gradient(135deg, #4f5fff 6%, #4f9bff 53%, #e570ff 94%);
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
    }
    .play-modal .play-modal__caption-emoji {
      color: #333c4d;
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
    }
    .play-modal .play-modal__caption-line {
      width: 342px;
      height: 1px;
      background: rgba(255, 255, 255, 0.92);
      flex-shrink: 0;
    }
    .play-modal .play-modal__location {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-height: 21px;
      color: #6f7787;
      font-family: "Noto Sans JP", "Noto Sans", "M PLUS 1p", sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
    }
    .play-modal .play-modal__location-pin {
      display: block;
      width: 12px;
      height: 12px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .play-modal .play-modal__controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 310px;
      margin-top: 2px;
    }
    .play-modal .play-modal__arrow {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.36);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      color: #333c4d;
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    }
    .play-modal .play-modal__arrow:hover:not(:disabled) { background: rgba(255, 255, 255, 0.5); }
    .play-modal .play-modal__arrow:disabled { opacity: 0.4; cursor: not-allowed; }
    .play-modal .play-modal__close {
      padding: 8px 12px;
      border: none;
      background: transparent;
      font-size: 16px;
      font-weight: 700;
      color: #333c4d;
      letter-spacing: 0.1em;
      cursor: pointer;
    }
    .play-modal .play-modal__close:hover { opacity: 0.85; }
    .play-modal .play-modal__counter {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    
    
    main {
      min-height: 120vh;
      padding: 0 0 24px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow-x: hidden;
      position: relative;
      z-index: 2;
      box-sizing: border-box;
    }
    
    .main__section {
      margin-top: 0;
      margin-left: auto;
      margin-right: auto;
      padding-top: 0;
      width: 100%;
      max-width: var(--main-section-max-width);
      box-sizing: border-box;
      background: #f1f7ff;
    }
    .main__section:first-of-type { margin-top: 0; padding-top: 0; }
    
    .main__section.notice {
      background: transparent;
    }
    
    .main__section--kv {
      position: relative;
      z-index: 4;
      margin-top: 0;
      padding-top: 0;
      box-sizing: border-box;
      height: 672px;
      min-height: 672px;
      max-height: 672px;
      overflow: hidden;
    }
    
    @keyframes kv-visual-fade-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes kv-logo-rise-fade {
      from {
        opacity: 0;
        transform: translate(-50%, 20px);
      }
      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }
    @keyframes kv-copy-rise-fade {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .kv__logo-overlay {
      position: absolute;
      top: 64px;
      left: 50%;
      z-index: 10;
      width: min(180px, 50%);
      height: auto;
      pointer-events: none;
      animation: kv-logo-rise-fade 0.5s ease-out 0.45s both;
    }
    
    .kv__visual {
      margin: 0 0 12px;
      line-height: 0;
      animation: kv-visual-fade-in 0.55s ease-out both;
    }
    .kv__copy-wrap {
      position: absolute;
      top: 611px;
      left: 0;
      right: 0;
      z-index: 10;
      margin: 0;
      padding: 0 20px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      line-height: 0;
      pointer-events: none;
    }
    .kv__copy {
      display: block;
      width: min(100%, 717px);
      height: auto;
      animation: kv-copy-rise-fade 0.5s ease-out 0.92s both;
    }
    .kv__pc-side {
      display: none;
    }
    .kv__visual picture {
      display: block;
    }
    .kv__visual img {
      display: block;
      width: 100%;
      height: auto;
      vertical-align: top;
      object-fit: contain;
    }
    @media (prefers-reduced-motion: reduce) {
      .kv__visual,
      .kv__logo-overlay,
      .kv__copy {
        animation: none;
        opacity: 1;
      }
      .kv__logo-overlay {
        transform: translateX(-50%);
      }
      .kv__copy {
        transform: none;
      }
    }
    
    .main__section--kv + .main__section { margin-top: 0; padding-top: 0; }
    @media (min-width: 800px) and (max-width: 1439.98px) {
      .main__section--kv {
        height: 730px;
        min-height: 730px;
        max-height: 730px;
      }
      .kv__copy-wrap {
        top: 660px;
      }
      .kv__copy {
        width: 435px;
        height: 45px;
        max-width: 100%;
        object-fit: contain;
      }
    }
    @media (min-width: 1440px) {
      .main__section--kv {
        height: 825px;
        min-height: 825px;
        max-height: 825px;
      }
      .kv__logo-overlay {
        display: none;
      }
      .kv__copy-wrap {
        top: 720px;
      }
      .kv__pc-side {
        position: absolute;
        top: 273px;
        right: 104px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 334px;
        color: #415ea2;
        text-align: center;
      }
      .kv__pc-tagline {
        margin: 0 0 12px;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: #415ea2;
        white-space: nowrap;
      }
      .kv__pc-logo {
        display: block;
        width: 320px;
        height: auto;
        margin: 0 0 28px;
      }
      .kv__pc-schedule {
        margin: 0 0 18px;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 800;
        color: #333c4d;
        white-space: nowrap;
      }
      .kv__pc-campaign-badge {
        display: block;
        width: 222px;
        height: auto;
        margin: 0 0 18px;
      }
      .kv__pc-store-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
      }
      .kv__pc-store-list a {
        display: block;
        line-height: 0;
      }
      .kv__pc-store-list img {
        display: block;
        height: 40px;
        width: auto;
        object-fit: contain;
      }
    }
    
    #how-to-enjoy {
      background: #f1f7ff;
      isolation: isolate;
      position: relative;
      z-index: 2;
    }
    
    .main__section--intro {
      position: relative;
      z-index: 3;
      background: #f1f7ff;
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: visible;
      will-change: transform;
    }
    
    .intro__mask {
      position: absolute;
      top: calc(-40px * max(1, 100vw / var(--bp-mobile-base)));
      left: 0;
      right: 0;
      width: 100%;
      box-sizing: border-box;
      z-index: 0;
      pointer-events: none;
      line-height: 0;
    }
    .intro__mask img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    .main__section--intro > h2,
    .main__section--intro > .intro__logo,
    .main__section--intro > .intro__welcome,
    .main__section--intro > .intro__body {
      position: relative;
      z-index: 1;
    }
    .intro__logo {
      margin: 0 0 8px;
      line-height: 0;
    }
    .intro__logo img {
      display: block;
      height: 37px;
      width: auto;
      object-fit: contain;
    }
    .intro__welcome {
      margin: 0 0 24px;
      font-size: 20px;
      font-weight: 800;
      color: #333c4d;
      letter-spacing: 0.125em;
      line-height: normal;
    }
    .intro__body {
      margin: 0;
      max-width: 261px;
      font-size: 14px;
      font-weight: 700;
      color: #6f7787;
      letter-spacing: 0.12em;
      line-height: 2.7;
    }
    .intro__body p { margin: 0; }
    
    .intro-fade-in {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .intro-fade-in.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .intro__logo.intro-fade-in { transition-delay: 0s; }
    .intro__welcome.intro-fade-in { transition-delay: 0.1s; }
    .intro__body.intro-fade-in { transition-delay: 0.2s; }
    
    .intro__floats {
      bottom: 0;
      clip-path: none;
      left: 0;
      overflow: visible;
      pointer-events: none;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 3;
      -webkit-clip-path: none;
    }
    .intro__float {
      line-height: 0;
      margin: 0;
      padding: 0;
      position: absolute;
      transform: scale(0.5);
    }
    .intro__float img {
      display: block;
      height: auto;
      max-width: none;
      width: auto;
    }
    .intro__float--phonebooth {
      left: 15%;
      top: 6%;
      transform: scale(0.5);
      transform-origin: top left;
    }
    .intro__float--garden {
      left: -15%;
      top: 15%;
      transform: scale(0.5);
      transform-origin: top left;
    }
    .intro__float--audioroom {
      left: 0;
      top: 76%;
      transform: scale(0.5);
      transform-origin: top left;
    }
    .intro__float--car {
      left: auto;
      right: 8%;
      top: -2%;
      transform: scale(0.5);
      transform-origin: top right;
    }
    .intro__float--yashiki {
      left: auto;
      right: -16%;
      top: 15%;
      transform: scale(0.5);
      transform-origin: top right;
    }
    .intro__float--camp {
      left: auto;
      right: -4%;
      top: 75%;
      transform: scale(0.5);
      transform-origin: top right;
    }
    @media (min-width: 1440px) {
      .intro__floats {
        left: 200px;
        right: 200px;
      }
    }
    @media (max-width: 799.98px) {
      .intro__floats {
        display: none;
      }
    }
    
    .main__section--campaign {
      background: #f1f7ff;
      display: flex;
      flex-direction: column;
      height: 1040px;
      min-height: 1040px;
      max-height: 1040px;
      box-sizing: border-box;
      isolation: isolate;
      overflow: visible;
      padding: 0;
      position: relative;
      
      z-index: 1;
      will-change: transform;
    }
    
    .campaign__header-mask {
      position: absolute;
      top: calc(-100% * 40 / 1040);
      left: 0;
      width: 100%;
      z-index: -1;
      pointer-events: none;
      line-height: 0;
    }
    @media (min-width: 800px) {
      .campaign__header-mask {
        top: calc(
          -100% * 40 / 1040 *
            max(1, min(100vw, var(--main-section-max-width)) / var(--bp-mobile-base))
        );
      }
    }
    .campaign__header-mask img {
      display: block;
      width: 100%;
      height: auto;
      vertical-align: top;
      object-fit: cover;
      object-position: top center;
    }
    
    .campaign__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      bottom: 0;
      z-index: 0;
      pointer-events: none;
      line-height: 0;
      overflow: hidden;
    }
    .campaign__bg img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: fill;
      object-position: top center;
    }
    
    .main__section--campaign .campaign__inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
      width: 100%;
      margin: 35px auto 0;
    }
    
    
    .campaign__inner {
      position: relative;
      z-index: 1;
      align-items: center;
      max-width: var(--main-section-max-width);
      width: 100%;
      margin: 0 auto;
      padding: 0;
      box-sizing: border-box;
    }
    
    @media (min-width: 800px) {
      .campaign__inner {
        width: var(--bp-mobile-base);
        max-width: var(--bp-mobile-base);
      }
      .campaign__inner > .campaign__step {
        transform: translateY(-10px);
      }
      .main__section--campaign > .campaign__cta {
        max-width: var(--bp-mobile-base);
      }
    }
    .campaign__title {
      line-height: 0;
      margin-bottom: 6px;
      flex-shrink: 0;
    }
    .campaign__title img {
      display: block;
      width: 100%;
      max-width: 320px;
      height: auto;
      object-fit: contain;
    }
    .campaign__copy {
      margin: 0 0 6px;
      text-align: center;
      color: #333c4d;
      line-height: 28px;
      font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
      flex-shrink: 0;
    }
    .campaign__copy-line {
      display: block;
    }
    .campaign__copy-line--lead { font-size: 16px; font-weight: 500; }
    .campaign__copy-line--main { font-size: 20px; font-weight: 500; }
    
    .campaign__pc-cards-row-break {
      display: none;
    }
    
    .campaign__pc-lower-slot {
      display: none;
    }
    
    .campaign__line {
      position: absolute;
      z-index: 0;
      line-height: 0;
      pointer-events: none;
    }
    .campaign__line img {
      display: block;
      width: 121px;
      height: auto;
      max-width: 31vw;
    }
    
    .campaign__line--ltor {
      left: calc(25px + 160px + 18px);
      top: calc(176px + 64px);
      right: auto;
      transform: scale(0.5);
      transform-origin: top left;
    }
    
    .campaign__line--rtol-a {
      right: calc(25px + 160px + 19px);
      left: auto;
      top: calc(176px + 100px + 19px + 66px);
      transform: scale(0.5);
      transform-origin: top right;
    }
    
    .campaign__line--ltor-b {
      left: calc(25px + 160px + 18px);
      top: calc(176px + 100px + 144px + 64px);
      right: auto;
      transform: scale(0.5);
      transform-origin: top left;
    }
    
    .campaign__line--rtol-b {
      right: calc(25px + 160px + 19px);
      left: auto;
      top: calc(176px + 100px + 144px + 100px + 19px + 66px);
      transform: scale(0.5);
      transform-origin: top right;
    }
    .campaign__step {
      position: absolute;
      z-index: 1;
      width: 160px;
      height: 196px;
      box-sizing: border-box;
    }
    .campaign__step--left {
      left: 0;
    }
    .campaign__step--right {
      right: 0;
    }
    
    .campaign__inner > .campaign__step {
      --campaign-y1-thumb-size: 135%;
      overflow: visible;
    }
    .campaign__inner > .campaign__step .campaign__step-frame-img {
      position: absolute;
      left: 50%;
      top: 50%;
      width: var(--campaign-y1-thumb-size);
      height: var(--campaign-y1-thumb-size);
      max-width: none;
      object-fit: contain;
      transform: translate(-50%, -50%);
      z-index: 0;
    }
    .campaign__inner > .campaign__step--y1.campaign__step--left {
      left: 25px;
      top: 176px;
      z-index: 2;
    }
    
    .campaign__step-badge {
      position: absolute;
      left: 50%;
      top: 3px;
      transform: translate(-50%, -50%);
      z-index: 3;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      max-width: calc(100% - 8px);
      width: max-content;
      border: none;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .campaign__step-badge p {
      margin: 0;
      font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      text-align: center;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }
    .campaign__step-badge-num {
      font-size: 17.64px;
    }
    .campaign__step-badge-suffix {
      font-size: 13.72px;
      letter-spacing: 0.08em;
    }
    .campaign__step-rewardline {
      position: absolute;
      left: 50%;
      bottom: 34px;
      transform: translateX(-50%);
      z-index: 2;
      margin: 0;
      padding: 0;
      text-align: center;
      color: #6f7787;
      font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      pointer-events: none;
    }
    .campaign__step-rewardline-amount {
      font-size: 26.46px;
      letter-spacing: -0.02em;
    }
    .campaign__step-rewardline-unit {
      font-size: 15.68px;
    }
    .campaign__step--y1 .campaign__step-rewardline,
    .campaign__step--y5 .campaign__step-rewardline,
    .campaign__step--y1 .campaign__step-rewardline-amount,
    .campaign__step--y5 .campaign__step-rewardline-amount,
    .campaign__step--y1 .campaign__step-rewardline-unit,
    .campaign__step--y5 .campaign__step-rewardline-unit {
      font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    }
    .campaign__step-rewardline--item {
      font-size: 13.72px;
      font-weight: 500;
      letter-spacing: 0;
    }
    .campaign__step-rewardline--detail {
      bottom: 28px;
      width: 100%;
      max-width: 132px;
      white-space: normal;
      font-family: "Noto Sans", "Noto Sans JP", sans-serif;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: 0;
    }
    .campaign__step--y4 .campaign__step-rewardline--detail {
      max-width: 150px;
      font-size: 11px;
      white-space: nowrap;
      letter-spacing: -0.02em;
    }
    .campaign__inner > .campaign__step--y2.campaign__step--right {
      right: 25px;
      
      top: calc(176px + 100px + 19px);
      z-index: 2;
    }
    .campaign__inner > .campaign__step--y3.campaign__step--left {
      left: 25px;
      
      top: calc(176px + 100px + 144px);
      z-index: 2;
    }
    .campaign__inner > .campaign__step--y4.campaign__step--right {
      right: 25px;
      
      top: calc(176px + 100px + 144px + 100px + 19px);
      z-index: 2;
    }
    .campaign__inner > .campaign__step--y5.campaign__step--left {
      left: 25px;
      
      top: calc(176px + 100px + 144px + 100px + 144px);
      z-index: 2;
    }
    
    .campaign__step-frame {
      position: relative;
      width: 100%;
      height: 100%;
      line-height: 0;
      overflow: visible;
    }
    .campaign__step-frame-img {
      display: block;
    }
    .campaign__step-overlay {
      position: absolute;
      left: 6%;
      right: 6%;
      top: 26%;
      bottom: 40%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      pointer-events: none;
      z-index: 1;
    }
    .campaign__step-media {
      position: relative;
      top: -5px;
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 0;
    }
    
    .campaign__step-media img {
      display: block;
      width: auto;
      height: auto;
      max-width: none;
      max-height: none;
      object-fit: contain;
      transform: scale(0.5);
      transform-origin: center center;
    }
    
    .campaign__mobile-deco {
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
    }
    .campaign__mobile-deco.is-visible {
      top: -10px;
    }
    .campaign__mobile-deco-avatar,
    .campaign__mobile-deco-chat {
      position: absolute;
      display: block;
      height: auto;
      max-width: none;
      object-fit: contain;
      opacity: 0;
      will-change: transform, opacity;
    }
    .campaign__mobile-deco-chat {
      top: 739px;
      right: 13.67px;
      width: 124.33px;
      transform: translate3d(0, 24px, 0);
      transition:
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 1.02s,
        opacity 0.48s ease 1.02s;
    }
    .campaign__mobile-deco-avatar--1 {
      left: 148.17px;
      top: 803.72px;
      width: 112.9px;
      transform: translate3d(0, 28px, 0);
      transition:
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.48s ease;
    }
    .campaign__mobile-deco-avatar--2 {
      right: 5px;
      top: 766.72px;
      width: 134px;
      transform: translate3d(0, 28px, 0);
      transition:
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.14s,
        opacity 0.48s ease 0.14s;
    }
    .campaign__mobile-deco.is-visible .campaign__mobile-deco-avatar,
    .campaign__mobile-deco.is-visible .campaign__mobile-deco-chat {
      opacity: 1;
    }
    .campaign__mobile-deco.is-visible .campaign__mobile-deco-avatar--1,
    .campaign__mobile-deco.is-visible .campaign__mobile-deco-avatar--2,
    .campaign__mobile-deco.is-visible .campaign__mobile-deco-chat {
      transform: translate3d(0, 0, 0);
    }
    .campaign__note {
      margin: auto 0 40px;
      padding-top: 12px;
      font-family: "Noto Sans", "Noto Sans JP", sans-serif;
      font-size: 10px;
      font-weight: 700;
      color: #6f7787;
      text-align: center;
      letter-spacing: 0.5px;
      line-height: 1.5;
      flex-shrink: 0;
    }
    @media (min-width: 800px) and (max-width: 1439.98px) {
      .campaign__note {
        width: max-content;
        max-width: calc(100% - 32px);
        margin: auto 0 20px 26px;
        padding-top: 0;
        text-align: left;
        line-height: normal;
      }
    }
    .campaign__cta {
      margin: 4px 0 0;
      padding: 0 8px;
      font-size: 18px;
      font-weight: 700;
      font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
      color: #333c4d;
      text-align: center;
      letter-spacing: 0.05em;
      line-height: 1.35;
      flex-shrink: 0;
    }
    
    .main__section--campaign > .campaign__cta {
      align-self: center;
      width: 100%;
      max-width: var(--main-section-max-width);
      box-sizing: border-box;
      position: relative;
      z-index: 1;
    }
    
    @media (min-width: 1440px) {
      .main__section.main__section--campaign {
        max-width: var(--campaign-section-pc-width);
        width: 100%;
        height: 1122px;
        min-height: 1122px;
        max-height: 1122px;
        padding: 0;
      }
      
      .main__section--campaign .campaign__bg {
        height: 100%;
        min-height: 100%;
      }
      .main__section--campaign .campaign__bg img {
        min-height: 100%;
      }
      
      .main__section--campaign .campaign__title {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        line-height: 0;
        transform: scale(1.71);
        transform-origin: top center;
        pointer-events: none;
      }
      .main__section--campaign .campaign__inner {
        flex: 0 0 auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        
        gap: 40px 0;
        
        --campaign-pc-y45-top: calc(132px + 84px + 40px + 256px + 40px + 56px + 53px);
        width: 100%;
        max-width: 100%;
        margin: 35px auto 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      .main__section--campaign .campaign__copy {
        position: relative;
        z-index: 1;
        flex: 0 0 100%;
        width: 100%;
        margin: 132px 0 0;
        line-height: 42px;
        text-align: center;
      }
      .main__section--campaign .campaign__copy-line--lead {
        font-size: 24px;
        font-weight: 500;
      }
      .main__section--campaign .campaign__copy-line--main {
        font-size: 30px;
        font-weight: 500;
      }
      .main__section--campaign .campaign__line {
        display: none;
      }
      .main__section--campaign .campaign__pc-cards-row-break {
        display: block;
        flex-basis: 100%;
        width: 0;
        height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        border: 0;
      }
      .main__section--campaign .campaign__inner > .campaign__step--y1,
      .main__section--campaign .campaign__inner > .campaign__step--y2,
      .main__section--campaign .campaign__inner > .campaign__step--y3 {
        margin-top: 56px;
      }
      .main__section--campaign .campaign__inner > .campaign__step--y1,
      .main__section--campaign .campaign__inner > .campaign__step--y2 {
        margin-right: 40px;
      }
      
      .main__section--campaign .campaign__pc-lower-slot {
        display: block;
        flex: 0 0 100%;
        width: 100%;
        height: 256px;
        margin: calc(-40px + 53px) 0 0;
        padding: 0;
        border: 0;
        overflow: hidden;
        pointer-events: none;
      }
      
      .main__section--campaign .campaign__inner > .campaign__step--y4.campaign__step--right {
        position: absolute;
        left: calc(50% - 20px - 238px);
        right: auto;
        top: var(--campaign-pc-y45-top);
        margin: 0;
        z-index: 2;
      }
      .main__section--campaign .campaign__inner > .campaign__step--y5.campaign__step--left {
        position: absolute;
        left: calc(50% + 20px);
        right: auto;
        top: var(--campaign-pc-y45-top);
        margin: 0;
        z-index: 2;
      }
      .main__section--campaign .campaign__inner > .campaign__step {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        flex: 0 0 238px;
        width: 238px;
        max-width: 238px;
        height: 256px;
        --campaign-y1-thumb-size: 140%;
      }
      .main__section--campaign .campaign__step-badge {
        top: -18px;
      }
      .main__section--campaign .campaign__step-badge-num {
        font-size: 26.46px;
      }
      .main__section--campaign .campaign__step-badge-suffix {
        font-size: 20.58px;
      }
      .main__section--campaign .campaign__step-rewardline {
        bottom: 28px;
      }
      .main__section--campaign .campaign__step-rewardline-amount {
        font-size: 38px;
      }
      .main__section--campaign .campaign__step-rewardline-unit {
        font-size: 21px;
      }
      .main__section--campaign .campaign__step-rewardline--item {
        font-size: 20px;
      }
      .main__section--campaign .campaign__step-rewardline--detail {
        max-width: 180px;
        font-size: 16px;
        line-height: 1.35;
      }
      .main__section--campaign .campaign__step--y4 .campaign__step-rewardline--detail {
        max-width: 180px;
        font-size: 16px;
        letter-spacing: 0;
      }
      .main__section--campaign .campaign__step-media img {
        transform: scale(0.74);
      }
      .campaign__mobile-deco-avatar--1 {
        left: auto;
        right: 295px;
        top: 813.72px;
        width: 180.64px;
      }
      .campaign__mobile-deco-avatar--2 {
        right: 100px;
        top: 756.72px;
        width: 214.4px;
      }
      .campaign__mobile-deco-chat {
        right: 107.74px;
        top: 704px;
        width: 198.93px;
      }
      .main__section--campaign .campaign__note {
        flex: 0 0 100%;
        width: 100%;
        margin: 8px 0 0;
        text-align: center;
        padding-top: 0;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.8px;
      }
      
      .main__section--campaign > .campaign__cta {
        flex: 0 0 auto;
        width: 100%;
        max-width: none;
        align-self: stretch;
        margin: 40px 0 0;
        text-align: center;
        padding: 0 16px;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 1.6px;
        line-height: 1;
        height: 1em;
        box-sizing: border-box;
      }
    }
    .main__heading { margin: 0 0 16px; font-size: 1.25rem; }
    .main__heading--lv1 { font-size: 1.5rem; }
    .main__heading--visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    .main__catch { margin: 0 0 12px; font-size: 1rem; font-weight: bold; }
    .main__intro-line { margin: 0 0 8px; font-size: 1rem; }
    .main__subsection { margin-top: 24px; }
    .main__subheading { margin: 0 0 12px; font-size: 1rem; }
    .main__subheading--gradient { background: linear-gradient(90deg, #6b5b95, #4a90c4); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: bold; font-size: 1.25rem; }
    .main__subsection-copy { margin: 0 0 12px; font-size: 0.9375rem; color: #333; }
    
    
    .intro-video-parallax-wrap {
      position: relative;
      z-index: 1;
      margin-top: 0;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      max-width: var(--main-section-max-width);
      box-sizing: border-box;
      background: transparent;
      overflow: visible;
      will-change: transform;
    }
    
    #intro-video {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      height: var(--intro-video-section-height);
      min-height: var(--intro-video-section-height);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      
      overflow: visible;
      
      -webkit-clip-path: inset(-100px 0 -100px 0);
      clip-path: inset(-100px 0 -100px 0);
      border: none;
      background: transparent;
    }
    
    .intro-video__visual {
      margin-top: 0;
      line-height: 0;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 0;
    }
    .intro-video__visual-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: var(--intro-video-inner-min-height);
      width: 100%;
      box-sizing: border-box;
      will-change: transform;
    }
    .intro-video__visual-inner img {
      display: block;
      width: 100%;
      max-width: var(--main-section-max-width);
      height: auto;
      object-fit: contain;
      flex-shrink: 0;
    }
    
    .intro-video__clip {
      box-sizing: border-box;
      flex-shrink: 0;
      height: calc(var(--intro-video-section-height) + 100px);
      line-height: 0;
      margin-left: auto;
      margin-right: auto;
      overflow: hidden;
      width: 100%;
    }
    @media (min-width: 1440px) {
      .intro-video__clip {
        height: calc(var(--intro-video-section-height) + 200px);
      }
    }
    .intro-video__visual-inner .intro-video__media {
      display: block;
      height: 100%;
      max-width: none;
      object-fit: cover;
      object-position: center center;
      width: 100%;
    }
    
    .intro-video-parallax-wrap + .main__section--intro {
      border-top: none;
    }
    
    .enjoy-section__label {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .enjoy-section__label.is-revealed {
      padding-bottom: 24px;
    }
    
    .enjoy-section__heading {
      -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0 0);
      font-family: "M PLUS 1p", sans-serif;
      font-size: 21px;
      font-weight: 700;
      letter-spacing: 2.1px;
      line-height: 1.8;
      margin: 0;
      text-align: center;
      color: #333c4d;
      transition: -webkit-clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1), clip-path 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .enjoy-section__label.is-revealed .enjoy-section__heading {
      -webkit-clip-path: inset(0 0 0 0);
      clip-path: inset(0 0 0 0);
    }
    .enjoy-section__underline {
      display: flex;
      justify-content: center;
      margin-top: 8px;
    }
    .enjoy-section__underline-inner {
      display: block;
      line-height: 0;
      overflow: hidden;
    }
    .enjoy-section__underline img {
      display: block;
      height: 4px;
      object-fit: contain;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
      width: auto;
    }
    .enjoy-section__label.is-revealed .enjoy-section__underline img {
      transform: scaleX(1);
    }
    @media (prefers-reduced-motion: reduce) {
      .enjoy-section__heading {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        transition: none;
      }
      .enjoy-section__underline img {
        transform: scaleX(1);
        transition: none;
      }
    }

    
    
    .create-section {
      background: #f1f7ff;
      isolation: isolate;
      
      padding-bottom: calc(50px + 400px);
      position: relative;
      z-index: 2;
    }
    .create-section__header { margin-bottom: 20px; }
    .create-section__label-wrap {
      position: relative;
      min-height: 140px;
      box-sizing: border-box;
      isolation: isolate;
    }
    
    
    .create-section__label-prizm {
      position: absolute;
      left: 150px;
      top: 640px;
      margin-left: -175px;
      width: 88px;
      height: 96px;
      z-index: -1;
      line-height: 0;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.5s ease-out;
      transition-property: opacity;
    }
    
    .create-section__header:has(.create-section__label-wrap.is-visible) + .create-section__label-prizm {
      opacity: 1;
    }
    .create-section__label-prizm img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    .create-section__label-bg {
      position: absolute;
      left: 50%;
      top: 49px;
      margin-left: -175px;
      width: 350px;
      height: 100px;
      background: url("../assets/4_1_labelbg.png") no-repeat center / 350px 100px;
      z-index: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .create-section__label-wrap.is-visible .create-section__label-bg {
      opacity: 1;
      transform: translateY(0);
    }
    
    .create-section__label-group {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }
    
    .create-section__label-icon {
      position: absolute;
      left: 260px;
      top: -49px;
      width: 62px;
      height: 62px;
      z-index: 2;
      opacity: 0;
      transform: translateY(14px) rotate(13.34deg);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
      transition-delay: 0.4s;
    }
    .create-section__label-wrap.is-visible .create-section__label-icon {
      opacity: 1;
      transform: translateY(0) rotate(13.34deg);
    }
    .create-section__label-icon img {
      display: block;
      width: 62px;
      height: 62px;
      max-width: 62px;
      max-height: 62px;
      object-fit: contain;
    }
    
    .create-section__label-title {
      position: absolute;
      left: 14px;
      top: -25px;
      width: 109px;
      height: 34px;
      z-index: 3;
      opacity: 0;
      transform: translateY(14px) rotate(351deg);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
      transition-delay: 0.2s;
    }
    .create-section__label-wrap.is-visible .create-section__label-title {
      opacity: 1;
      transform: translateY(0) rotate(351deg);
    }
    .create-section__label-title img {
      display: block;
      width: 109px;
      height: 34px;
      max-width: 109px;
      max-height: 34px;
      object-fit: contain;
    }
    .create-section__label {
      position: absolute;
      left: 50%;
      margin-left: -175px;
      top: 49px;
      width: 350px;
      height: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 4px;
      padding-top: 17px;
      z-index: 1;
      box-sizing: border-box;
      padding-left: 16px;
      padding-right: 16px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .create-section__label-wrap.is-visible .create-section__label {
      opacity: 1;
      transform: translateY(0);
    }
    .create-section__subtitle {
      position: relative;
      z-index: 1;
      margin: 0;
      font-weight: 600;
      color: #415ea2;
      line-height: 1.5;
      text-align: center;
    }
    .create-section__subtitle--lead { font-size: 0.875rem; }
    .create-section__subtitle--main { font-size: 1rem; }
    @media (prefers-reduced-motion: reduce) {
      .create-section__label-prizm {
        opacity: 1;
        transition: none;
      }
      .create-section__label-bg,
      .create-section__label {
        opacity: 1;
        transform: translateY(0);
        transition: none;
      }
      .create-section__label-title {
        opacity: 1;
        transform: rotate(351deg);
        transition: none;
      }
      .create-section__label-icon {
        opacity: 1;
        transform: rotate(13.34deg);
        transition: none;
      }
    }
    
    
    .create-section__visual {
      position: relative;
      width: 100%;
      max-width: 195px;
      margin: 0 auto;
      aspect-ratio: 525 / 525;
      box-sizing: border-box;
      opacity: 0;
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .create-section__visual--hero {
      width: 100%;
      max-width: 100%;
      height: 210px;
      aspect-ratio: auto;
    }
    .create-section__visual--bounce {
      width: 100%;
      max-width: 100%;
      height: 210px;
      aspect-ratio: auto;
    }
    .create-section__visual--overlap {
      width: 100%;
      max-width: 100%;
      height: 210px;
      aspect-ratio: auto;
    }
    .create-section__visual-group {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .create-section__visual-group--hero {
      position: absolute;
      left: 50%;
      top: 0;
      width: 525px;
      height: 525px;
      transform: translateX(-50%) scale(0.4);
      transform-origin: center top;
    }
    .create-section__visual-group--bounce {
      position: absolute;
      left: 50%;
      top: 0;
      width: 525px;
      height: 525px;
      transform: translateX(-50%) scale(0.4);
      transform-origin: center top;
    }
    .create-section__visual-group--overlap {
      position: absolute;
      left: 50%;
      top: 0;
      width: 525px;
      height: 525px;
      transform: translateX(-50%) scale(0.4);
      transform-origin: center top;
    }
    .create-section__visual-scene,
    .create-section__visual-avatar,
    .create-section__visual-icon {
      opacity: 0;
      transition:
        opacity 0.34s ease-out,
        transform 0.72s cubic-bezier(0.22, 1.18, 0.32, 1);
      will-change: transform, opacity;
    }
    .create-section__visual.is-layer-visible .create-section__visual-scene,
    .create-section__visual.is-layer-visible .create-section__visual-avatar,
    .create-section__visual.is-layer-visible .create-section__visual-icon {
      opacity: 1;
    }
    .create-section__visual.is-layer-visible .create-section__visual-scene {
      transform: var(--create-layer-visible-transform);
      transition-delay: 0.02s;
    }
    .create-section__visual.is-layer-visible .create-section__visual-avatar {
      transform: var(--create-layer-visible-transform);
      transition-delay: 0.18s;
    }
    .create-section__visual.is-layer-visible .create-section__visual-icon {
      transform: var(--create-layer-visible-transform);
      transition-delay: 0.34s;
    }
    .create-section__visual--hero .create-section__visual-layer {
      inset: auto;
    }
    .create-section__visual--hero .create-section__visual-bg {
      left: 50%;
      top: 50%;
      width: 525px;
      height: 525px;
      transform: translate(-50%, -50%);
      z-index: 0;
    }
    .create-section__visual--hero .create-section__visual-scene {
      left: 50%;
      top: 50%;
      width: 606px;
      height: 730px;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 26px)) scale(0.97);
      z-index: 1;
    }
    .create-section__visual--hero .create-section__visual-avatar {
      left: 65%;
      top: 25%;
      width: 253px;
      height: 295px;
      padding: 0;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 30px)) scale(0.97);
      z-index: 2;
    }
    .create-section__visual--hero .create-section__visual-avatar img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
      transform-origin: 50% 85%;
      animation: create-avatar-sway-hero 2.5s ease-in-out infinite;
    }
    @keyframes create-avatar-sway-hero {
      0%, 100% { transform: scale(0.9) rotate(-4deg); }
      50% { transform: scale(0.9) rotate(4deg); }
    }
    .create-section__visual-icon {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .create-section__visual--hero .create-section__visual-icon {
      left: 30%;
      top: 6%;
      width: 128px;
      height: 132px;
      --create-layer-visible-transform: translate(-50%, -50%) scale(0.6);
      transform: translate(-50%, calc(-50% + 26px)) scale(0.56);
      z-index: 3;
    }
    .create-section__visual--hero .create-section__visual-icon img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
    }
    .create-section__visual--bounce .create-section__visual-layer {
      inset: auto;
    }
    .create-section__visual--bounce .create-section__visual-bg {
      left: 50%;
      top: 50%;
      width: 525px;
      height: 525px;
      transform: translate(-50%, -50%);
      z-index: 0;
    }
    .create-section__visual--bounce .create-section__visual-scene {
      left: 50%;
      top: 50%;
      width: 606px;
      height: 730px;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 26px)) scale(0.97);
      z-index: 1;
    }
    .create-section__visual--bounce .create-section__visual-avatar {
      left: 46%;
      top: 25%;
      width: 424px;
      height: 372px;
      padding: 0;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 30px)) scale(0.97);
      z-index: 2;
    }
    .create-section__visual--bounce .create-section__visual-avatar img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
      transform-origin: 50% 100%;
      animation: create-avatar-bounce-group-2 2.5s ease-in-out infinite;
    }
    .create-section__visual--bounce .create-section__visual-icon {
      left: 55%;
      top: -2%;
      width: 90.4px;
      height: 79.2px;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 26px)) scale(0.96);
      z-index: 3;
    }
    .create-section__visual--bounce .create-section__visual-icon img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
    }
    .create-section__visual--overlap .create-section__visual-layer {
      inset: auto;
    }
    .create-section__visual--overlap .create-section__visual-bg {
      left: 50%;
      top: 50%;
      width: 525px;
      height: 525px;
      transform: translate(-50%, -50%);
      z-index: 0;
    }
    .create-section__visual--overlap .create-section__visual-scene {
      left: 50%;
      top: 50%;
      width: 606px;
      height: 730px;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 26px)) scale(0.97);
      z-index: 1;
    }
    .create-section__visual--overlap .create-section__visual-avatar {
      left: 66%;
      top: 33%;
      width: 304px;
      height: 318px;
      padding: 0;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 30px)) scale(0.97);
      z-index: 2;
    }
    .create-section__visual--overlap .create-section__visual-avatar img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
      transform-origin: 50% 85%;
      animation: create-avatar-sway-overlap 2.5s ease-in-out infinite;
    }
    .create-section__visual--overlap .create-section__visual-icon {
      left: 75%;
      top: -3%;
      width: 102.4px;
      height: 105.6px;
      --create-layer-visible-transform: translate(-50%, -50%);
      transform: translate(-50%, calc(-50% + 26px)) scale(0.96);
      z-index: 3;
    }
    .create-section__visual--overlap .create-section__visual-icon img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      object-position: center center;
    }
    
    .create-section__visual:not(.create-section__visual--hero):not(.create-section__visual--bounce):not(.create-section__visual--overlap) {
      transform: translate(100px, 10px) scale(0.85);
    }
    .create-section__visual:not(.create-section__visual--hero):not(.create-section__visual--bounce):not(.create-section__visual--overlap).is-visible {
      opacity: 1;
      transform: translate(100px, 10px) scale(1.34);
    }
    .create-section__visual--hero {
      transform: translate(108px, 10px) scale(0.85);
    }
    .create-section__visual--hero.is-visible {
      opacity: 1;
      transform: translate(108px, 10px) scale(1.34);
    }
    
    .create-section__visual--overlap {
      position: relative;
      z-index: 2;
      transform: translate(100px, -90px) scale(0.85);
    }
    .create-section__visual--overlap.is-visible {
      opacity: 1;
      transform: translate(100px, -90px) scale(1.34);
    }
    
    .create-section__visual--bounce {
      position: relative;
      z-index: 1;
      transform: translate(-108px, -40px) scale(0.85);
    }
    .create-section__visual--bounce.is-visible {
      opacity: 1;
      transform: translate(-108px, -40px) scale(1.34);
    }
    
    @media (min-width: 800px) {
      .create-section__label-prizm {
        margin-left: 0;
      }
    }
    
    @media (max-width: 799.98px) {
      .create-section {
        min-height: 754px;
        padding: 0;
      }
    }
    
    @media (min-width: 800px) and (max-width: 1439.98px) {
      .create-section {
        min-height: 760px;
        padding: 0;
      }
    }
    
    @media (min-width: 1440px) {
      .create-section {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: flex-start;
        overflow: visible;
        width: 100%;
      }
      .create-section__header {
        box-sizing: border-box;
        flex: 1 1 100%;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        transform: scale(1.5);
        transform-origin: top center;
        width: calc(100% / 1.5);
      }
      
      .create-section__label-prizm {
        height: 0;
        margin: 0;
        min-height: 0;
        min-width: 0;
        overflow: visible;
        width: 0;
      }
      .create-section__visual + .create-section__visual {
        margin-top: 0;
      }
      
      .create-section__visual {
        margin-top: 0;
        max-width: 100%;
        transform-origin: center top;
        width: 100%;
      }
      .create-section__visual--hero {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 236.25px;
      }
      .create-section__visual--bounce {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 236.25px;
      }
      .create-section__visual--overlap {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 236.25px;
      }
      .create-section__visual-group--hero,
      .create-section__visual-group--bounce,
      .create-section__visual-group--overlap {
        transform: translateX(-50%) scale(0.65);
      }
      .create-section__visual--hero {
        margin-left: auto;
        margin-right: auto;
        transform: translate(0, 70px) scale(1);
        transform-origin: center top;
        z-index: 3;
      }
      .create-section__visual--hero.is-visible {
        opacity: 1;
        transform: translate(0, 70px) scale(1);
      }
      .create-section__visual--bounce {
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        transform: translate(-400px, 56px) scale(1);
        transform-origin: center top;
        z-index: 1;
      }
      .create-section__visual--bounce.is-visible {
        opacity: 1;
        transform: translate(-400px, 56px) scale(1);
      }
      .create-section__visual--overlap {
        margin-left: auto;
        margin-right: auto;
        transform: translate(350px, 40px) scale(1);
        transform-origin: center top;
        z-index: 2;
      }
      .create-section__visual--overlap.is-visible {
        opacity: 1;
        transform: translate(350px, 40px) scale(1);
      }
    }
    
    @media (max-width: 1439.98px) {
      .create-section__visual + .create-section__visual {
        margin-top: 16px;
      }
    }
    .create-section__visual-layer {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .create-section__visual-layer img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
    }
    .create-section__visual-bg { z-index: 0; }
    .create-section__visual-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .create-section__visual-scene { z-index: 1; transform: translateX(-10.26%); }
    .create-section__visual-scene img {
      max-width: 95%;
      max-height: 95%;
    }
    .create-section__visual-avatar { z-index: 2; align-items: flex-end; justify-content: center; padding-bottom: 8%; padding-right: 2%; transform: translate(7.69%, -43.59%); }
    .create-section__visual-avatar img {
      width: auto;
      height: 48%;
      max-width: 55%;
      object-fit: contain;
      object-position: center bottom;
      transform-origin: 50% 85%;
      animation: create-avatar-sway 2.5s ease-in-out infinite;
    }
    @keyframes create-avatar-sway {
      0%, 100% { transform: rotate(-4deg); }
      50% { transform: rotate(4deg); }
    }
    @keyframes create-avatar-sway-overlap {
      0%, 100% { transform: scale(0.9) rotate(-4deg); }
      50% { transform: scale(0.9) rotate(4deg); }
    }
    
    @keyframes create-avatar-bounce-group-2 {
      0% { transform: scale(0.9) translateY(0); }
      18% { transform: scale(0.9) translateY(0); }
      35% { transform: scale(0.9) translateY(-6px); }
      50% { transform: scale(0.9) translateY(-6px); }
      67% { transform: scale(0.9) translateY(0); }
      84% { transform: scale(0.9) translateY(0); }
      100% { transform: scale(0.9) translateY(0); }
    }

    
    .connect-parallax-wrap + #prereg-campaign {
      border-top: none;
      margin-top: 0;
    }
    .connect-parallax-wrap .connect-section.main__section {
      border-bottom: none;
    }
    
    .connect-parallax-wrap {
      isolation: isolate;
      position: relative;
      width: 100%;
      max-width: var(--main-section-max-width);
      margin-left: auto;
      margin-right: auto;
      z-index: 0;
      will-change: transform;
    }
    
    .connect-section {
      height: 824px;
      min-height: 824px;
      max-height: 824px;
      aspect-ratio: auto;
      background: #f1f7ff;
      box-sizing: border-box;
      isolation: isolate;
      position: relative;
      z-index: 0;
      overflow: visible;
      padding: 0;
    }
    @media (min-width: 1440px) {
      .connect-section {
        height: 1324px;
        min-height: 1324px;
        max-height: 1324px;
      }
    }
    
    .connect-section__area {
      position: absolute;
      top: -100px;
      left: 0;
      width: 100%;
      height: calc(100% + 100px);
      z-index: 0;
      pointer-events: none;
      line-height: 0;
      overflow: hidden;
    }
    @media (min-width: 1440px) {
      .connect-section__area {
        top: -120px;
      }
    }
    
    .connect-section__area-inner {
      position: absolute;
      left: 0;
      top: -10px;
      width: 100%;
      height: 140%;
      z-index: 0;
      will-change: transform;
      overflow: visible;
    }
    .connect-section__area-ufo {
      position: absolute;
      left: -64px;
      top: 210px;
      width: 49px;
      height: auto;
      max-width: none;
      object-fit: contain;
      opacity: 0;
      z-index: 1;
      will-change: transform, opacity;
      pointer-events: none;
    }
    .connect-section__area-inner.is-ufo-visible .connect-section__area-ufo {
      opacity: 1;
      animation: connect-ufo-fly 5.8s linear forwards;
    }
    @keyframes connect-ufo-fly {
      0% {
        transform: translate3d(0, 0, 0) rotate(-4deg);
        opacity: 0;
      }
      8% {
        transform: translate3d(10vw, 18px, 0) rotate(-1deg);
        opacity: 1;
      }
      24% {
        transform: translate3d(32vw, 54px, 0) rotate(3deg);
        opacity: 1;
      }
      47% {
        transform: translate3d(58vw, 86px, 0) rotate(-2deg);
        opacity: 1;
      }
      72% {
        transform: translate3d(85vw, 120px, 0) rotate(2deg);
        opacity: 1;
      }
      100% {
        transform: translate3d(calc(100vw + 72px), 142px, 0) rotate(0deg);
        opacity: 1;
      }
    }
    
    .connect-section__area-inner .connect-section__area-bg-img {
      display: block;
      width: 119.047619%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      position: relative;
      left: 50%;
      transform: translateX(-50%) scale(0.84);
      transform-origin: center center;
      -webkit-clip-path: inset(130px 0 0 0);
      clip-path: inset(130px 0 0 0);
      top: -30px;
      height: calc(100% + 30px);
      z-index: 0;
    }
    
    .connect-section__area-avatar-layer {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 140%;
      z-index: 1;
      pointer-events: none;
      display: block;
      padding: 0;
      box-sizing: border-box;
      will-change: transform;
    }
    .connect-section__area-avatar-layer.is-visible {
      top: -40px;
    }
    .connect-section__area-avatar-wrap {
      position: absolute;
      bottom: 170px;
      width: 160px;
      height: 204.8px;
      line-height: 0;
      display: block;
    }
    .connect-section__area-avatar-chat {
      position: absolute;
      left: 50%;
      bottom: calc(100% - 35px);
      display: block;
      height: auto;
      max-width: none;
      object-fit: contain;
      opacity: 0;
      transform: translate(-50%, 18px);
      pointer-events: none;
      z-index: 2;
      will-change: transform, opacity;
      transition:
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.44s ease;
    }
    .connect-section__area-avatar-art {
      position: relative;
      z-index: 1;
    }
    .connect-section__area-avatar-layer.is-visible .connect-section__area-avatar-wrap--4 .connect-section__area-avatar-chat {
      opacity: 1;
      transform: translate(-50%, 0);
      transition-delay: 0.08s;
    }
    .connect-section__area-avatar-layer.is-visible .connect-section__area-avatar-wrap--5 .connect-section__area-avatar-chat {
      opacity: 1;
      transform: translate(-50%, 0);
      transition-delay: 0.52s;
    }
    
    .connect-section__area-avatar-wrap img {
      display: block;
      width: 63px;
      height: auto;
      max-width: none;
      object-fit: contain;
      object-position: center bottom;
    }
    .connect-section__area-avatar-wrap--4 {
      left: calc(50% - 150px);
    }
    
    .connect-section__area-avatar-wrap--4 .connect-section__area-avatar-art {
      width: 160px;
      height: 204.8px;
      max-width: none;
      object-fit: contain;
      object-position: center bottom;
    }
    .connect-section__area-avatar-wrap--4 .connect-section__area-avatar-chat {
      width: 101px;
    }
    .connect-section__area-avatar-wrap--5 {
      left: calc(50% - 10px);
    }
    .connect-section__area-avatar-wrap--5 .connect-section__area-avatar-art {
      width: 160px;
      height: 204.8px;
      max-width: none;
      object-fit: contain;
      object-position: center bottom;
    }
    .connect-section__area-avatar-wrap--5 .connect-section__area-avatar-chat {
      width: 76px;
    }
    
    .connect-section__label-wrap {
      position: absolute;
      top: 79px;
      left: 0;
      right: 0;
      z-index: 1;
      box-sizing: border-box;
      pointer-events: none;
    }
    .connect-section__label-group {
      position: relative;
      width: 350px;
      margin: 0 auto;
      min-height: 110px;
      box-sizing: border-box;
      isolation: isolate;
      will-change: transform;
    }
    
    .connect-section__label-rainbow {
      position: absolute;
      left: -30px;
      top: 60px;
      width: 168px;
      height: 74px;
      z-index: 0;
      line-height: 0;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.45s ease-out 0.1s;
    }
    .connect-section__label-group.is-visible .connect-section__label-rainbow {
      opacity: 1;
    }
    .connect-section__label-rainbow img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center center;
    }
    .connect-section__label-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 350px;
      height: 100px;
      background: url("../assets/4_3_labelbg.png") no-repeat center / 350px 100px;
      z-index: 1;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .connect-section__label-group.is-visible .connect-section__label-bg {
      opacity: 1;
      transform: translateY(0);
    }
    .connect-section__label-icon {
      position: absolute;
      left: 300px;
      top: 89px;
      width: 51px;
      height: 51px;
      z-index: 3;
      opacity: 0;
      transform: translateY(14px) rotate(46deg);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
      transition-delay: 0.4s;
    }
    .connect-section__label-group.is-visible .connect-section__label-icon {
      opacity: 1;
      transform: translateY(0) rotate(46deg);
    }
    .connect-section__label-icon img {
      display: block;
      width: 51px;
      height: 51px;
      max-width: 51px;
      max-height: 51px;
      object-fit: contain;
    }
    .connect-section__label-title {
      position: absolute;
      left: 15px;
      top: -33px;
      width: 178px;
      height: 34px;
      z-index: 3;
      opacity: 0;
      transform: translateY(14px) rotate(353deg);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
      transition-delay: 0.2s;
    }
    .connect-section__label-group.is-visible .connect-section__label-title {
      opacity: 1;
      transform: translateY(0) rotate(353deg);
    }
    .connect-section__label-title img {
      display: block;
      width: 178px;
      height: 34px;
      max-width: 178px;
      max-height: 34px;
      object-fit: contain;
    }
    .connect-section__label {
      position: absolute;
      left: 0;
      top: 0;
      width: 350px;
      height: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 4px;
      padding-top: 17px;
      z-index: 2;
      box-sizing: border-box;
      padding-left: 16px;
      padding-right: 16px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .connect-section__label-group.is-visible .connect-section__label {
      opacity: 1;
      transform: translateY(0);
    }
    .connect-section__subtitle {
      margin: 0;
      font-weight: 600;
      color: #415ea2;
      line-height: 1.5;
      text-align: center;
    }
    .connect-section__subtitle--lead { font-size: 0.875rem; }
    .connect-section__subtitle--main { font-size: 1rem; }
    @media (prefers-reduced-motion: reduce) {
      .connect-section__label-rainbow,
      .connect-section__label-bg,
      .connect-section__label,
      .connect-section__label-title,
      .connect-section__label-icon {
        opacity: 1;
        transform: translateY(0);
        transition: none;
      }
      .connect-section__label-title {
        transform: rotate(353deg);
      }
      .connect-section__label-icon {
        transform: rotate(46deg);
      }
    }
    @media (min-width: 1440px) {
      .connect-section__label-wrap {
        left: 50%;
        right: auto;
        width: calc(100% / 1.5);
        transform: translateX(-50%) scale(1.5);
        transform-origin: top center;
      }
      .connect-section__area-ufo {
        top: 310px;
      }
      .connect-section__area-avatar-wrap {
        width: 240px;
        height: 307.2px;
      }
      .connect-section__area-avatar-wrap--4 {
        left: calc(50% - 160px);
        bottom: 320px;
      }
      .connect-section__area-avatar-wrap--4 .connect-section__area-avatar-art {
        width: 240px;
        height: 307.2px;
      }
      .connect-section__area-avatar-wrap--4 .connect-section__area-avatar-chat {
        width: 151.5px;
      }
      .connect-section__area-avatar-wrap--5 {
        left: calc(50% + 0px);
        bottom: 320px;
      }
      .connect-section__area-avatar-wrap--5 .connect-section__area-avatar-art {
        width: 240px;
        height: 307.2px;
      }
      .connect-section__area-avatar-wrap--5 .connect-section__area-avatar-chat {
        width: 114px;
      }
    }

    
    
    .play-section {
      
      --play-section-label-bg-top: 76px;
      --play-section-rows-offset-below-label-bg: 115px;
      
      container-type: inline-size;
      container-name: play-section;
      background: transparent;
      isolation: isolate;
      padding-bottom: 50px;
      position: relative;
      z-index: 2;
      height: 840px;
      min-height: 840px;
      
      overflow: visible;
    }
    .play-section__header {
      
      margin-bottom: 0;
      position: relative;
      z-index: 1;
    }
    .play-section__label-wrap {
      position: relative;
      min-height: calc(var(--play-section-label-bg-top) + var(--play-section-rows-offset-below-label-bg));
      box-sizing: border-box;
      isolation: isolate;
    }
    .play-section__label-bg {
      position: absolute;
      left: 50%;
      top: var(--play-section-label-bg-top);
      margin-left: -175px;
      width: 350px;
      height: 100px;
      background: url("../assets/4_2_labelbg.png") no-repeat center / 350px 100px;
      z-index: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .play-section__label-wrap.is-visible .play-section__label-bg {
      opacity: 1;
      transform: translateY(0);
    }
    
    .play-section__label-group {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }
    
    .play-section__label-icon {
      position: absolute;
      left: -4px;
      top: -40px;
      width: 62px;
      height: 62px;
      z-index: 2;
      opacity: 0;
      transform: translateY(14px) rotate(-10deg);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
      transition-delay: 0.4s;
    }
    .play-section__label-wrap.is-visible .play-section__label-icon {
      opacity: 1;
      transform: translateY(0) rotate(-10deg);
    }
    .play-section__label-icon img {
      display: block;
      width: 62px;
      height: 62px;
      max-width: 62px;
      max-height: 62px;
      object-fit: contain;
    }
    .play-section__label-title {
      position: absolute;
      left: 218px;
      top: -26px;
      width: 109px;
      height: 34px;
      z-index: 3;
      opacity: 0;
      transform: translateY(14px) rotate(11deg);
      transition: opacity 0.45s ease-out, transform 0.45s ease-out;
      transition-delay: 0.2s;
    }
    .play-section__label-wrap.is-visible .play-section__label-title {
      opacity: 1;
      transform: translateY(0) rotate(11deg);
    }
    .play-section__label-title img {
      display: block;
      width: 109px;
      height: 34px;
      max-width: 109px;
      max-height: 34px;
      object-fit: contain;
    }
    
    .play-section__label {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      margin-left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 4px;
      padding-top: 17px;
      z-index: 0;
      box-sizing: border-box;
      padding-left: 16px;
      padding-right: 16px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }
    .play-section__label-wrap.is-visible .play-section__label {
      opacity: 1;
      transform: translateY(0);
    }
    .play-section__subtitle {
      margin: 0;
      font-weight: 600;
      color: #415ea2;
      line-height: 1.5;
      text-align: center;
    }
    .play-section__subtitle--lead { font-size: 0.875rem; }
    .play-section__subtitle--main { font-size: 1rem; }
    @media (prefers-reduced-motion: reduce) {
      .play-section__label-bg,
      .play-section__label,
      .play-section__label-title,
      .play-section__label-icon {
        opacity: 1;
        transform: translateY(0);
        transition: none;
      }
      .play-section__label-title {
        transform: rotate(11deg);
      }
      .play-section__label-icon {
        transform: rotate(-10deg);
      }
    }
    .play-section__rows {
      display: flex;
      flex-direction: column;
      gap: 3px;
      position: relative;
      top: -19px;
      z-index: 1;
    }
    
    .play-section__row {
      overflow: hidden;
      padding: 16px 12px;
      position: relative;
      z-index: 3;
    }
    
    .play-section__row.play-section__row--reverse {
      top: -20px;
      z-index: 2;
    }
    
    .play-section__row-inner {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: play-scroll 37.333333s linear infinite;
      animation: play-scroll calc(37.333333s * 100cqw / var(--bp-mobile-base)) linear infinite;
    }
    .play-section__row--reverse .play-section__row-inner {
      animation-direction: reverse;
    }
    @keyframes play-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .play-section__thumb {
      flex-shrink: 0;
      display: block;
      width: 140px;
      height: 236.89px;
      padding: 0;
      margin: 0;
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 5.2px 6.94px 8.67px 0 rgba(54, 29, 135, 0.2);
      cursor: pointer;
      background: #eee;
    }
    .play-section__thumb:hover { opacity: 0.95; }
    .play-section__thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    
    
    .play-section__footer-mask-wrap {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(-34px * min(100vw, var(--main-section-max-width)) / var(--bp-mobile-base));
      bottom: auto;
      z-index: 0;
      pointer-events: none;
      line-height: 0;
    }
    .play-section__footer-mask {
      display: block;
      width: 100%;
      height: auto;
      pointer-events: none;
    }
    .play-section__footer-mask img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: bottom center;
      vertical-align: top;
    }
    
    .play-section__section-footer-mask {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: auto;
      z-index: 0;
      pointer-events: none;
      line-height: 0;
      box-sizing: border-box;
    }
    .play-section__section-footer-mask img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: bottom center;
      vertical-align: top;
    }
    @media (max-width: 799.98px) {
      .play-section {
        height: 750px;
        min-height: 750px;
        max-height: 750px;
      }
    }
    @media (min-width: 800px) and (max-width: 1439.98px) {
      .play-section {
        height: 774px;
        min-height: 774px;
        max-height: 774px;
      }
    }
    @media (min-width: 1440px) {
      .play-section {
        height: 1220px;
        min-height: 1220px;
        max-height: 1220px;
      }
      .play-section__thumb {
        height: 238.89px;
      }
      
      .play-section__header,
      .play-section__rows {
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        transform: scale(1.5);
        transform-origin: top center;
        width: calc(100% / 1.5);
      }
      .play-section__rows {
        gap: 15px;
        margin-top: 90px;
      }
      .play-section__row.play-section__row--reverse {
        top: -26px;
      }
    }

    
    .app-info-card {
      background: #fff;
      border-radius: 16px;
      padding: 20px 18px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 344px;
      margin: 0 auto 40px;
    }
    .app-info-card__icon {
      width: 64px;
      height: 64px;
      border-radius: 12.5px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .app-info-card__icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .app-info-card__body { display: flex; flex-direction: column; gap: 24px; }
    .app-info-card__row { margin: 0; }
    .app-info-card__label {
      display: block;
      font-size: 12px;
      font-weight: 800;
      color: #5f6dff;
      margin: 0 0 2px;
    }
    .app-info-card__value {
      font-size: 12px;
      font-weight: 600;
      color: #333c4d;
      margin: 0;
      line-height: 1.67;
    }
    .app-info-card__note {
      font-size: 10px;
      color: #959dad;
      margin: 0;
      line-height: 1.5;
    }
    .app-info-card__stores {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: center;
    }
    .app-info-card__stores a {
      display: block;
      line-height: 0;
      text-decoration: none;
    }
    .app-info-card__stores a:hover { opacity: 0.9; }
    .app-info-card__stores img {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
    }
    .app-info-card__disclaimer {
      font-size: 10px;
      color: #959dad;
      line-height: 1.5;
      margin: 0;
    }
    #app-info {
      position: relative;
      z-index: -1;
    }

    
    .share-section {
      position: relative;
      
      z-index: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding-top: 212px;
      height: 630px;
      min-height: 630px;
      max-height: 630px;
      box-sizing: border-box;
    }
    @media (max-width: 799.98px) {
      .share-section {
        margin-bottom: 50px;
      }
    }
    @media (min-width: 800px) and (max-width: 1439.98px) {
      .share-section {
        height: 680px;
        min-height: 680px;
        max-height: 680px;
      }
    }
    .share-section__heading {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: 21px;
      font-weight: 700;
      color: #333c4d;
      text-align: center;
      line-height: 1.2;
    }
    .share-section__qr {
      position: absolute;
      top: 55px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      line-height: 0;
    }
    .share-section__qr img {
      display: block;
      width: 120px;
      height: 120px;
      object-fit: contain;
    }
    .share-section__x-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .share-section__x-icon {
      display: block;
      text-decoration: none;
      line-height: 0;
    }
    .share-section__x-icon:hover { opacity: 0.9; }
    .share-section__x-icon img {
      display: block;
      width: 48px;
      height: 48px;
      object-fit: contain;
    }
    .share-section__visual {
      position: absolute;
      top: 400px;
      left: 50%;
      transform: translateX(-50%);
      line-height: 0;
      margin: 0;
      width: max-content;
      max-width: calc(100% - 32px);
      z-index: 0;
    }
    @media (min-width: 1440px) {
      .share-section {
        padding-top: 286px;
        height: 450px;
        min-height: 450px;
        max-height: 450px;
      }
      .share-section__qr img {
        width: 160px;
        height: 160px;
      }
      .share-section__visual {
        top: 300px;
        left: calc(50% - 460px);
        transform: translateX(-50%) scale(1.5);
        transform-origin: center top;
      }
    }
    
    .share-section__visual-main {
      display: block;
      width: 237px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: scale(0.52);
      transform-origin: 50% 50%;
      will-change: transform, opacity;
      transition:
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease;
    }
    .share-section__visual-avatar {
      position: absolute;
      display: block;
      height: auto;
      max-width: none;
      object-fit: contain;
      z-index: 2;
      opacity: 0;
      transform: translate3d(0, 28px, 0);
      will-change: transform, opacity;
      transition:
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease;
    }
    .share-section__visual-sticker {
      position: absolute;
      display: block;
      height: auto;
      max-width: none;
      object-fit: contain;
      z-index: 3;
      pointer-events: none;
      opacity: 0;
      will-change: transform, opacity;
    }
    .share-section__visual.is-visible .share-section__visual-main {
      opacity: 1;
      transform: scale(1);
    }
    .share-section__visual.is-visible .share-section__visual-avatar--6,
    .share-section__visual.is-visible .share-section__visual-avatar--7 {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
    .share-section__visual.is-visible .share-section__visual-avatar--6 {
      transition-delay: 0.56s;
    }
    .share-section__visual.is-visible .share-section__visual-avatar--7 {
      transition-delay: 0.68s;
    }
    .share-section__visual-avatar--6 {
      left: calc(50% - 100px);
      top: calc(50% - 164px);
      width: 115px;
    }
    .share-section__visual-avatar--7 {
      left: calc(50% - 10px);
      top: calc(50% - 164px);
      width: 112px;
    }
    .share-section__visual-sticker--hello {
      left: calc(50% + 55px);
      top: -46px;
      width: 44.5px;
      transform: translate3d(0, 24px, 0);
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.36s ease;
    }
    .share-section__visual-sticker--bibi {
      left: calc(50% - 121px);
      top: 8px;
      width: 32px;
      transform: translate3d(0, -24px, 0);
      transition:
        transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.36s ease;
    }
    .share-section__visual-sticker--pien {
      left: calc(50% + 84px);
      top: 35px;
      width: 32.5px;
      transform-origin: 50% 50%;
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }
    .share-section__visual.is-visible .share-section__visual-sticker--bibi {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      transition-delay: 1.18s;
    }
    .share-section__visual.is-visible .share-section__visual-sticker--hello {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      transition-delay: 1.56s;
    }
    .share-section__visual.is-visible .share-section__visual-sticker--pien {
      animation:
        share-pien-fade-in 0.42s ease 1.94s forwards,
        share-pien-float 6.1s linear 2.36s infinite;
    }
    @keyframes share-pien-fade-in {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }
    @keyframes share-pien-float {
      0% {
        transform: translate3d(0, 0, 0) rotate(-3deg);
      }
      17% {
        transform: translate3d(2px, -4px, 0) rotate(-1deg);
      }
      33% {
        transform: translate3d(-1px, -7px, 0) rotate(2deg);
      }
      49% {
        transform: translate3d(3px, -5px, 0) rotate(0deg);
      }
      63% {
        transform: translate3d(1px, -9px, 0) rotate(3deg);
      }
      78% {
        transform: translate3d(-3px, -4px, 0) rotate(-1deg);
      }
      91% {
        transform: translate3d(1px, -6px, 0) rotate(1deg);
      }
      100% {
        transform: translate3d(0, 0, 0) rotate(-3deg);
      }
    }

    
    #notice,
    #prereg-campaign {
      scroll-margin-top: 48px;
    }

    
    
    
    .notice {
      --notice-section-height: 182px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: var(--notice-section-height);
      min-height: var(--notice-section-height);
      max-height: var(--notice-section-height);
      padding-bottom: 0;
      box-sizing: border-box;
      overflow: visible;
    }
    
    .notice__content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
      box-sizing: border-box;
      background: #f1f7ff;
      will-change: transform;
    }
    
    
    .notice__footer-mask {
      position: absolute;
      bottom: calc(-34px * min(100vw, var(--main-section-max-width)) / var(--bp-mobile-base));
      left: 0;
      right: 0;
      width: 100%;
      max-width: none;
      height: auto;
      transform: none;
      z-index: 2;
      pointer-events: none;
      line-height: 0;
      box-sizing: border-box;
      display: block;
      background: transparent;
      will-change: transform;
    }
    .notice__footer-mask img {
      display: block;
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
      object-position: bottom center;
      vertical-align: top;
    }
    .notice__heading {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: #333c4d;
      text-align: center;
      letter-spacing: 0.1em;
      line-height: 1.8;
    }
    .notice__list-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      width: 100%;
    }
    .notice-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }
    @media (min-width: 800px) and (max-width: 1439.98px) {
      .notice-list {
        align-items: center;
      }
      .notice-list .notice-card {
        width: 350px;
      }
      .notice-list.notice-list--two-column {
        display: grid;
        grid-template-columns: repeat(2, 350px);
        gap: 16px;
        align-items: start;
        justify-content: center;
      }
    }
    @media (min-width: 1440px) {
      .notice-list {
        align-items: center;
      }
      .notice-list .notice-card {
        width: 350px;
      }
      .notice-list.notice-list--two-column {
        display: grid;
        grid-template-columns: repeat(2, 350px);
        gap: 16px;
        align-items: start;
        justify-content: center;
      }
    }
    .notice-list li { margin: 0; }
    
    .notice-card {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      width: 100%;
      margin: 0;
      padding: 20px 16px;
      border: 1px solid #5f6dff;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 3.25px 7.75px rgba(8, 18, 26, 0.06);
      font-size: 12px;
      font-weight: 600;
      color: #4a5161;
      line-height: 1.8;
      letter-spacing: 0.1em;
      text-align: left;
      cursor: pointer;
      box-sizing: border-box;
    }
    .notice-card:hover { opacity: 0.95; }
    .notice-card:focus-visible { outline: 2px solid #5f6dff; outline-offset: 2px; }
    .notice-card__date { flex-shrink: 0; }
    .notice-card__title {
      flex: 1;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .notice-more-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 200px;
      height: 48px;
      padding: 0;
      border: 1px solid #8fa3aa;
      border-radius: 24px;
      background: linear-gradient(96.25deg, rgb(34, 56, 72) 0%, rgb(43, 47, 55) 30.29%, rgb(42, 56, 62) 70%, rgb(76, 56, 90) 100%);
      background-image: linear-gradient(0deg, rgba(103, 143, 165, 0.18) 30%, rgba(55, 49, 132, 0.3) 100%), linear-gradient(96.25deg, rgb(34, 56, 72) 0%, rgb(43, 47, 55) 30.29%, rgb(42, 56, 62) 70%, rgb(76, 56, 90) 100%);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      box-sizing: border-box;
    }
    .notice-more-btn:hover { opacity: 0.9; }
    
    .main__section--related-services {
      padding: 24px 0;
    }
    
    .related-services__container {
      width: 100%;
      box-sizing: border-box;
      padding: 0 26px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .main__section--related-services .main__heading {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: #696e74;
      letter-spacing: 0.08em;
      line-height: 1.5;
      width: 100%;
      text-align: left;
      box-sizing: border-box;
    }
    .related-services__list {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 24px 20px;
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
    }
    .related-services__item {
      display: flex;
      gap: 8px;
      align-items: center;
      min-height: 36px;
      min-width: 0;
      width: 144px;
    }
    .related-services__item::before {
      content: "";
      flex-shrink: 0;
      width: 2px;
      align-self: stretch;
      min-height: 20px;
      background: #696e74;
      border-radius: 30px;
    }
    .related-services__item a {
      flex: 1 1 0;
      min-width: 0;
      font-size: 12px;
      font-weight: 600;
      color: #696e74;
      letter-spacing: 0.08em;
      line-height: 1.5;
      text-decoration: none;
    }
    .related-services__item a:hover { text-decoration: underline; }
    
    @media (min-width: 800px) {
      .main__section--related-services .related-services__container {
        align-items: center;
      }
      .main__section--related-services .main__heading {
        width: calc(4 * 144px + 3 * 20px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
      .main__section--related-services .related-services__list {
        width: calc(4 * 144px + 3 * 20px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
      }
    }
    @media (min-width: 1440px) {
      .main__section--related-services {
        padding: 24px 0;
      }
      .main__section--related-services .related-services__container {
        align-items: stretch;
        padding: 0;
        gap: 24px;
        width: calc(100% - 128px);
        max-width: calc(var(--main-section-max-width) - 128px);
        margin-left: auto;
        margin-right: auto;
      }
      .main__section--related-services .main__heading {
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #6f7787;
        letter-spacing: 0.08em;
        line-height: 1.5;
        text-align: left;
      }
      .main__section--related-services .related-services__list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 0;
        row-gap: 20px;
        width: 100%;
        max-width: none;
        margin: 0;
      }
      .main__section--related-services .related-services__item {
        width: auto;
        min-width: 0;
        min-height: 36px;
        gap: 16px;
        padding-right: 20px;
      }
      .main__section--related-services .related-services__item::before {
        width: 3px;
      }
      .main__section--related-services .related-services__item a {
        font-size: 16px;
        font-weight: 600;
        color: #6f7787;
        letter-spacing: 0.08em;
        line-height: 1.5;
      }
    }
    .main__content-footer {
      margin-top: 48px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 24px;
      border-top: 1px solid #eee;
      font-size: 0.8125rem;
      color: #888;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
      max-width: var(--main-section-max-width);
      box-sizing: border-box;
    }
    
    .main__footer-logo {
      margin: 0 0 16px;
      line-height: 0;
    }
    .main__footer-logo a {
      display: inline-block;
      line-height: 0;
      text-decoration: none;
    }
    .main__footer-logo img {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
    }
    .main__footer-links { margin: 0 0 16px; }
    .main__footer-links a {
      font-size: 14px;
      font-weight: 600;
      color: #696e74;
      letter-spacing: 0.16em;
      text-decoration: none;
    }
    .main__footer-links a:hover { text-decoration: underline; }
    .main__copyright { margin: 0; }
    
    @media (min-width: 800px) {
      .main__content-footer {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 24px;
        row-gap: 8px;
        align-items: center;
        text-align: left;
      }
      .main__footer-logo {
        grid-column: 1;
        grid-row: 1 / -1;
        align-self: center;
        justify-self: start;
        margin: 0;
      }
      .main__footer-links {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        margin: 0;
        text-align: right;
      }
      .main__copyright {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        margin: 0;
        text-align: right;
      }
    }
    @media (min-width: 800px) {
      .main__content-footer {
        width: calc(100% - 128px);
        max-width: calc(var(--main-section-max-width) - 128px);
        margin-left: auto;
        margin-right: auto;
      }
    }
    
    .footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 90;
      min-width: 0;
      background: transparent;
      box-shadow: none;
      pointer-events: none;
      opacity: 1;
    }
    @media (min-width: 1440px) {
      .footer {
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition:
          opacity 0.28s ease,
          transform 0.28s ease,
          visibility 0s linear 0.28s;
      }
      .footer.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition:
          opacity 0.28s ease,
          transform 0.28s ease,
          visibility 0s linear 0s;
      }
    }
    .footer__campaign-bubble { pointer-events: auto; }
    .footer > * { pointer-events: auto; }
    .footer__stores {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 10px;
      height: 66px;
      padding: 0 clamp(12px, 4.1vw, 16px) env(safe-area-inset-bottom);
      background: rgba(255, 255, 255, 0.72);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08);
    }

    .footer__store-btn {
      display: inline-block;
      padding: 0;
      border: none;
      background: transparent;
      text-decoration: none;
      cursor: pointer;
      line-height: 0;
    }
    .footer__store-btn:hover { opacity: 0.9; }
    .footer__store-btn img {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    
    .footer__campaign-bubble {
      position: absolute;
      bottom: 61px;
      left: 50%;
      z-index: 1;
      transform: translateX(-50%);
      margin: 0;
      padding: 0;
      background: transparent;
      line-height: 0;
    }
    .footer__campaign-bubble img {
      display: block;
      width: 218px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      vertical-align: top;
    }
    html.is-ios-device .footer__campaign-bubble {
      bottom: calc(61px + env(safe-area-inset-bottom));
    }
    html.is-ios-device .footer__stores {
      height: calc(66px + env(safe-area-inset-bottom));
    }
    html.is-ios-x-inapp .footer::after {
      content: '';
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 89;
      height: var(--ios-x-inapp-bottom-offset, 0px);
      background: rgba(255, 255, 255, 0.72);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      pointer-events: none;
    }
