@charset "utf-8";
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

/* 공통 header */
#divTop {
    position: sticky;
    top: 0;
    z-index: 500;
}

header {
    height: 100px;
    transition: all 0.4s;
    width: 100%;
    position: sticky;
    top: 0;
    background: rgb(255 255 255 / 80%);
    border-bottom: 1px solid #DFDFDF;
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index:20;
}
header .innerHeader{
    width:auto;
    max-width:1440px;
    height: 100px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
    header .innerHeader .i_Logo {
        width: 78px;
        height: auto;
        padding: 20px 0;
    }
    header .innerHeader .i_FarmWrap {
        display:flex;
        gap:10px;
        align-items:center;
    }
    header .innerHeader .i_FarmLogo {
        width: 76px;
        height: auto;
        padding: 15px 0;
    }
    header .innerHeader .i_FarmWrap p{
        margin-top:5px;
    }
    header .innerHeader .m_nav {
        width: 42px;
        height: 50px;
        cursor: pointer;
        padding: 13px 0px 13px 10px;
        box-sizing: border-box;
        display: none;
    }
        header .innerHeader .m_nav > div {
            position: relative;
            height: 24px;
            width: 32px;
        }
        header .innerHeader .m_nav span {
            width: 23px;
            height: 3.4px;
            border-radius: 10px;
            background: #000;
            display: block;
            position: absolute;
        }
            header .innerHeader .m_nav span.a{
                top:0px;
            }
            header .innerHeader .m_nav span.b {
                top: 10px;
                width: 32px;
            }
            header .innerHeader .m_nav span.c {
                top: 20px;
                right:0;
            }
    header .innerHeader .select_nav {
        width: 215px;
        height: 48px;
        border: 1px solid #aaaaaa;
        color: #999999;
        padding: 15px;
        box-sizing: border-box;
        background: url('../images/icon/ic_down_g.png') center right 10px;
        background-repeat: no-repeat;
        margin: 26px 0;
    }
    header .innerHeader .navWrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 530px;
        padding: 10px 0 20px;
        box-sizing: border-box;
    }
header .innerHeader .navWrap ul li{
    float: left;
    margin-right: 40px;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
}
header .innerHeader .navWrap ul li:last-child,header .innerHeader .navWrap ul.log_menu li:last-child{
    margin: 0;
}
header .innerHeader .navWrap ul.log_menu li{
    margin-right: 20px;
}
    header .innerHeader .navWrap ul li select {
        margin-bottom: 3px;
        margin-top: -0.5px;
        font-size: 1.5rem;
        color: #555555;
        font-weight: 300;
        background: #00000000;
        background-image: url(../images/icon/ic_down_g.png);
        background-position: center right;
        background-repeat: no-repeat;
        background-size: 12px;
        padding-right: 18px;
    }
    header .innerHeader .navWrap ul.nav li:hover,
    header .innerHeader .navWrap ul.nav li.active {
        color: #9F0827;
    }
header .innerHeader .navWrap ul.nav li:nth-child(5):before,
header .innerHeader .navWrap ul.nav li:nth-child(6):before{
    display: none;
}
header .innerHeader .navWrap ul.nav li::before{
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    z-index: 10;
    background: #9F0827;
    transition: all 0.2s;
}
                header .innerHeader .navWrap ul.nav li:hover::before,
                header .innerHeader .navWrap ul.nav li.active::before {
                    width: 100%;
                }
        header .innerHeader .navWrap ul.nav li select {
            font-size: 1.9rem;
            color: #000000;
            margin-top: -2px;
            background-size: 14px;
            padding-right: 20px;
        }
        header .innerHeader .navWrap ul.nav li:hover select {
            color: #000;
        }
        header .innerHeader .navWrap ul.nav li.no_line:hover:before {
            width: 0%;
        }
        /* 공통 모바일 header nav */
        .mNav_wrap {
            width: 100%;
            height: 100vh;
            position: fixed;
            background: rgb(0 0 0 / 50%);
            top: 0;
            left: 0;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(1, 0.05, 0, 0.01), visibility 0.4s;
        }

.mNav_wrap.on {
    visibility: visible;
    opacity: 1;
}
    .mNav_wrap .m_navinner {
        max-width: 350px;
        width: 80%;
        height: 100%;
        background: #ffffff;
        top: 0;
        right: -400px;
        position: absolute;
        transition: all 0.4s;
    }
        .mNav_wrap .m_navinner.on {
            right: 0px;
        }
        .mNav_wrap .m_navinner .top {
            width: 100%;
            padding: 26px 20px 30px;
            box-sizing: border-box;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
            .mNav_wrap .m_navinner .top > div {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 5px;
            }
            .mNav_wrap .m_navinner .top p {
                font-size: 20px;
                font-weight: 500;
            }
            .mNav_wrap .m_navinner .top img {
                cursor: pointer;
            }
        .mNav_wrap .m_navinner .menuList {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            box-sizing: border-box;
            width: 100%;
        }
            .mNav_wrap .m_navinner .menuList li {

            }
                .mNav_wrap .m_navinner .menuList li a {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                    flex-direction: column;
                    cursor: pointer;
                    font-size: 14px;
                    font-weight: 400;
                    color: #555555;
                }
                .mNav_wrap .m_navinner .menuList li .circle {
                    width: 50px;
                    height: 50px;
                    background: #F7F7F7;
                    border-radius: 50%;
                    text-align: center;
                    padding: 14px 0;
                    box-sizing: border-box;
                }
                    .mNav_wrap .m_navinner .menuList li .circle img {
                        width: auto;
                        height: 20px;
                    }
                .mNav_wrap .m_navinner .menuList li:nth-child(4) .circle img {
                    height: 20px;
                }
        .mNav_wrap .m_navinner .navList {
            padding: 30px 0 0;
            border-top: 1px solid #DFDFDF;
            border-bottom: 1px solid #DFDFDF;
            margin-top: 20px;
        }
            .mNav_wrap .m_navinner .navList li {
                width: 100%;
                box-sizing: border-box;
                padding: 0 20px 0 16px;
                border-left: 4px solid #fff;
                background: url('../images/icon/icon_right_g.png') right 20px center;
                background-repeat: no-repeat;
                margin-bottom: 30px;
                font-size: 18px;
                font-weight: 500;
                color: #888888;
                cursor: pointer;
                transition: all 0.2s;
            }
                .mNav_wrap .m_navinner .navList li a {
                    width: 100%;
                    display: block;
                }
                .mNav_wrap .m_navinner .navList li:hover {
                    background: url('../images/icon/icon_right_r.png') right 20px center;
                    background-repeat: no-repeat;
                    color: #9F0827;
                    border-left: 4px solid #9F0827;
                }
                /* 공통 footer */
                footer {
                    width: 100%;
                    border-top: 1px solid #CCCCCC
                }
footer .innerFooter{
    max-width:1440px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
    box-sizing: border-box;
}
footer .innerFooter .f_left{
    width:66%;
}
    footer .innerFooter .f_right {
        width: 34%;
        text-align: right;
    }
footer .innerFooter .f_left .fl_btn span.f_line{
    width: 1px;
    height: 15px;
    background: #cccccc;
    display: block;
}
    footer .innerFooter .f_left .fl_btn {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 50px;
        gap: 20px;
    }
footer .innerFooter .f_left .fl_btn li:nth-child(2n-1){
    cursor: pointer;
}
footer .innerFooter .f_left>div.m_text_l{
    line-height: 35px;
    letter-spacing: 0.7px;

}
footer .innerFooter .f_left>div.m_text_l span.f_line{
    width: 1px;
    height: 14px;
    background: #aaaaaa;
    display: inline-block;
    margin: 0 15px;
    margin-top: 9.5px;
}
footer .innerFooter .f_right .fr_btn{
    display: flex;
    justify-content: flex-end;
}
footer .innerFooter .f_right .fr_btn li{
    cursor: pointer;
}
footer .innerFooter .f_right .fr_btn li:first-child{
    margin-right: 20px;
}
footer .innerFooter .f_right .fr_sns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
footer .innerFooter .f_right .fr_sns li:not(:last-child){
    margin-right: 14px;
    cursor: pointer;
}
/* 공통 요소 */
.m_sec{
    width: 100%;
    overflow: hidden;
}
.m_sec .inner{
    max-width: 1440px ;
    position: relative;
    margin: 0 auto;
    padding: 120px 0;
    box-sizing: border-box;
}
.m_bn1 {
    background-image: url(../images/icon/main_banner1.png);
    background-position: center bottom;
    background-size: 1920px;
    background-repeat: no-repeat;
}
.m_bn1 .txt{
    font-size: 4.7rem;
    font-weight: 400;
    margin-bottom: 25px;
}
.m_bn1 .txt span{
    font-weight: 600;
}
    .m_bn1 a {
        width: 162px;
        height: 48px;
        border: 1px solid #666666;
        text-align: center;
        box-sizing: border-box;
        display: block;
        line-height: 47px;
        font-size: 18px;
        font-weight: 700;
    }
.m_bn1::before{
    background: linear-gradient(to right , #ffc4c3 40%, #ffd7d6 60%);
    width: 100%;
    height: 250px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.m_bn2::before{
    background: linear-gradient(to right , #ff9279 40%, #ff9279 60%);
    width: 100%;
    height: 250px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.m_bn2 {
    background-image: url(../images/icon/main_banner2.png);
}

.star .rate { display: inline-block;border: 0;margin-right: 10px;}
.star .rate > input {display: none;}
.star .rate > label {float: right;color: #ddd; position: relative;}
.star .rate > label:before {display: inline-block;
    padding: .3rem;
    font-size: 3.3rem;
    margin: 0;
    cursor: pointer;
    font-family: FontAwesome;
    content: "\f005 ";

}
.star .rate .half:before {content: "\f089 "; position: absolute;padding-right: 0;}
.star .rate input:checked ~ label, 
.star .rate label:hover,.rate label:hover ~ label { color: #9F0827 !important;  } 
.star .rate input:checked + .rate label:hover,
.star .rate input input:checked ~ label:hover,
.star .rate input:checked ~ .rate label:hover ~ label,  
.star .rate label:hover ~ input:checked ~ label { color: #9F0827 !important;  }

.checkbox input {
    display: none;
}
.checkbox_icon {
    display: block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #AAAAAA;
    position: relative;
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
}
    .checkbox_icon::before {
        content: '';
        width: 16px;
        box-sizing: border-box;
        position: absolute;
        left: -1px;
        top: -1px;
        background: url(../images/icon/icon_chk.png) center center/ auto;
        background-repeat: no-repeat;
    }

.checkbox input:checked + .checkbox_icon {
    border: 1px solid #9F0827;
    border-radius: 2px;
}

    .checkbox input:checked + .checkbox_icon::before {
        height: 16px;
    }

.m_common .m_top {
    padding-bottom: 30px;
    border-bottom: 3px solid #000000;
    width:100%;
}
.count_btn {
    width: 94px;
    height: 31px;
    border: 1px solid #DFDFDF;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
    .count_btn > div {
        width: 28px;
        height: 29px;
        border: 1px solid #000000;
        border-radius: 50%;
        box-sizing: border-box;
        cursor: pointer;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

            .count_btn > div img {
                width: 11.6px !important;
                height: auto !important;
            }
.br_m{
    display:none;
}
img.icon_q{
    cursor:pointer;
}
/* 공통 list number */
.rv_sbtab_pg {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.bot_review .rv_sbtab_pg li,
.bot_review .rv_sbtab_pg li a {
    width: 40px !important;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #888888;
    cursor: pointer;
    padding: 0 !important;
    display: block;
    border-radius: 10px;
}

    .bot_review .rv_sbtab_pg li.on,
    .bot_review .rv_sbtab_pg li.on a{
        background: #9F0827;
        color: #ffffff;
    }

    .bot_review .rv_sbtab_pg li:first-child {
        background: url(../images/icon/icon_left_g.png) center center;
        background-repeat: no-repeat;
        background-size: initial;
    }

    .bot_review .rv_sbtab_pg li:last-child {
        background: url(../images/icon/icon_right_g.png) center center;
        background-repeat: no-repeat;
        background-size: initial;
    }

/* p_main */
/* main_visual */
.p_main .visual {
    width: 100%;
    max-width:1440px;
    height: auto;
    position:relative;
    margin:0 auto;
}
.p_main .visual .m_visual_slider{
    width: 100%;
    margin: 0 auto;
}
    .p_main .visual .m_visual_slider.mobile{
        display:none;
    }
    .p_main .visual .m_visual_slider .swiper-wrapper {
        height: auto !important;
        width:1440px !important;
    }
    .p_main .visual .m_visual_slider .s_wrap {
        width: 1440px;
        margin: 0 auto;
    }
    .p_main .visual .m_visual_slider .swiper-slide {
        width:1440px !important;
    }
        .p_main .visual .m_visual_slider .swiper-slide .lineBox{
            position:absolute;
            bottom:70px;
            left:110px;
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:10px;
        }
            .p_main .visual .m_visual_slider .swiper-slide .lineBox .line {
                position: relative;
                height: 2px;
                width: 144px;
                background: #ffffff50;
            }
                .p_main .visual .m_visual_slider .swiper-slide .lineBox .line p {
                    position: absolute;
                    top: 0;
                    left: 0;
                    height: 2px;
                    background: #fff;

                }
        .p_main .visual .m_visual_slider .swiper-slide.swiper-slide-active .lineBox .line p {
            animation-name: visual;
            animation-duration: 3.3s;
            animation-timing-function: linear;
            animation-fill-mode: forwards;
        }
                    @keyframes visual {
                        0%{
                            width:5%
                        }
                        100% {
                            width: 100%
                        }
                    }
.p_main .visual .m_visual_slider .imgBox {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}
    .p_main .visual .m_visual_slider .imgBox img {
        margin: 0 auto;
    }
.p_main .visual .m_visual_slider button{
    width: 25px;
    height: 50px;
    text-indent: -99999px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
    .p_main .visual .slick-prev::after,
    .p_main .visual .slick-next::after {
        display:none;
    }
    .p_main .visual .slick-prev {
        left: 50% !important;
        transform: translate(-780px, -50%);
        background: url(../images/icon/l_arrow_b.png) left top;
        background-repeat: no-repeat;
        background-size: contain;
        top:50%;
        margin:0!important;
    }
    .p_main .visual .slick-next {
        right: 50% !important;
        transform: translate(780px, -50%);
        background: url(../images/icon/r_arrow_b.png) left top;
        background-repeat: no-repeat;
        background-size: contain;
        top: 50%;
        margin: 0 !important;
    }

.p_main .sec1 h2{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.p_main .sec1 .kWord {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}
.p_main .sec1 .pd_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}
    .p_main .sec1 .pd_wrap .pd_box {
        width: fit-content;
        cursor: pointer;
    }
        .p_main .sec1 .pd_wrap .pd_box .pd_img {
            width: 600px;
            height: auto;
            margin-bottom: 20px;
            border-radius: 50px;
            overflow: hidden;
        }
        .p_main .sec1 .pd_wrap .pd_box .pd_img img{
            width:100%;
            height:auto;
        }
        .p_main .sec1 .pd_wrap .pd_box:nth-child(2) .pd_img {
            background: url(../images/icon/insupepper_2.png);
            background-size: cover;
        }
.p_main .sec1 .pd_wrap .pd_box .pd_txt .bb_title_m{
    margin-bottom: 5px;
}
.p_main .sec1 .pd_wrap .pd_box .pd_txt .title_2l{
    margin-bottom: 15px;
}
        .p_main .sec1 .pd_wrap .pd_box .pd_txt .price {
            margin-bottom: 5px;
            color: #ff0000;
            font-size: 3.6rem;
            font-weight: 600;
        }
.p_main .sec1 .pd_wrap .pd_box .pd_txt .price span{
    margin-right: 10px;
}

                .p_main .sec1 .pd_wrap .pd_box .pd_txt .price .org_price {
                    display: inline-block;
                    text-decoration: line-through;
                    color: #888888;
                    font-size: 2.6rem;
                    vertical-align: baseline;
                    font-weight: 400;
                }

                .p_main .m_banner {
                    width: 100%;
                    height: 250px;
                    position: relative;
                    cursor: pointer;
                }

.p_main .m_banner .innerBanner{
    width: 1440px ;
    position: relative;
    margin: 0 auto;
    padding: 60px 0px 51px;
    box-sizing: border-box;
}

    .p_main .sec2 h2 {
        margin-bottom: 40px;
        font-size: 40px;
        font-weight: 700;
        position: relative;
        z-index: 10;
    }

.p_main .sec2 .left_box li {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 800px;
    height: 130px;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    transition: background 0.4s;
    cursor: pointer;
    border-radius: 30px;
}
.p_main .sec2 .left_box li .txt p:nth-child(2){
    color: #555555;
}
@keyframes leftMove{
    0% {
        left: -30px;
    }
    100% {
        left: 0;
    }
}
.p_main .sec2 .left_box li.active {
    background: #9F0827;
    color: #fff;
    animation: leftMove ease ;
    animation-duration:0.8s;
}

        .p_main .sec2 .left_box li.active img {
            filter: invert(1);
        }

        .p_main .sec2 .left_box li.active .txt p:nth-child(2) {
            color: #fff;
        }
.p_main .sec2 .left_box li img{
    width: 44px;
    height: auto;
    margin-right: 30px;
}
.p_main .sec2 .right_box{
    width: 960px;
    height: 986px;
    position: absolute;
    top: 0;
    left: 50%;
    overflow:hidden;
}
    .p_main .sec2 .right_box img {
        opacity: 0;
        transition: opacity 0.4s ease;
        height: 100%;
        width:auto;
        position:absolute;
        top:0%;
        left:50%;
        transform:translateX(-50%);
    }
        .p_main .sec2 .right_box img.active {
            opacity: 1;
        }
    /* 모바일_탭 스타일 */
.p_main .tab_pan {
    width: 100%;
    overflow: auto;
    margin-bottom: 30px;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}
    .p_main .tab_pan::-webkit-scrollbar {
        display: none; 
    }
    .p_main .m_sec2 .m_tabmenu {
        width: 604px;
        touch-action: pan-x;
        margin-bottom: 30px;
    }

.p_main .m_sec2 .m_tabmenu li {
    width: fit-content;
    color: #555555;
    display: block;
    float: left;
    margin-right: 24px;
    cursor: pointer;
}
    .p_main .m_sec2 .m_tabmenu li.active {
        color: #9F0827;
    }
.p_main .m_sec2 .m_tabcont li,
.p_main .m_sec2 .m_tabcont li .bottom_box,
.p_main .m_sec2 .m_tabcont li .bottom_box img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}
    .p_main .m_sec2 .m_tabcont li{
        display:none;
    }
        .p_main .m_sec2 .m_tabcont li.active {
            display: block;
        }
    .p_main .m_sec2 .tabmenu .tabCon {
        display: none;
        width: 100%;
        padding-top: 60px;
        padding-bottom: 60px;
    }
.p_main .m_sec2 h2{
    font-size:32px;
    font-weight:700;

}
.p_main .m_sec2 .top_box {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
}
    .p_main .m_sec2 .top_box img {
        width: 44px;
        height: auto;
        margin-right: 20px;
    }
.p_main .m_sec2 .bottom_box,
.p_main .m_sec2 .bottom_box img{
    width: 100%;
    height: auto;
}
.p_main .m_sec2{
    display:none;
}

.p_main .sec3 {
    position: relative;
}
.p_main .sec3 h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
}
.p_main .sec3::before{
    content: "";
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    left: 0;
}

        .p_main .sec3 .swiper-slide .imgBox {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
            background: #dfdfdf;
            border-radius: 30px 30px 0 0;
        }
    .p_main .sec3 .swiper-slide .imgBox img {
        width: 100%;
        height: auto;
        bottom: -100%;
        transform: translateY(-100%);
        left: 0;
        position: relative;
    }
        .p_main .sec3 .swiper-slide .txtBox {
            padding: 20px 16px;
            box-sizing: border-box;
            width: 100%;
            height: 200px;
            border: 1px solid #DFDFDF;
            box-sizing: border-box;
            background: #fff;
            border-radius:0 0 30px 30px;
        }
    .p_main .sec3 .m_sec_slider .txtBox .c_55 {
        vertical-align: top;
        text-overflow: ellipsis;
        word-break: break-all;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        height: 75px;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: box;
    }

.p_prod.p_review .sec2 .tb_c_2 {
    margin: 0;
}
.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset,-45px) !important;
}
    .swiper-button-prev:after {
        content: "" !important;
        background: url(../images/icon/l_arrow_b.png) center top;
        width: 25px;
        height: 50px;
    }
.swiper-button-next {
    right: var(--swiper-navigation-sides-offset,-45px) !important;
}

    .swiper-button-next:after {
        content: "" !important;
        background: url(../images/icon/r_arrow_b.png) center top;
        width: 25px;
        height: 50px;
    }
.swiper2_btn_n.swiper-button-next, .swiper2_btn_p.swiper-button-prev {
    top: var(--swiper-navigation-top-offset,57%) !important;
}
.swiper {
    width: 100%;
    height: 500px !important;
    margin-bottom: 50px;
}

.swiper-wrapper {
    height: 450px !important;
}
.m_sec_slider2 .swiper-wrapper,
.swiper.m_sec_slider2 {
    height: auto !important;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 103%;
    margin-top: -1%;
    object-fit: cover;
}
    .p_main .sec3 .sec3_btn {
        width: 162px;
        height: 48px;
        border: 1px solid #666666;
        text-align: center;
        box-sizing: border-box;
        display: block;
        line-height: 47px;
        margin: 0 auto;
        cursor: pointer;
        transition: all 0.2s;
        font-size: 18px;
        font-weight: 700;
        border-radius:10px;
    }
.p_main .sec3 .sec3_btn:hover{
    color: #fff;
    background: #9F0827;
    border: 1px solid #9F0827;
}



.p_main .sec4 h2{
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
}
.p_main .sec4 p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
}

.p_main .sec4 .m_sec_slider2 .ms_wrap {
    width: 289.5px;
}
.p_main .sec4 .m_sec_slider2 .imgBox {
    width: 280px;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
}
/*팝업 공통*/
.popup_banner {
    position: fixed;
    top: 12%;
    left: 10%;
    border-radius: 20px;
    z-index: 9999999;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px 0px #00000020;
}
    .popup_banner img{
        max-width:500px;
        height:auto;
        width:100%;
    }
    .popup_banner .bot_box {
        display: flex;
        width: 100%;
    }
        .popup_banner .bot_box p{
            width:100%;

            padding:20px 0;
            cursor:pointer;
            text-align:center;
        }
        .popup_banner .bot_box span{
            width:2px;
            height:60px;
            background:#eeeeee;

        }
        .popup_wrap {
            width: 0%;
            height: 0%;
            background: #00000066;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 10000;
            display: none;
            overflow-y: auto;
        }
    .popup_wrap.alert_wrap {
        z-index: 100000;
    }
    .popup_wrap.on {
        width: 100%;
        height: 100%;
        display: block;
        padding: 0 20px 0;
        box-sizing: border-box;
        overflow:hidden;
    }
    .popup_wrap .popup_c {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background: #fff;
        max-width: 400px;
        margin-bottom: 10%;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 20px;
    }
        .popup_wrap .popup_c.alert{
            padding:50px 0 0;
        }
        .popup_wrap .popup_c .p_top {
            width: 100%;
            min-height: 64px;
            height: fit-content;
            border-bottom: 1px solid #dfdfdf;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10px 10px 15px;
            box-sizing: border-box;
            position: sticky;
            top: -1px;
            background: #fff;
            z-index: 1;
        }
        .popup_wrap .popup_c .p_top img{
            width:30px;
            height:30px;
            cursor:pointer;
        }
    .popup_wrap .popup_c input {
        border: 1px solid #999999;
        padding: 12px 10px;
        box-sizing: border-box;
        width: 100%;
        border-radius:10px;

    }
        .popup_wrap .popup_c .ad_search input {
            border-radius: 10px 0 0 10px;
        }
        .popup_wrap .popup_c .withdraw_r input[type="radio"] {
            appearance: none;
            width: 16px;
            height: 16px;
            max-height: 16px;
            border: 1px solid #AAAAAA;
            box-sizing: border-box;
            border-radius: 2px;
            cursor: pointer;
            display: block;
            padding: 0;
        }
        .popup_wrap .popup_c .withdraw_r input[type="radio"]:checked {
            background: url(../images/icon/icon_chk.png) center center/ auto;
            background-repeat: no-repeat;
            border: 1px solid #9F0827;
        }
        .popup_wrap .popup_c .p_cont {
            padding: 22px 24px;
            box-sizing: border-box;
        }
        .popup_wrap .popup_c .p_cont.ad_wrap {
            overflow: hidden;
            height: calc( 80vh - 64px);
        }
            .popup_wrap .popup_c .p_cont .star{
            display:flex;
            justify-content:center;
            align-items:center
        }
            .popup_wrap .popup_c .p_cont .rate_txt{
                letter-spacing:-0.5px;
            }
            .popup_wrap .popup_c .p_cont .star p span {
                vertical-align: baseline;
            }
        .popup_wrap .popup_c .p_cont .pic_btn {
            border: 1px solid #999999;
            padding: 12px 10px;
            box-sizing: border-box;
            width: 100%;
            text-align:center;
            cursor:pointer;
            border-radius:10px;
            cursor:pointer;
        }
            .popup_wrap .popup_c .p_cont .pic_btn img{
                margin-bottom:3px;
            }
        .popup_wrap .popup_c .p_cont .imgBox {
            display: flex;
            gap: 10px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }
            .popup_wrap .popup_c .p_cont .imgBox li {
                width: 22.8%;
                height: 62px;
                position: relative;
                overflow: hidden;
                border-radius: 10px;
            }
            .popup_wrap .popup_c .p_cont .imgBox.img3 li {
                width: 31.4%;
                height: 85px;
                overflow: hidden;
            }
            .popup_wrap .popup_c .p_cont .imgBox li:before {
                content: "";
                position: absolute;
                top: 1px;
                right: 1px;
                width: 28px;
                height: 28px;
                background: #000000;
                cursor: pointer;
                background-image: url(../images/icon/icon_close_w.png);
                background-position: center center;
                background-repeat: no-repeat;
                z-index: 1;
            }
            .popup_wrap .popup_c .p_cont .imgBox.admin_img li:before {
                display: none;
            }
                .popup_wrap .popup_c .p_cont .imgBox li img {
                    width: 100%;
                    height: auto;
                    position: relative;
                    top: 50%;
                    transform: translateY(-50%);
                }
        .popup_wrap .popup_c .ta_Wrap {
            position: relative;
            width: 100%;
            height: 183px;
        }
            .popup_wrap .popup_c .ta_Wrap p {
                position: absolute;
                bottom: 5px;
                right: 11px;
            }
        .popup_wrap .popup_c textarea.rate_ta {
            border: 1px solid #999999;
            padding: 10px 10px;
            box-sizing: border-box;
            width: 100%;
            resize: none;
            border-radius:10px;
        }
        .popup_wrap .popup_c .p_cont .Private {
            display:flex;
            justify-content:start;
            gap:10px;
            align-items:center;
        }
        .popup_wrap .popup_c .bottom_btn {
            text-align: center;
            height: 58px;
            line-height: 58px;
            background: #9F0827;
            width: 100%;
            border-radius: 10px;
            cursor: pointer;
        }
        .popup_wrap .popup_c .delv_box {
            background: #F7F7F7;
            padding:17px 0;
        }
        .popup_wrap .popup_c .prod_list_top{
            display:flex;
            justify-content:flex-start;
            gap:8px;
            align-items:center;
        }
        .popup_wrap .popup_c .prod_list {
            border-top: 1px solid #000000;
            width: 100%;
            border-collapse:collapse;
        }
            .popup_wrap .popup_c .prod_list td {
                vertical-align: middle;
                padding: 15px 2px;
                border-bottom: 1px solid #DFDFDF;
            }
                .popup_wrap .popup_c .prod_list td.rev_btn {
                    vertical-align: bottom;
                }
                    .popup_wrap .popup_c .prod_list td.rev_btn p {
                        width: 78px;
                        height: 30px;
                        background: #9F0827;
                        text-align: center;
                        line-height: 30px;
                        margin: 0 0 0 auto;
                    }
                .popup_wrap .popup_c .prod_list img {
                    height: 80px;
                    width: auto;
                }
        .popup_wrap .popup_c .txi {
            text-indent: -15px;
            margin-left: 15px;
        }
/* 탭 스타일 */
        .popup_wrap .popup_c .return_tab{
            width:100%;
            overflow:hidden;
        }
            .popup_wrap .popup_c .return_tab .tab_item {
                width: calc(96% / 3);
                height: 49px;
                line-height: 47px;
                border: 1px solid #DFDFDF;
                text-align: center;
                color: #555555;
                display: block;
                float: left;
                text-align: center;
                position: relative;
                cursor: pointer;
                box-sizing:border-box;
                margin-right: 2%;
            }
                .popup_wrap .popup_c .return_tab .tab_item.sub {
                    width: calc(98% / 2);
                }
                .popup_wrap .popup_c .return_tab .tab_item.mr {
                    margin: 0;
                }

                .p_review #all_content .tab_item {
                    width: fit-content;
                    margin-right: 10px;
                    height: 26px;
                    line-height: 26px;
                }

.popup_wrap .popup_c .return_tab input[name="tab_item"],
.popup_wrap .popup_c .return_tab input[name="change_item"],
.popup_wrap .popup_c .return_tab input[name="return_item"],
.popup_wrap .popup_c .return_tab input[name="point"],
.popup_wrap .popup_c .return_tab input[name="reivew_type"] {
    display: none;
}

.popup_wrap .popup_c .return_tab .tab_content {
    padding-top: 25px;
}

.popup_wrap .popup_c .return_tab .tab_content .tab_content{
    padding-top: 10px;
}

#cancel:checked ~ #cancel_content,
#exchange:checked ~ #exchange_content,
#return:checked ~ #return_content,
#change_1:checked ~ #change_1_content,
#change_2:checked ~ #change_2_content,
#return_1:checked ~ #return_1_content,
#return_2:checked ~ #return_2_content {
    display: block;
}

.popup_wrap .popup_c .return_tab input:checked + .tab_item {
    border: 2px solid #9F0827;
    color: #9F0827;
    line-height: 46px;
}
    .popup_wrap .popup_c .return_tab input:checked + .tab_item img {
        width: 24px;
        height: auto;
        filter: grayscale(0);
        opacity: 1;
    }
.popup_wrap .popup_c .return_tab .tab_item img {
    width: 24px;
    height: auto;
    filter: grayscale(1);
    opacity:0.9;
}
    .popup_wrap .popup_c select {
        width: 100%;
        height: 48px;
        border: 1px solid #999999;
        padding: 10px 10px;
        box-sizing: border-box;
        position: relative;
        background: url('../images/icon/ic_down_g.png') center right 10px;
        background-repeat: no-repeat;
        color: #999;
        border-radius:10px;
    }
.popup_wrap .popup_c .return_tab .tab_content .change_ta {
    border: 1px solid #999999;
    padding: 10px;
    resize: none;
    width:100%;
    box-sizing:border-box;
}
.popup_wrap .popup_c .dbBox{
    display:flex;
    gap:10px;
    align-items:center;
}
.popup_wrap .popup_c .dbBox input {
    width: 68%;
}
    .popup_wrap .popup_c .dbBox .address {
        border: 1px solid #000000;
        height:48px;
        box-sizing:border-box;
        line-height:4.8rem;
        width:33%;
        text-align:center;
        cursor:pointer;
    }
.popup_wrap .popup_c .num select{
    width:180px;
}
.popup_wrap .popup_c .address_chk {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}
.popup_wrap .popup_c .ad_search {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
    .popup_wrap .popup_c .ad_search div {
        width: 49px;
        height: 49px;
        border: 1px solid #999999;
        border-left: none;
        padding: 12px;
        box-sizing: border-box;
        cursor: pointer;
        border-radius: 0 10px 10px 0;
    }
        .popup_wrap .popup_c .ad_search div img{
            width:24px;
            height:auto;
        }
.popup_wrap .popup_c .ad_list {
    overflow-y: auto;
    height: calc( 100% - 75px);

}
    .popup_wrap .popup_c .ad_list .flex {
        display: flex;
        justify-content: space-between;
        align-items:center;
    }
    .popup_wrap .popup_c .ad_list select {
        width: 100px;
        height: auto;
        border: none;
        color: #222222;
        padding: 0;
        background: url(../images/icon/ic_down_g.png) center right;
        background-repeat: no-repeat;
    }
    .popup_wrap .popup_c .ad_list ul {
        border-top: 1px solid #DFDFDF;
    }
    .popup_wrap .popup_c .ad_list ul li {
        padding: 14px 0;
        border-bottom: 1px solid #DFDFDF;
        cursor:pointer;
    }
        .popup_wrap .popup_c .ad_list ul li .ad_num {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 10px;
        }
            .popup_wrap .popup_c .ad_list ul li .ad_num .l_text_l {
                border: 1px solid #888888;
                padding: 1px 5px 0px;
                min-width: 27px;
                text-align:center;
            }
            .popup_wrap .popup_c .ad_list ul li .ad_num .line {
                display: inline-block;
                width: 1px;
                height: 14px;
                background: #DFDFDF;
                margin:4.5px 3px 0;
            }
        .popup_wrap .popup_c .ad_list ul li .ad_btns {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 10px;
        }
            .popup_wrap .popup_c .ad_list ul li .ad_btns>div{
                width:80px;
                height:30px;
                line-height:2.8rem;
                border:1px solid #000000;
                text-align:center;
                box-sizing:border-box;
            }
            .popup_wrap .popup_c .ad_list ul li .ad_btns .btn_b {
                border: 1px solid #888888;
            }
                .popup_wrap .popup_c .db_btn {
                    display: flex;
                    justify-content: space-between;
                    gap: 3%;
                }
    .popup_wrap .popup_c .db_btn div:first-child {
        border: 2px solid #9F0827;
        background:#ffffff;
        box-sizing:border-box;
        line-height:56px;
    }
.popup_wrap .popup_c .dotList li {
    padding-left: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
}
.popup_wrap .popup_c .dotList li::marker {
    content: "·";
    color: #555555;
    font-size: 1.6rem;
}
.popup_wrap .popup_c .tb_top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
    .popup_wrap .popup_c .tb_top >div {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap:5px;
    }
    .popup_wrap .popup_c .star_box {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
    }
        .popup_wrap .popup_c .tb_top > div .line{
            height:10px;
            width:1px;
            background:#dfdfdf;
            margin:0 5px;
        }
        .popup_wrap .popup_c  .star_box .star img {
            width: 103px;
            height: auto;
        }
.popup_wrap .popup_c .review_imgBox li {
    margin-bottom: 10px;
    width: 100%;
    height: auto;
    max-height: 270px;
    border-radius: 10px;
}
    .popup_wrap .popup_c .review_imgBox li img{
        width:100%;
        height:auto;
    }
.popup_wrap .popup_c .withdraw_e{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}
    .popup_wrap .popup_c .withdraw_e li:not(:nth-child(2)) {
        width: 48%;
        background: #F7F7F7;
        padding:25px 0;
        text-align:center;
        box-sizing:border-box;
        border-radius:10px;
    }
    .popup_wrap .popup_c .withdraw_e li:nth-child(2) {
        border-radius: 50%;
        background: #9F0827;
        width:32px;
        height:32px;
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        text-align:center;
    }
        .popup_wrap .popup_c .withdraw_e li:nth-child(2) img{
            width:14px;
            height:auto;
            margin:9px auto;
        }
        .popup_wrap .popup_c .withdraw_r {
            border-top: 1px solid #000;
            border-bottom: 1px solid #dfdfdf;
            padding: 20px 0;
            box-sizing: border-box;
        }
    .popup_wrap .popup_c .withdraw_r ul li {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        align-items: center;
        margin-bottom: 10px;
    }
.popup_wrap .popup_c .db_btn2{
    display:flex;
    justify-content:space-between;

}
    .popup_wrap .popup_c .db_btn2>div{
        width:48.5%;
    }
        .popup_wrap .popup_c .db_btn2 > div:last-child{
            border:1px solid #000000;
            background:none;
            box-sizing:border-box;
        }
.popup_wrap .popup_c .option_chk{
    display:flex;
    justify-content:space-between;

}
    .popup_wrap .popup_c .option_chk>div{
        display:flex;
        align-items:center;
        gap:6px;
    }
    /*예외*/
    .p_purc .inner {
        padding: 80px 0;
    }

        .p_purc .inner .innerBanner {
            width: 100%;
            border-radius: 50px;
            overflow: hidden;
        }

        .p_purc .inner .innerBanner img {
            width: 100%;
            height: auto;
        }

            .p_purc .inner .innerBanner img.item_mo {
                display: none;
            }

        /* main 반응형 */
        .br_1200 {
            display: none;
        }
.br_1400 {
    display: none;
}
.br_750 {
    display: none;
}
.br_400 {
    display: none;
}
.br_850 {
    display: none;
}
@media screen and (max-width: 1440px) {
    html {
        font-size: 9.5px;
    }
    header .innerHeader {
        width: auto;
        max-width: 1200px;
    }
    .m_sec .inner {
        max-width: 1200px;
    }
    .p_main .m_banner .innerBanner {
        max-width: 1200px;
    }
    .p_main .visual .m_visual_slider{
        height:auto !important;
    }
    .p_main .visual .m_visual_slider .swiper-wrapper,
    .p_main .visual .m_visual_slider .swiper-slide {
        width: 100% !important;
    }
        .p_main .visual .m_visual_slider .swiper-slide .lineBox {
            bottom: 14%;
            left: 7.5%;
        }
    .p_main .sec1 .pd_wrap .pd_box .pd_img {
        width: 500px;
    }
    .p_main .sec2 .right_box {
        width: 800px;
    }
    .p_main .sec2 .left_box li {
        width: 700px;
        height: 110px;
    }
    .m_sec.sec3 .inner {
        max-width: 1070px;
    }
    .m_sec.sec4 .inner {
        max-width: 1070px;
    }
    .p_main .sec4 .m_sec_slider2 .imgBox{
        width:260px;
        height:260px;
    }
    .p_main .sec4 .m_sec_slider2 .swiper-slide,
    .p_main .sec4 .m_sec_slider2 .ms_wrap {
        width: 270px;
    }
    .p_main .visual .slick-next,
    .p_main .visual .slick-prev{
        display:none;
    }
    .slick-slide img {
        width: 100%;
    }
    footer .innerFooter {
        max-width: 1200px;
    }
    .br_1400 {
        display: block;
    }
}
    /* 테블릿 */
    @media screen and (max-width: 1200px) {
        html {
            font-size: 9px !important;
        }

        header .innerHeader {
            width: auto;
            max-width: 900px;
        }

        .br_1200 {
            display: block;
        }

        .m_sec .inner {
            max-width: 900px;
        }

        .m_sec.sec3 .inner {
        }

        .p_main .m_banner {
            background-position: right 40% bottom;
            height:auto;
        }

        .m_bn1::before {
            background: linear-gradient(to right, #ffcbc9, #ffd5d4 )
        }

        .m_bn2::before {
            background: linear-gradient(to right, #ff9279 40%, #ff9279 60%);
        }

        .p_main .m_banner .innerBanner {
            max-width: 900px;
            width:100%;
        }

        .p_main .sec1 .pd_wrap .pd_box .pd_img {
            width: 350px;
        }

        .p_main .sec2 .right_box {
            width: 600px;
        }

        .p_main .sec2 .left_box li {
            width: 550px;
        }
        .p_main .sec3 .m_sec_slider .txtBox .c_55{
            height:70px;
        }

        footer .innerFooter {
            max-width: 900px;
        }

            footer .innerFooter .f_left > div.m_text_l span.m_no {
                display: none;
            }
            footer .innerFooter .f_left > div.m_text_l span.f_line {
                margin-top: 11.5px;
            }
    }
@media screen and (max-width: 1070px) {
    .p_main .sec4 .m_sec_slider2 .imgBox {
        width: 100%;
        height: 100%;
    }

    .p_main .sec4 .m_sec_slider2 .swiper-slide, .p_main .sec4 .m_sec_slider2 .ms_wrap {
        width: 100%;
    }
    .p_main .swiper-button-next,
    .p_main .swiper-button-next {
        display: none;
    }
    .p_main .visual .m_visual_slider .swiper-slide .lineBox .line {
        width: 100px;
    }
}
    @media screen and (max-width: 850px) {
        .br_850 {
            display: block;
        }
         .rv_sbtab_pg li:not(:last-child):not(:first-child),
         .rv_sbtab_pg li:not(:last-child):not(:first-child) a{
            width: initial !important;
            height: initial;
            text-align: center;
            line-height: 40px;
            color: #888888;
            cursor: pointer;
            padding: 0 5px !important;
            display: block;
        }
            .rv_sbtab_pg li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
                display: none;
            }
        .rv_sbtab_pg li.on{
            display:block !important;
        }
        .rv_sbtab_pg li.on {
            position: relative;
        }
            .rv_sbtab_pg li.on:before {
                content:"/";
                width:auto;
                height:auto;
                position:absolute;
                right:-3px;
                color:#888888;
            }
            .bot_review .rv_sbtab_pg li.on, .bot_review .rv_sbtab_pg li.on a {
                background: none;
                color: #9F0827;
            }
    }

    @media screen and (max-width: 750px) {
        .br_750 {
            display: block;
        }

        html {
            font-size: 8.5px !important;
        }

        header .innerHeader {
            max-width: 600px;
        }
            header .innerHeader .navWrap ul li{
                margin-right:20px;
            }
            .m_sec .inner {
                max-width: 600px;
            }

        .p_main .m_banner .innerBanner {
            max-width: fit-content;
            padding: 35px 20px 41px;
            margin: 0;
        }

        .m_bn1 .txt {
            font-size: 28px;
            line-height: 1.6;
        }

        .p_main .m_banner {
            background-size: auto;
            height: 250px;
        }

        .m_bn1 {
            background-image: url(../images/icon/main_banner1_m.png);
        }

        .m_bn2 {
            background-image: url(../images/icon/main_banner2_m.png);
        }

        .p_main .m_banner {
            background-position: center bottom;
        }

        .p_main .sec1 .pd_wrap .pd_box .pd_img {
            width: 250px;
        }

        .p_main .m_sec2 {
            display: block;
        }

        .p_main .sec2 {
            display: none;
        }
        .p_main .sec3 .m_sec_slider .txtBox .c_55 {
            height: 60px;
        }
        .p_main .sec3 .swiper-slide .txtBox{
            height:180px;
        }
        .p_main .sec3 .swiper-slide .imgBox{
            height:200px;
        }
        footer .innerFooter {
            padding: 50px 20px;
            box-sizing: border-box;
            max-width: initial;
            flex-wrap: wrap;
            gap:30px;
        }

            footer .innerFooter .f_left, footer .innerFooter .f_right {
                width: 100%;
            }

            footer .innerFooter .f_right {
                text-align: left;
            }
                footer .innerFooter .f_right .fr_btn {
                    display: flex;
                    justify-content: flex-end;
                    flex-direction: row-reverse;
                    gap: 20px;
                    font-size: 16px;
                }

                footer .innerFooter .f_right .fr_sns {
                    justify-content: flex-start;
                }
        .p_main .visual .m_visual_slider .swiper-slide .lineBox {
            display:none;
        }
        footer .innerFooter .f_left > div.m_text_l span.f_line {
            margin-top: 9.5px;
        }

    }
    /* 모바일 */
    @media screen and (max-width: 500px) {
        .br_m {
            display: block;
        }
        .popup_banner {
            width: calc(100% - 40px);
            left: 20px;
        }
            .popup_banner img{
            }
            header {
                height: 75px;
            }

        header .innerHeader .i_Logo {
            width: 63px;
            padding: 0;
        }

        header .innerHeader .navWrap {
            display: none;
        }


            header .innerHeader .m_nav {
                display: block;
            }

        header .innerHeader {
            padding: 13px 20px;
            height: auto;
            box-sizing: border-box;
        }

            header .innerHeader .i_Logo {
                padding: 0;
            }
            header .innerHeader .i_FarmLogo {
                height: 50px;
                width: auto;
                padding: 0;
            }

            header .innerHeader .select_nav {
                margin: 8px 0;
                width: 130px;
                height: 36px;
                padding: 9px;
            }
        .m_sec .inner {
            max-width: auto;
            padding: 100px 20px;
            box-sizing: border-box;
            overflow: hidden;
        }

        .p_purc .m_sec .inner {
            padding: 50px 20px 100px;
        }

        .p_main .visual .m_visual_slider.pc {
            display: none;
        }

        .p_main .visual .m_visual_slider.mobile {
            display: block;
        }

        .p_main .sec1 .pd_wrap {
            flex-direction: column;
            gap: 100px;
        }

            .p_main .sec1 .pd_wrap .pd_box .pd_img {
                width: 100%;
            }


        .p_main .sec1 .kWord {
            justify-content: flex-start;
            gap: 3%;
            font-size: 17px;
            width: 500px;
            align-items: center;
        }

        .p_main .sec1 h2,
        .p_main .sec3 h2 {
            font-size: 32px;
        }


        .p_main .sec3::before {
            height: 420px;
        }

        .swiper, .swiper-wrapper {
            height: auto !important;
        }

        .p_main .sec3 .m_sec_slider .imgBox,
        .p_main .sec3 .m_sec_slider .txtBox {
            height: 180px;
        }

            .p_main .sec3 .m_sec_slider .txtBox p.m_title_m {
                font-size: 22px;
            }

            .p_main .sec3 .m_sec_slider .txtBox p.l_title_l {
                font-size: 17px;
            }

            .p_main .sec3 .m_sec_slider .txtBox .c_55 {
                -webkit-line-clamp: 2;
                height: 50px;
            }

        .p_main .visual .m_visual_slider .swiper-slide .lineBox {
            display: flex;
            bottom: 5%;
            left: 8.5%;
        }
            .p_main .visual .m_visual_slider .swiper-slide .lineBox .line {
                width: 144px;
            }
        footer .innerFooter .f_left .fl_btn {
            gap: 2.5%;
            margin-bottom: 30px;
        }

            footer .innerFooter .f_left .fl_btn li {
                font-size: 15px;
            }

        footer .innerFooter .f_left > div.m_text_l span.f_line {
            margin: 0px 7px;
            margin-top: 9.5px;
        }

        footer .innerFooter .f_left > div.m_text_l {
            letter-spacing: 0px;
            margin-bottom: 20px;
        }

        footer .innerFooter .f_right .l_title_m {
            font-size: 18px;
        }

        footer .innerFooter .f_right .b_title_b {
            font-size: 32px;
        }

        footer .innerFooter .f_right .m_text_l {
            font-size: 16px;
        }



        .p_purc .inner .innerBanner img.item_mo {
            display: block;
        }

        .p_purc .inner .innerBanner img.item_pc {
            display: none;
        }
        .p_main .sec3 .m_sec_slider,
        .p_main .sec4 .m_sec_slider2 {
            width: 600px !important;
        }

    }
    /* 작은 모바일 */
    @media screen and (max-width: 400px) {
        .br_400 {
            display: block;
        }
        .popup_wrap .popup_c .withdraw_e li:nth-child(2) {
            width: 26px;
            height: 26px;
        }
            .popup_wrap .popup_c .withdraw_e li:nth-child(2) img {
                margin: 6px auto;
            }
        header .innerHeader .i_FarmWrap p {
            font-size:17px;
            line-height:22px;
        }
            header .innerHeader .i_FarmWrap p .farmlogo{
                display:block !important;
                
            }
    }






