/* 🔍 検索フォーム */
.search-box {
  text-align: center;
  margin: 30px auto;
}

.search-box form {
  display: inline-block;
}

.search-box input[type="text"] {
  width: 60%;
  max-width: 400px;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  outline: none;
  transition: 0.3s;
}

.search-box input[type="text"]:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

.search-box input[type="submit"] {
  padding: 12px 20px;
  margin-left: 10px;
  font-size: 16px;
  background-color: #007BFF;
  border: none;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-box input[type="submit"]:hover {
  background-color: #0056b3;
}

/* 🔍 検索結果 */
.search-results {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

.search-results ul {
  list-style: none;
  padding: 0;
}

.search-results li {
  background-color: #f9f9f9;
  border-left: 5px solid #007BFF;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.search-results li a {
  font-weight: bold;
  text-decoration: none;
  color: #007BFF;
}

.search-results li a:hover {
  text-decoration: underline;
}