/* ベーススタイル */
body {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  background-color: #fefaf5;
  color: #333;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #d9a066;
  color: white;
  padding: 1rem;
  text-align: center;
}

.logo {
  max-height: 60px;
  vertical-align: middle;
}

.site-title {
  font-size: 1.8rem;
  margin: 0.5rem 0 0;
}

.main-content {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.search-section h2 {
  color: #8b5e3c;
  border-bottom: 2px solid #d9a066;
  padding-bottom: 0.5rem;
}

.search-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.search-section label {
  font-weight: bold;
  color: #555;
}

.search-section input,
.search-section select,
.search-section button {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-section button {
  background-color: #d9a066;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-section button:hover {
  background-color: #b98247;
}

.results-section {
  margin-top: 2rem;
}