.shopson {
  cursor: pointer;
  max-width: 500px;
  width: 100%;
}
.shopson img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.shopson:hover img {
  transform: scale(1.2); /* 拡大 */
}