section.faq {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
section.faq dl {
  margin-bottom: 10px;
}
section.faq dl dt {
  display: flex;
  padding: 25px 60px 25px 20px;
  background-color: #f7f7fa;
  position: relative;
  transition: background-color 0.3s;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  section.faq dl dt {
    padding: 15px 60px 15px 20px;
  }
}
section.faq dl dt span {
  font-family: var(--manrope);
}
@media (hover) {
  section.faq dl dt:hover {
    background-color: var(--blue-hover);
  }
}
section.faq dl dt.is-active:before {
  rotate: 90deg;
}
section.faq dl dt:before, section.faq dl dt:after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  background-color: var(--blue);
}
section.faq dl dt:before {
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  width: 2px;
  height: 20px;
  transition: rotate 0.3s;
}
section.faq dl dt:after {
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 2px;
}
section.faq dl dd {
  display: none;
  padding: 25px 20px 15px;
}
@media screen and (max-width: 767px) {
  section.faq dl dd {
    padding: 15px 20px;
  }
}
section.faq .contact-area {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 13px 0;
  width: fit-content;
  border: 1px solid #737373;
  padding: 20px 35px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  section.faq .contact-area {
    padding: 20px 5%;
  }
}
section.faq .contact-area p.tel {
  font-size: 28px;
  line-height: 1;
  font-weight: normal;
}
section.faq .contact-area p.tel span {
  font-size: 16px;
}