.questions-seciton {
  background-color: #0baa6a;
  padding-bottom: 30px;
}

.questions-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.questions-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.faq-section {
  width: 100%;
  padding: 80px 20px;
  background: #0baa6a;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.question {
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.question-header {
  background-color: #7ee27a;
  color: #111;
  padding: 18px 30px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-radius 0.3s ease, background-color 0.3s ease;
  border: none;
  flex-wrap: wrap;
}

.question-header:hover {
  background-color: #92f18c;
}

.question-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.05em;
  flex: 1;
  white-space: normal;
  word-break: break-word;
  line-height: 1.6;
}

.faq__chev {
  transition: transform 0.3s ease;
}

.question.open .faq__chev {
  transform: rotate(180deg);
}

.question.open .question-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.question-content {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.question-inner {
  padding: 20px 30px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.6;
}

.question-inner > p {
  font-size: 18px;
}

.question.open .question-content {
  opacity: 1;
}

@media (max-width: 960px) {
  .questions-wrapper {
    width: 800px;
  }
}

@media (max-width: 820px) {
  .questions-wrapper {
    width: 750px;
  }
}

@media (max-width: 767px) {
  .questions-wrapper {
    width: 650px;
  }
  .questions-title {
    font-size: 32px;
  }
  .question-inner > p {
    font-size: 16px;
  }
}

@media (max-width: 670px) {
  .questions-wrapper {
    width: 580px;
  }
  .question-title {
    font-size: 18px;
  }
}

@media (max-width: 608px) {
  .questions-wrapper {
    width: 500px;
  }
  .question-title {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .questions-wrapper {
    width: 400px;
  }
  .question-title {
    font-size: 15px;
  }
  .question-inner > p {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .questions-wrapper {
    width: 360px;
  }
  .question-title {
    font-size: 14px;
  }
  .question-inner > p {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .questions-wrapper {
    width: 320px;
  }
  .question-title {
    font-size: 12px;
  }
}
