/*font*/
.terms_title {
    color: #333;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 100px;
}

.terms_sub_title {
    color: #222;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.terms_txt {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/*contents*/
.terms_contents {
    padding: 200px 0 63px 0;
    color: #444;
    font-size: 18px;
}
.terms_contents h3 {
    color: #222;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.terms_list {
    margin-bottom: 30px;
}

/*반응형쿼리*/
@media screen and (max-width:768px) {
    .terms_contents {
        width: calc(100% - 40px);
        margin-top: 110px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width:425px) {
    .terms_title {
        text-align: left;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .terms_sub_title {
        font-size: 16px;
    }

    .terms_txt {
        font-size: 14px;
        line-height: 20px;
    }
}