/* ベース */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto auto 1fr;
}
.news-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 3;
  gap: .25rem .75rem;
  align-items: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.news-date {
  font-size: 93.8%;
  font-variant-numeric: tabular-nums;
}
.news-category {
  padding: 2px .5em;
  border-radius: .25em;
  font-size: .875rem;
  background: #5B9BD5;
  color: #fff;
}
.news-title {
  margin: 0;
  font-size: 93.8% !important;
  line-height: 1.5;
}
.news-title a {
  color: inherit !important;
}
/* カテゴリ別クラス（増やせます）*/
.news-item.cat-transfer .news-category {
  background: #5B9BD5;
  color: #fff;
}
.news-item.cat-default .news-category {
  background: #f1f5f9;
  color: #334155;
}
.pdf-icon::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 33px;
  height: 27px;
  margin-left: 10px;
  background: url(/me-pharma/common/images/medical_pdf_icon.png) center / contain no-repeat;
}