

/* =========
   共通：お知らせ
   ========= */

.notice-list {
  list-style: none;
  padding-left: 0;
}
 

notice-item {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.notice-item:last-child {
  border-bottom: none;
}





/* バッジ（重要／制度変更／一般／NEW） */
  .news-link {
  display: inline-flex;          /* ← blockをやめる */
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  padding: 6px;
  line-height: 1.6;

.badge {
  display: inline-block;
  font-size: 0.78em;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}


}  .badge--important{
    background: #ffeeee;
    color: #8b1a1a;
    border: 1px solid #f2c3c3;
  }
  .badge--policy{
    background: #fff7e6;
    color: #8a5a00;
    border: 1px solid #f3dfb4;
  }
  .badge--none{
    background: #e6f2ff;
    color: #184a91;
    border: 1px solid #c8defa;
  }
  .badge--new{
    background: #e7f4ff;
    color: #0b4a8f;
    border: 1px solid #c7e3ff;
    margin-right: 10px;
  }

.badge {
  pointer-events: none;
  cursor: default;
}

