@charset "utf-8";

#privacy {
    .wrap {
        .contents {
            & > p {
                margin-bottom:3em;
            }
            h2 {
                font-size:2.0rem;
                line-height:1.5;
                margin-bottom:1em;
                font-weight:500;
            }
            .contents_inner {
                &:not(:last-child) {
                    margin-bottom:50px;
                }
                ul {
                    & > li {
                        line-height:1.8;
                        text-indent:-1em;
                        padding-left:1em;
                        &::before {
                            content:'・';
                            
                        }
                    }
                }
                ol {
                    & > li {
                        line-height:1.8;
                        text-indent:-2.5em;
                        padding-left:2em;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:1200px){

}

@media screen and (max-width:1024px){
}

@media screen and (max-width:768px){
    
    #privacy {
        .wrap {
            .contents {
                & > p {
                    margin-bottom:3em;
                }
                h2 {
                    font-size:1.6rem;
                }
                .contents_inner {
                    &:not(:last-child) {
                        margin-bottom:30px;
                    }
                    ul {
                        font-size:1.4rem;
                    }
                    ol {
                        font-size:1.4rem;
                    }
                }
            }
        }
    }
    
}