@charset "utf-8";

/*================================================================
# contact-form
================================================================ */
.contact-form {
  margin: 0;
  padding: 64px 0 0;
}

.contact-form__lead {
  text-align: center;
}

.contact-form__lead p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.contact-form .red {
  color: #e83838;
}

.contact-form__body {
  margin-top: 48px;
}

.contact-form__row + .contact-form__row {
  margin-top: 24px;
}

.contact-form__row label {
  display: block;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-radius: 0;
  background-color: #eef1f9;
  font-family: inherit;
  font-size: 16px;
  color: inherit;
  appearance: none;
}

.contact-form__row input {
  height: 48px;
  padding: 8px 12px;
}

.contact-form__row textarea {
  height: 200px;
  padding: 12px;
  resize: vertical;
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.contact-form__privacy {
  margin-top: 48px;
  text-align: center;
}

.contact-form__privacy-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form__privacy-box {
  height: 200px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #777;
  overflow-y: auto;
  text-align: left;
}

.contact-form__privacy-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
}

.contact-form__privacy-note {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 2;
}

.contact-form__agree {
  margin-top: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  gap: 8px;
}

.contact-form__submit {
  width: 88%;
  margin: 40px auto 0;
  text-align: center;
}

.contact-form__submit button {
  width: 100%;
  min-height: 56px;
  padding: 14px 48px;
  cursor: pointer;
  border: 0;
  background-color: var(--primary);
  position: relative;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.contact-form__submit svg {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
