.taxonomy_list {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.taxonomy_list li {
  padding: 5px 15px;
  background: #009942;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  line-height: 1;
  font-size: 0.8rem;
}

.taxonomy_list a li {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.taxonomy_list a li:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 3px 3px 6px rgba(0,0,0,.2);
}

.current {
  padding: 5px 15px;
  display: inline-flex;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  line-height: 1;
  font-size: 0.8rem;
}

.taxonomy_list li.sell,
.current.sell{
  background: #FF9800;
}
.taxonomy_list li.land,
.current.land {
  background: #4cc2c6;
}
.taxonomy_list li.residence,
.current.residence {
  background: #7ea550;
}
.taxonomy_list li.information,
.current.information {
  background: #e8c300;
}
.taxonomy_list li.trivia,
.current.trivia {
  background: #baa3ee;
}
.taxonomy_list li.problem,
.current.problem {
  background: #e097bf;
}