@charset "utf-8";

/* --- 試験項目セクション専用のスタイリング --- */

/* セクション内のH3（サブタイトル）のスタイル */
.test-items-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-orange);
    /* テーマカラー */
    margin: 2rem 0 1rem 0;
}

/* リスト全体の基本設定 */
.test-items-section .custom-list {
    padding-left: 0;
    list-style: none;
    /* デフォルトの黒丸を消す */
}

/* リストの各項目の設定 */
.test-items-section .custom-list li {
    padding-left: 1.8em;
    /* アイコン分のスペースを確保 */
    position: relative;
    margin-bottom: 0.8em;
}

/* リストの各項目の先頭に付けるカスタムアイコン（›） */
.test-items-section .custom-list li::before {
    content: '›';
    /* 表示する文字 */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    font-weight: bold;
    color: var(--orange);
    /* アクセントカラー */
}