@charset "utf-8";
/* CSS Document */

.faq {
  border-bottom: 1px solid var(--color_gray01);
  padding: 0 0 20px;
  margin-top: 20px;
}
.faq__q,
.faq__a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.faq__a {
  margin-top: 20px;
}
.faq__qImg,
.faq__aImg {
  width: 50px;
}
.faq__aImg.s_textLong {
  align-self: flex-start;
}
.faq__qText,
.faq__aText {
  width: calc(100% - 58px);
}

.faq__qText {
  font-weight: bold;
  color: var(--color_green01);
  width: calc(100% - 58px);
}
@media screen and (min-width: 768px),print {
  .faq {
    padding-bottom: 30px;
    margin-top: 30px;
  }
}
