h2 {
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 50px;
  padding-top: 200px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 30px;
  }
}
h2 span {
  font-size: 0.875rem;
  color: #816D51;
}

.contact_desc {
  text-align: center;
  margin-bottom: 50px;
}

form {
  margin-bottom: 150px;
}
form div {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  form div {
    margin-bottom: 30px;
  }
}
form div .input_title {
  margin-bottom: 10px;
  font-weight: bold;
}
form div .input_title span {
  font-size: 0.75rem;
  margin-left: 10px;
  color: #816D51;
}
form .name_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  form .name_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
form .name_box div {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  form .name_box div {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  form .name_box div:last-of-type {
    margin-bottom: 0;
  }
}
form input {
  width: 100%;
  height: 40px;
  font-size: 1rem;
}
form textarea {
  width: 100%;
  height: calc( 1.5em*5);
  font-size: 1rem;
  display: block;
}
form .send_btn {
  margin: 0 auto;
  width: 200px;
}
form .send_btn input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #816D51;
  color: #fff;
  border: none;
  font-weight: bold;
  letter-spacing: 0.1em;
}