#faq_content {
  padding-bottom: 0;
}
#faq_content .faq_list {
  & dt::before, dd::before {
    display: flex;
    color: #FFF;
    font-family: var(--ff-en);
    font-size: 2.4rem;
    line-height: 1;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    margin-right: 1.6rem;
    border-radius: 50%;
  }
  & dt {
    display: flex;
    font-size: var(--fs-large);
    margin-bottom: 2em;
    &::before {
      content: "Q";
      background: var(--key-color);
    }
  }
  & dd {
    display: flex;
    font-size: var(--fs-large);
    &::before {
      content: "A";
      background: var(--accent-green);
    }
    + dt {
      margin-top: 2em;
      padding-top: 2.5em;
      border-top: 0.1rem solid var(--key-color);
    }
  }
}
#faq_content .faq_list .btn_wrap {
  width: fit-content;
  margin-top: 2rem;
}