@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');
.overflow-hidden {
  overflow: hidden;
}
.q-and-a-sec dl {
  width: 90%;
  margin: auto;
}
.q-and-a-sec dl + dl {
  margin-top: 20px;
}
.q-and-a-sec dl dt {
  background-color: #292934;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  font-size: 3vmin;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
}
.q-and-a-sec dl dt::before {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  content: "Q.";
  margin-right: 10px;
}
.q-and-a-sec dl dt::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0px 10px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
  transform: translate(-50%, 0);
}
.q-and-a-sec dl dt.show::after {
  border-width: 0px 10px 15px 10px;
  border-color: transparent transparent #fff transparent;
}
.q-and-a-sec dl dd {
  line-height: 1.8;
  display: none;
  background-color: #E4E7EC;
  padding: 30px 20px;
}
.q-and-a-sec dl dd p {
  font-family: 'Noto Sans JP', sans-serif;
  color: #231815;
  font-size: 20px;
  font-weight: 400;
  padding: 0 20px 0 35px;
}
.q-and-a-sec dl dd p.answer {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: solid 1px #231815;
  padding: 0;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-indent: -31px;
  padding-left: 31px;
}
.q-and-a-sec dl dd p.answer::before {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  content: "A.";
  margin-right: 10px;
}
.q-and-a-sec dl dd p span.strong {
  font-weight: bold;
}
.q-and-a-sec dl dd p.note {
  font-size: 14px;
}
.q-and-a-sec dl dd p.annotation {
  color: #C40000;
  font-weight: 500;
  text-decoration: underline;
  padding: 0 20px 0 35px;
  cursor: pointer;
  font-size: 14px;
}
.q-and-a-sec dl dd span.annotation {
  color: #C40000;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}
.q-and-a-sec dl dd img {
  width: 85%;
  margin: auto;
  display: block;
  margin-top: 2%;
  margin-block: 2%;
}
.q-and-a-sec dl dd ul li {
  font-family: 'Noto Sans JP', sans-serif;
  color: #231815;
  font-size: 20px;
  font-weight: 400;
  padding: 0 20px 0 35px;
}
.q-and-a-sec .modal-back {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000001;
  background-color: rgba(0, 0, 0, 0.7);
}
.q-and-a-sec .modal-wrap {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000002;
  max-width: 650px;
  height: 85%;
  margin: auto;
  padding: 50px 20px 50px 40px;
  background-color: #fff;
  border: solid 7px #000;
}
.q-and-a-sec .modal-wrap .close-btn {
  position: absolute;
  top: -3.5px;
  right: -3.5px;
  width: 40px;
  height: 40px;
  background-color: #000;
  cursor: pointer;
}
.q-and-a-sec .modal-wrap .close-btn::before, .q-and-a-sec .modal-wrap .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 25px;
  background: #fff;
}
.q-and-a-sec .modal-wrap .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.q-and-a-sec .modal-wrap .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.q-and-a-sec .modal-wrap .modal-inner {
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  color: #231815;
  font-size: 20px;
  font-weight: 400;
  overflow-y: scroll;
  padding-right: 20px;
}
.q-and-a-sec .modal-wrap .modal-inner::-webkit-scrollbar {
  width: 5px;
}
.q-and-a-sec .modal-wrap .modal-inner::-webkit-scrollbar-track {
  background-color: #E6E6E6;
  border-radius: 5px;
}
.q-and-a-sec .modal-wrap .modal-inner::-webkit-scrollbar-thumb {
  background-color: #738180;
  border-radius: 5px;
}
.q-and-a-sec sup {
  font-size: 60%;
  top: -1.2em;
}
.q-and-a-sec small {
  font-size: 60%;
  display: block;
}
/*.q-and-a-sec small:first-of-type {
  margin-top: 1.5%;
}*/
@media screen and (max-width: 450px) {
  .q-and-a-sec dl + dl {
    margin-top: 15px;
  }
  .q-and-a-sec dl dt {
    font-size: 3.5vmin;
    text-indent: -22px;
    padding: 10px 40px 10px 42px;
  }
  .q-and-a-sec dl dt::before {
    margin-right: 5px;
  }
  .q-and-a-sec dl dt::after {
    border-width: 10px 7px 0px 7px;
    top: calc(50% - 3.5px);
    right: 7.5px;
  }
  .q-and-a-sec dl dt.show::after {
    border-width: 0px 7px 10px 7px;
    right: 7.5px;
  }
  .q-and-a-sec dl dd {
    padding: 20px 22px;
  }
  .q-and-a-sec dl dd p {
    font-size: 14px;
    padding: 0 10px 0 25px;
  }
  .q-and-a-sec dl dd p.answer {
    font-size: 16px;
    text-indent: -22px;
    padding: 0;
    padding-left: 22px;
  }
  .q-and-a-sec dl dd p.answer::before {
    margin-right: 10px;
  }
  .q-and-a-sec dl dd span.annotation {
    font-size: 11px;
  }
  .q-and-a-sec dl dd p.note {
    font-size: 11px;
  }
  .q-and-a-sec dl dd ul li {
    font-size: 14px;
    padding: 0 10px 0 25px;
  }
  .q-and-a-sec .modal-wrap {
    width: 90%;
    border-width: 4px;
    padding: 50px 10px 50px 30px;
  }
  .q-and-a-sec .modal-wrap .close-btn {
    width: 35px;
    height: 35px;
  }
  .q-and-a-sec .modal-wrap .close-btn::before, .q-and-a-sec .modal-wrap .close-btn::after {
    height: 20px;
  }
  .q-and-a-sec .modal-wrap .modal-inner {
    font-size: 14px;
    padding-right: 10px;
  }
  .q-and-a-sec .modal-wrap .modal-inner::-webkit-scrollbar {
    width: 3px;
  }
}