.food-ul{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  overflow-y: scroll;
  /* background-color: rebeccapurple; */
}

.food-ul li{
  border-bottom: var(--main-line-weight) solid var(--main-black-color);
  /* height: 30px; */
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: start;
  overflow: hidden;
}

.food-ul li a{
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  text-decoration: none;
}

.food-ul li a span:hover{
  color: var(--main-green-color);
  /* background-color: rebeccapurple; */
  /* font-size: min(2.5vw, 16px); */
}
.food-ul li a iframe{
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.food-title{
  /* font-size: 24px; */
  font-weight: 500;
  width: 100%;
}

main{
  /* margin-top: 34px; */
  /* padding-top: 0px; */
  display: flex;
}

iframe{
  display: none;
}

.main-text-title{
  font-weight: 500;
  font-family: 'En' , 'Pretendard';
  margin-bottom: 0px;
  border-bottom: var(--main-line-weight) solid var(--main-black-color);
}

@media screen and (max-width: 900px) {
  main{
    /* margin-top: 34px; */
    /* padding-top: 0px; */
    display: flex;
    flex-direction: column;
  }
  
}