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



/*==============================
共通
==============================*/
.titleText{
  padding: 10px 50px;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 22px;
  display: inline-block;
  font-weight: bold;
  border-right: 2px solid #ffc444;
  border-left: 2px solid #ffc444;
  margin-bottom: 50px;
}

header{
  width: 100%;
  height: 400px;
  background-image: url("../img/headBack.jpg");
  background-size: cover;
  background-position: center;
}
/*==============================
メイン
==============================*/

#titleWrap{
  padding: 0 15px;
  background-color: #f5f5f5;
  position: relative;
}

#titleWrap div{
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px;
  top: -50px;
  text-align: center;
}

#titleWrap div h2{
  margin-bottom: 20px;
}

#titleWrap div p{
  text-align: justify;
}

#pointWrap{
  padding: 100px 15px;
  text-align: center;
}

#pointWrap ul:first-of-type{
  display: flex;
  margin: 0 auto 50px;;
  justify-content: center;
}

#pointWrap ul:first-of-type li{
  width: 300px;
}

#pointWrap ul:first-of-type li i{
  font-size: 100px;
  color: #ffc444;
  margin-bottom: 10px;
}

#pointWrap ul:first-of-type li h3{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}

#pointWrap ul:last-of-type{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#pointWrap ul:last-of-type li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ccc;
}

#pointWrap ul:last-of-type li i{
  font-size: 60px;
  color: #ffc444;  
}

#pointWrap ul:last-of-type li div{
  width: 90%;
  text-align: left;
}

#pointWrap ul:last-of-type li div h3{  
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 5px solid #ffc444;
}

#pointWrap ul:last-of-type li div h3 br{
  display: none;
}

#recommendWrap{
  background-color: #ffc444;
  padding: 100px 15px;
  text-align: center;
}

#recommendWrap .titleText{
  border-right: 2px solid #333;
  border-left: 2px solid #333;  
}

#recommendWrap ul{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#recommendWrap ul li{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
}

#recommendWrap ul li i{
  margin-right: 10px;
}

#recommendWrap ul li h3{
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: bold;
}

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

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

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

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

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

@media screen and (max-width: 800px) {
  #pointWrap ul:first-of-type{
    display: none;
  }
  
  #pointWrap ul:last-of-type li{
    flex-wrap: wrap;
    justify-content: center;
  }
  
  #pointWrap ul:last-of-type li i{
    margin-bottom: 20px;
  }
  
  #pointWrap ul:last-of-type li div{
    width: 100%;
  }
  
  #pointWrap ul:last-of-type li div h3{
    text-align: center;
    padding-left: 0;
  }
}

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

  header{
    width: 100%;
    height: 200px;
    background-image: url("../img/headBack.jpg");
    background-size: cover;
    background-position: center;
  }
  
  #titleWrap div{
    padding: 20px;
  }
  
  #titleWrap div h2{
    margin-bottom: 10px;
  }
  
  #pointWrap ul:last-of-type li div h3{
    font-size: 16px;
    line-height: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  #pointWrap ul:last-of-type li div h3 br{
    display: block;
  }
  
  #recommendWrap .titleText{
    padding-right: 30px;
    padding-left: 30px;
  }
  
  #recommendWrap ul li h3{
    font-size: 16px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 414px){
}