#popup_wrap_01 > img {
  width: 500px;
  height: 600px;
}

.popup_wrap {
  position: fixed;
  top: 150px;
  left: 50px;
  z-index: 999;
  display: none;
  width: auto;
  height: auto;
}

.popup_wrap.open {
  display: flex;
}

.popup_wrap > .btn_close_popup {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  text-indent: -9999em;
  cursor: pointer;
}

.popup_wrap > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mobile_wrap {
  #popup_wrap_01 > img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 600px;
  }

  .popup_wrap {
    top: 100px;
    left: 5%;
    max-width: 90%;
    max-height: 90%;
  }
}

/*
팝업 추가할 경우 #popup_wrap_XX 형태로 id 추가 후 팝업 이미지 크기에 맞춰서 css를 조정해야 함
수정할 항목: (팝업 이미지의 크기) => #popup_wrap_01 > img, .mobile_wrap > #popup_wrap_01 > img
*/
