/* =========================================================
   FRANCHISE SECTION
   전체 화면 가로 100%
========================================================= */

.franchise-section{

    position:relative;

    width:100%;

    min-height:420px;

    overflow:hidden;

    background-image: url('<?php echo G5_THEME_URL; ?>/img/slide_coffee01.png') !important; 

}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.franchise-bg{

    background-image: url('<?php echo G5_THEME_URL; ?>/img/slide_coffee01.png') !important; 

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:0;

    overflow:hidden;

}


/* 실제 이미지 */

.franchise-bg img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.franchise-bg::after{

    content:"";

    position:absolute;

    inset:0;

    /*
     * 왼쪽은 어둡게
     * 오른쪽은 이미지가 조금 더 보이도록
     */

    

}


/* =========================================================
   CONTENT WRAP
========================================================= */

.franchise-inner{

    position:relative;

    z-index:2;

    width:100%;

    min-height:420px;

    max-width:1280px;

    margin:0 auto;

    padding:

        58px
        55px
        58px
        70px;

    display:flex;

    align-items:center;

}


/* =========================================================
   CONTENT
========================================================= */

.franchise-content{

    width:55%;

    max-width:650px;

}


/* =========================================================
   SMALL LABEL
========================================================= */

.franchise-label{

    display:block;

    margin-bottom:13px;

    color:#d8b49a;

    font-family:
        Arial,
        sans-serif;

    font-size:13px;

    font-weight:700;

    line-height:1;

    letter-spacing:.8px;

}


/* =========================================================
   TITLE
========================================================= */

.franchise-title{

    margin:0;

    color:#fff;

    font-size:34px;

    font-weight:600;

    line-height:1.32;

    letter-spacing:-1.8px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.franchise-description{

    margin-top:18px;

    color:rgba(255,255,255,.76);

    font-size:13px;

    font-weight:400;

    line-height:1.8;

    letter-spacing:-.35px;

}


/* =========================================================
   BENEFIT LIST
========================================================= */

.franchise-benefits{

    display:flex;

    align-items:flex-start;

    gap:32px;

    margin-top:27px;

}


/* =========================================================
   BENEFIT ITEM
========================================================= */

.franchise-benefit{

    display:flex;

    align-items:center;

    gap:9px;

    min-width:110px;

}


/* =========================================================
   ICON
========================================================= */

.franchise-benefit-icon{

    width:29px;

    height:29px;

    flex:0 0 29px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

}


.franchise-benefit-icon svg{

    width:27px;

    height:27px;

    fill:none;

    stroke:currentColor;

    stroke-width:1.2;

    stroke-linecap:round;

    stroke-linejoin:round;

}


/* =========================================================
   BENEFIT TEXT
========================================================= */

.franchise-benefit-text{

    display:flex;

    flex-direction:column;

    gap:4px;

}


.franchise-benefit-title{

    color:#fff;

    font-size:12px;

    font-weight:500;

    line-height:1.2;

    white-space:nowrap;

}


.franchise-benefit-sub{

    color:rgba(255,255,255,.62);

    font-size:10px;

    font-weight:400;

    line-height:1.2;

    white-space:nowrap;

}


/* =========================================================
   BUTTON AREA
========================================================= */

.franchise-button-wrap{

    margin-top:27px;

}


/* =========================================================
   BUTTON
========================================================= */

.franchise-button{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:112px;

    height:38px;

    padding:0;

    border:1px solid rgba(255,255,255,.65);

    border-radius:3px;

    background:rgba(0,0,0,.08);

    color:#fff;

    font-size:11px;

    font-weight:500;

    text-decoration:none;

    cursor:pointer;

    transition:

        background .3s ease,

        border-color .3s ease,

        transform .3s ease;

}


.franchise-button:hover{

    background:#fff;

    border-color:#fff;

    color:#3b2114;

    transform:translateY(-2px);

}


/* =========================================================
   BUTTON ARROW
========================================================= */

.franchise-button-arrow{

    margin-left:8px;

    font-size:13px;

    line-height:1;

    transition:
        transform .3s ease;

}


.franchise-button:hover
.franchise-button-arrow{

    transform:translateX(4px);

}


/* =========================================================
   RIGHT DECORATIVE GRADIENT
========================================================= */

.franchise-right-fade{

    position:absolute;

    right:0;

    top:0;

    width:48%;

    height:100%;

    z-index:1;

    pointer-events:none;

    

}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media(min-width:1400px){

    .franchise-section{

        min-height:450px;

    }


    .franchise-inner{

        min-height:450px;

        padding-left:80px;

        padding-right:80px;

    }


    .franchise-title{

        font-size:37px;

    }


    .franchise-description{

        font-size:14px;

    }


    .franchise-benefits{

        gap:38px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

    .franchise-section{

        min-height:390px;

    }


    .franchise-inner{

        min-height:390px;

        padding:

            48px
            40px;

    }


    .franchise-content{

        width:65%;

    }


    .franchise-title{

        font-size:30px;

    }


    .franchise-description{

        font-size:12px;

    }


    .franchise-benefits{

        gap:20px;

    }


    .franchise-benefit{

        min-width:auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px){

    .franchise-section{

        min-height:0;

    }


    .franchise-bg img{

        object-position:
            67%
            center;

    }


    .franchise-bg::after{

        

    }


    .franchise-inner{

        min-height:0;

        padding:

            58px
            25px
            60px;

        align-items:flex-start;

    }


    .franchise-content{

        width:100%;

        max-width:none;

    }


    .franchise-label{

        font-size:11px;

        margin-bottom:11px;

    }


    .franchise-title{

        font-size:27px;

        line-height:1.4;

        letter-spacing:-1.4px;

    }


    .franchise-description{

        margin-top:17px;

        font-size:11px;

        line-height:1.8;

    }


    .franchise-benefits{

        display:grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap:15px;

        margin-top:28px;

    }


    .franchise-benefit{

        gap:6px;

        align-items:flex-start;

    }


    .franchise-benefit-icon{

        width:24px;

        height:24px;

        flex:0 0 24px;

    }


    .franchise-benefit-icon svg{

        width:23px;

        height:23px;

    }


    .franchise-benefit-title{

        font-size:10px;

    }


    .franchise-benefit-sub{

        font-size:8px;

    }


    .franchise-button-wrap{

        margin-top:29px;

    }


    .franchise-button{

        width:110px;

        height:36px;

        font-size:10px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:430px){

    .franchise-inner{

        padding:

            50px
            20px
            52px;

    }


    .franchise-title{

        font-size:24px;

    }


    .franchise-description{

        font-size:10px;

    }


    .franchise-benefits{

        gap:9px;

    }


    .franchise-benefit-title{

        font-size:9px;

    }


    .franchise-benefit-sub{

        font-size:7px;

    }

}