@charset "utf-8";

#popup {
    position: absolute;
    left: calc(50% - 220px);
    top: 20%;
    z-index: 9;
    display: flex;
    justify-content: space-between;
}

#popup>div {
    padding: 30px
}

#popup div.left {
    background-color: #fff;
    width: 300px;
}

#popup div.left h2 {}

#popup div.left h2>a {
    font-size: 18px;
    font-weight: bolder;
    letter-spacing: -3px;
    display: block;
    margin-bottom: 20px;
}

#popup div.left p {
    font-size: 13px;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

#popup div.left p::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: gray;
    top: 0;

}

#popup div.left p:nth-of-type(2)::before {
    top: 45px;
}

#popup div.left ul {
    font-size: 13px;
}

#popup div.left ul li {}

#popup div.left>span {
    font-size: 13px;
    color: gray;
}

#popup div.left span time {
    color: gray
}

#popup div.left span a {
    float: right;
    color: #08b4db;
    text-decoration-line: underline;
}



#popup div.right {
    width: 120px;
}

#popup div.right ul {
    height: 100%;
}

#popup div.right ul li {
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#popup div.right ul li:first-child {
    border-bottom: 1px solid #fff;
}

#popup div.right ul li:first-child a::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../img/popup/btn_xl.png);
    left: 0;
    top: -50px;
}

#popup div.right ul li a {
    position: relative;
    display: block;
    color: #fff;
    font-weight: bold;
    padding-bottom: 41px;
}