@charset "utf-8";
/* 새글 스킨 (latest) */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.food-category2{
    max-width: 1410px;
    margin: 0 auto;

}

.food-category-name2{
    max-width: 1410px;
    display: flex;
    margin: 0 auto 30px;
    cursor: pointer;
    width: 100%;
}

.food-category-item2{
    padding: 10px;
    font-size: 20px;
}

.food-category-item2.on{
    background-color: #1a202a;
    color: #fff;
}

.food-wrapper2{
    margin-bottom: calc(150px + 1.5vw);
}
.food-list2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    margin: 0 auto;
    line-height: 1.5;

}
.food-item2{
    width: calc(100%/4 - 15px);
}
.food-image2{
    margin-bottom: 20px;
    height: 250px;
    position: relative;
}
.food-image2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.food-tit2{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}
.food-price2{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
}
.food-price2-inner{
    display: flex;
    align-items: center;
}
.food-bar2{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #1a202a;
    margin: 10px 0;
}
.food-txt2{
    font-size: 14px;
    font-weight: 400;
}
.menu-name2{
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}
.menu-name2 img{
    width: 100%;
}



.food-item2.off{
    display: none;
}

.spicy-image{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
}
.spicy-image img{
    width: 100%;
}

.deco-list2{
    font-size: 10px;
    margin-left: 10px;
    display: flex;
    align-items: flex-end;
    line-height: 1;
}
.food-suggest2{
    padding: 3px;
    background-color: rgb(33, 88, 70);
    color: #fff;
    margin-right: 5px;
}
.food-popular2{
    padding: 3px;
    background-color: #f0ae40;
    color: #fff;
}
.food-new2{
    padding: 3px;
    background-color: red;
    color: #fff;
    margin-right: 5px;
}



@media screen and (max-width: 769px) {
    .food-item2{
        width: calc(100% / 2 - 15px);
    }
    .food-category-item2{
        font-size: 16px;
    }
    .food-wrapper2{
        margin-bottom: calc(70px);
    }
    .kids-wrapper{
        padding: 0 10px;
    }
    .food-image2{
        height: 200px;
    }
}


@media screen and (max-width: 560px) {

    .food-category-item2{
        font-size: 14px;
    }

    .food-price2{
        flex-direction: column;
        align-items: flex-start;
    }

    .food-price2-inner{
        display: flex;
        margin-bottom: 10px;
        align-items: center;
    }

    .deco-list2{
        margin-left: 0;
    }

    
    

    .food-tit2{
        font-size: 16px;
    }

    .food-category2{
        overflow: auto;
    }
    .food-category-name2{
        white-space: nowrap;
    }
    .food-item2{
        width: calc(100% / 2 - 15px);
    }
    .food-image2{
        height: 150px;
    };
}