@charset "utf-8";
/* CSS Document */



/*==============================
共通
==============================*/
#headWrap{
  width: 100%;
  height: 400px;
  background-image: url("../img/headBack.jpg");
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#headWrap div{
  text-align: center;
}

#headWrap div h2{
  color: #fff;
  font-weight: normal;
  font-size: 50px;
  margin-bottom: 10px;
}

#headWrap div p{
  color: #fff;
}

@media screen and (max-width: 600px){
}

/*==============================
メイン
==============================*/

#fairWrap,#pizzaWrap,#doriaWrap,#sideWrap,#partyWrap{
  background-color: #222;
  padding: 100px 20px;
}

#spaWrap,#meatWrap,#saladWrap,#drinkWrap,#sweetsWrap{
  background-color: #333;
  padding: 100px 20px;
}

.menutitleBox{
  width: calc(100% - 200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.menutitleBox h2{
  color: #fff;
  font-size: 50px;
  margin-right: 20px;
  font-weight: normal;
}

.menutitleBox p{
  color: #999;
}

.menupopList{
  width: calc(100% - 200px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.menupopList li{
  width: 24%;
  margin-right: 1.3333%;
  margin-bottom: 30px;
}

.menupopList li:nth-of-type(4n){
  margin-right: 0;
}

.menupopList li img{
  width: 100%;
}

.menuList{
  width: calc(100% - 200px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;  
}

.menuList li{
  width: 15%;
  margin-right: 1.6666%;
  margin-bottom: 40px;
}

.menuList li:nth-of-type(6n){
  margin-right: 0;
}

.menuList li img{
  width: 100%;
  margin-bottom: 5px;
}

.menuList li p{
  font-family: 'Sawarabi Gothic', sans-serif;
  text-align: justify;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 18px;
  margin-bottom: 10px;
}

.menuList li h4{
  font-family: 'Sawarabi Gothic', sans-serif;
  text-align: justify;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 18px;
  border-bottom: 1px solid #999;
  text-align: right;
}


/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) { 

  .menutitleBox,.menupopList,.menuList{
    width: 100%;
  } 
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 800px) {  
}

@media screen and (max-width: 600px){
  .menutitleBox{
    display: block;
  }
  
  .menutitleBox h2{
    margin-bottom: 10px;
  }
  
  .menupopList li{
    width: 100%;
    margin-right: 0;
  }
  
  .menuList li{
    width: 49%;
    margin-right: 2%;
  }
  
  .menuList li:nth-of-type(6n){
    margin-right: 2%;
  }
  
  .menuList li:nth-of-type(2n){
    margin-right: 0;
  }
}

@media screen and (max-width: 414px){
}