@charset "UTF-8";
/* CSS Document */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal__content {
  position: absolute;
  top: 26em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #eae3d3;
  border: 5px solid #000;
  border-radius: 10px;
  width: 85%;
  max-width: 350px;
}
.count-modal {
  display: none;
}
@media screen and (max-width: 480px) {
  /* SP */
  .modal__content {
    padding: 25px;
  }
}
@media screen and (min-width: 481px) {
  .modal {
    width: 375px;
  }
  /* TB */
  .modal__bg {
    max-height: 545px;
  }
  .modal__content {
    width: 85% !important;
    padding: 25px;
  }
}
@media screen and (min-width: 960px) {
  /* PC */
  .modal__bg {
    max-height: 545px;
  }
  .modal__content {
    width: 85% !important;
    padding: 25px;
  }
}
