
@charset "UTF-8";

/*対応エリア*/
#area+div .inner_item_img img {
    object-fit: contain;
}

/*--------動画2カラム--------*/
.video_2clm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* PC時の2カラム化 */
@media screen and (min-width: 768px) {
  .video_2clm {
    flex-direction: row-reverse;
    gap: 20px;
    align-items: stretch; /* 高さを揃える */
  }

  .video_2clm .youtube_block,
  .video_2clm video {
    width: 50%;
    aspect-ratio: 16 / 9;
    background-color: #000; /* 黒背景で余白も目立ちにくく */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video_2clm .youtube_block iframe {
    width: 100%;
    height: 100%;
    object-fit: contain; /* iframeにも適用されるようにラップ */
    pointer-events: auto;
  }

  .video_2clm video {
    height: auto;
    object-fit: contain;
  }
.ytp-cued-thumbnail-overlay-image {
    background-size: contain;
    -moz-background-size: contain;
    -webkit-background-size: contain;
}

.youtube_block {
    padding-top: 0;
}
}
