@media (max-width: 1024px) {
.section02{
    width: 100%;
    margin: 20px auto;
}
.section02 .sub_title{
    padding: 30px;
    
}
/****** 정기 배달 도시락 section02 ******/
.section02 .sub_title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: -20px;
}
.heat_box,
.salad_box  {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: calc(20%);
}
.heat_box img,
.salad_box img {
    width: 100%;
    transform: scale(0.8);
}

.box2_img img {
    width: 100%;
    object-fit: top contain;
    object-position: top;
    transform: translateY(-30px) scale(0.6);
}

.lunch_group_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
/* 모바일/PC */
.lunch_group_pc {display: none;}
.lunch_group_mo {display: block;}

.lunch_group_wrap {
    gap: 10px;
}
.lunch_group_mo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    width: 50vw;
    min-width: 160px;
    height: 300px;
    border-radius: 10px;
    box-shadow: rgba(207, 207, 207, 0.6) 0px 2px 10px;
}
/* 런치박스 이미지 스타일 */
.lunch_img {
    width: 100%;
    height: 60%;
    margin-left: 0px;
}
.lunch_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 런치박스 텍스트 스타일 */
.lunch_text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.lunch_tit {
    display: flex;
}
.lunch_tit img {
    width: 26px;
    height: 26px;
    margin-left: 8px;
}
.lunch_price {
    color: black;
}
.ext_txt {
    font-size: 16px;
    margin-top: 6px;
}
/* 런치박스 텍스트 스타일 end */
.salad .lunch_tit span,
.salad .lunch_ext {
    color: var(--primary-green);
}
.lunch_group a:hover {
    border: 2px solid white;
    border-radius: 20px;
    box-sizing: border-box;
}
.salad a:hover {
    border: 2px solid white;
}
.lunch_group a:hover .lunch_bg,
.salad a:hover .lunch_bg {
    opacity: 1;
}
.salad:hover {
    border: inherit;
}
/****** 정기 배달 도시락 section02 end ******/


}


@media (min-width: 320px) and (max-width: 480px) {
    .lunch_group_mo {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 16px;
        width: 50vw;
        min-width: 160px;
        height: 100%;
        border-radius: 10px;
        box-shadow: rgba(207, 207, 207, 0.6) 0px 2px 10px;
    }
    /* 런치박스 이미지 스타일 */
    .lunch_img {
        width: 100%;
        height: 100%;
        margin-left: 0px;
    }
    .lunch_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* 런치박스 텍스트 스타일 */
    .lunch_text {
        font-weight: 700;
        color: var(--primary-orange);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    .lunch_tit {
        display: flex;
        font-size: 18px;
    }
    .lunch_tit img {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }
    .lunch_price {
        color: black;
        font-size: 16px;
    }
    .lunch_group_mo .ext_txt {
        font-size: 12px;
        margin-top: 6px;
    }
    /* 런치박스 텍스트 스타일 end */
    .salad:hover {
        border: inherit;
    }
}