:root {
  --RWDWidth: 1024px;
}

.storeList .tabBtns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  margin-bottom: 30px;
}
.storeList .tabBtns button {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.storeList .tabBtns button::before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 0;
  height: 2px;
  left: 50%;
  background-color: #2680ff;
  transition: all 0.4s ease-in-out;
  transform: translateX(-50%);
}
.storeList .tabBtns button.active::before, .storeList .tabBtns button:hover::before {
  width: 100%;
}
.storeList .tabContent {
  display: none;
  padding: 30px;
}
.storeList .listBox {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 1330px) {
  .storeList .listBox {
    max-width: 1062px;
  }
}
.storeList .listBox .item {
  width: calc((100% - 50px * (5 - 1)) / 5);
}
@media screen and (max-width: 767px) {
  .storeList .listBox .item {
    width: calc((100% - 50px * (3 - 1)) / 3);
  }
}
@media screen and (max-width: 550px) {
  .storeList .listBox .item {
    width: calc((100% - 50px * (2 - 1)) / 2);
  }
}/*# sourceMappingURL=store.css.map */