@charset "UTF-8";

/* --------------------------------------------------------------- */
/* Reset */
/* --------------------------------------------------------------- */

:root {
  --c-primary: #EA583E;
  --c-txt: #000;
  --f-sans: 'Noto Sans JP', sans-serif;
  --speed: 40s; /* 数値を小さくすると速くなります */
}

html {
  font-size: 62.5%;
   scroll-behavior: smooth;

}

@media screen and (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
}

body {
  color: var(--c-txt);
  font-family: var(--f-sans);
  letter-spacing: 2px;
  overflow-x: hidden;
  min-width: 160rem;

  @media screen and (max-width: 767px) {
    min-width: 100%;
  }
}

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

a:link,
a:visited {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
}

a:hover,
a:focus {
  opacity: 0.7;
}

ul li,
ol li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* --------------------------------------------------------------- */
/* Helper classes */
/* --------------------------------------------------------------- */
.pc-mode {
  display: block !important;
}

.sp-mode {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc-mode {
    display: none !important;
  }
  .sp-mode {
    display: block !important;
  }
}

.l-flex {
  display: flex;
}

@media screen and (max-width: 767px) {
  .l-flex {
    flex-direction: column;
  }
}

@media print, screen and (min-width: 1081px) {
  .tab-off {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .pc-off {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-off {
    display: none !important;
  }
}

@media screen and (max-width: 1919px) and (min-width: 1081px) {
  html {
    /* font-size: 0.5211047421vw; */
  }
}

@media screen and (max-width: 1080px) and (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}

/* Media print */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    margin: 0 !important;
  }
}

.title-type02 {
    font-size: 3.8rem;
    font-weight: bold;
}

.inner {
  margin: 0 auto;
}

.w1240 {
  max-width: 124rem;

  @media screen and (max-width: 767px) {
    max-width: calc(100% - 6rem);
  }
}

/* Scroll fade-in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
}

.fade-in.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInHistoryTitle {
  from {
    opacity: 0;
    transform: translateY(calc(-65% + 4rem));
  }
  to {
    opacity: 1;
    transform: translateY(-65%);
  }
}

@keyframes fadeInHistoryTitleSP {
  from {
    opacity: 0;
    transform: translateY(calc(-30% + 4rem));
  }
  to {
    opacity: 1;
    transform: translateY(-30%);
  }
}

.fade-in-history {
  opacity: 0;
}

.fade-in-history.is-visible {
  animation: fadeInHistoryTitle 0.8s ease forwards;
}

@media screen and (max-width: 767px) {
  .fade-in-history.is-visible {
    animation: fadeInHistoryTitleSP 0.8s ease forwards;
  }
}

@keyframes fadeInYoutubeTitle {
  from {
    opacity: 0;
    transform: translateY(calc(-5rem + 4rem));
  }
  to {
    opacity: 1;
    transform: translateY(-5rem);
  }
}

@keyframes fadeInOnly {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-youtube {
  opacity: 0;
}

.fade-in-youtube.is-visible {
  animation: fadeInYoutubeTitle 0.8s ease forwards;
}

@media screen and (max-width: 767px) {
  .fade-in-youtube.is-visible {
    animation: fadeInOnly 0.8s ease forwards;
  }
}

@keyframes fadeInYoutubeMain {
  from {
    opacity: 0;
    margin-top: calc(-12rem + 4rem);
  }
  to {
    opacity: 1;
    margin-top: -12rem;
  }
}

.fade-in-youtube-main {
  opacity: 0;
}

.fade-in-youtube-main.is-visible {
  animation: fadeInYoutubeMain 0.8s ease 0.15s forwards;
}

@media screen and (max-width: 767px) {
  .fade-in-youtube-main.is-visible {
    animation: fadeInOnly 0.8s ease 0.15s forwards;
  }
}

/* アニメーションの定義（root levelに置く必要あり） */
@keyframes scrollVerticalToTop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes scrollVerticalToBottom {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

.main-visual {
    height: 90rem;
    position: relative;
    overflow: hidden;
}

.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

.main-visual::after {
  content: '';
  position: absolute;
  top: 9rem;
  left: 0;
  width: 4.6rem;
  height: 71rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/mv-pin-img.png);
  z-index: 3;
}

.main-visual #gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-visual .mv-content-box {
    display: flex;
    position: relative;
    z-index: 2;
    height: 100%;
}

.main-visual .mv-stadium-bg {
    display: none;
}

.main-visual .img-box {
    width: 70rem;
    display: flex;
    gap: 1.5rem;
    transform: rotate(15deg) translateX(35%);
    margin-top: -20vh;
    z-index: 2;
}

.main-visual .text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../img/mv-text-bg.png);
        z-index: -1;
        opacity: .5;
      }

      &::after {
        content: '';
        position: absolute;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(../img/mv-text-img.png);
        width: 6rem;
        height: 80rem;
        top: 5rem;
        right: 7rem;
      }

    .mv-gradient-area {
      display: contents;
    }

    .mv-text-area {
      display: contents;
    }

    .logomark {
      margin-bottom: 7rem;
    }

    .main-title {
      font-size: 2.3rem;
      font-weight: bold;
      margin-bottom: 4rem;

      @media screen and (max-width: 767px) {
        font-size: 1.8rem;
      }
    }

    .mv-main-text {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 2;
      text-align: center;
      margin-bottom: 9.5rem;

      @media screen and (max-width: 767px) {
        font-size: 1.2rem;
      }
    }

    .scroll-box {

      & a {
        font-size: 1.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
  
        & span {
          text-transform: uppercase;
        }

      }
    }
}

.main-visual .img-box .vertical-marquee-container {
    height: 140vh;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.main-visual .img-box .marquee-content {
    display: flex;
    flex-direction: column;
}

.main-visual .img-box .marquee-content img {
    width: 24rem;
    height: 15rem;
    display: block;
    box-sizing: border-box;
}

.main-visual .img-box .marquee-content-left.is-animated {
    animation: scrollVerticalToBottom var(--speed) linear infinite;
}

.main-visual .img-box .marquee-content-right.is-animated {
    animation: scrollVerticalToTop var(--speed) linear infinite;
}

.sub-title {
  width: 316px;
  height: 265px;
  color: #fff;
  padding-top: 3.4rem;
  padding-left: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  @media screen and (max-width: 1025px) {
    width: 200px;
    height: 170px;
    padding-top: 2rem;
    padding-left: 2rem;
  }
  
  @media screen and (max-width: 767px) {
    width: 200px;
    height: 170px;
    padding-top: 2rem;
    padding-left: 2rem;
    
  }
  
  .top-box {
    font-family: "Montserrat", sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    padding-bottom: 1.7rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid currentColor;
    line-height: 1.3;
    display: inline-block;

    @media screen and (max-width: 767px) {
      font-size: 1.8rem;
      padding-bottom: 1.2rem;
      margin-bottom: 7px;
    }
  }
  
  .bottom-box {
    line-height: 2.4;
    font-size: 1.5rem;
    font-weight: 500;

    @media screen and (max-width: 767px) {
      font-size: 1.3rem;
    }
  }

  &.green {
    background-image: url(../img/title-label-green.png);
  }
  &.orange {
    background-image: url(../img/title-label-orange.png);
  }
  &.yellow {
    background-image: url(../img/title-label-yellow.png);
  }

}


/* Youtube */
.sec-youtube{
  position: relative;
  margin-top: 17rem;
  margin-bottom: 40rem;
  background: linear-gradient(to right, #2668AA, #00A048);
  padding-bottom: 10rem;
  margin-left: 10rem;

  @media screen and (max-width: 767px) {
    margin-left: 0;
    margin-top: 10rem;
    margin-bottom: 12rem;
    padding-bottom: 0;
    z-index: 10;
    background: #fff;
  }
  
  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 11rem;
    width: 100%;
    height: 85.5rem;
    background: linear-gradient(to right, #2668AA, #00A048);
    z-index: -1;
    display: none;
  }

  .content-box{
    width: 100%;
    height: 81.6rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/youtube-bg.png);
    margin-left: -11rem;
    position: relative;
    
    @media screen and (max-width: 767px) {
      margin-left: 0;
      background-image: url(../img/youtube-bg-sp.png);
      height: 23rem;
    }

    &::after {
      content: '';
      position: absolute;
      width: 9rem;
      height: 71rem;
      top: 7rem;
      right: 0;
      transform: translateX(50%);
      background-repeat: no-repeat;
      background-size: contain;
      background-image: url(../img/pin-img-green.png);

      @media screen and (max-width: 767px) {
        display: none;
      }
    }

  
    .inner{
      margin-right: 0;
      margin-left: 22rem;

      @media screen and (max-width: 767px) {
        margin: 0;
      }
    
      .title-box{
        display: flex;
        align-items: center;
        gap: 7.4rem;
        transform: translateY(-5rem);
        z-index: 0;
        position: relative;
      
        .title-type02{
        
          @media screen and (max-width: 767px) {
            display: none;
          }
        }
        .sub-title{
          @media screen and (max-width: 767px) {
            transform: translateY(-60%);
            margin-left: 2rem;
          }
        
          .top-box{
          
          }
          .bottom-box{
          
          }
        }
      }
      .main-box{
          margin-top: -12rem;
          margin-left: 11rem;
          z-index: 2;
          position: relative;
          @media screen and (max-width: 767px) {
            margin-top: -18rem;
            margin-left: 50%;
            transform: translateX(-50%);
            width: 80%;
          }

          & video {
            @media screen and (max-width: 767px) {
              width: 100%;
            }
          }
      
      }
    }
  }
}

/* History */
.sec-history{
  position: relative;
  padding-bottom: 13rem;

  &::before {
    content: '';
    position: absolute;
    width: 67rem;
    height: 67rem;
    top: 3rem;
    right: -12rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/his-stadium-img.png);

    @media screen and (max-width: 767px) {
      display: none;
    }
  }

  &::after {
    content: '';
    position: absolute;
    top: -4rem;
    right: 0;
    height: 96%;
    width: 120rem;
    background: #EEEEEE;
    z-index: -1;

    @media screen and (max-width: 767px) {
      width: 90%;
      top: 6rem;
      height: 98%;
    }
  }

  .title-box{
    width: 119rem;
    max-width: 119rem;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 16rem;
    transform: translateY(-65%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;

    @media screen and (max-width: 767px) {
      width: 100%;
      max-width: 100%;
      flex-direction: column;
      transform: translateY(-30%);
      z-index: 3;
      left: 3rem;
      
    }

    .title-type02 {
      @media screen and (max-width: 767px) {
        order: 1;
        font-size: 1.8rem;
        transform: translate(-3rem, 5rem);
      }
    }

    .sub-title.orange {
      transform: translateY(3rem);

      @media screen and (max-width: 767px) {
        order: 0;
      }
    }
  
  }
  .content-box{
      transform: translateY(10rem);
      position: relative;
      z-index: 2;
    
    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 105rem;
      height: 102%;
      background: linear-gradient(to right,#EA583E 0%, #EA583E 50%, #F4D223 100%);
      z-index: -1;
      
      @media screen and (max-width: 767px) {
        background: linear-gradient(to right,#EA583E, #F4D223);
        width: 80%;
      }
    }
  
    .white-box{
      background-color: #fff;
      width: 105rem;
      max-width: 105rem;
      margin-left: 16rem;
      padding-top: 11rem;
      padding-left: 8.4rem;
      padding-bottom: 13rem;
      transform: translateY(-4rem);
      position: relative;

      @media screen and (max-width: 767px) {
        width: 30rem;
        max-width: 30rem;
        margin-left: 2rem;
        padding: 3.5rem 2rem;
        padding-bottom: 18rem;
        transform: translateY(12rem);
      }
  
      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 27rem;
        height: 21rem;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url(../img/25th-aniversary.png);
        transform: translate(50%, 60%);

        @media screen and (max-width: 767px) {
          width: 16rem;
          height: 12rem;
          bottom: 10rem;
          right: 5rem;
        }
      }
    
      .his-list{
        display: flex;
        flex-direction: column;
        gap: 5rem;
      
        .his-item{
          display: flex;
          position: relative;

          @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 2rem;
          }
  
          &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 76px;
            height: 76px;
            background: var(--c-primary);
            border-radius: 50%;
            transform: translateX(-160%);

            @media screen and (max-width: 1025px) {
              transform: translate(-190%, 50%);
              width: 14px;height: 14px;
              
            }
          }
        
          .item-text-box{
            flex: 0 0 75rem;

            @media screen and (max-width: 767px) {
              flex: 0 0 auto;
            }
          
            .top-text{
              margin-bottom: 3.6rem;
            
              .year{
                font-size: 5rem;
                font-weight: bold;
                font-family: "Montserrat", sans-serif;
                color: var(--c-primary);
                position: relative;

                @media screen and (max-width: 767px) {
                  font-size: 2.6rem;
                }
  
                &::after {
                  content: '';
                  position: absolute;
                  top: 50%;
                  right: 2.3rem;
                  width: 75%;
                  height: 2px;
                  background: #D7D7D7;

                  @media screen and (max-width: 767px) {
                    width: 60%;
                  }
                }
              
              }
            }
            .bottom-text{
              font-size: 1.6rem;
              display: flex;
              flex-direction: column;
              gap: 2.6rem;

              @media screen and (max-width: 767px) {
                font-size: 1.3rem;
              }
  
              .bottom-text-item {
                display: flex;
                align-items: center;
                gap: 4.7rem;

                @media screen and (max-width: 767px) {
                  gap: 4rem;
                }
  
                .month{
                  display: inline-block;
                  font-weight: 600;
                  flex: 0 0 12rem;
                  text-align: right;

                  @media screen and (max-width: 767px) {
                    flex: 0 0 auto;
                  }
                  
                
                }
                .his-detail{
                  font-weight: 500;
                  padding-left: 2.5rem;
                  position: relative;
                  flex: 1;
                  line-height: 2.2;

                  @media screen and (max-width: 767px) {
                    padding-left: 0;
                  }
  
                  &::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -2.5rem;
                    width: 2px;
                    height: 100%;
                    background: var(--c-primary);
                  }
                
                }
              }
            
            }
          }
          .item-img-box{
            flex: 0 0 35rem;
            transform: translateX(15%);
            display: flex;
            flex-direction: column;
            gap: 2rem;

            & span {
              font-size: 1.2rem;
            }

            @media screen and (max-width: 767px) {
              flex: 0 0 100%;
              transform: translateX(0);
              width: 320px;
            }
          
          }

          &:last-child {
            .item-img-box {
              transform: translate(15%, -9rem);

              @media screen and (max-width: 767px) {
                transform: translate(0);
              }
            }
          }
        }
      }
    }
  }
}

/* Campaign */
.sec-campaign{
  margin-top: 28rem;
  padding-bottom: 9rem;
  background-image: url(../img/campaign-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;

  .inner{
  
    .title-box{
      display: flex;
      align-items: center;
      gap: 5rem;
      margin-left: 24.5rem;
      transform: translateY(-10%);

      @media screen and (max-width: 767px) {
        margin-left: 2rem;
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
      }

      .title-type02 {
            transform: translateY(-3rem);
        @media screen and (max-width: 767px) {
          font-size: 1.8rem;
        }
      }
    
      .yellow{
        color: #000;

        .title-type02 {
          transform: translateY(-50%);

          @media screen and (max-width: 767px) {
            
          }
        }
      
      }
    }
    .content-box{
      background-color: #fff;
      width: 95rem;
      max-width: 95rem;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4.5rem;
      margin-top: -10rem;
      padding: 3rem 7.6rem;
      padding-bottom: 13rem;
      border-top: 5px solid;
      border-image: linear-gradient(to right,#BF268A,#11AA5E, #016AAD) 1;
      position: relative;
      z-index: 1;

      @media screen and (max-width: 767px) {
        width: 90%;
        max-width: 90%;
        padding: 3rem 2rem;
        margin-top: 0;
      }
    
      .title{
        font-size: 2.4rem;
        font-weight: bold;

        @media screen and (max-width: 767px) {
          font-size: 1.8rem;
        }
      
      }
      .img-box{
        width: 60rem;

        @media screen and (max-width: 767px) {
          width: 80%;
        }
      
      }
      .text-box{
        align-self: flex-start;
        display: flex;
        flex-direction: column;
        width: 100%;

        & p {
          font-size: 1.5rem;
          font-weight: 500;
          line-height: 2;
          margin-bottom: 4.5rem;

          @media screen and (max-width: 767px) {
            font-size: 1.5rem;
          }
        }
      
        .sns-btn{
          align-self: center;
          width: 45.6rem;
          height: 8.8rem;
          border: 2px solid currentColor;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 5rem;

          @media screen and (max-width: 767px) {
            width: 100%;
            height: 7rem;
            gap: 5px;
            padding: 2rem;
          }
        
          .btn-text{
            font-size: 1.5rem;
            font-weight: 500;

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
              letter-spacing: 0;
            }
          
          }

          & img {
            @media screen and (max-width: 767px) {
              width: 17px;
            }
          }
        }
      }
    }
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11.5rem;
  padding-top: 11rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;

  @media screen and (max-width: 767px) {
    gap: 2.3rem;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
  }

  #footer-gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .footer-stadium-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -40%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/mv-text-bg.png);
    opacity: .5;
    z-index: 1;
    pointer-events: none;
  }

  .top-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;

    .main-text {
      font-size: 2.3rem;
      font-weight: bold;
      margin-top: 7rem;
      margin-bottom: 3rem;
      letter-spacing: 5px;

      @media screen and (max-width: 767px) {
        margin-top: 2.6rem;
        margin-bottom: 2rem;
        font-size: 1.8rem;
      }
    }

    .ft-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;

      .link-text {
        font-size: 1.6rem;
        font-weight: 500;

        @media screen and (max-width: 767px) {
          font-size: 1.3rem;
        }
      }
    }

  }

  .bottom-box {
    position: relative;
    z-index: 2;

    & small {
      font-size: 1.6rem;
      text-align: center;
      display: block;
      letter-spacing: 1px;

      @media screen and (max-width: 767px) {
        font-size: 1.1rem;

      }
    }
  }
}

/* --------------------------------------------------------------- */
/* SP Responsive - Main Visual */
/* --------------------------------------------------------------- */
@media screen and (max-width: 767px) {

  .main-visual {
    height: auto;
    overflow: visible;
  }

  .main-visual::before {
    height: 80vh;
  }

  .main-visual::after {
    display: none;
  }

  .main-visual #gradient-canvas {
    height: 80vh;
  }

  .main-visual .mv-content-box {
    flex-direction: column;
    height: auto;
  }

  /* Stadium logo — separate element, z-index 1 (above gradient, below img strips) */
  .main-visual .mv-stadium-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/mv-text-bg.png);
    opacity: .5;
    z-index: 1;
    pointer-events: none;
  }

  /* Image marquee strips — z-index 2 (above stadium logo, below logomark & text) */
  .main-visual .img-box {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 80vh;
    transform: rotate(15deg);
    margin-top: 0;
    z-index: 2;
    justify-content: space-between;
    pointer-events: none;
  }

  .main-visual .img-box .vertical-marquee-container {
    height: 100vh;
    background: transparent;
    box-shadow: none;
    transform: rotate(20deg);
  }

  .main-visual .img-box .vertical-marquee-container:first-child {
    position: absolute;
    top: -10vh;
    left: -15vw;
  }

  .main-visual .img-box .vertical-marquee-container:last-child {
    position: absolute;
    bottom: -10vh;
    right: -15vw;
  }

  .main-visual .img-box .marquee-content img {
    width: 7rem;
    height: 4rem;
  }

  /* Text box — z-index 3 (above everything) */
  .main-visual .text-box {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;

    &::before {
      display: none;
    }

    &::after {
      width: 2rem;
      top: 4rem;
      right: 5rem;
    }
  }

  .main-visual .text-box .mv-gradient-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
  }

  .main-visual .text-box .mv-gradient-area .logomark {
    margin-bottom: 0;
    width: 16rem;
    transform: translateY(-2rem);
  }

  .main-visual .text-box .mv-text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 6rem 3rem 4rem;
    padding-bottom: 0;
    background: #fff;
  }

  .main-visual .text-box .mv-text-area::before {
    content: '';
    position: absolute;
    top: -20rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 20rem;
    background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.2) 70%, rgba(255,255,255,0) 100%);
    pointer-events: none;
  }

  .main-visual .text-box .mv-text-area .scroll-box {
    display: none;
  }

}