.station-local-tab {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  background: #fff;
}

.tab-item {
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  background: #ddd;
  cursor: pointer;
}

.tab-item.active {
  background: #fff;
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
}

.pref-area {
  display: none;
  padding-top: 24px;
}

.pref-area.is-active {
  display: block;
}

.pref {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 24px;
}

.pref-item {
  padding-bottom: 8px;
}

.pref-item.hidden-off {
  border-bottom: solid 2px #000080;
}

.pref-name {
  font-weight: normal;
}

.station-tags {
  display: none;
}

.station-tags.is-show,
.station-tags.no-hidden {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

a.station-kana-link-list {
  color: #000080;
}

.station-kana-container {
  scroll-behavior: smooth;
}