@charset "utf-8";

.popup {
    background: #000;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    border-radius: 15px;
    overflow: hidden;
    
}
.popup.popup1 {
    top: 5px; 
}
.popup.popup1 img,
.popup.popup2 img {
    height: 250px;
}
.popup.popup2 {
    top: 300px;
}

.popup .popup-close {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 25px;
    color: #fff;
}
.popup .popup-close a {
    display: block;
    line-height: 100%;
    width: 100%;
    text-align: center;
    border-right: 1px solid #fff;
}