.faq_section {
  --faq-h01-c: #52696e;
  background: #ebf1f2;
  margin-top: 100px;
}
@media (max-width: 900px) {
  .faq_section {
    margin-top: 80px;
  }
}
.faq_section .faq_section_header {
  max-width: var(--container-width);
  margin: 0 auto;
  color: var(--faq-h01-c);
}
.faq_section .faq_section_header .line_b::after {
  background: -webkit-gradient(linear, left top, right top, from(var(--faq-h01-c)), to(transparent));
  background: linear-gradient(to right, var(--faq-h01-c) 0%, transparent 100%);
}
.faq_section .faq_section_header .c_mb {
  color: var(--faq-h01-c);
  font-weight: 700;
}
.faq_section .faq_section_toggle {
  padding: var(--section-padding) var(--space-xs);
}
.faq_section .faq_section_toggle .faq_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.faq_section .faq_section_toggle .faq_wrap .faq_item {
  background: #e3eaeb;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
  -webkit-box-shadow: 10px 10px 30px rgba(255, 255, 255, 0.6), 15px 15px 20px rgba(0, 0, 0, 0.06), inset 10px 5px 15px rgba(255, 255, 255, 0.8);
          box-shadow: 10px 10px 30px rgba(255, 255, 255, 0.6), 15px 15px 20px rgba(0, 0, 0, 0.06), inset 10px 5px 15px rgba(255, 255, 255, 0.8);
}
.faq_section .faq_section_toggle .faq_wrap .faq_item:last-child {
  margin-bottom: 0;
}
.faq_section .faq_section_toggle .faq_wrap .faq_trigger {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 30px 35px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2196078431);
  cursor: pointer;
  text-align: left;
}
.faq_section .faq_section_toggle .faq_wrap .faq_trigger h3 {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  color: #2d3132;
}
.faq_section .faq_section_toggle .faq_wrap .faq_trigger h3 span {
  color: #39c4e0;
}
@media (max-width: 480px) {
  .faq_section .faq_section_toggle .faq_wrap .faq_trigger {
    padding: 25px 15px;
  }
}
.faq_section .faq_section_toggle .faq_wrap .faq_icon {
  font-size: 50px;
  font-weight: 400;
  color: #b3c2c4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.2s ease;
  transition: transform 0.35s ease, opacity 0.2s ease, -webkit-transform 0.35s ease;
  display: inline-block;
}
.faq_section .faq_section_toggle .faq_wrap .faq_icon.is-open {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0.6;
}
@media (max-width: 480px) {
  .faq_section .faq_section_toggle .faq_wrap .faq_icon {
    font-size: 35px;
  }
}
.faq_section .faq_section_toggle .faq_wrap .faq_body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq_section .faq_section_toggle .faq_wrap .faq_body p {
  margin: 0;
  padding: 0 35px 20px;
  line-height: 1.8;
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, -webkit-transform 0.3s ease 0.1s;
}
.faq_section .faq_section_toggle .faq_wrap .faq_body.is-open p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}