.titleBox {
  margin-top: 40px;
}

.contentBox .leftBox {
  float: right;
  width: 20%;
}
@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
}
.contentBox .rightBox {
  float: left;
  width: 74%;
}
@media (max-width: 640px) {
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}

.faqList {
  width: 100%;
  border: solid 1px rgba(211, 128, 52, 0.2);
  border-radius: 20px;
  margin-top: 50px;
}
.faqList .faqItem {
  border-bottom: solid 1px rgba(211, 128, 52, 0.2);
}
.faqList .faqItem:last-child {
  border: none;
}
.faqList .faqItem:last-child .definition {
  border-radius: 0 0 20px 20px;
}
.faqList .title {
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 20px 30px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .faqList .title {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .faqList .title {
    font-size: 14px;
    padding: 20px 15px;
  }
}
.faqList .title.display {
  color: #D38034;
}
.faqList .title.display::before {
  -webkit-transform: translateY(0) rotate(315deg);
          transform: translateY(0) rotate(315deg);
}
.faqList .title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: solid 2px #D38034;
  border-width: 2px 2px 0 0;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.faqList .title svg {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .faqList .title svg {
    margin-right: 10px;
  }
}

.definition {
  display: none;
  background: rgba(211, 128, 52, 0.2);
  padding: 30px 50px;
}
.definition h3 {
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2px;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-style: normal;
  margin-bottom: 30px;
}