@charset "utf-8";
@media screen and (max-width: 568px){
  

.img-zoom {
  position: relative;
  cursor: pointer;
}
.img-zoom::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: calc(90 * (100vw / 750));
  padding-top: calc(90 * (100vw / 750));
  background: url("/promotion/assets/img/zoom.svg") left top no-repeat;
  background-size: contain;
}
#zoom-wrap {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.zoom-overlay {
  position: absolute;
  z-index: 205;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.zoom-modal {
  overflow: auto;
  position: relative;
  z-index: 210;
  width: 95%;
  margin: auto;
  padding: 10px;
  background: #fff;
}
.zoom-scroll {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 120px;
  height: 80px;
  margin: auto;
  background: rgba(0, 0, 0, 0.65) url("/promotion/assets/img/icon_scroll_white.png") center center no-repeat;
  border-radius: 5px;
  transform: translateY(-50%);
}

.zoom-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 35px;
  height: 35px;
  background: url("/promotion/assets/img/close2.svg") left top no-repeat;
  background-size: contain;
}
img.zoom-img {
  max-width:none;
}


}