@charset "UTF-8";

/* ==============================
　個人情報保護方針
============================== */
.pagetitle_wrap {
    background: url(../img/privacy_policy_img/pagetitle_bg.jpg) center center no-repeat;
    background-size: cover;
}

.privacy_wrap {
    text-align: left;

    &>p {
        line-height: 1.6;

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

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

    }

    &>ol {
        counter-reset: number;
        background: var(--th-bg);
        padding: 18px;
        border-radius: var(--base-radius);

        &>li {
            line-height: 1.6;
            position: relative;
            list-style: none;
            padding-left: 1.8em;

            &::before {
                counter-increment: number;
                content: "0" counter(number) ".";
                position: absolute;
                inset: 0 auto auto 0;
                color: var(--gray);
            }

            &:nth-child(n + 10)::before {
                content: counter(number) ".";
            }

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

    @media (width >= 768px) {
        &>ol {
            padding: 30px;
        }
    }
}