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



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

header{
  background-image: url("../img/headBack.jpg");
  background-position: 100% center;
}

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


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

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

#contactWrap p{
  margin-bottom: 30px;
}

.formBox{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.formBox table{
  width: 100%;
  margin-bottom: 10px;
}

.formBox table input,
.formBox table textarea{
  background-color: #efefef;
  border: 1px solid #fff;
  padding: 20px;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 2px;
  vertical-align: bottom;
}

.formBox table th{
  width: 25%;
  background-color: #efefef;
  border: 1px solid #fff;
  padding: 20px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 2px;
}

.formBox table td{
  width: 75%;
}

.formBox input[type="submit"]{
  width: 200px;
  padding: 20px;
  background-color: #efefef;
  font-size: 16px;
  font-weight: bold;
  border: none;
}

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

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

  .formBox table input,
  .formBox table textarea{
    padding: 15px;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
  }

  .formBox table th{
    padding: 15px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 600px){
  #contactWrap{
    padding: 50px 15px 0;
  }

  .formBox table tr{
    display: flex;
    flex-wrap: wrap;
  }

  .formBox table td,
  .formBox table th{
    width: 100%;
    text-align: left;
  }
}

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