@charset "UTF-8";
:root {
  --foods-color: #EA5413;
  --foods-bgcolor: #FFF1B9;
}
.sp_menuNav {
  display: none;
}
.foods_pc {
  background: none;
  padding: 0;
}
.menu_wrap {
  background-color: var(--foods-bgcolor);
  width: 100%;
  margin-bottom: 60px;
}
.menu_lst {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  padding: 70px 0;
  position: relative;
}
.menu_lst::after {
  position: absolute;
  content: "";
  background-image: url(../image/menu-picture-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 100px;
  right: -40px;
  width: 700px;
  height: 400px;
  opacity: 0.7;
} 
.menu_itm {
  width: 320px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 10;
}
.menu_itmTtl {
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  height: 50px;
  line-height: 50px;
  background-color: var(--foods-color);
  border-radius: 10px 10px 0 0;
}
.menuLong {
  font-size: 17px;
}
.menu_itmImg {
  height: 200px;
  object-fit: cover;
}
.menu_itmLst {
  height: 170px;
  background-color: #FFF;
  padding: 16px;
  border-radius: 0 0 10px 10px ;
}
.menu_itmMenu {
  line-height: 1;
  width: 50px;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px 2px 16px;
  background-color: #F8A582;
  border-radius: 4px 4px 0 0;
  margin-bottom: -1px;
}

.menu_itmLst ul {
  border-top: #F8A582 solid 2px;
  padding-top: 10px;
}
.menu_itmLst ul li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 4px;
  line-height: 1.3;
  font-weight: bold;
}
.piza .menu_itmLst ul li {
  font-size: 14px;
  margin-bottom: 0px;

}
.menu_itmDum {
  width: 320px;
  height: 390px;
}
.menu_itmDum img {
  display: block;
  width: 220px;
  margin: 30px auto;
}
@media only screen and (max-width: 736px) {
.sp_menuNav {
  display: block;
}
.sp_menuNav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 30px;
  padding: 30px 24px 0;
}
.sp_menuNav a {
  font-size: 18px;
  font-weight: bold;
  color: var(--foods-color);
  border-bottom: var(--foods-color) 2px solid;
}
.sp_menuNav a:nth-of-type(5) {
  color: #999;
  border-bottom: #999 2px solid;
  pointer-events: none;
}
.menu_lst {
  justify-content: center;
  padding: 40px 16px 60px;
}
.menu_itm {
width: 100%;
}
.menu_itmLst {
  height: fit-content;
}
.menu_lst::after,
.menu_itmDum {
  display: none;
}
}


