section .parking {
    overflow-x: hidden;
    padding: 5%; 
    padding-bottom: 0%;
}

.open {
    text-align: center;
}

table {
  border-collapse: collapse;
  color: #333;
  background-color: #FFF; 
  width: 100%;
  margin-bottom: 2%;
}

th, td {
  padding: 5px 15px;
  border: solid 1px #70ae27;
}
th {
  color: #fff;
  background: rgb(107,144,219);
  background:  linear-gradient(to right,#49a349, #70ae27);
  background:  linear-gradient(to right,#49a349, #70ae27);
  background:  linear-gradient(to right,#49a349, #70ae27);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
}


.pic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background-color: #fefefe;
    padding: 1rem;
}






.content-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: center; 
    margin: 20px 0;
    gap: 20px;
}

.content-list img {
    max-width: 250px;
    height: auto;
    flex-shrink: 0;
}

.content-text {
    font-size: 14px;
    line-height: 1.5;
    text-align: left; 
}

@media (max-width: 768px) {
    .content-list {
        flex-direction: column;
        align-items: center;
    }

    .content-list img {
        max-width: 100%;
        height: auto;
    }

    .content-text {
        text-align: center;
    }

    .main-text {
      font-size: 1.7rem;
    }
}

/* サムネイルのスタイル */
.thumbnail {
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .thumbnail:hover {
    transform: scale(1.05);
  }
  
  /* サムネイルのスタイル */
.thumbnail0 {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .thumbnail0:hover {
    transform: scale(1.05);
  }
  

  /* モーダルのスタイル */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }
  
  .modal-content {
    animation: zoomIn 0.3s ease;
  }
  
  @keyframes zoomIn {
    from {
      transform: scale(0.8);
    }
    to {
      transform: scale(1);
    }
  }
  
  /* 閉じるボタンのスタイル */
  .close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
  }
  
  .close:hover,
  .close:focus {
    color: red;
  }
  