@charset "UTF-8";

body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.modal_btn-text {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
  color: #397FEA;
}

.modal_wrap {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100vw;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  left: 0;
  top: 0;
  z-index: 10001;
  display: none;
}

.modal_inner {
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-sizing: border-box;
  display: none;
  height: max-content;
  max-height: 90vh;
  overflow-x: auto;
  border-radius: 3.733vw;
  width: 92.5vw;
  padding: 14.667vw 4.8vw 16vw;
}

.modal_head p+p {
  margin-top: 1em;
}

.modal_close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 6.4vw;
  top: 4.533vw;
  right: 4.533vw;
}

@media screen and (min-width: 501px) {
  .modal_inner {
    border-radius: 14px;
    width: 604px;
    padding: 60px 50px;
  }

  .modal_close {
    top: 22px;
    right: 22px;
    width: 24px;
  }
}

.modal_head h3 {
  color: #2881EE;
  text-align: center;
  font-size: 4.27vw;
  font-weight: bold;
}

.modal_head dl {
  margin-top: 2.5em;
}

.modal_head dl dt {
  font-weight: bold;
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.modal_head dl dd {
  margin-top: 0.6em;
}

.modal_head dl dd ul li {
  font-size: 0.9em;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.modal_head dl dd ul li+li {
  margin-top: 0.2em;
}

.modal_head dl dd+dt {
  margin-top: 1.5em;
}

.modal_head dl+p {
  margin-top: 1.5em;
  font-size: 0.9em;
}

@media screen and (min-width: 501px) {
  .modal_head h3 {
    font-size: 24px;
  }
}