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



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

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

.titleBox h3{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #ffe824;
}

.titleBox hr{
  display: block;
  width: 50px;
  margin: 15px auto;
  height: 2px;
  border: none;
  background-color: #fff;
}

.titleBox h2{
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 600px){
  .titleBox h3{
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .titleBox hr{
    margin: 10px auto;
  }
  
  .titleBox h2{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
  }
}

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

#headWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  z-index: 1;
  background-image: url("../img/headBack.jpg");
  background-position: center center;
  background-size: cover;
}

#headWrap > .titleBox{
  margin-bottom: 0;
}

#headWrap > .titleBox h3{
  color: #fff;
}

#contactWrap{
  padding: 50px 20px;
  text-align: center;
}

#contactWrap > p{
  margin-bottom: 50px;
}

.contactBox{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  background-color: #e9f0f3;
  text-align: center;
}

#contactWrap .titleBox h3{
  color: #29abe2;
}

#contactWrap .titleBox hr{
  background-color: #29abe2;
}

#contactWrap .titleBox h2{
  color: #333;
}

span.hissu{
  color: #b82020;
}

.contactBox > p{
  text-align: center;
  margin-bottom: 20px;
}

.contactBox > form p{
  width: 100%;
  text-align: left;
  margin-bottom: 2px;
}

.contactBox > form input[type="text"],
.contactBox > form textarea{
  width: 100%;
  padding: 5px;
  border: none;
  margin-bottom: 5px;
}

.contactBox > form > div{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contactBox > form > div > div{
  width: 49%;
}

.contactBox > form input[type="submit"]{
  display: block;
  border: none;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 10px 50px;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  font-weight: normal;
  background-color: #29abe2;
  cursor: pointer;
}


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

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

@media screen and (max-width: 600px){
  
  #headWrap{
    height: 200px;
  }
  
  .contactBox{
    padding: 30px 10px;
  }

  .contactBox > form > div{
    display: block;
  }

  .contactBox > form > div > div{
    width: 100%;
  }
}

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