@charset "UTF-8";
#sample_sozai_viewer #image-gallery-box {
  text-align: center;
}
#sample_sozai_viewer #image-gallery-box .img-box {
  width: 170px;
  height: 170px;
  margin: 5px;
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  background: url(loading.svg) center center no-repeat;
  cursor: pointer;
}
#sample_sozai_viewer #image-gallery-box .img-box .img-box-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#sample_sozai_viewer #image-gallery-box .img-box:hover {
  transform: scale(2.2);
  z-index: 2;
  border: none;
  box-shadow: none;
}
#sample_sozai_viewer #image-gallery-box .img-box:hover .img-box-img {
  -o-object-fit: contain;
     object-fit: contain;
}

/*スマホ用*/
@media screen and (max-width: 768px) {
  #sample_sozai_viewer #image-gallery-box .img-box {
    width: 45%;
  }
  #sample_sozai_viewer #image-gallery-box .img-box.sp-l:hover {
    max-width: 100vw;
    transform: translateX(50%) scale(1.8);
  }
  #sample_sozai_viewer #image-gallery-box .img-box.sp-r:hover {
    max-width: 100vw;
    transform: translateX(-50%) scale(1.8);
  }
}/*# sourceMappingURL=page.css.map */