* {
    margin:0;
    padding:0;
}

#header{
  position:fixed;
  top:0;
  margin:0;
  padding:4px;
  width:100%;
  z-index:9999;
  height:50px;
}

body{
	margin: 0;
}

#formWrap h1{
    margin-left: 3%;
    margin-bottom: 5%;
}

.contact{
  margin: 0 auto;
}

#formWrap {
  width:800px;
  margin:0 auto;
  color:#555;
  line-height:120%;
}
table.formTable{
  width:100%;
  margin:0 auto;
  border-collapse:collapse;
}
table.formTable td,table.formTable th{
  border:1px solid #ccc;
  padding:10px;
}
table.formTable th{
  width:30%;
  font-weight:normal;
  background:#efefef;
  text-align:left;
}
table.formTable p{
  margin-top: 10%;
}
input#submit_btn{
  width: 150px;
  height: 50px;
  margin-top: 3%;
}
input#reset_btn{
  width: 150px;
  height: 50px;
  margin-left: 3%;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:640px) {
  #formWrap {
    width:95%;
    margin:0 auto;
  }
  table.formTable th, table.formTable td {
    width:auto;
    display:block;
  }
  table.formTable th {
    margin-top:5px;
    border-bottom:0;
  }
  input[type="text"], textarea {
    width:80%;
    padding:5px;
    padding-left: 5px;
    font-size:110%;
    display:block;
  }
  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    width:100%;
    height:40px;
  }
  
  input#submit_btn{
    width: 150px;
    height: 50px;
    margin-top: 3%;
  }
  input#reset_btn{
    width: 150px;
    height: 50px;
  }
}