.terms_container {
    position: relative;
}

.terms_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.terms_head {
    display: flex;
    align-items: center;
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1120px;
    background-color: #fff;
}

/* 뒤로가기 버튼 */
.terms_container .back_wrap {
    display: flex;
    width: calc(100% / 3);
}

.terms_container .back_btn {
    display: flex;
    align-items: center;
    gap: 0 8px;
    font-size: 18px;
    color: #5e5e5e;
    font-weight: 700;
}

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

/* header title */
.terms_container .terms_title {
    font-size: 22px;
    color: #222;
    font-weight: 700;
    width: calc(100% / 3);
    text-align: center;
}

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