body.noscroll {
  overflow: hidden;
  height: 100vh; }

.modal {
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; }
.modal .modal_cnt {
  width: 90%;
  height: 90%;
  max-width: 620px;
  border-radius: 10px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 5%;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0); }
@media (max-width: 480px) {
  .modal .modal_cnt {
    width: 85%; } }
.modal .modal_cnt .inner {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: calc(90% - 40px);
  overflow: scroll;
  padding: 0 5%; }
@media (max-width: 480px) {
  .modal .modal_cnt .inner {
    font-size: 14px;
    top: 4%;
    padding: 0 7%;
    height: calc(90% - 25px); } }
.modal .modal_cnt .inner h3 {
  line-height: 1.6em;
  margin-bottom: 1.8em; }
@media (max-width: 480px) {
  .modal .modal_cnt .inner h3 {
    line-height: 1.4em;
    margin-bottom: 1.6em; } }
.modal .modal_cnt .inner p {
  font-weight: normal;
  line-height: 1.8em; }
.modal .modal_cnt .inner p .underbar {
  text-decoration: underline; }
.modal .modal_cnt .inner p .from_staff {
  text-align: right;
  display: block;
  margin-bottom: 1.8em; }
.modal .modal_cnt .inner p .bottom {
  display: block;
  font-size: .9em;
  line-height: 1.4em; }
.modal .modal_cnt .inner p .bottom .red {
  color: red; }
@media (max-width: 480px) {
  .modal .modal_cnt .inner p {
    line-height: 1.4em; } }
.modal .modal_cnt .close_btn {
  width: 100%;
  background: #333;
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  cursor: pointer;
  border-radius: 0 0 8px 8px; }
@media (max-width: 480px) {
  .modal .modal_cnt .close_btn {
    line-height: 34px; } }
.modal .modal_cnt .close_btn:hover {
  background: #666; }
