.popup-layer{
  display: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.popup-contents {
  position: absolute;
  width: 900px;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  display: none;
  z-index: 9999;
}
.popup-contents .popup-close {
  position: absolute;
  top: -55px;
  right: 0;
  z-index: 3;
  width: 40px;
  cursor: pointer;
}
.popup-contents img{
  width: 100%;
}

@media screen and (max-width: 1280px) and (min-width: 768px) {
}
/* sp */
@media screen and (max-width: 768px) {
  .popup-contents {
    width: 90%;
  }
  .popup-contents .popup-close {
    top: -35px;
    width: 25px;
  }
}