.store-item__img {
  position: relative;
  overflow: hidden;
}
.store-item__img img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.06);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
}
.curtain-image__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  background: #e60012;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.store-item__card.is-active img {
  transform: scale(1);
  opacity: 1;
}
.store-item__card.is-active .curtain-image__cover {
  transform: translateX(100%);
}

.store-group {
  display: grid;
  gap: 100px;
}
.store-group__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: 2.4rem;
  font-weight: 700;
}
.store-group__list a {
  transition: .3s;
}
.store-group__list a:hover {
  opacity: .8;
}
.store-group__list > * {
  display: flex;
  align-items: center;
  gap: 1em;
}
.store-group__list > *::after{
  content: '|';
}
.store-group__list > *:last-child::after {
  content: '';
}

.store-group__title {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #e60012, #ff6f00);
  color: #fff;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .store-group {
    gap: 50px;
  }
  .store-group__list {
    font-size: 2rem;  
  }
  .store-group__title {
    font-size: 2rem;
  }
}