.food-wrap{
  width: 25%;
}
.merch-ul{
  /* max-width: 33.33333333333333%; */
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  /* overflow-y: scroll; */
  /* flex-wrap: wrap; */
  width: 100%;
  /* height: 100vh; */
  /* overflow-y: scroll; */
  /* padding-bottom: 600px; */
  gap: 20px;
}
.merch-ul:nth-child(1), .merch-ul:nth-child(2){
  /* flex-direction: column-reverse; */
}
.merch-ul li{
  /* width: 20%; */
}
li img{
  width: 100%;
}



.imgSlider{
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: start;
  overflow: hidden;
  overflow-x: scroll;
  /* 스크롤바 숨기기 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.imgSlider:hover{
  width: 100%;
  /* cursor:row-scroll; */

}

/* Webkit 브라우저용 스크롤바 숨기기 */
.imgSlider::-webkit-scrollbar {
  display: none;
}

.imgSlider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .merch-ul{
    /* max-width: 33.33333333333333%; */
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    /* overflow-y: scroll; */
    /* flex-wrap: wrap; */
    height: auto;
    overflow-y: auto;
    /* gap: 4px; */
  }
  .food-wrap{
    width: 100%;
  }

  .merch-ul{
    max-width: 100%;
  }
  .main-text-title{
    margin-top: 16px;
    border-top: solid var(--main-black-color) var(--main-line-weight);
  }
}