/* =========================
ページ背景
========================= */
body.page-contact {
  background: #eef3f1;
}

/* =========================
中央寄せ
========================= */
body.page-contact .entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
説明ブロック（カード化）
========================= */
body.page-contact .entry-content > p {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  line-height: 1.9;
}

/* =========================
見出し
========================= */
body.page-contact h2 {
  font-size: 18px;
  margin: 26px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2bb673;
  color: #2bb673;
  font-weight: 700;
}

/* =========================
フォームカード（メイン）
========================= */
body.page-contact .wpforms-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border: 1px solid #e9f3ef;
  position: relative;
  overflow: hidden;
}

/* 上アクセント */
body.page-contact .wpforms-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #2bb673, #27a968);
}

/* ラベルタグ */
body.page-contact .wpforms-container::before {
  content: "企業様・法人様向け";
  display: inline-block;
  background: #2bb673;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* =========================
入力エリア
========================= */
body.page-contact .wpforms-field {
  margin-bottom: 18px;
}

body.page-contact .wpforms-field-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
}

/* 入力欄 */
body.page-contact .wpforms-field input,
body.page-contact .wpforms-field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: 0.2s;
}

/* フォーカス */
body.page-contact .wpforms-field input:focus,
body.page-contact .wpforms-field textarea:focus {
  border-color: #2bb673;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(43,182,115,0.15);
}

/* =========================
チェックボックス
========================= */
body.page-contact .wpforms-field-checkbox {
  background: #f5fbf8;
  border: 1px solid #dff2e8;
  border-radius: 10px;
  padding: 14px;
}

/* =========================
送信ボタン（強化）
========================= */
body.page-contact .wpforms-submit {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2bb673, #27a968);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 10px 26px rgba(43,182,115,0.35);
  transition: 0.25s;
}

body.page-contact .wpforms-submit:hover {
  transform: translateY(-2px) scale(1.01);
}

/* =========================
運営情報カード（完全統一）
========================= */
.mp-license-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  margin: 40px auto;
  max-width: 720px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
  border: 1px solid #e9f3ef;
  position: relative;
}

/* 上ライン */
.mp-license-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2bb673, #27a968);
}

/* 見出し */
.mp-license-box h2 {
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2bb673;
  color: #2bb673;
}

/* 本文 */
.mp-license-box p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 12px;
}

/* 許可番号 */
.mp-license-number {
  background: #f5fbf8;
  border: 1px solid #dff2e8;
  border-radius: 10px;
  padding: 12px;
  font-weight: bold;
  color: #2bb673;
  text-align: center;
  margin-top: 14px;
}

/* =========================
スマホ
========================= */
@media (max-width: 768px) {

  body.page-contact .wpforms-container,
  .mp-license-box {
    padding: 20px;
  }

}