@charset "UTF-8";

/** タブパネル */
.tab-shop-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: 30px;
}

.tab-shop-category > label {
  flex: 1 1;
  order: -1;
  opacity: 0.5;
  min-width: 70px;
  padding: 0.6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #0095ff;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  width: 240px;
}
@media (min-width: 768px) {
  .tab-shop-category > label {
    flex: none;
  }
}
.shop_location:first-of-type {
  background-color: #ed6f49;
}

.shop_location:nth-of-type(2) {
  background-color: #6f59a4;
}

.tab-shop-category > label:hover {
  opacity: 0.8;
}

.tab-shop-category input {
  display: none;
}

.tab-shop-category > .location-group {
  display: none;
  width: 100%;
  padding: 0px 1em 1.5em 1em;
  border: #aaa solid 1px;
}

.tab-shop-category label:has(:checked) {
  opacity: 1;
}

.tab-shop-category label:has(:checked) + div {
  display: block;
}
.tab-shop-category h3.shop_city {
  margin-top: 0px;
}
