@charset "UTF-8";

/* pc_top.html 固有のスタイル */

.section-title {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
    margin: 0 0 15px 0;
}

.section-title.next { 
    margin-top: 25px; 
}

.content-box {
    padding: 0 10px;
    margin-bottom: 30px;
}

.list-item {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* リンク：太文字を解除し、下線を表示 */
.list-item a { 
    color: var(--accent-color); 
    text-decoration: underline; 
    font-weight: normal; 
}

.list-item a:hover { 
    text-decoration: none; /* ホバー時に下線を消す（お好みで） */
}

/* 終了した情報などの打ち消し線 */
.list-item s, 
.list-item s a { 
    color: #95a5a6; 
    font-weight: normal; 
    text-decoration: line-through;
}

/* スマホ対応の調整 */
@media (max-width: 768px) {
    .section-title { 
        margin-top: 15px; 
    }
}