.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    left: 0;
  }
  .modal-bg {
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
  }
  .modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 86rem;
    width: 86%;
  }
  .modal-content .modal-close {
    display: block;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 auto;
  }
  .modal-close img{
    width: 30px;
    position: absolute;    
    bottom: 15px;
    right: 15px;
  }
  .modal-content_inner {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
  }
  .modal-content_inner_movie {
    max-width: 100%;
  }

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    z-index: 3;
}
.youtube iframe,video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

@media screen and (max-width: 1000px) {
  .modal-content {
      top: 30%;
      transform: translate(-50%, -30%);
      width: 90%;
  }
  .modal-close img{
      width: 3vw;
      bottom: 1.5vw;
      right: 1.5vw;
  }
}

@media screen and (max-width: 750px) {
    .modal-content {
        top: 30%;
        transform: translate(-50%, -30%);
        width: 80%;
    }
    .modal-close img{
        width: 6vw;
    }
}