<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

body {
  background: #000;
}
.movie-wrap {
  position: absolute;
  top: calc(50% - 157px);
  left: calc(50% - 280px);
  width: 560px;
  height: 315px;
}
@media (max-width: 767px) {
  .movie-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    transform: translateY(-50%);
  }
  .movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
</pre></body></html>