@charset "utf-8";

/*親要素*/
.youtube-parent {
  width:100%;
  height:auto;
  display:flex;
  justify-content:center; /*これを指定*/
  margin-bottom: 20px ;

}

.youtube {
  width: 90%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}