.p-faq__navtitle {
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: center;
}
.p-faq__navtitle > span {
  line-height: 1;
}
.p-faq__nav ul {
  display: grid;
  grid-template-columns: 40% 60%;
}
.p-faq__nav li {
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .p-faq__nav ul {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .p-faq__nav ul li {
    padding: 0 16px;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
}
.p-faq__item dt,
.p-faq__item dd {
  padding: 24px 56px 0 56px;
  display: flex;
  align-items: flex-start;
}
.p-faq__item-question {
  position: relative;
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  color: inherit;
  background-color: #ffe0b2;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.p-faq__item-question::before {
  content: "Q";
  position: absolute;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.4rem;
  translate: -120% 0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.p-faq__item-answer {
  position: relative;
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 24px;
  background-color: #ddf4f7;
  overflow-wrap: break-word;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.p-faq__item-answer::before {
  content: "A";
  position: absolute;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  right: 0;
  top: 0;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.4rem;
  translate: 120% 0;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
.p-faq__item-answer p:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=faq.css.map */