/* .top-container_story-img {
    position: relative;
    overflow: hidden;
}

.top-container_story-img_mask {
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1)5%);
    width: 100%;
    height: 106%;
    position: absolute;
    content: '';
    top: -6%;
    left: 0;
    display: block;
    z-index: 9999;
}
 */

/* text animation  */
.eachTextAnime span {
  opacity: 0;
  font-feature-settings: normal;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 0.3s ease-out forwards;
}

.eachKvTextAnime span {
  opacity: 0;
  font-feature-settings: normal;
}

.eachKvTextAnime.appeartext span {
  animation: text_anime_on 0.3s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* end  */

/* First view fadeIn  */
.top_fade-mask {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999999;
  opacity: 1;
}
