#privacy_policy {
    padding-bottom: 7rem;

    .inner {
        counter-reset: count 0;
        line-height: 1.75;

        .block_title {
            color: var(--main-blue);
            font-size: clamp( 1.6rem, calc( 1.3rem + 0.8333333333333334vw ), 2.2rem );
            counter-increment: count 1;
            margin-top: 1.7em;

            &::before {
                display: inline-block;
                content: counter(count)".";
                margin-right: 0.3em;
            }
        }
        & ul {
            & li {
                text-indent: -1em;
                padding-left: 1em;
    
                &::before {
                    content: "・";
                }
            }
        }
        & ol {
            list-style: decimal;
            list-style-position: inside;

            & li {
                text-indent: -1em;
                padding-left: 1em;
            }
        }
        & dl {
            & dt {
                font-weight: 400;
            }
        }
        & a {
            word-break: break-word;
        }
    }
}
