@keyframes scroll-hint-appear {
    0% {
      transform: translateX(40px);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    50%,
    100% {
      transform: translateX(-40px);
      opacity: 0;
    }
  }
/*   
  .scroll-hint.is-right-scrollable {
    background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  }
  
  .scroll-hint.is-right-scrollable.is-left-scrollable {
    background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  }
  
  .scroll-hint.is-left-scrollable {
    background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  } */
  
  .scroll-hint-icon {
    position: absolute;
    top: calc(20% - 25px);
    left: calc(50% - 60px);
    box-sizing: border-box;
    width: 150px;
    height: 140px;
    border-radius: 5px;
    transition: opacity .3s;
    opacity: 0;
    background: rgba(0, 0, 0, .6);
    text-align: center;
    padding: 28px 10px 10px 10px;
    z-index: 90;
  }
  
  .scroll-hint-icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    pointer-events: none;
  }
  
  .scroll-hint-text {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    text-align: center;
    margin-top: 8px;
  }
  
  .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: .8;
  }
  
  .scroll-hint-icon:before {
    display: inline-block;
    width: 49px;
    height: 78px;
    color: #FFF;
    vertical-align: middle;
    text-align: center;
    content: "";
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(/assets/images/vbms/2025/icon_scroll.svg);
  }
  
  .scroll-hint-icon:after {
    content: "";
    width: 48px;
    height: 13px;
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-14px);
    margin-left: -20px;
    background-repeat: no-repeat;
    background-image: url(/assets/images/vbms/2025/icon_arrow.svg);
    opacity: 0;
    transition-delay: 2.4s;
  }
  
  .scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
    opacity: 1;
  }
  
  .scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
    animation: scroll-hint-appear 1.2s linear;
    animation-iteration-count: 2;
  }