/* top-search-link.css */
/* トップページ検索リンク用スタイル */

.top-search-link {
  text-align: center;
  margin: 2em 0;
}

.top-search-link a {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.7em 1.5em;
  border-radius: 9999px;
  transition: background-color 0.3s;
}

.top-search-link a:hover {
  background-color: #2563eb;
}

