.header_wrap .tel_box .delivery_img { display: none; }
.menu_container {
  padding: 7rem 0;
  background: #F8F8F8;
  box-sizing: border-box;
}

/* Tab */
.tab_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.tab_box .tab_button {
  width: 200px;
  height: 58px;
  background: #fff;
  border: 1px solid #DEDEDE;
  border-radius: 29px;
  cursor: pointer;
  overflow: hidden;
}
.tab_box .tab_button.active { background: #202020; }
.tab_box .tab_button.active a { color: #fff; }
.tab_box .tab_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

.menu_content {
  text-align: center;
  padding-top: 10rem; 
}
.menu_tit {
  font-size: 30px;
  font-weight: 900;
}
.menu_tit.bt { margin-bottom: 4rem; }
.menu_dec {
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  padding: 9px 3rem;
  margin: 7px auto 4rem;
  background: #FFD547;
  border-radius: 21px;
  box-sizing: border-box;
}

.menu_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px 17px;
}
.menu_area.set .menu_box {
  justify-content: flex-start;
  row-gap: 20px;
}
.menu_area.side .menu_box {
  flex-direction: row;
  justify-content: space-evenly;
}
.menu_area.wrap {
  flex-wrap: wrap;
}
.menu_area.side { justify-content: flex-start; }
.menu_area .menu_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 4.7rem;
  width: 100%;
  background: #fff;
}
.menu_area .menu_box.st1 {
  height: 437px;
}
.menu_area .menu_box.st2 {
  width: calc((100% / 2) - 9px);
  height: 385px;
}
.menu_area .menu_box.st3 {
  width: calc((100% / 3) - 12px);
  height: 230px;
}
.menu_area .menu_box.st4 {
  width: calc((100% / 2) - 9px);
  height: 142px;
}
.menu_area .menu_box.st3 span {
  position: absolute;
  bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #BBBBBB;
}

.menu_area .menu_box .img_box {
  width: 100%;
  max-width: 340px;
  height: 100%;
  max-height: 243px;
}
.menu_area .menu_box.st2 .img_box {
  max-width: 100%;
  max-height: 294px;
}
.menu_area .menu_box.st3 .img_box {
  width: auto;
  height: auto;
  max-height: auto;
  max-width: auto;
}
.menu_area .menu_box .img_box img {
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
}
.menu_area .menu_box.st2 .img_box img { object-fit: cover; }

.menu_area .menu_box .info_box .menu_name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
}
.menu_area .menu_box .info_box .menu_price {
  font-size: 18px;
  font-weight: 400;
  color: #F69000;
  margin-top: 4px;
  padding-bottom: 15px;
}


@media screen and (max-width: 780px) {
  .tab_box .tab_button { width: 170px; }
  .tab_box .tab_button a { font-size: 18px; }
  .menu_dec { font-size: 16px; }
  .menu_area .menu_box.st2 { width: 100%; }
  .menu_area .menu_box.st3 { 
    flex-direction: column;
    width: calc((100% / 2) - 12px); 
    height: auto;
    padding: 2rem 0;
    box-sizing: border-box;
  }

  .menu_area.main { flex-direction: column; }
  .menu_area .menu_box.st1 { height: 360px; }
}

@media screen and (max-width: 480px) {
  .tab_box { gap: 8px; }
  .tab_box .tab_button a { font-size: 1.6rem; }
  .menu_area .menu_box .info_box .menu_name {
    font-size: 18px;
    padding: 0 5px;
    box-sizing: border-box;
  }
  .menu_area .menu_box.st3 { width: 100%; }
}

@media screen and (max-width: 320px) {
  .tab_box { gap: 4px; }
  .tab_box .tab_button a { font-size: 1.4rem; }
}