.renewal {
    background-image: url(../img/renewal_bg.png);
    background-size: cover;
    background-position: center;
    width:100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: " Pretendard", sans-serif;
    min-height: 700px;

}

.renewal .logo {
    width:160px;
    margin-bottom: 24px;
}
.renewal .txt  {
    text-align: center;
    padding:0px 20px;
}
.renewal .txt .border {
    width:1px;
    height: 80px;
    background-color: #fff;
    margin:0 auto 60px;
}
.renewal .txt .title span {
    font-size: 48px;
    font-weight: 700;
    color:#fff;
    position: relative;
    z-index: 3;
    margin-bottom: 60px;
    display: inline-block;
}
.renewal .txt .title span::before {
    content: '';
    width:100%;
    height: 27px;
    background: rgba(255, 144, 16, 0.30);
    position: absolute;
    left: 0;
    bottom:0;
    z-index: -1;
}
.renewal .txt p {
    font-size: 26px;
    font-weight: 400;
    line-height: 130%;
}
.renewal .txt p + p {
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .renewal {
        background-image: url(../img/renewal_bg_m.png);
    }
    .renewal .logo {
        width:130px;
        margin-bottom: 62px;
    }
    .renewal .txt .title span {
        font-size: 30px;
    }
    .renewal .txt .title span::before {
        height: 14px;
    }
    .renewal .txt p {
        font-size: 15px;
    }
    .renewal .txt .title span:first-child {
        margin-bottom: 0;
    }
}