/* CSS Document */
#formWrap {
  width: 800px;
  margin: 0 auto;
}
table.formTable {
  width: 100%;
  margin: 0 auto;
}
table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}
table.formTable th {
  width: 30%;
  background: #EDFAEB;
  text-align: left;
}
/* ==================== CONTACT-FORM ==================== */
input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  padding: 10px 50px; /* 余白       */
  background: #228858;
  color: #ffffff; /* 文字色     */
  line-height: 1.5; /* 1行の高さ  */
  transition: .5s; /* なめらか変化 */
  box-shadow: 2px 2px 3px #ccc; /* 影の設定 */
  border: 1px solid #228858;
  border-radius: 10px;
  width: 200px;
  font-size: 18px;
}
.button:hover {
  box-shadow: none; /* カーソル時の影消去 */
  color: #228858;
  background: #fff; /* 文字色     */
}
p.error_messe {
  margin: 5px 0;
  color: #f00;
}
/* ==================== CONTACT-BOX ==================== */
.contact-box {
  width: 100%;
  max-width: 1000px;
  padding: 20px 0;
  margin: 0 0 30px;
}
.contact-box-01 {
  text-align: center;
  font-size: 20px;
  padding-bottom: 20px;
}
.contact-box-02 {
  text-align: center;
  width: 200px;
  font-size: 18px;
  border-bottom: 2px solid #228858;
  margin: 0 auto 30px;
}
.contact-box-03 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
.contact-box-04 {
  text-align: center;
  margin: 0 auto 30px;
}
.contact-box-05 {
  text-align: center;
  font-size: 24px;
}
/* ==================== CONTACT-FORM ==================== */
.contact-01 {
  font-size: 24px;
  font-weight: 700;
  width: 500px;
  text-align: center;
  margin: 0 auto 30px;
  border-bottom: 2px solid #009d00;
}
.contact-01 img {
  width: 45px;
  padding-right: 20px;
  vertical-align: middle;
  margin: 0 0 10px;
}
.contact-02 {
  font-size: 14px;
  text-align: left;
  padding: 0 0 5px 10px;
}
.contact-03 {
  padding: 0 0 0 10px;
  font-size: 14px;
  color: #f00;
}
.contact-04 {
  text-align: center;
  margin: 20px 0 0 0;
}
.contact-05 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 30px;
}
.contact-06 {
  margin-right: 20px;
}
.contact-07 {
  padding: 0 0 0 10px;
  font-size: 14px;
  color: #00f;
}
/* -------------------- THANKS -------------------- */
.contact-08 {
  text-align: center;
  font-size: 20px;
  padding: 10px 0 0 0;
}
.contact-09 {
  text-align: center;
  font-size: 20px;
  margin: 50px 0;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:768px) {
  #formWrap {
    width: 96%;
    margin: 0 auto;
  }
  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  form input[type="text"], form textarea {
    width: 80%;
    padding: 5px;
    display: block;
  }
  form input[type="submit"], form input[type="reset"], form input[type="button"] {
    display: block;
    width: 70%;
    margin: 0 auto 20px;
    font-size: 18px;
  }
  input[type="submit"], input[type="reset"], input[type="button"] {
    display: block;
    width: 70%;
    margin: 0 auto 20px;
    font-size: 18px;
  }
  .contact-01 {
    width: 50%;
  }
  .contact-box-03 {
    font-size: 36px;
  }
}
@media screen and (max-width:599px) {
  .contact-01 {
    width: 96%;
  }
}