/* カスタマイズ用CSS */
.inquiry-button {
  display: inline-block;
  background-color: #4A81C3; /* 背景の青 */
  color: #fff;              /* 文字色：白 */
  padding: 10px 20px;       /* 内側の余白 */
  border-radius: 5px;       /* 角丸 */
  text-decoration: none;    /* 下線を消す */
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.2s;
}

.inquiry-button:hover {
  background-color: #3a6aa3; /* ホバー時の濃い青 */
}