@charset "UTF-8";

/*--- MV画像表示調整(2025/04/22) ---*/
#mv_outer #mv:not(.mv_mp4_cover) .mv_textimg {
    justify-content: flex-start;
    align-items: flex-end;
}
#mv:not(.mv_mp4_cover) .mv_textimg .mv_textimg_pc {
    margin: 0 0 30px 30px;
}
#mv:not(.mv_mp4_cover) .mv_textimg .mv_textimg_sp {
    display: none;
}

#mv.mv_mp4_cover .mv_textimg {
  visibility: hidden;
  opacity: 0;
  animation: fadeInAfterDelay 1s ease forwards;
  animation-delay: 14s;
}
@media screen and (max-width: calc(125vh)) {
    #mv .mv_textimg img {
        max-height: calc(100vw / (5 / 2.3)) !important;
        margin: 0 auto;
    }
}
@keyframes fadeInAfterDelay {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}