@charset "utf-8";


/* gdpr.html */

.gdprNumList {
    margin-left: 1em;
}
.gdprNumList > li {
    position: relative;
    list-style-type: none;
    counter-increment: cnt;
    font-size: 1.4rem;
    padding-left: 1.5em;
}
.gdprNumList > li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: marker;
    content: "(" counter(cnt) ") ";
}
.gdprNumList > li + li {
    margin-top: 1em;
}
@media print, screen and (min-width: 770px) {
    .gdprNumList > li {
        font-size: 1.6rem;
    }
}
