#modal {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1em;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}

#modal figure {
  margin: 1em 0;
}

#modal img {
  max-width: 100%;
}

#modal h3 {
  color: #36519d;
  text-align: center;
  font-size: 1.6rem;
}

#modal p.caution {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 2em;
}

#modal p.caution span {
  color: #b8193f;
}

#modal.open {
  z-index: 100000;
}

#modal #modalInner {
  background-color: #fff;
  margin-top: 2vh;
  padding: 2em;
  position: relative;
}

#modal #modalInner h3 {
  margin-bottom: 2vh;
}

#modal #modalInner .button {
  width: 85%;
}

#modal #modalInner a.close {
  font-size: 2.0rem;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #979797;
  color: #fff;
  right: -10px;
  top: -10px;
  text-align: center;
  line-height: 33px;
  border-radius: 15px;
}