.p-faq {
  padding-bottom: 152px;
  padding-inline: 20px;
}

.p-faq__contents {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-inline: auto;
  max-width: 1050px;
}

.p-faq__title {
  align-items: center;
  color: #0056aa;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.06em;
  line-height: calc(29 / 20);
}
.p-faq__title::before {
  background-color: #0056aa;
  border-radius: 3px;
  content: "";
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

.p-faq__boxs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 45px;
}

.faq__box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 15px;
}

.faq__box-q,
.faq__box-a {
  align-items: baseline;
  display: flex;
  gap: 10px;
}
.faq__box-q p,
.faq__box-q h1,
.faq__box-q h2,
.faq__box-q h3,
.faq__box-q h4,
.faq__box-q h5,
.faq__box-q h6,
.faq__box-a p,
.faq__box-a h1,
.faq__box-a h2,
.faq__box-a h3,
.faq__box-a h4,
.faq__box-a h5,
.faq__box-a h6 {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: calc(28 / 14);
  width: 100%;
}
.faq__box-q::before,
.faq__box-a::before {
  content: "";
  flex-shrink: 0;
}

.faq__box-q {
  padding-bottom: 17px;
}
.faq__box-q p,
.faq__box-q h1,
.faq__box-q h2,
.faq__box-q h3,
.faq__box-q h4,
.faq__box-q h5,
.faq__box-q h6 {
  color: #0056aa;
  font-weight: bold;
}
.faq__box-q::before {
  color: #0056aa;
  content: "Q.";
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.faq__box-a {
  border-top: 1px solid #d4d4d4;
  padding-top: 16px;
}
.faq__box-a p,
.faq__box-a h1,
.faq__box-a h2,
.faq__box-a h3,
.faq__box-a h4,
.faq__box-a h5,
.faq__box-a h6 {
  color: #333;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.faq__box-a::before {
  color: #0092e6;
  content: "A.";
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 414px) {
  .faq__box-q,
  .faq__box-a {
    gap: 13px;
  }
}
@media (min-width: 768px) {
  .faq__box {
    padding: 30px 20px;
  }
}
@media (min-width: 1024px) {
  .p-faq__contents {
    gap: 80px;
  }
  .faq__box {
    padding: 28px 30px;
  }
}