@charset "UTF-8";
.zoom-container {
  width: auto; /* 枠の横幅 */
  height: auto; /* 枠の高さ */
  overflow: hidden; /* はみ出た部分を隠す */
}

.zoom-container img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease; /* アニメーション速度 */
}

.zoom-container:hover img {
  transform: scale(1.1); /* 1.1倍に拡大 */
}