@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){
}

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

#shopWrap{
  padding: 100px;
  background-color: #222;
}

.menutitleBox{
  width: 100%;
  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;
}

.shopBox{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

.shopBox:last-of-type{
  margin-bottom: 0;
}

.shopBox:nth-of-type(2n - 1){
  flex-flow: row-reverse;
}

.shopBox > div{
  width: 50%;
}

.shopBox > div h2{
  color: #fff;
  font-weight: normal;
}

.shopBox > div:last-of-type{
  padding: 50px;
}

.shopBox > div h2{
  margin-bottom: 15px;
}

.shopBox > div table{
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 15px;
}

.shopBox > div table td{
  color: #fff;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 10px;
  font-size: 14px;
}

.shopBox > div p{
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

#companyWrap{
  padding: 100px 0;
  background-color: #e1e1e1;
}

#companyWrap > h2{
  font-size: 50px;
  margin-left: 100px;
  font-weight: normal;
  color: #222;
  margin-bottom: 10px;
}

#companyWrap > p{
  color: #999;
  margin-left: 100px;
  margin-bottom: 50px;
}

#companyWrap > div{
  width: calc(100% - 100px);
  margin-left: 100px;
  display: flex;
}

#companyWrap > div > div:first-of-type{
  margin-right: 50px;
  background-color: #fff;
  padding: 50px;
  text-align: center;
  width: 60%;
}

#companyWrap > div > div h3{
  font-size: 22px;
  margin-bottom: 10px;
}

#companyWrap > div > div hr{
  border-bottom: none;
  width: 50px;
  height: 1px;
  background-color: #666;
  margin: 0 auto 10px; 
}

#companyWrap > div > div h4{
  margin-bottom: 50px;
  line-height: 36px;
}

#companyWrap > div > div p{
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 33px;
}

#companyWrap > div > div:last-of-type{
  padding-top: 50px;
  width: 40%;
}

#companyWrap > div > div:last-of-type table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#companyWrap > div > div:last-of-type table td{
  padding: 20px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

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

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

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

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

  
  #shopWrap{
    padding: 100px 20px;
  }
  .menutitleBox{
    width: 100%;
  } 
}

@media screen and (max-width: 1000px) {
  .shopBox{
    display: block;
    max-width: 600px;
    margin: 0 auto 100px;
  }
  
  .shopBox > div:first-of-type{
    margin-bottom: 50px;
  }
  
  .shopBox > div{
    width: 100%;
    padding: 0;
  }
  
  .shopBox > div:last-of-type{
    padding: 0;
  }
  
  #companyWrap{
    padding: 100px 20px;
  }
  
  #companyWrap > h2,
  #companyWrap > p{
    margin: 0 0 10px;
  }
  
  #companyWrap > div{
    width: 100%;
    margin-left: 0;
    display: block;
  }
  
  #companyWrap > div > div:first-of-type,
  #companyWrap > div > div:last-of-type{
    width: 100%;
  }
  
  #companyWrap > div > div:first-of-type{
    padding: 50px 20px;
  }
}

@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;
  }
}

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