/* ----------------------------- */
/* Franchise System */
/* ----------------------------- */

.franchise-system-section{
    padding:100px 0;
    background:#fff;
}

.franchise-sub-title{
    display:block;
    color:#ff5a2f;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.franchise-title{
    font-size:52px;
    font-weight:800;
    color:#222;
    line-height:1.3;
    margin-bottom:20px;
}

.franchise-title span{
    color:#ff5a2f;
}

.title-line{
    width:70px;
    height:3px;
    background:#ff5a2f;
    margin:25px auto;
}

.franchise-desc{
    font-size:18px;
    color:#666;
    margin-bottom:70px;
}

/* 이미지 */

.franchise-system-img{
    width:100%;
    max-width:1500px;   /* 이미지 크기 조절 */
    height:auto;
    display:block;
    margin:0 auto;
}

/* 하단 */

.franchise-bottom-box{

    margin-top:70px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    padding:35px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    flex-wrap:nowrap;      /* 줄바꿈 방지 */
}

.franchise-item{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
    min-width:0;
    padding:0 25px;
    position:relative;
}

.franchise-item i{
    font-size:38px;
    color:#ff5a2f;
    flex-shrink:0;
}

.franchise-item h5{
    margin-bottom:8px;
    font-size:22px;
    font-weight:700;
    color:#555;
}

.franchise-item p{
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:#666;
}

.franchise-item:not(:last-child)::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:1px;
    height:55px;
    background:#e6e6e6;
}

/* 반응형 */

@media (max-width:991px){

    .franchise-bottom-box{
        flex-wrap:wrap;
        padding:30px;
    }

    .franchise-item{
        width:50%;
        padding:20px;
    }

    .franchise-item::after{
        display:none;
    }
}

@media (max-width:767px){

    .franchise-bottom-box{
        display:block;
    }

    .franchise-item{
        width:100%;
        padding:15px 0;
    }
}