/* 20250822 kmc add start */

.video-row {
  display: flex;
  justify-content: left;
  gap: 16px;
  flex-wrap: nowrap;
}
 
.video-item {
  width: 48%;
  text-align: center;
}
 
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9アスペクト比 */
  height: 0;
  overflow: hidden;
}
 
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .video-row {
    flex-wrap: wrap; /* 小さい画面では縦並びにするならここを使う */
  }
  .video-item {
    width: 100%;
  }
}

/* 20250822 kmc add end */