@charset "UTF-8";
.ytMovieWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: calc(100vh + 1px);
  margin-top: -1px; */
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ytMovieWrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ytMovieWrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 16 / 9;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
}
.ytMovieWrap iframe.wide{
  width: 100%;
  height: auto;
}