/* 送信ボタンの通常カラー（水色） */
input[type="submit"], 
button[type="submit"],
.btn-submit {
  background-color: #00A7D3 !important;
  border-color: #00A7D3 !important;
  color: #fff !important;
  transition: background-color 0.3s ease;
}

/* 送信ボタンのホバーカラー（濃い水色） */
input[type="submit"]:hover, 
button[type="submit"]:hover,
.btn-submit:hover {
  background-color: #0083A5 !important;
  border-color: #0083A5 !important;
  cursor: pointer;
}