/* ============================================================
   contact/style.css — お問い合わせ / 確認 / サンクス 共通
   ヒーロー帯は archives/style.css を併用。
   フォーム本体は HubSpot 埋め込み予定のため、入力エリアは
   プレースホルダー（.contact-placeholder）で仮当て。
   ============================================================ */
.contact-main {
  background: #fff;
  padding-bottom: 80px;
}
.contact-inner {
  width: min(var(--container-w), calc(100% - var(--pc-gutter) * 2));
  margin-inline: auto;
}

/* --- バリュープロップ（完全無料 / 営業電話なし / …） ------- */
.contact-checks {
  display: flex;
  justify-content: center;   /* contactは中央寄せレイアウトのため維持 */
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 60px;
}
.contact-check {
  display: flex;
  align-items: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
}
.contact-check img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
  object-fit: contain;
}

/* --- フォーム枠（HubSpot 埋め込み予定の仮当て） ------------ */
.contact-formarea {
  width: 800px;
  max-width: 100%;
  margin: 40px auto 0;
}
.contact-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 40px;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  color: #64748b;
}
.contact-note {
  text-align: center;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 26px;
  color: var(--color-text);
  margin: 30px 0 0;
}

/* --- 確認 / サンクス 用メッセージ -------------------------- */
.contact-message {
  width: 800px;
  max-width: 100%;
  margin: 50px auto 0;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 18px;
  line-height: 34px;
  color: var(--color-text);
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 100px;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-btn:hover { opacity: 0.85; }
.contact-btn--ghost {
  background: #fff;
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
}

/* ============================================================
   SP（≤749px）
   ============================================================ */
@media (max-width: 749px) {
  .contact-main { padding-bottom: calc(120 / 750 * 100vw); }
  .contact-inner {
    width: 100%;
    padding-inline: calc(40 / 750 * 100vw);
  }
  /* TOP top-cv-form-checks と同じ：3列横並び＋dashed区切り（icon上＋text下） */
  .contact-checks {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    padding-top: calc(80 / 750 * 100vw);
  }
  .contact-check {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: calc(216 / 750 * 100vw);
    font-size: min(calc(28 / 750 * 100vw), 28px);
    line-height: min(calc(44 / 750 * 100vw), 44px);
  }
  .contact-check:first-child {
    border-right: 1px dashed var(--color-border);
    padding-right: calc(20 / 750 * 100vw);
  }
  .contact-check:last-child {
    border-left: 1px dashed var(--color-border);
    padding-left: calc(20 / 750 * 100vw);
  }
  .contact-check img {
    width: calc(76 / 750 * 100vw);
    height: calc(76 / 750 * 100vw);
    margin-right: 0;
    margin-bottom: calc(8 / 750 * 100vw);
  }
  .contact-formarea { margin-top: calc(60 / 750 * 100vw); }
  .contact-placeholder {
    min-height: min(calc(720 / 750 * 100vw), 480px);
    font-size: min(calc(32 / 750 * 100vw), 32px);
    padding: calc(48 / 750 * 100vw);
  }
  .contact-note {
    font-size: min(calc(28 / 750 * 100vw), 28px);
    line-height: min(calc(52 / 750 * 100vw), 52px);
    margin-top: calc(60 / 750 * 100vw);
  }
  .contact-message {
    font-size: min(calc(32 / 750 * 100vw), 32px);
    line-height: min(calc(60 / 750 * 100vw), 60px);
    margin-top: calc(60 / 750 * 100vw);
  }
  .contact-actions {
    gap: calc(40 / 750 * 100vw);
    margin-top: calc(80 / 750 * 100vw);
  }
  .contact-btn {
    padding: calc(32 / 750 * 100vw) calc(80 / 750 * 100vw);
    font-size: min(calc(36 / 750 * 100vw), 36px);
  }
}
