/* CSS Document */
#formWrap {
  width: 700px;
  margin: 20px auto 0;
}
table.formTable {
  width: 100%;
  margin: 0 auto 10px;
}
table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}
table.formTable th {
  width: 30%;
  background: #efefef;
  text-align: left;
}
input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  transition: .5s; /* なめらか変化 */
  width: 250px;
  margin: 10px 10px;
  line-height: 40px;
  font-size: 18px;
  background: #223377; /* 背景色     */
  color: #ffffff; /* 文字色     */
  border: 1px solid #223377; /* 枠の指定 */
  border-radius: 10px;
}
.submit:hover, .reset:hover, button:hover {
  color: #223377; /* 背景色     */
  background: #ffffff; /* 文字色     */
}
.contact-01 {
  margin: 0 0 5px 10px;
}
.contact-02 {
  color: #C4191B;
}
.contact-03 {
  color: #C4191B;
  font-size: 14px;
  padding-left: 10px;
}
.contact-04 {
  text-align: center;
  margin-bottom: 30px;
}
.contact-05 {
  margin-bottom: 20px;
  font-size: 18px;
}
p.error_messe {
  margin: 5px 0;
  color: red;
}
/*=============== Thanks ===============*/
.thanks-01 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.thanks-02 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.thanks-03 {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .thanks-03 {
    width: 70%;
    margin: 0 auto;
  }
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 480px) {
  #formWrap {
    width: 96%;
    margin: 20px auto 0;
  }
  table.formTable {
    margin: 0 auto 20px;
  }
  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;
    font-size: 110%;
    display: block;
  }
  form input[type="submit"], form input[type="reset"], form input[type="button"] {
    display: block;
    width: 80%;
    margin: 0 auto 10px;
    line-height: 40px;
  }
}