/* お知らせ全体 */
.top-news {
  max-width: 1225px;
  margin: 0 auto;
  padding: 30px 15px;
  font-family: YuGothic, "ヒラギノ角ゴシック", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  background-color: #fff;
}

/* タイトル */
.top-news__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #93c873;
  margin-bottom: 15px;
}

/* お知らせリスト */
.top-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各お知らせアイテム */
.top-news__list li {
  display: block;
  padding: 0;
  border-bottom: 1px solid #ddd;
}

/* リンク全体 */
.top-news__list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: #333;
  width: 100%;
}

/* 日付 */
.top-news__list li time {
  width: 80px;
  flex-shrink: 0;
  font-size: 1.3em;
  color: #999;
  white-space: nowrap;
}

/* 日付＋カテゴリー */
.top-news__meta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* カテゴリー共通 */
.top-news__list li span.category {
  width: 125px;
  flex-shrink: 0;
  font-size: 1.2em;
  padding: 5px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid;
  white-space: nowrap;
}

/* カテゴリー別カラー（通常時） */
.top-news__list li span.category[data-cat="製品・サービス"] {
  color: #93c873;
  border: 1px solid #93c873;
  background-color: transparent;
}

.top-news__list li span.category[data-cat="イベント・セミナー"] {
  color: #26c3d7;
  border: 1px solid #26c3d7;
  background-color: transparent;
}

.top-news__list li span.category[data-cat="メディア掲載"] {
  color: #ffa000;
  border: 1px solid #ffa000;
  background-color: transparent;
}

.top-news__list li span.category[data-cat="お知らせ"] {
  color: #e86e8e;
  border: 1px solid #e86e8e;
  background-color: transparent;
}

.top-news__list li span.category[data-cat="採用・社内活動"] {
  color: #a889e1;
  border: 1px solid #a889e1;
  background-color: transparent;
}

/* ホバー時 */
.top-news__list li a:hover span.category[data-cat="製品・サービス"] {
  background-color: #93c873;
  color: #fff;
  border-color: transparent;
}

.top-news__list li a:hover span.category[data-cat="イベント・セミナー"] {
  background-color: #26c3d7;
  color: #fff;
  border-color: transparent;
}

.top-news__list li a:hover span.category[data-cat="メディア掲載"] {
  background-color: #ffa000;
  color: #fff;
  border-color: transparent;
}

.top-news__list li a:hover span.category[data-cat="お知らせ"] {
  background-color: #e86e8e;
  color: #fff;
  border-color: transparent;
}

.top-news__list li a:hover span.category[data-cat="採用・社内活動"] {
  background-color: #a889e1;
  color: #fff;
  border-color: transparent;
}

/* タイトル */
.top-news__list li span.title {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.top-news__list li a:hover span.title {
  color: #6ea94e;
  font-weight: 700;
}

/* お知らせ一覧リンク */
.top-news__more {
  text-align: right;
  margin-top: 20px;
}

.top-news__more a {
  color: #333;
  font-size: 1.4em;
  text-decoration: none;
  transition: color 0.3s;
}

.top-news__more a:hover {
  color: #93c873;
}

/* スマホ対応 */
@media screen and (max-width: 670px) {
  .top-news__list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .top-news__meta {
    display: flex;
    gap: 8px;
  }

  .top-news__list li span.category {
    width: auto;
    padding: 4px 8px;
  }

  .top-news__more {
    text-align: left;
  }
}
