* {
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.03em;
}

.terms_inner {
    max-width: 1280px;
    padding: 0 16px;
    margin: 0 auto;
}

.terms_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.back_btn {
    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/base/img/icon_arrow_left_gray.png) no-repeat center/contain;
}

.terms_title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}


@media screen and (max-width:1023px) {
    .terms_head {
        margin-bottom: 32px;
    }

    .terms_title {
        font-size: 20px;
    }

    .back_btn span {
        display: none;
    }
}