
.next-pop {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 30;
  align-items: center;
  justify-content: center;
}

.popup-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.popup-close {
    width: 2em;
    height: 2em;
    display: block;
    position: absolute;
    top: -0.6em;
    right: -0.6em;
    background-color: #041E82;
    cursor: pointer;
}
.popup-close:after {
    content: "";
    width: 1.5em;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}
.popup-close:before {
    content: "";
    width: 1.5em;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}


.popup-inner {
  width: 90%;
  max-width: 520px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.popup-contents {
  width: 100%;
  height: auto;
  position: relative;
}

a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.popup-contents:hover {
  opacity: 0.75;
}