.category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media screen and (min-width: 640px) {
  .category {
    grid-template-columns: repeat(3, 1fr);
  }
}
.category__item {
  background-color: #fff;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.4;
}
.category__item--now {
  background-color: #0AA4AA;
}
.category__anchor {
  display: block;
  color: #333;
  padding: 15px;
}
.category__item--now .category__anchor {
  color: #fff;
}

.answer {
  display: none;
}
.answer__list {
  display: grid;
  gap: 15px;
}
.answer__item {
  display: block;
  background-color: #fff;
  box-shadow: 0 1px 3px 0px rgb(212, 212, 212);
  font-size: 14px;
}
.answer__anchor {
  font-weight: bold;
  display: block;
  padding: 15px;
  position: relative;
}
.answer__anchor::after {
  color: #999;
  content: "+";
  display: block;
  line-height: 18px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: calc(50% - 9px);
  width: 10px;
}
.answer__item--open .answer__anchor::after {
  content: "-";
}
.answer__text {
  padding: 0 15px 15px 15px;
  line-height: 1.8;
}
.answer__text a {
  color: #2087f0;
}/*# sourceMappingURL=faq.css.map */