.main-popup {
  display: none;
  position: fixed;
  top: 115px;
  left: 30px;
  z-index: 9999999;
  background: #fff;
  border: 1px solid #ddd;
  pointer-events: auto;
  isolation: isolate;
}
.popup-on {
  display: block;
}
.popup-inner {
  position: relative;
  z-index: 1;
}
.popup-inner img {
  display: block;
  width: 500px;
  height: auto;
  pointer-events: none;
}
.popup-btns {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  background: #f8f8f8;
}
.popup-btns button {
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
#popup2 {
  left: 550px; /* µÎ ¹øÂ° ÆË¾÷ ¿À¸¥ÂÊ ¹èÄ¡ */
}
/* ¸ð¹ÙÀÏ */
@media (max-width: 768px) {
  .main-popup {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
  }
  #popup2 {
    left: 50%;
    top: 50%;
  }
  .popup-inner img {
    width: 100%;
    height: auto;
  }
}
/* ÆË¾÷ Ç¥½Ã Á¦¾î (ÇÊ¼ö) */
.main-popup {
  display: none !important;
}
.popup-on {
  display: block !important;
}