.inquiry {
  margin-bottom: 70px;
  background: #f8f8f8;
}

.inquiry-headline {
  padding: 25px 45px;
  margin-bottom: 40px;
  background: #0c4380;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
.inquiry-headline span {
  display: inline-block;
  margin-left: 15px;
  font-weight: normal;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
}

.inquiry-form {
  padding: 0 45px 45px;
}

form {
  word-wrap: break-word;
}

.form {
  margin-top: 50px;
}
.form-title {
  width: 145px;
  display: inline-block;
  color: #333;
  font-size: 20px;
  font-weight: bold;
}
.form-title span {
  color: #ff0000;
}
.form-note {
  font-size: 16px;
  font-weight: normal;
}

.form-text__row {
  width: calc(100% - 150px);
  display: inline-block;
}

.form-group__row {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group__row__area {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-group__wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-field {
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  border: none;
}
.form-field__area {
  width: 100%;
  height: 180px;
  border: none;
}
.form-field__code {
  width: 200px;
  display: inline-block;
  border: none;
}

.code-reload {
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.code-img {
  margin: 0 0 0 20px;
  display: inline-block;
  vertical-align: middle;
}

.submit-btn {
  width: 200px;
  height: 70px;
  margin: 80px auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0f58a2;
  border: 1px solid #0f58a2;
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 70px;
  letter-spacing: 0.08rem;
}
.submit-btn::before {
  content: "";
  background: url(/images/tick-icon.png) no-repeat center;
  width: 27px;
  height: 27px;
  margin-right: 10px;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
}
.submit-btn:hover {
  background-color: #3180af;
  border: 1px solid #3180af;
}

.form-half {
  width: calc(50% - 20px);
  display: inline-block;
}

.honorific-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 20px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/images/select-arrow.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  border: none;
  color: #4d4d4d;
}
.honorific-select option {
  cursor: pointer;
}

@media only screen and (max-width: 1500px) {
  .form-half {
    width: 100%;
  }
  .inquiry {
    margin: 0 20px 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .inquiry-form {
    padding: 20px 30px;
  }
  .inquiry-headline {
    padding: 20px 20px;
    margin-bottom: 10px;
    font-size: 26px;
  }
  .inquiry-headline span {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .form-title {
    font-size: 18px;
  }
  .inquiry-form {
    padding: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .form-group__row {
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form-title {
    width: 100%;
    margin-bottom: 5px;
  }
  .form-text__row {
    width: 100%;
  }
  .code-img {
    margin: 0 0 0 15px;
  }
  .form-field__code {
    width: 150px;
  }
  .honorific-select {
    font-size: 18px;
  }
}
@media only screen and (max-width: 360px) {
  .code-reload {
    margin-top: 10px;
    margin-left: 0;
  }
}