@charset "UTF-8";
/* CSS Document */
.youtube-container {
  width: 100%; /* 親要素の幅に合わせて可変 */
}

.youtube-container iframe {
  width: 100%;
  height: auto; /* 高さは自動調整 */
  aspect-ratio: 16 / 9; /* 縦横比を16:9に固定 */
}