@charset "UTF-8";
.modalWrapper {
  position: fixed;
  z-index: 100000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow-y: scroll;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overscroll-behavior: contain;
}
.modalWrapper.display {
  display: flex;
}
dl.modal {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
  height: 60%;
    overflow-y: auto;
  margin: 0 auto;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
}
dl.modal::after {
  content: "☒";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  text-align: center;
  color: #777;
  border-radius: 5px;
  background: #efefef;
  font-size: 20px;
  line-height: 24px;
}
dl.modal dt {
  flex-basis: 100%;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid;
  font-weight: bold;
}
dl.modal dd {
  flex-basis: 100%;
  line-height: 1.5;
}
dl.modal dd em {
  font-weight: 600;
}
dl.modal dd.-flex-end {
  display: flex;
  justify-content: flex-end;
}
dl.modal dd a.-link {
  color: blue;
}
.-red {
  color: red;
}
.modalWrapper::before,
.modalWrapper::after {
  content: "";
  display: flex;
  width: 1px;
  height: calc(100vh + 1px);
}
@media screen and (max-width:480px) {
  dl.modal {
    width: 90%;
    height: 60%;
  }
  dl.modal {
    font-size: .75rem;
  }
}