@charset "UTF-8";

/* タイトル：study_topのsection-titleと統一 */
.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; 
}

/* テスト結果表示用のスタイル */
.rst { width: 100%; border-collapse: collapse; margin-bottom: 15px; }
.rst td { font-size: 1.1rem; font-weight: bold; padding: 5px; color: var(--accent-color); }

.content-box { padding: 0 10px; line-height: 1.6; }

ul.test-notes {
    padding-left: 20px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 25px;
}
ul.test-notes li { margin-bottom: 8px; }

/* ボタンを囲む枠 */
.start-container {
    border: 2px solid var(--border-soft);
    background-color: var(--bg-light);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
}

input[type="button"] {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}
input[type="button"]:hover { opacity: 0.8; }

/* スマホ用調整 */
@media (max-width: 768px) {
    .section-title { margin-top: 10px !important; }
    .start-container { padding: 20px 10px; }
}