@charset "UTF-8";
.modalWrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  overscroll-behavior: contain;
  overflow-y: scroll;
  z-index: 100000;
}

.modalWrapper.display {
  display: flex;
}
dl.modal {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
}
dl.modal::after{
    content: "☒";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    color: #777;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    background: #efefef;
    border-radius: 5px;
}
dl.modal dt{
    flex-basis: 100%;
    font-weight: bold;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid;
}
dl.modal dd{
    flex-basis: 100%;
    line-height: 23px;
}
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: "";
  width: 1px;
  height: calc(100vh + 1px);
  display: flex;
}
@media screen and (max-width:480px) {
    dl.modal {width: 390px;height: 420px;}
    dl.modal {font-size: 13px;}
    dl.modal dd{line-height: 20px;}
}
