#faq_category .flex {
  justify-content: left;
}
#faq_category .flex li {
  width: calc((100% - 3rem) / 4);
}
#faq_category .flex li:not(:nth-child(4n)) {
  margin-right: 1rem;
}
#faq_category .flex li a {
  display: block;
  text-align: center;
  border: 1px solid rgba(30, 30, 30, 0.3);
  background: #f7f7f7;
  font-size: 1.4rem;
  padding: 0.5em 0;
}
#faq_category .flex li a:hover {
  background: #dc841c;
  color: white;
}
@media screen and (max-width: 768px) {
  #faq_category .flex {
    justify-content: space-between;
  }
  #faq_category .flex li {
    width: calc((100% - 1rem) / 2);
    margin-bottom: 1rem;
  }
  #faq_category .flex li:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
#faq_list > div:nth-child(2n+1) {
  position: relative;
  padding: 2.5rem 0;
  margin-bottom: 2.5rem;
}
#faq_list > div:nth-child(2n+1)::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -5vw;
  z-index: -1;
  background: #f7f7f7;
}/*# sourceMappingURL=faq.css.map */