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

/*==============================
ヘッダ
==============================*/

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

header > h2{
  position: relative;
  font-family: "Noto Sans JP";
  top: 140px;
  left: 100px;
  font-size: 40px;
  letter-spacing: 8px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,.9);
}

header > h2 span{
  font-family: 'Hannari';
  font-size: 26px;
  text-shadow: 0 0 5px rgba(0,0,0,.9);
  margin-left: 5px;
}

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

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

@media screen and (max-width: 1000px) {
  header{
    height: 250px;
  }

  header > h2{
    top: 100px;
    left: 50px;
  }
}

@media screen and (max-width: 800px) {
  header{
    height: 200px;
  }

  header > h2{
    top: 70px;
    left: 20px;
  }
}

@media screen and (max-width: 600px) {
  header{
    height: 150px;
  }

  header > h2{
    top: 50px;
    font-size: 32px;
    letter-spacing: 3px;
  }
  
  header > h2 span{
    font-size: 18px;
    letter-spacing: 0;
  }
}


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

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

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

.contactBox{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 50px;
  background-color: #eef9f6;
}

.contactBox p{
  text-align: left;
  color: #006549;
  padding: 5px;
}

.contactBox input[type="text"],
.contactBox textarea{
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: none;
}

.contactBox textarea{
  margin-bottom: 10px;
}

.contactBox input[type="submit"]{
  display: inline-block;
  padding: 10px 50px;
  font-size: 20px;
  color: #fff;
  background-color: #006549;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

.contactBox input[type="submit"]:hover{
  opacity: .8;
  transition: .3s;
}

.g-recaptcha > div{
  margin: 0 auto;
}

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

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

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

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

  .contactBox{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #eef9f6;
  }
}

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