@charset "utf-8";

#privacy {
    .wrap {
        .contents {
            & > p {
                margin-bottom:1.5em;
                margin-left:1.5em;
                &.body {
                    margin-left:0;
                    & + p {
                        margin-left:0;
                        margin-bottom:2em;
                    }
                }
            }
            h2 {
                font-size:2.0rem;
                grid-template-columns:1fr;
                margin-bottom:1em;
                color:var(--color_sub);
                &::before {
                    content:none;
                }
            }
            ul {
                font-size:1.6rem;
                margin-left:1.5em;
                &:not(:last-child) {
                    margin-bottom:2em;
                }
                li {
                    line-height:2;
                    padding-left:1em;
                    text-indent:-1em;
                    &::before {
                        content:'・';
                    }
                }
            }
        }
    }
}

@media screen and (max-width:1200px){

}

@media screen and (max-width:1024px){
}

@media screen and (max-width:768px){
    
    #privacy {
        .wrap {
            .contents {
                & > p {
                    margin-bottom:1.5em;
                    margin-left:0em;
                }
                h2 {
                    font-size:1.6rem;
                }
                ul {
                    font-size:1.4rem;
                    margin-left:0;
                }
            }
        }
    }
    
}