@charset "UTF-8";
.question-title-section {
  background-color: #FFF5ED;
  text-align: center;
  position: relative;
  padding: 48px 0 32px;
  overflow: hidden;
}

.question-bg-text {
  font-size: 10vw;
  color: #FCEBC6;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.question-title {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #000;
  margin-top: -1.6rem;
  z-index: 2;
}

.question-line {
  width: 90px;
  height: 6px;
  margin: 6px auto 0;
  border-radius: 3px;
  background: linear-gradient(to right, #F18627, #FEB202);
}

.faq-section {
  background-color: #FFF5ED;
  padding: 32px 24px 64px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-question {
  display: flex;
  align-items: baseline;
  gap: 25px;
}

.faq-q {
  color: #009CE1;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.faq-q-text {
  color: #000;
  font-weight: 700;
  font-size: 4.5vw;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-top: 16px;
}

.faq-a {
  color: #FF8F2B;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.faq-a-text {
  color: #222;
  font-size: 3.5vw;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.faq-line {
  height: 1px;
  width: 100%;
  margin: 12px 0;
}

.faq-line--gray {
  background-color: #C8C8C8;
}

.faq-line--black {
  background-color: #000;
}

/* --- PC調整 --- */
@media (min-width: 768px) {
  .faq-q-text {
    font-size: 1.5rem;
  }
  .faq-a-text {
    font-size: 1.2rem;
  }
  .faq-q, .faq-a {
    font-size: 1.5rem;
  }
  .question-title {
    font-size: 2.5rem;
    margin-top: -2.2rem;
  }
}
@media (min-width: 1024px) {
  .faq-section {
    max-width: 960px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=question.css.map */