@charset "UTF-8";

.popup2 {
    background-color: #efefef;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 450px;
    height: 555px;
}

/* チェックボックスの初期設定 */

#popup-on3 { 
    display: none;
}


/* チェックされたらポップアップウインドウを開く */

#popup-on3:checked+.popup2 {
    display: block;
    z-index: 99;
}
