@charset "UTF-8";

/* ===========================
   FAQ Section
=========================== */
.faq {
  padding: 80px 20px;
  background-color: #f7f8fa;
}

.faq dl {
  margin: 0 auto;
  max-width: 860px;
}

.faq dt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 0 16px;
  border-top: 1px solid #e4e4e4;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  line-height: 1.55;
  word-break: keep-all;
}

.faq dt:first-of-type {
  border-top: 2px solid #222;
}

.faq dt::before {
  content: "Q";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 32px;
}

.faq dd {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 0 28px 0;
  border-top: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #555;
  line-height: 1.8;
  word-break: keep-all;
}

.faq dd::before {
  content: "A";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #7e4f40;
  background-color: #fff;
  color: #7e4f40;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 29px;
}

/* ===========================
   PC (1024px+)
=========================== */
@media screen and (min-width: 1024px) {
  .faq {
    padding: 100px 20px;
  }

  .faq dt {
    padding: 32px 0 16px;
    font-size: 18px;
    gap: 18px;
  }

  .faq dt::before {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
  }

  .faq dd {
    padding: 0 0 32px 0;
    font-size: 16px;
    gap: 18px;
  }

  .faq dd::before {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 33px;
    border-color: #7e4f40;
    color: #7e4f40;
  }
}
