#formWrap {
  display: flex;
  justify-content: center;
  margin: 10px;
}

#formWrap-right {
  display: flex;
  justify-content: flex-end;
  margin: 10px;
}

#formWrap-left {
  display: flex;
  justify-content: flex-start;
  margin: 0px;
}
/* disabled用 */
input[type="submit"]:disabled,
input[type="reset"]:disabled,
input[type="button"]:disabled {
  background-color: rgb(38, 51, 65);

  cursor: not-allowed;
}

/* m_trax/index.php用 */
#contact #form_button a {
  font-weight: bold;
  display: block;
  margin: 0 auto;
  padding: 0.8rem 5rem;
  width: 100%;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  background-color: rgba(20, 81, 153, 1);
  text-decoration: none;
}

#contact #form_button a:hover {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  transition: 0.5s;
}
