@charset "utf-8";
#privacy{
    .wrap{
        .contents{
            .contents_inner{
                background-color: #fff;
                padding: 2em;
                border-radius: 0 20px 0 20px;
                p{
                    line-height: 1.6;
                }
                h2{
                    font-size: 2rem;
                    margin: 2em 0 1.3em;
                    padding-left: 0;
                    &::before{
                        display: none;
                    }
                }
                ul{
                    & > li{
                        line-height: 1.6;
                        margin-bottom: 1.3em;
                        position: relative;
                        padding-left: 0.9em;
                        &::before{
                            content: "";
                            position: absolute;
                            top:0.5em;
                            left:0;
                            background-color: #A88E5B;
                            width: 0.6em;
                            height: 0.6em;
                            border-radius: 50px;
                        }
                    }
                }
                ol{
                    margin-top: 1em;
                    li{
                        line-height: 1.6;
                        margin-bottom: 1.3em;
                        position: relative;
                        list-style-type: decimal;
                        margin-left: 1em;
                    }
                }
            }
        }
    }
}


@media screen and (max-width:1200px){

}

@media screen and (max-width:1024px){

    #privacy{
        .wrap{
            .contents{
                .contents_inner{
                    p{
                        font-size: 1.5rem;
                    }
                    h2{
                        font-size: 1.8rem;
                        margin: 1.5em 0 1em;
                    }
                    ul{
                        & > li{
                            font-size: 1.5rem;
                        }
                    }
                    ol{
                        li{
                            font-size: 1.5rem;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width:768px){

    #privacy{
        .wrap{
            .contents{
                .contents_inner{
                    padding: 1em;
                    p{
                        font-size: 1.4rem;
                    }
                    h2{
                        font-size: 1.6rem;
                    }
                    ul{
                        & > li{
                            font-size: 1.4rem;
                        }
                    }
                    ol{
                        li{
                            font-size: 1.4rem;
                        }
                    }
                }
            }
        }
    }

    
}