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



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

.titleBox{
  margin-bottom: 30px;
}
.titleBox h3{
  font-weight: bold;
  margin-bottom: 10px;
}

.titleBox hr{
  border: none;
  width: 40px;
  height: 3px;
  background-color: #292e3a;
  margin-bottom: 10px;
}
.titleBox h2{
  font-weight: bold;
}

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

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

#headWrap{
  position: relative;
  background-color: #fff;
  height: 100vh;
}

#headWrap > .slider-pro{
  margin-right: 0;
}

.headCover{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  border: 100px solid #fff;
  z-index: 10;
}

#headWrap > h1{
  position: absolute;
  font-size: 28px;
  letter-spacing: 8px;
  font-weight: 500;
  top: 150px;
  padding: 15px;
  padding-left: 115px;
  left: 0;
  z-index: 11;
  background-color: rgba(45,54,121,.5);
  color: #fff;
}

#aboutWrap{
  position: relative;
  width: 100%;
  display: flex;
  z-index: 2;
}

#aboutWrap > div{
  position: relative;
  width: 50%;
}

.abouttextBox{
  top: 30px;
  background-color: #f6f6f6;
  padding: 100px;
}

.abouttextBox h2{
  color: #2d3679;
}

.abouttextBox h3{
  margin-bottom: 20px;
}

.abouttextBox p:last-of-type{
  margin-bottom: 30px;
}

.aboutimgBox{
  background-image: url("../img/topImg01.jpg");
  background-size: cover;
  background-position: center center;
}

#serviceWrap{
  position: relative;
  text-align: center;
  width: 100%;
  padding: 130px 20px 100px;
  background-color: #edeef7;
}

#serviceWrap h2{
  color: #2d3679; 
}

#serviceWrap h3{
  margin-bottom: 30px;
}

#serviceWrap ul{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
}

#serviceWrap ul li{
  width: 24%;
}

#serviceWrap ul li img{
  width: 100%;
}

#serviceWrap ul li h4{
  background-color: #2d3679;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  text-align: left;
}
/*==============================
レスポンシブ
==============================*/

@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) {
  #headWrap{
    border: none;
    height: auto;
  }
  
  .headCover{
    display: none;
  }
  
  #headWrap > h1{
    padding-left: 30px;
  }
  
  .abouttextBox{
    top: 0;
    padding: 50px;
  }
}

@media screen and (max-width: 800px) {
  #headWrap > h1{
    top: 100px;
    font-size: 22px;
    letter-spacing: 2px;
  }
  
  #aboutWrap{
    display: block;
  }
  
  #aboutWrap > div{
    width: 100%;
  }
  
  .aboutimgBox{
    height: 300px;
  }
  
  #serviceWrap ul{
    flex-wrap: wrap;
  }
  
  #serviceWrap ul li{
    width: 49%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px){
  
  #serviceWrap ul li{
    width: 100%;
  }
}

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