/* reset */
body {
    margin: 0;
}

/* .inner {
    max-width: 1280px;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
}

header {
    padding: 100px 0 50px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
} */

.terms_head {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.back_btn {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
    vertical-align: baseline;
    color: #5e5e5e;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0 16px;
}

.back_btn::before {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url(/static/app_www/terms/base/img/icon_arrow_left_gray.png) no-repeat center/contain;
}

.terms_title {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
    vertical-align: baseline;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    width: calc(100% - 220px);
    text-align: center;
    margin: 0;
}

.terms_body {
    padding: 258px 0 50px;
}


@media screen and (max-width:1023px) {
    /* header {
        padding: 32px 0;
    } */


    .terms_title {
        font-size: 20px;
        width: calc(100% - 48px);
    }

    .back_btn span {
        display: none;
    }

    .terms_body {
        padding-top: 106px;
    }

    .mypage_cont.app {
        padding: 0;
    }

    .mypage_cont.app .content_wrap {
        padding-bottom: 77px;
    }
}