@charset "UTF-8";

/* ================================================== */
/* modal */
/* ================================================== */
.modal-open-button {
  background-color: #12003B;
  border-radius: 2rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  margin: .5rem 0 0;
  padding: .5rem 1rem;
}
.modal-open-button:hover {
  opacity: .75;
}

.modal {
  background-color: rgba(0,0,0,.7);
  display: none;
  height: 100%;
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  transition: all 1s ease-in-out;
  width: 100%;
  z-index: 9999;
}

.modal-content {
  animation: show 0.6s linear 0s;
  background: #fff;
  filter: drop-shadow(0px 2px 6px #777);
  left: 50%;
  margin: 0;
  max-width: 768px;
  overflow-y: auto;
  padding: 4rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90%;
}

.modal-header {
  margin: 0 0 4rem;
  position: relative;
}

.modalClose {
  display: inline-block;
  line-height: 0;
  position: absolute;
  right: -3rem;
  top: -3rem;
}

.modalClose span {
  cursor: pointer;
}
.modalClose span:hover {
  opacity: .75;
}

.modal-agenda > dt {
  font-size: 2rem!important;
}

.modal-agenda dd {
  font-size: 1.6rem!important;
  margin: 1rem 0 0;
}

.modal-agenda dl dt {
  font-weight: 400;
}

.modal-agenda-list {
  display: list-item;
  list-style: disc inside;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.modal-agenda-list-nest {
  margin: 1rem 0 0 1.3em!important;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}