/* =============================================================
post関連
============================================================= */
.news-category {
  width: fit-content;
  color: #fff;
  font-size: 0.75rem;
  background-color: var(--color--primary);
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
  line-height: 1.8;
  padding-inline: 1.5rem;
}
.news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 0;
}
/* responsive */
@media screen and (min-width: 769px) {
  .news-category {
    font-size: var(--font-size--xs);
    padding: 2px 15px;
  }
}
