/* ============================================================
   フォームページ 共通スタイル
   /ao/contact  /ao/trial  /so/contact  /so/trial
============================================================ */

/* ============================================================
   2カラムレイアウト
============================================================ */
.form-page-layout {
  display: flex;
  align-items: stretch;
}

/* ---- 左：コンテンツパネル ---- */
.form-page-layout__content {
  flex: 1;
  min-width: 0;
  background: #f1f7f9;
  display: flex;
  justify-content: flex-end;
}

.form-page-content {
  width: 100%;
  max-width: 660px;
  padding: 60px 70px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-page-content__title {
  font-weight: 700;
  font-size: 30px;
  color: #2a2d2a;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.form-page-content__desc {
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.form-page-content__desc p {
  margin: 0 0 8px;
}

.form-page-content__desc p:last-child {
  margin-bottom: 0;
}

/* ---- 右：フォームパネル ---- */
.form-page-layout__form {
  flex: 1;
  min-width: 0;
  background: #fff;
}

.form-page-form {
  width: 100%;
  max-width: 660px;
  padding: 60px 50px 80px;
  box-sizing: border-box;
  position: sticky;
  top: calc(var(--header-height, 72px) + 20px);
}

.form-page-form__note {
  font-size: 13px;
  color: rgba(42, 45, 42, 0.5);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ============================================================
   Tablet  (max-width: 1199px)
============================================================ */
@media (max-width: 1199px) {
  .form-page-layout {
    flex-direction: column;
  }

  .form-page-layout__content {
    justify-content: center;
  }

  .form-page-content {
    max-width: 100%;
  }

  .form-page-form {
    max-width: 100%;
    position: static;
  }
}

/* ============================================================
   Mobile  (max-width: 767px)
============================================================ */
@media (max-width: 767px) {

  /* ---- レイアウト ---- */
  .form-page-layout {
    flex-direction: column;
  }

  .form-page-layout__content {
    justify-content: flex-start;
  }

  /* ---- コンテンツパネル ---- */
  .form-page-content {
    max-width: 100%;
    padding: 40px 20px;
    gap: 20px;
  }

  .form-page-content__title {
    font-size: 22px;
  }

  /* ---- フォームパネル ---- */
  .form-page-form {
    max-width: 100%;
    padding: 32px 20px 60px;
    position: static;
  }

}
