/* セクションを画面いっぱいに */
.sc__mv__top {
  width: 100%;
  height: 100vh; /* ビューポート高さぴったり */
  overflow: hidden;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 80px;
}

/* Swiper本体も全画面に合わせる */
.swiper-mv,
.swiper-mv .swiper-wrapper,
.swiper-mv .swiper-slide {
  width: 100%;
  height: 100%;
}

/* 画像を中央配置してトリミング */
.swiper-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* トリミング */
  object-position: center; /* 中央寄せ */
  display: block;
}

.swiper-slide a {
  -webkit-user-drag: none;
  user-drag: none;
}


.sc__mv__top .swiper-mv img {
}