/* 評価表リンクリストのスタイル調整 */
.list-group-item {
    font-size: 1rem;
    font-weight: 500;
}

/* ホバー演出 */
.list-group-item:hover {
    background-color: #e6f0ff;
    transition: background-color 0.2s;
}

/* リード文を少し目立たせる */
.lead {
    font-size: 1.1rem;
    color: #333;
}