@charset "UTF-8";

/* リスト表示調整(2025/12/16) */
#lesson02 + section .inner_item_txt ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem 0 3rem;
    padding: 10px;
    background: var(--i_sub3_color);
}
#lesson02 + section .inner_item_txt ul li {
    padding: 1rem 2rem;
    position: relative;
    padding-left: 2.5em;
    list-style-type: none;
    background: var(--i_bg_color);
    border: 1px solid var(--i_txt_color);
}
#lesson02 + section .inner_item_txt ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(10px, -50%);
    width: 1em;
    height: 1em;
    border: 1px solid #333;
    border-radius: 2px;
}
#lesson02 + section .inner_item_txt ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(15px, -50%) rotate(-45deg);
    width: 0.5em;
    height: 0.25em;
    border-left: 2px solid var(--i_btn_hover_color);
    border-bottom: 2px solid var(--i_btn_hover_color);
}