<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* #p13 - #p14 */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  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: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 926px;
  color: #ffffff;
}
.modal__content img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.modal__content dl {
  width: 100%;
  margin: 25px auto 0;
  text-align: left;
}
.modal__content dl dt {
  font-size: 18px;
  margin: 0 0 15px;
}
.modal__content dl dd {
  font-size: 14px;
  line-height: 1.7;
}
a.js-modal-close {
  position: absolute;
  top: -60px;
  right: 0;
}

@media (max-width:480px) {
  .modal__content {
    width: 100%;
  }
  .modal__content img {
    width: 100%;
  }
  .modal__content dl {
    width: 86%;
  }
  a.js-modal-close {
    top: -40px;
    right: 7%;
  }
}</pre></body></html>