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



/*==============================
共通
==============================*/

.titleBox{
  margin-bottom: 50px;
  text-align: center;
}
.titleBox h2{
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: #ca151f;
}

.titleBox h3{
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 0;
}

#headWrap{
  padding: 100px;
  background-image: url("../img/headWrap.jpg");
  background-position: center center;
  background-size: cover;
}

#headWrap h2{
  color: #fff;
}

#headWrap p{
  color: #ccc;
  font-weight: bold;
}

@media screen and (max-width: 600px){
  #headWrap{
    padding: 100px 20px;
  }
}

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

#menuWrap{
  padding: 100px 20px;
}

.menuBox{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.menuTitle{
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 1px solid #ca151f;
  margin-bottom: 30px;
}

.menuTitle h3{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-right: 10px;
}

.menuTitle p{
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #ca151f;
}

.menuList{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

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

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

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

.menuList li div{
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #ca151f;
}

.menuList li div h4{
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: bold;
}

.menuList li div p{
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  color: #ca151f;
}

.menuList li div p::before{
  content: "￥";
}

.menuList li div p::after{
  content: "(税込)-"
}

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

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

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

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

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

  .menuBox{
    max-width: 800px;
  }
  
  .menuList li{
    width: 48%;
    margin-right: 4%;
  }

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

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

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

  .menuBox{
    max-width: 400px;
  }
  
  .menuList li{
    width: 100%;
    margin-right: 0;
  }

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

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