@charset "utf-8";
#wcfront_parts-50-619 .wcfront_images{
flex-wrap: wrap;
}
#wcfront_parts-50-619  .parts--unit{
flex:auto;
width:25%;
aspect-ratio: 1 / 1;
}
#wcfront_parts-50-619  .parts--unit > *{
height:100%;
}
#wcfront_parts-50-619  .parts--unit img{
height:100%;
object-fit: cover;
}
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal.is-open {
  display: flex;
}

.image-modal__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-modal__image-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
}

.image-modal__img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.image-modal__flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s ease;
}

.image-modal__flash.is-show {
  opacity: 1;
}

.image-modal__close {
  position: absolute;
  top: -5px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
}

.image-modal__prev,
.image-modal__next {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  font-size: 0;
box-shadow: none;
background-color: transparent;
}

.image-modal__prev {
  left: 50px;
  background-image: url("/common/upload/files/gallery/prev_2.png");
}

.image-modal__next {
  right: 50px;
  background-image: url("/common/upload/files/gallery/next_2.png");
}
.image-modal__area {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  z-index: 4;
}

.image-modal__area--prev {
  left: 0;
}

.image-modal__area--next {
  right: 0;
}