/*===========================================================================================

    ILLUSTRATION展示用CSS
	
===========================================================================================*/
/* 全体設定 */
* {
    box-sizing: border-box;
}
/* ポップアップウインドウの設定 */
.popup {
    display: none;
    position: fixed;
    top: 10%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 310px;
    height: 600px;
    /*width: 70vw;
    height: 55vw;*/
    overflow-y: scroll;
    background-color: #efefef;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
}
/* コメント */
.popup p {
    padding: 0;
    color: #222;
    font-size: 0.75rem;
    text-align: center;
}
@media screen and (max-width: 428px) {
    .popup p {
        font-size: 0.6rem;
    }
}
/* チェックボックスの初期設定 */
#popup-on {
    display: none;
}
/* チェックされたらポップアップウインドウを開く */
#popup-on:checked + .popup {
    display: block;
}
/* 閉じるアイコン（右上） */
.icon-close {
    position: absolute;
    right: 0;
    padding: 0 10px;
    color: #fff;
    font-size: 1.5rem;
    background: #222;
}

/* 閉じるボタン */
.btn-close {
    cursor: pointer;
    margin: 10px auto;
    padding: 10px;
    width: 50%;
    color: #fff;
    text-align: center;
    background: #222;
    border-radius: 10px;
}
/* 開くボタン */
.btn-open {
    cursor: pointer;
    width: 95%;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    text-align: center;
    background: #fff;
    border-radius: 10px;
}
/* ポップアップの内容 */
.popup-content {
    width: 90%;
    margin: 40px auto 20px auto;
}