.faqList {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faqItem {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}
.faqItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.question,
.answer {
  display: flex;
  align-items: flex-start;
}
.question p,
.answer p {
  margin: 0;
}
.question {
  margin-bottom: 15px;
}
.qMark,
.aMark {
  margin-right: 20px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.qMark {
  color: var(--primary-color);
}
.aMark {
  color: var(--accent-color-1);
}
.question p {
  font-family: var(--jp-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
} 