@charset "UTF-8";
/* --------------------------------------------
    よくある質問
-------------------------------------------- */
.link-area {
  display: none;
}

.faq-list {
  position: relative;
}
.faq-list .answer {
  padding: 0 0 0 3.4rem;
  overflow: hidden;
}
.faq-list .answer.open {
  overflow: unset;
}
.faq-list .answer-box {
  max-height: 0;
}
.faq-list .answer-box.open {
  max-height: unset;
}
.faq-list .question-btn::after {
  -webkit-transform: rotate(45deg);
  display: block;
  z-index: 1;
  position: absolute;
  top: 0.3em;
  right: 0.5em;
  width: 0.7em;
  height: 0.7em;
  transform: rotate(45deg);
  border-right: 3.5px solid #181D4C;
  border-bottom: 3.5px solid #181D4C;
  color: #fff;
  content: "";
}

.faq-list.open .answer-box {
  max-height: 100em;
  padding: 0.4rem 0 3rem 3.2rem;
}
.faq-list.open .question-btn::after {
  -webkit-transform: rotate(-135deg);
  top: 0.3em;
  transform: rotate(-135deg);
}

.question {
  z-index: 1;
  position: relative;
  margin-top: 3.5em;
  padding: 0.2rem 0 0 3.2rem;
  color: #e53828;
  font-size: 1.25em;
  font-weight: bold;
}
.question::before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding-bottom: 0.1em;
  border-radius: 50%;
  background-color: #e53828;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  content: "Q";
}

.question-btn {
  display: block;
  margin-top: 1.5em;
  padding: 0.2rem 3rem 0 3.2rem;
  cursor: pointer;
}
.question-btn:hover {
  text-decoration: none;
  opacity: 0.8;
}

.answer {
  -webkit-transition: 0.2s;
  z-index: 1;
  position: relative;
  margin-top: 2em;
  padding: 0.4rem 0 0 3.2rem;
  line-height: 2;
  transition: 0.2s;
}
.answer::before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding-bottom: 0.1em;
  border-radius: 50%;
  background-color: #ff8028;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  content: "A";
}

.question-toggle {
  -webkit-transition: 0.2s;
  z-index: 10;
  position: absolute;
  top: -0.5em;
  right: -0.1em;
  width: 2em;
  height: 2em;
  background: rgba(255, 255, 255, 0);
  transition: 0.2s;
}
.question-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  /*  よくある質問 */
}
@media screen and (max-width: 768px) {
  /*  よくある質問 */
  .question {
    padding: 0.4rem 0 0 3.2rem;
  }
  .question-btn {
    padding: 0.4rem 2rem 0 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  /*  よくある質問 */
  .faq-list .question-btn::after {
    top: 0.7em;
    right: 0.3em;
    width: 0.5em;
    height: 0.5em;
    border-right: 2.5px solid #181D4C;
    border-bottom: 2.5px solid #181D4C;
  }
  .faq-list.open .question-btn::after {
    top: 0.9em;
  }
}