.p-movie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .8);
  z-index: 9999;
}
.p-movie-modal.is-show {
  display: flex;
}
.p-movie-modal__inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
}
.p-movie-modal__inner::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.p-movie-modal__video {
  position: absolute;
  inset: 0;
}
.p-movie-modal__video iframe {
  width: 100%;
  height: 100%;
}
.p-movie-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.p-movie-modal__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.p-movie-modal__close span:nth-child(1) { transform: rotate(45deg); }
.p-movie-modal__close span:nth-child(2) { transform: rotate(-45deg); }

body.is-modal-open {
  overflow: hidden;
}