
  /* ========== WRAPPER ========== */
  #wrapper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
  }

  #sections-container {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }

  .section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .section .sec-copy {
    z-index: 1;
    position: absolute;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    bottom: 10px;
    right: 15px;
    color: #fff;
  }

  .section-bg {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
    will-change: transform;
  }
  .section-bg.animate-shrink {
    transition: transform 12s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: scale(1);
  }
  .section-bg.shrink-done { transform: scale(1); }

  .section-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem;
  }
  .section-content p {
    color: #fff;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s 1s, filter 1s 1s;
  }
  .section-content .sec-sub,
  .section-content .sec-sub2 {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s 2.7s, filter 1s 2.7s;
  }
  .section-content.visible p,
  .section-content.visible .sec-sub,
  .section-content.visible .sec-sub2 {
    opacity: 1;
    filter: blur(0);
  }
  .section-content h2 {
    font-size: 5.6rem;
    font-family: 'Junge';
    font-weight: 400;
    line-height: 1.2;
    /* letter-spacing: 0.12em; */
    text-align: center;
    /* text-shadow: 0 2px 32px rgba(0,0,0,0.55); */
  }
  .section-content h2 .char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
  }
  .section-content h2 .char {
    display: inline-block;
    transform: translateY(200%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .section-content.visible h2 .char {
    transform: translateY(0);
  }
  .section-content h2.no-split {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s 1s, filter 1s 1s;
  }
  .section-content.visible h2.no-split {
    opacity: 1;
    filter: blur(0);
  }
  .section-content h2.no-split .sec-sub,
  .section-content h2.no-split .sec-sub2 {
    transition: opacity 1s 1s, filter 1s 1s;
  }
  .section-content p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    /* text-shadow: 0 1px 16px rgba(0,0,0,0.6); */
    max-width: 820px;
  }
  .section-content .sec-sub,
  .section-content .sec-sub2 {
    display: block;
  }
  .section-content .sec-sub {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2;
  }
  .section-content .sec-sub2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 16px;
  }
  .section-content .title-img {
    display: block;
    width: 432px;
    margin: 0 auto;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s 1s, filter 1s 1s;
  }
  .section-content.visible .title-img {
    opacity: 1;
    filter: blur(0);
  }
  .tb-only { display: none; }
  @media (max-width: 1080px) {
    .section-content h2 {
      font-size: 3.6rem;
    }
    .section-content p {
      font-size: 1.4rem;
    }
    .pc-only { display: none; }
    .tb-only { display: block; }
  }
  @media (max-width: 769px) {
    .section-content .title-img {
      width: 280px;
    }
    .default-content.tb-under {
      margin-top: auto;
      margin-bottom: 40px;
    }
  }

  .overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.3); }

  /* ========== INDICATOR ========== */
  #indicator {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #ind-track {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #fff;
  }

  #ind-label-top,
  #ind-label-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
  }
  #ind-label-top    { bottom: calc(100% + 10px); }
  #ind-label-bottom { top:    calc(100% + 10px); }

  #ind-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
    transition: top 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
  }

  /* ========== SCROLL HINT ========== */
  #scroll-hint {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.6s;
    pointer-events: none;
  }
  #scroll-hint span {
    font-size: 10px;
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  #scroll-hint .sh-line {
    width: 1px;
    height: 60px;
    background: #fff;
  }