@charset "UTF-8";
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 50;
}
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 1);
}
.modal-close {
  width: 90%;
  max-width: 830px;
  height: 442px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.modal-close span {
  display: block;
  position: absolute;
  right: 0;
  bottom: calc(100% + 5px);
  z-index: 10;
}
.modal-close span::before {
  content: "×";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.modal-contents {
  width: 90%;
  max-width: 830px;
  padding: 15px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .modal-close {
    height: 200px;
  }
}
/*@media screen and (min-width: 600px) {
  .modal-contents {
    width: 688px;
    padding: 24px;
  }
}*/