/* スマホでのトップ動画サイズ調整 */
@media screen and (max-width: 767px) {

  #main-video,
  .main-video-wrap,
  .main-video-inner {
    width: 100% !important;
    height: auto !important;
  }

  .main-video {
    width: 100% !important;
    height: 50vh !important;   /* 画面の高さの半分。気に入らなければ 40vh などに変更 */
    object-fit: cover !important;
  }
}
