@charset "UTF-8";

/*------------------------------------
処遇改善への取り組み
--------------------------------------*/
.pagetitle_wrap {
    background: url(../img/improving_img/pagetitle_bg.jpg) center center no-repeat;
    background-size: cover;
}

.improving_wrap {
    text-align: left;

    &>p {
        line-height: 1.6;

        &+* {
            margin-top: 2em;
        }

        &+p {
            margin-top: 1em;
        }

    }

    &>h4 {
        border-left: 6px solid var(--maincolor);
        font-weight: 700;
        font-size: var(--font-l);
        padding: 0.2em 0 0.2em 0.8em;
        line-height: 1.4;
        margin-bottom: 0.8em;

    }

    *+h4 {
        margin-top: 2em;
    }

    &>ul {
        &>li {
            position: relative;
            padding-left: 0.8em;

            &+li {
                margin-top: 0.4em;
            }

            &::before {
                content: "";
                display: block;
                width: 6px;
                height: 6px;
                background:color-mix(in srgb,var(--maincolor),white 40%);
                border-radius: 100px;
                position: absolute;
                inset: 0.75em 0 0 0;
            }
        }
    }
}