/* FAQ Intro Section */
.faq-intro-section {
  width: 100%;
  background: #f5f5f5;
  padding: 40px 0;
}

.faq-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.faq-intro-text {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.text-color--12c06c {
  color: #12c06c;
}

/* FAQ Content Section */
.faq-content-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 0;
}

.faq-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #fff0f5;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq-question-clickable {
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease;
}

.faq-question-clickable:hover {
  opacity: 0.8;
}

.faq-q-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fe4ba0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  flex-shrink: 0;
}

.faq-question-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-toggle-icon {
  font-size: 24px;
  font-weight: 700;
  color: #fe4ba0;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
  display: inline-block;
}

.faq-question-text {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.faq-answer-line {
  width: 100%;
  height: 1px;
  background: #C4C4C4;
  margin: 8px 0;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.faq-answer.faq-answer-open {
  max-height: 2000px;
  opacity: 1;
}

.faq-answer.faq-answer-closed {
  max-height: 0;
  padding-top: 0;
  margin: 0;
  opacity: 0;
}

.faq-a-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #12c06c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  flex-shrink: 0;
}

.faq-answer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-answer-text {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.faq-answer-list {
  list-style: disc;
  padding: 0;
  margin: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-content-section-title{
  font-size: 40px;
  font-weight: 700;
  color: #F962B2;
  line-height: 1.5;
  margin: 0 0 32px 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .faq-banner .content-banner-container {
    padding: 50px 60px;
  }

  .faq-banner .content-banner-title {
    font-size: 56px;
  }

  .faq-intro-container {
    padding: 0 60px;
  }

  .faq-content-container {
    padding: 0 60px;
  }

  .banner-breadcrumb {
    padding: 20px 60px;
  }
}

@media (max-width: 768px) {
  .faq-banner .content-banner {
    min-height: 300px;
  }

  .faq-banner .content-banner-container {
    padding: 40px 30px;
    justify-content: center;
  }

  .faq-banner .content-banner-title {
    font-size: 36px;
    text-align: center;
  }

  .faq-banner .content-banner-container::before,
  .faq-banner .content-banner-container::after {
    display: none;
  }

  .faq-intro-section {
    padding: 30px 0;
  }

  .faq-intro-container {
    padding: 0 30px;
  }

  .faq-intro-text {
    font-size: 16px;
  }

  .faq-content-section {
    padding: 40px 0;
  }

  .faq-content-container {
    padding: 0 30px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer-text {
    font-size: 16px;
  }

  .faq-q-icon,
  .faq-a-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .banner-breadcrumb {
    padding: 15px 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .faq-banner .content-banner-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .faq-intro-text {
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer-text {
    font-size: 16px;
  }

  .faq-q-icon,
  .faq-a-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .faq-content-section-title{
    font-size: 24px;
  }
}

