.popup-bg {
  display: none;
  z-index: 1050;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup-common {
  display: none;
  z-index: 1100;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  border: 1px solid #efefef;
}
.popup-common.popup-common1 {
  left: calc(50% - 250px - 25px);
  z-index: 1101;
}
.popup-common.popup-common2 {
  left: calc(50% + 250px + 25px);
}
.popup-common .inner .img-box {
  display: block;
}
.popup-common .inner .img-box img {
  display: block;
  max-width: 100%;
}
.popup-common .inner .btn-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFF;
  box-sizing: border-box;
  padding: 15px 30px;
}
.popup-common .inner .btn-box .btn-close-today {
  display: flex;
  font-size: 16px;
  color: #777;
  white-space: nowrap;
}
.popup-common .inner .btn-box .btn-close-today .icon {
  margin-right: 5px;
  font-size: 1.2em;
}
.popup-common .inner .btn-box .btn-close {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

@media screen and (max-width: 1150px) {
  .popup-common.popup-common1 {
    left: 20px;
    transform: translate(unset);
    transform: translateY(-50%);
  }
  .popup-common.popup-common2 {
    left: unset;
    right: 20px;
    transform: translate(unset);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 700px) {
  .popup-common.popup-common1 {
    left: 2.5%;
    top: 47.5%;
  }
  .popup-common.popup-common2 {
    left: 7.5%;
    right: unset;
    top: 52.5%;
  }
  .popup-common .inner .btn-box {
    padding: 13px 25px;
  }
  .popup-common .inner .btn-box .btn-close-today {
    font-size: 15px;
  }
  .popup-common .inner .btn-box .btn-close {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .popup-common .inner .btn-box {
    padding: 10px 20px;
  }
  .popup-common .inner .btn-box .btn-close-today {
    font-size: 14px;
  }
  .popup-common .inner .btn-box .btn-close {
    font-size: 14px;
  }
}