.img-frame{
  position: relative;
  width: 70%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

.msg{
  font-size: 50px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  pointer-events: none;
}

/* 修正: px に変更 */
.msg-01, .msg-02, .msg-03, .msg-04, .msg-05, .msg-06, .msg-07{
  text-shadow: 2px 2px 3px #000, -1px -1px 3px #000;
}

@media screen and (max-width: 767px){
  .img-frame{ width: 100%; height: 600px; }
}

/* 共通レイヤ */
.img{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;
  pointer-events: none;
  z-index: 10;
}

/* 画像パス（環境に合わせて確認） */
.img-01{ background-image: url('../MagVac-01.JPG'); }
.img-02{ background-image: url('../MagVac-02.JPG'); }
.img-03{ background-image: url('../MagVac-03.JPG'); }
.img-04{ background-image: url('../MagVac-04.JPG'); }
.img-05{ background-image: url('../MagVac-05.JPG'); }
.img-06{ background-image: url('../MagVac-06.JPG'); }
.img-07{ background-image: url('../MagVac-07.JPG'); }

/* 共通アニメーション設定 */
.img{
  animation-name: fadezoom;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

/* 7枚を均等に分割: 20s / 7 ≒ 2.857142857s */
/* 負の遅延で読み込み時に正しいスライドが表示されるようにする */
.img-01{ animation-delay: 0s;        z-index:11; }
.img-02{ animation-delay: -2.857s;  z-index:12; }
.img-03{ animation-delay: -5.714s;  z-index:13; }
.img-04{ animation-delay: -8.571s;  z-index:14; }
.img-05{ animation-delay: -11.429s; z-index:15; }
.img-06{ animation-delay: -14.286s; z-index:16; }
.img-07{ animation-delay: -17.143s; z-index:17; }

/* 単一 keyframes: 表示（ホールド）→ フェードアウト＆ズーム → 後半は非表示 */
@keyframes fadezoom {
  0%    { opacity: 1; transform: scale(1.03); }
  12.5% { opacity: 1; transform: scale(1.06); } /* ホールド（表示時間） */
  14.2857% { opacity: 0; transform: scale(1.15); } /* フェードアウト */
  100%  { opacity: 0; transform: scale(1.15); }
}
