*,
*::before,
*::after {
  box-sizing: border-box;
}

input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=checkbox] {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #efefef;
  border-radius: 4px;
  vertical-align: -8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 8px;
  transform: rotate(50deg);
  width: 10px;
  height: 16px;
  border-right: 4px solid #049B32;
  border-bottom: 4px solid #049B32;
  content: "";
}

input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

#formWrap {
  max-width: 1000px;
  padding: 40px;
  background: #fff;
  margin: 40px auto 0;
}
#formWrap .attention {
  font-weight: bold;
  margin-bottom: 40px;
}
#formWrap .attention a {
  text-decoration: underline;
  color: #0076FF;
}

@media screen and (max-width: 640px) {
  #formWrap {
    padding: 40px 20px;
  }
}
.form__group {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.form__group:last-of-type {
  border-bottom: 1px solid #ddd;
}
.form__group .form__item {
  width: 100%;
  max-width: 260px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.form__group .form__item .form__required {
  border-radius: 4px;
  margin-right: 8px;
  padding: 0.5em 0;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: #049B32;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
}
.form__group .form__item .-sm {
  font-size: 0.85em;
}
.form__group .form__content {
  flex: 1;
}

@media screen and (max-width: 640px) {
  .form__group {
    flex-wrap: wrap;
  }
  .form__group .form__item {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 1em;
  }
  .form__group .form__item .form__required {
    width: 30px;
    font-size: 10px;
  }
}
.form__content-confirm {
  font-size: 14px;
  line-height: 1.4;
  background-color: #efefef;
  padding: 1em;
  width: 100%;
  min-height: 47px;
}

@media screen and (max-width: 640px) {
  .form__content-confirm {
    margin-top: 8px;
    min-height: 47px;
  }
}
.form__input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  width: 100%;
  background: #efefef;
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .form__input {
    margin-left: 0;
    height: 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .form__checkbox {
    margin-left: 0;
    margin-top: 8px;
  }
}
.checkbox__label {
  position: relative;
  font-size: 16px;
  font-weight: bold;
}

.form__select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  background: #efefef;
  font-size: 16px;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.select__label {
  position: relative;
  width: 100%;
}
.select__label::after {
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 16px;
  content: "";
  width: 7px;
  height: 10px;
  background: url(../img/icon_select.svg) no-repeat;
  background-size: 7px 10px;
}

@media screen and (max-width: 640px) {
  .form__select {
    margin-left: 0;
    margin-top: 8px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.form__item__textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  background: #efefef;
  font-size: 14px;
}
.form__item__textarea.-height-sm {
  height: 80px;
}

@media screen and (max-width: 640px) {
  .form__item__textarea {
    margin-top: 8px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.form__btn__inner {
  display: flex;
  justify-content: center;
}
.form__btn__inner .form__btn {
  max-width: 300px;
  width: 100%;
  height: 100%;
  margin-top: 32px;
  min-height: 62px;
  letter-spacing: 0.05em;
  display: flex;
  border: 2px solid #049B32;
  border-radius: 15px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #222;
  cursor: pointer;
  font-weight: bold;
  background: #fff;
  text-decoration: none;
}
.form__btn__inner .form__btn:hover {
  color: #049B32;
}

@media screen and (max-width: 640px) {
  .form__btn {
    margin-top: 24px;
    font-size: 15px;
  }
}
.enquiry-details {
  border-bottom: 1px solid #ddd;
}

.form__btn-confirm {
  max-width: 200px;
  width: 100%;
  height: 100%;
  margin-top: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 62px;
  letter-spacing: 0.05em;
  display: flex;
  border-radius: 15px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #999;
  cursor: pointer;
  font-weight: bold;
  transition: 0.8;
}
.form__btn-confirm:hover {
  opacity: 0.8;
  transition: 0.8;
}

.form__btn-send {
  margin-left: 20px;
}

@media screen and (max-width: 640px) {
  .form__btn-confirm {
    margin-top: 24px;
    margin-right: 16px;
    font-size: 15px;
  }
}
.form__error-note {
  font-size: 16px;
  margin-bottom: 24px;
  color: #990000;
}
.form__error-note span {
  font-weight: bold;
}

.form__error-messe {
  font-size: 16px;
  padding: 1em 0;
  border-top: 1px solid #ddd;
}
.form__error-messe:last-of-type {
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 640px) {
  .form__error-messe {
    font-size: 14px;
  }
}
.form__error-inner {
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  width: 240px;
}

@media screen and (max-width: 640px) {
  .form__error-inner {
    width: 150px;
    font-size: 14px;
  }
  .form__error-inner.email {
    width: 60px;
  }
}
.form__complete-messe {
  font-size: 16px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

.form__content__inner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5em 4%;
  width: 100%;
}
.form__content__column.column-1 {
  width: 100%;
}
.form__content__column.column-2 {
  width: 48%;
}
.form__content__column.column-3 {
  width: 30.5%;
}
.form__content__column.column-4 {
  width: 23%;
}
.form__content__radio {
  display: block;
  width: 100%;
  cursor: pointer;
  padding-left: 2em;
  position: relative;
  font-weight: bold;
}
.form__content__radio.-mr {
  margin-right: 40px;
}
.form__content__radio::before {
  content: "";
  border-radius: 50%;
  display: block;
  transform: translateY(-50%);
  background-color: #fff;
  border: solid 1px #049B32;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
}
.form__content__radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #049B32;
  width: 16px;
  height: 16px;
  left: 4px;
  opacity: 0;
  border-radius: 50%;
}
input[type=radio]:checked + .form__content__radio::after {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */