@charset "utf-8";
.faq_wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 70px;
}
.faq_select {
  padding: 0 20px;
  margin: 0 0 90px;
  text-align: center;
}
.faq_select ul {
  display: flex;
  justify-content: center;
}
.faq_select li {
  list-style: none;
  margin: 0 35px;
  position: relative;
  color: #B2C1C9;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}
.faq_select li::after {
  content: '/';
  display: block;
  font-weight: 400;
  color: #384C57;
  position: absolute;
  top: 0;
  right: -39px;
  opacity: 1 !important
}
.faq_select li:last-child::after {
  display: none;
}
.faq_select li:hover {
  color: #384C57;
}
.faq_select li span {
  display: inline-block;
}
.faq_select li span::before {
  content: '';
  display: block;
  position: absolute;
  left: -20px;
  top: calc(50% - 2px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F69602;
  transform: scale(0);
  transition: all 0.3s;
}
.faq_select li span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #F69602;
  transform-origin: left center;
  transform: scaleX(0);
  transition: all 0.3s;
}
.faq_select li.current {
  color: #384C57;
}
.faq_select li:hover span::before, .faq_select li.current span::before {
  transform: scale(1);
}
.faq_select li:hover span::after, .faq_select li.current span::after {
  transform: scaleX(1);
}
.is-hide {
  display: none;
}
.faq_item {
  border: 1px solid #BCCCD5;
  background: #fff;
  position: relative;
  margin-bottom: 25px;
  transition: display 0.4s;
}
.faq_item .faq_type {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 28px;
  background: #384C57;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.faq_Q, .faq_A {
  padding-left: 80px;
  padding-right: 80px;
}
.faq_A {
  display: none;
}
.faq_Q_inner, .faq_A_inner {
  position: relative;
  margin-left: 40px;
}
.faq_Q_inner::before, .faq_A_inner::before {
  display: block;
  position: absolute;
  top: 4px;
  left: -40px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #384C57;
  line-height: 1;
}
.faq_Q_inner::before {
  content: 'Q';
}
.faq_A_inner::before {
  content: 'A';
}
.faq_Q {
  color: #384C57;
  font-weight: 700;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-right: 35px;
  cursor: pointer;
  position: relative;
}
.faq_Q .trigger {
  position: absolute;
  top: calc(50% - 8px);
  right: 50px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-left: 1px solid rgba(255, 255, 255, 0);
  border-right: 1px solid #384C57;
  border-bottom: 1px solid #384C57;
  transform: rotate(45deg);
  transition: all 0.2s;
}
.faq_Q.open .trigger {
  border-top: 1px solid #384C57;
  border-left: 1px solid #384C57;
  border-right: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.faq_A {
  padding-bottom: 35px;
}
.faq_Q p {
  line-height: 1.8;
}
.faq_A p {
  line-height: 1.8;
  margin-bottom: 1em;
}
.faq_A_inner ol {
  padding-left: 20px;
}
.faq_A_inner li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.faq_A_inner strong {
  font-weight: 700;
  color: #384C57;
}
.faq_figure {
  margin: 20px 0 0;
}
.faq_figure img {
  width: 100%;
  height: auto;
}
.faq1 {
  max-width: 400px;
}
@media(max-width: 768px) {
  .faq_wrap {
    margin-top: 40px;
  }
  .faq_select li {
    font-size: 13px;
    margin: 0 20px;
  }
  .faq_select li::after {
    top: 0;
    right: -22px;
  }
  .faq_select li span::before {
    left: -10px;
  }
  .faq_Q, .faq_A {
    padding-left: 15px;
    padding-right: 20px;
  }
  .faq_item .faq_type {
    width: 70px;
    height: 28px;
    font-size: 13px;
  }
  .faq_Q {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 40px;
  }
  .faq_Q .trigger {
    top: calc(50% - 8px);
    right: 15px;
  }
  .faq_Q_inner, .faq_A_inner {
    margin-left: 30px;
  }
  .faq_Q_inner::before, .faq_A_inner::before {
    top: 4px;
    left: -30px;
  }
}