@charset "UTF-8";
.p-faq {
  padding-bottom: 100px;
}

.p-faq__container {
  padding-inline: 20px;
  position: relative;
  z-index: 2;
}

.p-faq__inner {
  margin-inline: auto;
  max-width: 1060px;
}

.p-faq__sections {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p-faq__title {
  align-items: center;
  color: #333;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  gap: 11px;
  letter-spacing: 0.05em;
  line-height: calc(32 / 22);
}
.p-faq__title::before {
  background-color: #129294;
  border-radius: 50%;
  content: "";
  height: 11px;
  width: 11px;
}

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

.p-faq__box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 30px 20px;
}

.p-faq__box-q {
  align-items: flex-start;
  color: #323232;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  gap: 21px;
  line-height: calc(33 / 15);
  padding-bottom: 17px;
  position: relative;
}
.p-faq__box-q::before {
  color: #333;
  content: "Q";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}
.p-faq__box-q::after {
  border-bottom: 1px dotted #707070;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  width: calc(100% - 43px);
}

.p-faq__box-a {
  align-items: flex-start;
  color: #323232;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  gap: 21px;
  line-height: calc(33 / 15);
  padding-top: 15px;
}
.p-faq__box-a::before {
  color: #129294;
  content: "A";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 414px) {
  .p-faq__box {
    padding: 30px 15px;
  }
}
@media (min-width: 768px) {
  .p-faq__box {
    padding: 30px 20px;
  }
  .p-faq__box-q {
    letter-spacing: 0.08em;
  }
  .p-faq__box-a {
    letter-spacing: normal;
  }
}
@media (min-width: 1024px) {
  .p-faq {
    padding-bottom: 170px;
  }
  .p-faq.c-page-main {
    margin-top: -178px;
  }
  .p-faq.c-page-main::before {
    top: -192px;
  }
  .p-faq__box {
    padding: 28px 38px 27px 28px;
  }
  .p-faq__box-a {
    letter-spacing: 0.08em;
  }
}