@charset "UTF-8";
.toggleOpen {
  box-sizing: border-box;
}

.mainArea .wrap {
  position: relative;
}

.faqList {
  margin-top: 50px;
  counter-reset: item;
}

.faqList > li {
  counter-increment: item;
  padding: 5px;
  border-bottom: 1px dashed #A0A0A0;
  margin-bottom: 15px;
}

.faqList > li h3 {
  position: relative;
  padding: 10px 50px 10px 40px;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Noto Sans TC', '微軟正黑體', serif;
}

.faqList > li h3::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 7px;
  width: 35px;
  font-size: 20px;
  text-align: center;
  font-family: 'Quicksand', 'Noto Sans TC', '微軟正黑體', serif;
}

.faqList > li:nth-child(-n+9) h3::before {
  content: "0" counter(item) ".";
}

.faqList .definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  background: #f7f7f7;
  font-size: 14px;
  color: #686868;
  line-height: 1.8;
}

.toggleOpen {
  position: absolute;
  right: 5px;
  top: 50%;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-top: -13px;
  border-radius: 3px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background-color: #ffc000;
  cursor: pointer;
}

.toggleOpen:hover {
  color: #fff;
  background-color: #e6ad00;
}
