body {
  font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
}

header.hero-with-map {
  background: url('images/hokuriku.jpg') repeat;
  background-size: 200px 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

header .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-align: center;
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* タブ関連 */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab-button {
  padding: 1rem 3rem;
  font-size: 1.5rem;
  margin: 1rem;
  background-color: #eee;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-button:hover {
  background-color: #ddd;
}

.tab-button.active {
  background-color: #0077b6;
  color: white;
}

.tab-content {
  display: none;
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.map-section {
  margin: 3rem 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
}

.container h1 {
  display: block;
  width: 100%;
  text-align: center;
}

body.toyama-page {
  background: url("images/toyama.jpeg") no-repeat center center fixed;
  background-size: cover;
   background-color:rgba(0, 0, 0, 0.7);
  color: white;
}

body.ishikawa-page {
  background: url("images/isikawa.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color:rgba(0, 0, 0, 0.7);
  color: white;
}

body.fukui-page {
  background: url("images/fukui.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color:rgba(0, 0, 0, 0.7);
  color: white;
}
