/* ¸ÞÀÎ ÆË¾÷ */

.popup2 {
    /* ¹è°æ ¾øÀÌ div¸¸ ¶°´Ù´Ô (¸ðµÎ È°¼º) */
    position: absolute; /* ¹è°æ À§Ä¡¿¡ °íÁ¤ */
    text-align: left;
    background: rgba(0,0,0, .9);
}
.popup2_none {
    position: absolute; /* ¹è°æ À§Ä¡¿¡ °íÁ¤ */
    opacity: 0;
    visibility: hidden;
    text-align: left;
}

.popup__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.popup-state {
    display: none;
}

    .popup-state:checked + .popup2 {
        opacity: 1;
        visibility: visible;
    }

        .popup-state:checked + .popup2 .popup__inner {
            top: 0;
        }

.popup__inner {
    position: absolute;
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
    overflow: auto;
    background: #fff;
    border-radius: 5px;
    padding: 0.7em 1.0em;
    border: 1px solid #333;
}

.popup__close {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    width: 0.6em;
    height: 0.6em;
    cursor: pointer;
}

    .popup__close:after, .popup__close:before {
        content: '';
        position: absolute;
        width: 2px;
        height: 1.2em;
        background: #ccc;
        display: block;
        transform: rotate(45deg);
        left: 50%;
        margin: -3px 0 0 -1px;
        top: 0;
    }

    .popup__close:hover:after, .popup__close:hover:before {
        background: #aaa;
    }

    .popup__close:before {
        transform: rotate(-45deg);
    }

    @media screen and (max-width: 768px) {

        .popup__inner {
            width: 90%;
            height: 90%;
            box-sizing: border-box;
        }
    }

.popup_p img {
    max-width: 200px;
    height: auto;
    float: left;
    margin: 0 1em 1em 0;
}

.btn_today_close {
    width: 100%;
    height: 30px;
    background-color: #333;
    text-align: center;
    color: #fff;
    font-size: 14px;
    display: block;
}

.popup_span {
    display: block;
    line-height: 30px;
    vertical-align: bottom;
    opacity: 0.8;
    color: white;
    cursor: pointer;
}

    /* ¸ÞÀÎ ÆË¾÷ */
