.faq-section {
  width: 100%;
  height: 93.50vw;
  background-image: url('../img/bg-faq-section-green-pc.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3vw;
  font-size: 1.7vw;
  line-height: normal;
}

.lady-faq {
  width: 8.2vw;
  height: auto;
  z-index: 2;
  display: block;
  margin-bottom: 0.8vw;
}

.faq-title {
  width: 27.8vw;
  height: 4.2vw;
  background-color: #F59A2F;
  border: 0.25vw solid #212121;
  border-radius: 9999px;
  box-shadow: 0.3vw 0.3vw 0 #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.7vw;
  color: white;
  margin-top: -0.8vw;
  z-index: 1;
}

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 3vw;
  gap: 1.5vw;
}

.faq-item {
  width: 72vw;
  background-color: white;
  border-radius: 0;
  overflow: hidden;
  border: 0.25vw solid #212121;
}

.faq-question {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 600;
  font-size: 1.5vw;
  color: #212121;
  line-height: 1.6;
  padding: 1.8vw 2vw;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  background-color: white;
  position: relative;
  transition: background-color 0.3s;
  border-left: 0.5vw solid #269931;
  border-right: 0.5vw solid #269931;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-q-label {
  font-weight: 700;
  color: #269931;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  font-size: 2.5vw;
  font-weight: 700;
  color: #269931;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 1.3vw;
  color: #212121;
  line-height: 1.7;
  padding: 0 2vw;
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s, border 0.3s;
  border-left: 0 solid #EB5E72;
  border-right: 0 solid #EB5E72;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.8vw 2vw;
  border-left: 0.5vw solid #EB5E72;
  border-right: 0.5vw solid #EB5E72;
}

.faq-a-label {
  font-weight: 700;
  color: #EB5E72;
  flex-shrink: 0;
}

.faq-a-text {
  flex: 1;
}
