/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background-color: #fff;
  background-image: url("../../../images/bg_gr.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 30vw auto;
}

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

/* Title Area */
.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 27px + 1.74vw, 60px);
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 11px + 0.52vw, 20px);
}

/* FAQ Item */
.faq-item {
  background-color: #E8F3FA;
  border-radius: 20px;
  overflow: hidden;
}

/* Question (Summary) */
.faq-question {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: clamp(15px, 11px + 0.52vw, 20px);
  padding: clamp(10px, 7px + 0.39vw, 15px) clamp(25px, 15px + 1.3vw, 40px);
  background: transparent;
  cursor: pointer;
  text-align: left;
  list-style: none;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

/* Arrow */
.faq-arrow {
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(-135deg);
}

.faq-question:hover .faq-arrow {
  opacity: 0.5;
}

/* Badge */
.faq-badge {
  flex-shrink: 0;
  width: clamp(55px, 45px + 1.3vw, 70px);
  height: clamp(55px, 45px + 1.3vw, 70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 24px + 0.52vw, 34px);
  box-sizing: border-box;
}

.faq-badge-q {
  background-color: var(--color-primary);
  color: #fff;
}

.faq-badge-a {
  background-color: #fff;
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
}

/* Question Text */
.faq-question-text {
  flex: 1;
  font-size: clamp(18px, 16.7px + 0.17vw, 20px);
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.4;
}

/* Answer */
.faq-answer {
  display: flex;
  padding: clamp(10px, 7px + 0.39vw, 15px) clamp(25px, 15px + 1.3vw, 40px);
  gap: clamp(15px, 11px + 0.52vw, 20px);
  align-items: flex-start;
  border-top: 1px solid #ccc;
  margin: 0 clamp(25px, 15px + 1.3vw, 40px);
  padding-left: 0;
  padding-right: 0;
}

.faq-answer--single-line {
  align-items: center;
}

.faq-answer-text {
  flex: 1;
  font-size: clamp(18px, 16.7px + 0.17vw, 20px);
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.4;
}

.faq-answer-text p {
  margin: 0;
}

/* No Items */
.faq-no-items {
  text-align: center;
  color: var(--color-black);
  font-size: 16px;
}

/* ==========================================================================
   SP Styles
   ========================================================================== */
@media screen and (max-width: 768px) {
  .faq {
    background-size: 95vw auto;
  }
  .faq-header {
    margin-bottom: 30px;
  }
  .faq-list {
    gap: 12px;
  }
  .faq-item {
    border-radius: 15px;
  }
  .faq-question {
    gap: 12px;
    padding: 10px 15px;
  }
  .faq-badge {
    width: clamp(30px, 13px + 4.78vw, 50px);
    height: clamp(30px, 13px + 4.78vw, 50px);
    font-size: clamp(20px, 13px + 1.91vw, 28px);
  }
  .faq-badge-a {
    border-width: 2px;
  }
  .faq-question-text {
    font-size: 16px;
    line-height: 1.5;
  }
  .faq-arrow {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }
  .faq-answer {
    padding: 10px 0;
    margin: 0 15px;
    gap: 12px;
  }
  .faq-answer-text {
    font-size: 16px;
    line-height: 1.7;
  }
}/*# sourceMappingURL=faq.css.map */