/* FAQ
------------------------------------------------------------------------- */
.bl_faq {
  padding-top: clamp(3.5rem, 2.409rem + 5.45vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 2.409rem + 5.45vw, 6.5rem);
}
.bl_faq_inner {
  background-color: #f0f8eb;
  max-width: 1024px;
  margin: 0 auto;
  padding: clamp(1rem, 0.636rem + 1.82vw, 2rem);
}
.bl_faq_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl_faq_item {
  overflow: hidden;
  border-top: 1px solid #a1a1a1;
  padding: 24px 0;
}
.bl_faq_item:first-child {
  border-top: none;
  padding-top: 0;
}
.bl_faq_item:last-child {
  padding-bottom: 0;
}
.bl_faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.bl_faq_question h3 {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  padding: 0 clamp(1rem, 0.636rem + 1.82vw, 2rem) 0 12px;
}
.bl_faq_question h3::before {
  content: "Q";
  color: #359939;
  font-size: 24px;
  line-height: 1;
  padding-right: 12px;
}
.bl_faq_question .indent {
  padding-left: 1rem;
  text-indent: -1rem;
}
.bl_faq_answer {
  background-color: #fff;
  display: none;
  padding: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  margin-top: 16px;
}

.js_toggleBtn {
  position: relative;
  width: 16px;
  height: 16px;
  border: none;
  background: none;
  cursor: pointer;
  transition: ease 0.3s;
  flex-shrink: 0;
}
.js_toggleBtn::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.js_toggleBtn::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
  transform-origin: center center;
  opacity: 1;
}

.js_toggleBtn::before,
.js_toggleBtn::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.js_toggleBtn.active::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.bl_contact_cont {
  padding-top: clamp(3.5rem, 2.409rem + 5.45vw, 6.5rem);
}
.bl_contact_cont .el_btn_base {
  margin-top: 24px;
}
.bl_contact_header {
  display: grid;
  justify-items: center;
}
.bl_contact_header p {
  margin-top: 16px;
  font-weight: 600;
}/*# sourceMappingURL=faq.css.map */