* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1{
  text-align: center;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
}

h1, h2, h3, .title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

header {
position: fixed;
top: 0;
left: 0;
background-color: #6699FF;
color: #fff;
text-align:left;
display:flex;
width:100%;
height:70px;
z-index:100;
align-items: center;
}

header img{
display: block;
width:90px;
height:70px;
margin-left: 5px;
}
.hamburger {
width: 30px;
height: 20px;
position: relative;
cursor: pointer;
margin: 20px;
z-index: 1001;
}

.hamburger span {
position: absolute;
height: 3px;
width: 100%;
background: #333;
border-radius: 2px;
transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }


.nav-menu {
position: fixed;
top: 0;
right: -100%;
width: 200px;
height: 100%;
background-color:rgb(240,240,240);
color: #fff;
transition: right 0.3s ease;
padding-top: 60px;
z-index: 1000;
}

.nav-menu ul {
list-style: none;
padding: 0;
}

.nav-menu li {
text-align: center;
margin:12px;
height:43px;
align-items:center;
background-color:white;
border-right:7px solid rgb(150,150,150);
border-bottom:7px solid(200,200,200);
}

.nav-menu li a {
display: inline-block;
text-decoration: none;
color: black;
font-size: 20px;
font-family:monospace;
}


.nav-menu.active {
left: 0;
}


.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
top: 8px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
top: 8px;
}
.title{
text-align:center;
}
h1.title{
font-size: 2rem;
margin-bottom: 0.5rem;
text-align: left;
color:#ffffff
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  margin: 20px;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }


.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 200px;
  height: 100%;
  background-color: #C0C0C0;
  color: #fff;
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
}

.nav-menu li {
  padding: 15px;
  text-align: center;
}

.nav-menu li a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
}


.nav-menu.active {
  left: 0;
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}
.section {
  padding: 2rem;
  margin: 1rem 0;
}
#content{
     animation: fadeIn 0.2s ease-in-out;
     
}
@keyframes fadeIn{
       0%{
         opacity: 0;
         transform:
      translateY(-100px);
}
100%{
     opacity: 1;
     transform: none;
 }
}

#space{
     color:white;
}
.sectionw{
      height:70px;
}

.search-area {
  text-align:center;
  margin-bottom: 20px;
}

#searchBox {
  width: 60%;
  padding: 10px;
  font-size: 16px;
}

.map-container {
  position: relative;
  display: inline-block;
　margin-bottom:100px;
}

.map-image {
  width: 600px;
  height: auto;
  border: 2px solid #ccc;
}


.label {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
  pointer-events: none;
}

.label.highlight {
  background-color: blue;
  color: white;
}
footer {
  text-align:center;
  padding: 1rem;
  background-color: #333;
  color: #fff;
}

footer img{
         width:50px;
         height:50px;
}
   

@media (max-width: 768px) {
  header nav ul li {
    margin-bottom: 10px;
  }
  img{
      max-width:100%;
      height:auto;
}
  .section {
    padding: 1rem;
  }
  header .title{
      font-size:20px;
   }
  summary{
       max-width:100%;
   }
  details{
       max-width:100%;
   }
}
/*追加*/
.table-container {
overflow-x: auto; /* スマホで横スクロール可能に */
}

table {
width: 100%;
border-collapse: collapse;
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

thead {
background: #3f72af;
color: #fff;
}

th, td {
padding: 12px 15px;
text-align: center;
border-bottom: 1px solid #ddd;
}

tbody tr:nth-child(even) {
background: #f1f5f9;
}
