.faqList li, .quBox, .ansBox, .ansBox .textEditor {
  box-sizing: border-box;
}

.faqList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.faqList li {
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}

.faqList li.open .toggleOpen:before {
  transform: rotate(45deg);
}

.faqList li.open .toggleOpen:after {
  transform: rotate(-45deg);
}

.faqList .item {
  position: relative;
}

.faqList .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-style: normal;
  font-size: 18px;
  color: #fff;
  text-align: center;
  background-color: #19b6d1;
}

.faqList .no {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #93d50a;
}

.faqList .toggleOpen {
  position: absolute;
  right: 15px;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #93d50a;
}

.faqList .toggleOpen:before, .faqList .toggleOpen:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.5px;
  margin-left: -4px;
  width: 8px;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}

.faqList .toggleOpen:before {
  transform: rotate(90deg);
}

.quBox, .ansBox {
  padding: 15px;
}

.quBox {
  position: relative;
  display: flex;
  cursor: pointer;
}

.quBox .icon:before {
  content: "Q";
}

.quBox h3 {
  width: calc(100% - 100px);
  margin-top: 7px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  letter-spacing: 0.05em;
}

.ansBox {
  display: none;
  width: 100%;
  z-index: 1;
}

.ansBox .icon {
  float: left;
  color: #fff;
  background-color: #19b6d1;
}

.ansBox .icon:before {
  content: "A";
}

.ansBox .textEditor {
  clear: none;
  float: left;
  width: calc(100% - 40px);
  padding-left: 55px;
  color: #000;
}

@media (max-width: 640px) {
  .contentBox .leftBox, .contentBox .rightBox {
    float: none;
    width: 100%;
  }

  .contentBox .leftBox {
    padding: 0;
  }

  .contentBox .rightBox {
    margin-top: 30px;
  }
}