#movie_form_popup_wrapper {
  z-index: 100001;
}
.movie_form_banner_container {
  margin: 64px auto 0;
  text-align: center;
}
#movie_form_banner:hover {
  opacity: 60%;
  transition: .3s;
}
#movie_form_banner img {
  width: 650px;
  cursor: pointer;

}
  @media screen and (max-width: 480px) {
    #movie_form_banner img {
      width: 90%;
    }
  }
#movie_form_popup_wrapper {
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.movie_form_popup {
  max-width: 750px;
  max-height: 90vh;
  margin: 10px auto;
  background-color: #FFF;
  border-radius: 4px;
  overflow: scroll;

}
  @media screen and (max-width: 750px) {
    .movie_form_popup {
      margin: 10px 20px;
    }
  }
.popup_contents {
  max-height: 90%;
}
  .movie_form_popup .popup_header {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .movie_form_popup .popup_header .popup_title {
    font-weight: bold;
    color: #424242;
    font-size: 14px;
  }
  .movie_form_popup .popup_header #close {
    position: absolute;
    font-size: 32px;
    right: 12px;
    opacity: 60%;
    transition: .3s;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
  }
  .movie_form_popup .popup_content img.popup_image {
    width: 100%;
  }
  .movie_form_popup .popup_content .form_container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 8px 0 32px;
  }
    .form_container .p_message {
      display: flex;
      align-items: center;
    }
      @media screen and (max-width: 480px) {
        .form_container .p_message {
          display: block;
        }
      }
    .form_container .p_message ul {
      width: 90%;
      margin: 0 auto;
    }
    .form_container .p_message ul li {
      position: initial;
      font-size: 14px;
      line-height: initial;
      text-align: left;
    }
      @media screen and (max-width: 480px) {
        .form_container .p_message ul li {
          font-size: 10px;
        }
      }
    .form_container .p_message ul li::after {
      display: none;
    }
    .form_container .satori__input_group {
      font-size: 14px;
    }
    @media screen and (max-width: 480px) {
      .form_container .satori__input_group {
        font-size: 10px;
      }
    }
  
  #satori__finish_panel {
    width: 100%;
  }
  #satori__finish_panel .satori__message {
    text-align: center;
  }
  #satori__finish_panel .satori__message a {
    height: 36px;
    width: 164px;
    font-size: 14px;
    color: #FFF;
    font-weight: bold;
    text-decoration: none;
    background-color: #FF009A;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }