@charset "UTF-8";
/* =======================================

	Wizlabo Library Elements

======================================= */
/* 記事のカテゴリ選択 */
.xj-sel-category {
  margin: 0 0 20px;
}

.xj-sel-category li {
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 2.4rem;
  padding: 1.2rem 2rem;
  text-decoration: none;
  width: 16rem;
  transition: opacity 0.3s ease;
  align-items: center;
  background-color: #d5e7f6;
  border: 1px solid #d5e7f6;
  border-radius: 9999px;
  color: #005bab;
  cursor: pointer;
  display: inline-flex;
}

.xj-sel-category li:hover {
  opacity: 0.5;
}

.xj-sel-category li.active {
  background-color: #005bab;
  border-color: #005bab;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 767.8px) {
  .xj-sel-category li {
    width: 11rem;
    font-size: 1.6rem;
    min-height: auto;
    padding: 1rem;
  }
}
