.faq-title {
  color: #32A000;
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.faq-section {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto 0;
}

.faq-item {
  background: #F0F2F2;
  margin-top: 25px;
}

.faq-item input {
  display: none;
}

.faq-question {
  position: relative;
  padding: 1em 56px 1em 3.5em;
  font-size: clamp(1rem, 1.2vw, 1.8rem);
  cursor: pointer;
  transition: opacity 0.25s ease;
  position: relative;
}
.faq-question span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 0.9em;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  padding: 0.2em;
  margin-right: 0.8em;
  position: absolute;
  top: 50%;
  left: 1.2em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-section.green .faq-question span {
  background: #32a000;
  color: #fff;
}

.faq-section.blue .faq-question span {
  background: #3e8ede;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 0 0 0;
}

.faq-answer-inner {
  border-top: 1px solid #ddd;
  padding: 1em 0 1.5em;
  margin: 0 1.21em;
  color: #444;
  font-size: 16px;
}

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

.faq-item input:checked + .faq-question::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item input:checked + .faq-question + .faq-answer {
  max-height: 300px;
  padding-top: 4px;
}

.faq-section .more_btn {
  display: table;
  background: #000;
  color: #fff;
  padding: 1.5em 3.5em 1.5em 2em;
  text-align: center;
  text-align: center;
  margin: 40px auto;
  font-size: clamp(1rem, 1.2vw, 1.8rem);
  position: relative;
}
.faq-section .more_btn p {
  font-weight: bold;
  text-align: center;
}
.faq-section .more_btn::after {
  content: "";
  display: inline-block;
  width: 1.8em;
  height: 1em;
  margin-left: 1em;
  background: url(assets/images/common/arrow_type01_white.svg) no-repeat center center/100% auto;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.faq-section .more_btn.green {
  background: #32a000;
}
.faq-section .more_btn.blue {
  background: #3e8ede;
}

@media (max-width: 768px) {
  .faq-section {
    margin: 50px auto 0;
  }
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .faq-question, .faq-answer-inner p {
    font-size: 1.4rem;
  }
}