/* ヘッダー */
header {
  background-color: #1a3c6e;
  color: white;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
/* ページタイトル */
.page-title {
  background-color: #1a3c6e;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.page-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-title p {
  font-size: 1.1rem;
  margin: 0;
}
/* アクセスページ */
.access {
  background-color: white;
  padding: 60px 0;
}

.access-info {
  margin-bottom: 40px;
  line-height: 1.8;
}

.access-info h3 {
  color: #1a3c6e;
  margin-top: 20px;
}

.access-info ul {
  list-style: disc;
  margin-left: 30px;
}

.map iframe {
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}