.notice_modal.close {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .notice_modal {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .notice_modal .notice_modal_bg {
    position: relative;
    background: #000;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    z-index: 0;
  }
  .notice_modal .movie_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    max-width: 1000px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .notice_modal .movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .notice_modal .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .notice_modal {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .notice_modal .notice_modal_bg {
    position: relative;
    background: #000;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    z-index: 0;
  }
  .notice_modal .movie_box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .notice_modal .movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .notice_modal .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.movie-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: #fff;
  border-radius: 100px;
}

.movie-modal__close span {
  display: block;
  width: 50%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.movie-modal__close span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.movie-modal__close span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (max-width: 750px) {
  .modal_item {
    width: 100%;
  }
  .movie-modal__close {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (min-width: 751px) {
  .movie-modal__close {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: pointer;
  }
  .movie-modal__close:hover {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=top_modal.css.map */