/*------------------------------------------------------------Content*/
.g_map {
  width: 100%;
  aspect-ratio: 1.7777777778;
}
.g_map iframe {
  width: 100%;
  height: 100%;
}

.gallery_list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.gallery_list > li {
  width: calc(50% - 8px);
}
@media print, screen and (min-width: 768px) {
  .gallery_list {
    gap: 24px;
  }
  .gallery_list > li {
    width: calc(33.3333333333% - 16px);
  }
}

.stations_list {
    display: flex;
}
.stations_list li {
    color: #c99c56;
    background: rgba(201,156,86,.25);
    border-radius: 5px;
    padding: 0.2em 0.6em;
}
.stations_list li:not(:last-child) {
    margin-right: 1em;
}
