@media screen and (min-width: 769px) {
  .modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
  }

  .modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
  }

  .modal__content {
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .js-modal-open {
    position: relative;
    display: block;
  }
  .js-modal-open:before {
    position: absolute;
    top: 12px;
    right: 15px;
    content: "\f00e";
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #f6ff00;
    color: #505050;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.08);
  }
}

/*# sourceMappingURL=modal.css.map */
