/****** 비쥬얼(메인) section01 ******/
.section01 {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.black_bg {
    background-color: rgb(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 11;
}
.visual_imgbox {
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.visual_imgbox img {
    width: 100%;
    object-fit: cover;
}
.black_bg {
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual_imgbox h1{
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 550;
    line-height: 60px;
}
.logo-top {
    position: absolute;
    top: 250px; 
    left: 250px;
    z-index: 11;
}
.logo-top img {
    object-fit: cover;
    width: 350px;
}
.logo-solid {
    position: absolute;
    top: 350px; 
    left: 250px;
    z-index: 11;
}
.logo-solid img {
    object-fit: cover;
    width: 350px;
}
.logo-background {
    position: absolute;
    top: 0;
    left: 200px;
    width: 450px;
    height: 894px;
    background-color: var(--primary-baige);
    z-index: 10;
}
/****** 비쥬얼(메인) section01 end ******/
/****** 정기 배달 도시락 section02 ******/
/* 모바일/PC */
.lunch_group_pc {display: block;}
.lunch_group_mo {display: none;}

.section02 .sub_title {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}
.heat_box,
.salad_box  {
    display: flex;
    gap: 80px;
    margin: calc(11%);
}

.lunch_group_wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.lunch_group_pc {
    width: 600px;
    height: 300px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    border: 2px solid white;
    box-shadow: rgba(207, 207, 207, 0.6) 0px 2px 10px;
    position: relative;
    overflow: hidden;
    padding: 60px;
}
.lunch_img {
    width: 200px;
    height: 100%;
    margin-left: 30px;
}
.lunch_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lunch_group_pc:hover {
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    box-sizing: border-box;
    transition: all 0.3s;
}
.salad .lunch_text {
    color: var(--primary-green);
}
.salad:hover {
    border-radius: 20px;
    border: 2px solid var(--primary-green);
}
.lunch_group_pc:hover .lunch_bg,
.salad:hover .lunch_bg {
    opacity: 0.3;
    transition: all 0.3s;
}
/* 런치박스 텍스트 스타일 */
.lunch_text {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    display: flex;
    flex-direction: column;
    align-items: last baseline;
    justify-content: center;
}
.lunch_tit {
    display: flex;
}
.lunch_tit img {
    width: 40px;
    height: 40px;
    margin-left: 8px;
}
.lunch_price {
    color: black;
}
.ext_txt {
    font-size: 16px;
    margin-top: 6px;
}

/****** 정기 배달 도시락 section02 end ******/