/* お問い合わせ背景 */
.omp-page-contact {
  min-height: 100vh;
  background: var(--omp-grad-soft), var(--omp-c-white);
}

/* パンくず */
.omp-page-contact .omp-breadcrumb {
  padding-top: 40px;
}

/* 導入 */
.omp-contact {
  padding-top: 100px;
}

.omp-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: var(--omp-w-container);
  min-width: 0;
  margin-inline: auto;
}

.omp-contact .omp-page-title {
  width: 100%;
}

.omp-contact__card {
  width: 100%;
  max-width: 1037px;
  min-width: 0;
  padding: 35px 60px 35px 40px;
  border-radius: var(--omp-radius-band);
  background: var(--omp-c-white);
}

.omp-contact__card-inner {
  display: flex;
  align-items: center;
  gap: 65px;
}

.omp-contact__photo {
  flex: none;
  width: 334px;
  height: 264px;
  border-radius: 22px;
  object-fit: cover;
}

.omp-contact__body {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  gap: 24px;
  width: 538px;
  min-width: 0;
}

.omp-contact__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.omp-contact__title {
  font-size: 24px;
  font-weight: var(--omp-fw-medium);
  line-height: 38px;
  color: var(--omp-c-orange);
}

.omp-contact__lead {
  font-size: 14px;
  font-weight: var(--omp-fw-regular);
  line-height: 24px;
}

.omp-contact__action {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 278px;
}

.omp-contact .omp-btn {
  width: 100%;
  font-weight: var(--omp-fw-medium);
}

.omp-contact__note {
  font-size: var(--omp-fs-note);
  font-weight: var(--omp-fw-regular);
  line-height: 19px;
}

/* フォーム */
.omp-form {
  padding-block: 100px;
}

.omp-form__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 700px;
  min-width: 0;
  margin-inline: auto;
}

.omp-form__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 596px;
  text-align: center;
}

.omp-form__title {
  font-size: 24px;
  font-weight: var(--omp-fw-medium);
  line-height: 38px;
}

.omp-form__text {
  font-size: 14px;
  font-weight: var(--omp-fw-regular);
  line-height: 24px;
}

.omp-form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  min-width: 0;
}

.omp-form__error {
  width: 100%;
  font-size: 14px;
  font-weight: var(--omp-fw-medium);
  line-height: 24px;
  color: var(--omp-c-error);
  text-align: center;
}

/* 人には見せない欄 */
.omp-form__pot {
  position: absolute;
  left: -9999px;
}

.omp-form__fields {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  min-width: 0;
}

/* 入力欄 */
.omp-field {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.omp-field__head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.omp-field__label {
  font-size: 15px;
  font-weight: var(--omp-fw-medium);
  line-height: 1;
  letter-spacing: var(--omp-ls-nav);
}

.omp-field__badge {
  padding: 4px 6px;
  background: var(--omp-c-orange);
  font-size: var(--omp-fs-badge);
  font-weight: var(--omp-fw-medium);
  line-height: 1;
  letter-spacing: var(--omp-ls-nav);
  color: var(--omp-c-white);
}

.omp-field__input,
.omp-field__textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 10px 10px 20px;
  border: 1px solid var(--omp-c-field-line);
  border-radius: 0;
  background: var(--omp-c-white);
  font-size: 14px;
  font-weight: var(--omp-fw-regular);
  line-height: 21px;
  letter-spacing: var(--omp-ls-nav);
}

.omp-field__input {
  height: 50px;
}

.omp-field__textarea {
  height: 150px;
  padding-top: 18px;
  resize: vertical;
}

.omp-field__input::placeholder,
.omp-field__textarea::placeholder {
  color: var(--omp-c-placeholder);
  opacity: 1;
}

/* ラジオ */
.omp-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.omp-radio {
  display: flex;
  align-items: center;
  gap: 12px;
}

.omp-radio__input {
  -webkit-appearance: none;
  appearance: none;
  flex: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid var(--omp-c-field-line);
  border-radius: 50%;
  background-color: var(--omp-c-white);
  cursor: pointer;
}

/* 中央に10pxの点 */
.omp-radio__input:checked {
  background-image: radial-gradient(
    circle at center,
    var(--omp-c-orange) 4.5px,
    transparent 5.5px
  );
}

.omp-radio__label {
  font-size: 14px;
  font-weight: var(--omp-fw-regular);
  line-height: 24px;
  cursor: pointer;
}

/* 送信 */
.omp-form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 260px;
  max-width: 100%;
}

.omp-form__agree {
  font-size: 15px;
  font-weight: var(--omp-fw-medium);
  line-height: 1;
  letter-spacing: var(--omp-ls-nav);
  text-align: center;
}

.omp-form__agree a {
  color: var(--omp-c-orange);
  text-decoration: underline;
  transition: color 0.2s ease;
}

/* 元からオレンジの文字なので濃くして返す */
@media (hover: hover) {
  .omp-form__agree a:hover {
    color: var(--omp-c-orange-dark);
  }
}

.omp-form__submit .omp-btn {
  width: 100%;
  font-weight: var(--omp-fw-medium);
}

/* SP */
@media (max-width: 1099.98px) {
  .omp-page-contact .omp-breadcrumb {
    display: none;
  }

  .omp-contact {
    padding-top: 20px;
  }

  .omp-contact__inner {
    gap: 30px;
    max-width: 390px;
  }

  /* カードだけ柱からはみ出して画面いっぱいにする */
  .omp-contact__card {
    width: calc(100% + var(--omp-pad-x) * 2);
    max-width: none;
    margin-inline: calc(var(--omp-pad-x) * -1);
    padding: 20px;
  }

  .omp-contact__card-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .omp-contact__photo {
    width: 100%;
    height: auto;
  }

  .omp-contact__body {
    width: 100%;
  }

  .omp-contact__text {
    text-align: center;
  }

  .omp-contact__action {
    width: 370px;
    max-width: 100%;
    margin-inline: auto;
  }

  .omp-contact .omp-btn {
    font-size: 18px;
  }

  .omp-contact__note {
    text-align: center;
  }

  .omp-form {
    padding-block: 60px;
  }

  .omp-form__inner {
    gap: 40px;
    max-width: 390px;
  }

  .omp-form__lead {
    max-width: none;
  }

  /* 見出しは共通の縮小式に乗せる */
  .omp-contact__title,
  .omp-form__title {
    font-size: var(--omp-fs-h2);
    line-height: var(--omp-lh-h2);
  }

  .omp-form__submit .omp-btn {
    font-size: 18px;
  }
}
