.video-wrap {
  max-width: 960px;   /* 全幅にしたい場合は none に */
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;  /* 16:9 固定比率 */
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

/* MP4用 */
.video-frame > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain; /* coverにすると黒帯なしでトリミング */
}

/* YouTube用 */
.video-frame > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

div#ins_smart_display {
    padding-top: 0 !important;
}