.container {
  width: 90%;
  max-width: 1245px;
  margin: auto;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.left-col {
  flex-basis: 100%;
  text-align: left;
  /* background-color: #e8e8e8; */
  /* margin-bottom: 0; */
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 2px;
}

.form {
  /* background-color: #e8e8e8; */
  padding-left: 20px;
}

.contact {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}

.contact-ttl {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.contact-table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}

.contact-item,
.contact-body {
  padding: 20px;
  border: 1px solid #ccc;
}

.contact-item {
  text-align: left;
  width: 30%;
  background-color: #eee;
}

.contact-body {
  width: 70%;
}

.form-text {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}

.contact-sex + .contact-sex {
  margin-left: 10px;
}

.contact-sex-txt {
  display: inline-block;
  margin-left: 5px;
}

.form-select {
  width: 180px;
  height: 40px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-skill {
  display: block;
}

.contact-skill + .contact-skill {
  margin-top: 10px;
}

.contact-skill-txt {
  display: inline-block;
  margin-left: 5px;
}

.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-submit {
  width: 250px;
  background-color: #0c5b00;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 15px;
  border-radius: 100vh;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

@media screen and (max-width: 426px) {
  .form {
    padding: 0;
  }
  table {
    width: 100%;
  }
  table th,
  table td {
    display: block;
    width: 100%;
  }
  .contact-body {
    width: 100%;
  }

  .contact-item {
    width: 100%;
  }
  .contact-submit {
    width: 90%;
  }

  .contact-item,
  .contact-body {
    padding: 10px;
    border: 1px solid #ccc;
  }
}