/* =====================================================
popup
update: 2022.03.25
======================================================== */

.popup_wrapper {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: 20000;
  transition: 0.6s;
}
.popup_wrapper.active {
  opacity: 1;
  visibility: visible;
}
.popup_bg {
  background-color: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
}
.popup_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup_inner .popup_img {
  display: block;
  width: 100%;
}
.popup_inner .popup_img img {
  width: 100%;
}
.popup_inner .popup_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.popup_inner .popup_close img {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .popup_inner {
    width: 75%;
  }
}
