.faq-list-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.faq-list-box .item-box {
  width: 48.5%;
  margin-bottom: 30px;
  box-sizing: border-box;
  line-height: 1.5;
}
.faq-list-box .item-box:nth-child(2n+1) {
  margin-right: 1.5%;
}
.faq-list-box .item-box:nth-child(2n) {
  margin-left: 1.5%;
}
.faq-list-box .item-box a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  padding: 25px 0 25px 30px;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 20px;
  background: #f5f5f5 url('../imgs/icon-right.png') no-repeat right 20px top 12px;
  cursor: default;
}
.faq-list-box .item-box a .question {
  background: url('../imgs/icon-faq-1.png') no-repeat left 5px;
  padding-left: 35px;
  padding-right: 60px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.faq-list-box .item-box a .answer {
  padding-right: 60px;
  font-size: 16px;
  color: #737373;
  background: url('../imgs/icon-faq-2.png') no-repeat left 5px;
  padding-left: 35px;
  min-height: 40px;
  max-height: 40px;
  line-height: 1.2;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq-list-box .item-box a .answer p {
  margin: 0;
}
.faq-list-box .item-box a:hover {
  background: #f5f5f5 url('../imgs/icon-right-hover.png') no-repeat right 20px top 12px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}
.faq-list-box .item-box a:hover .question {
  background: url('../imgs/icon-faq-1-hover.png') no-repeat left 5px;
}
.faq-list-box .item-box a:hover .answer {
  max-height: 400px;
}
@media (max-width: 1100px) {
  .faq-list-box {
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-bottom: 35px;
  }
  .faq-list-box .item-box {
    width: 48.5%;
    margin-bottom: 25px;
  }
  .faq-list-box .item-box:nth-child(2n+1) {
    margin-right: 1.5%;
  }
  .faq-list-box .item-box:nth-child(2n) {
    margin-left: 1.5%;
  }
  .faq-list-box .item-box a {
    padding: 22px 0 22px 25px;
    font-size: 18px;
  }
  .faq-list-box .item-box a .question {
    margin-bottom: 18px;
    padding-right: 60px;
  }
  .faq-list-box .item-box a .answer {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (max-width: 1000px) {
  .faq-list-box {
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-bottom: 35px;
  }
  .faq-list-box .item-box {
    width: 100%;
    margin-bottom: 25px;
  }
  .faq-list-box .item-box:nth-child(2n+1) {
    margin-right: 0;
  }
  .faq-list-box .item-box:nth-child(2n) {
    margin-left: 0;
  }
  .faq-list-box .item-box a {
    padding: 20px 0 20px 25px;
    font-size: 17px;
  }
  .faq-list-box .item-box a .question {
    margin-bottom: 16px;
  }
  .faq-list-box .item-box a .answer {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .faq-list-box {
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-bottom: 25px;
  }
  .faq-list-box .item-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .faq-list-box .item-box:nth-child(2n+1) {
    margin-right: 0;
  }
  .faq-list-box .item-box:nth-child(2n) {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .faq-list-box {
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .faq-list-box .item-box {
    width: 100%;
    margin-bottom: 15px;
  }
  .faq-list-box .item-box:nth-child(2n+1) {
    margin-right: 0;
  }
  .faq-list-box .item-box:nth-child(2n) {
    margin-left: 0;
  }
}
/*# sourceMappingURL=faq.css.map */