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



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

header{
  position: relative;
  width: 100%;
  height: 380px;
  background-image: url("../img/headBack.png");
  background-size: cover;
  background-position: center center;
}

header > img{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.titleBox{
  text-align: center;
  margin-bottom: 30px;
}

.titleBox h2{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.titleBox hr{
  display: block;
  width: 100px;
  margin: 15px auto;
  height: 4px;
  background:linear-gradient(90deg,#000000 0%,#000000 50%,#1478dc 50%,#1478dc 100%);
}

.titleBox h2 span{
  color: #1478dc;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 600px){
  header{
    height: 280px;
  }
  
  header > img{
    max-width: 50%;
  }
}

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

#serviceWrap{
  padding: 50px 20px;
}

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

#serviceWrap > ul > li{
  width: 48%;
  margin-bottom: 30px;
}

#serviceWrap > ul > li img{
  width: 100%;
  margin-bottom: 15px;
}

#serviceWrap > ul > li .titleBox{
  margin-bottom: 15px;
}

#serviceWrap > ul > li .titleBox h2{
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
}

#serviceWrap > ul > li .titleBox h3{
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 1px;
}

#serviceWrap > ul > li p{
  margin-bottom: 10px;
  text-align: justify;
}


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

@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) {
  #serviceWrap > ul{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #serviceWrap > ul > li{
    width: 100%;
    margin-bottom: 30px;
  }
}

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

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