@charset "UTF-8";
/* =====================
  よくあるご質問
 ======================= */
.p-faq .faq {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-faq .faq:first-child {
  margin-top: -10px;
}
.p-faq .faq-q {
  padding: 20px 40px 20px 15px;
  background: #F7F8FB;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: baseline;
  column-gap: 10px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
}
.p-faq .faq-q::before {
  content: "Q";
  color: #4D6299;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.p-faq .faq-q > *::before, .p-faq .faq-q > *::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #4D6299;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  transition: var(--anim);
}
.p-faq .faq-q > *:after {
  transform: rotate(90deg);
}
.p-faq .faq-q.is-open > *:after {
  transform: rotate(0deg);
}
.p-faq .faq-a {
  padding: 20px 15px 20px 40px;
  display: none;
  position: relative;
  line-height: 1.8;
}
.p-faq .faq-a::before {
  content: "A";
  color: #4D6299;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 24px;
  position: absolute;
  left: 15px;
  top: 20px;
}

.p-faq_tel {
  font-weight: 700;
  margin-bottom: 10px;
}
.p-faq_tel a {
  font-size: 2.6rem;
}

/* スマホのみ
  ------------------------ */
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  .p-faq .faq:first-of-type {
    margin-top: 40px;
  }
  .p-faq .faq-q {
    padding: 20px 60px 20px 30px;
    column-gap: 20px;
  }
  .p-faq .faq-q::before {
    font-size: 2.4rem;
  }
  .p-faq .faq-q > *::before, .p-faq .faq-q > *::after {
    right: 30px;
  }
  .p-faq .faq-a {
    padding: 20px 30px 20px 68px;
  }
  .p-faq .faq-a::before {
    font-size: 2.4rem;
    left: 30px;
  }
  .p-faq_tel a {
    margin-right: 10px;
    vertical-align: middle;
    pointer-events: none;
  }
}