/* デフォルトのスタイルを無効化する */
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  background-color: #233b6c;
  border: none;
  color: #fff;
  cursor: pointer;
  /* 変化をスムーズにするためのトランジション */
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* ホバー時 */
input[type="submit"]:hover {
  background-color: #2f4a8b; /* 少し明るめ */
}

/* クリック(アクティブ)時 */
input[type="submit"]:active {
  background-color: #1c2e54; /* さらに暗くする */
  transform: scale(0.95);    /* 押し込んでいるようにサイズダウン */
}

/* 送信中のボタン無効化 */
.wpcf7-submitting input[type="submit"] {
  cursor: not-allowed;
  background-color: #999; /* 無効時の色 */
  opacity: 0.7;
}

/* 送信中はスピナーを表示 */
.wpcf7-submitting span.wpcf7-spinner {
  opacity: 1; 
