<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 髮｢閼ｱ繝昴ャ繝励い繝�� */
.popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    display: none;
}
.popup{
    width: 375px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11000000;
    display: none;
    padding: 100px 0 50px;
}
.popup a{
    display: block;
    transition: opacity .2s;
}
@media (any-hover: hover){
    .popup a:hover{
        opacity: .8;
    }
}
.popup img{
    width: 100%;
    height: auto;
}
.popup-close{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50px;
    right: 0;
}
.popup-close:before,
.popup-close:after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.popup-close:before{
    transform: rotate(45deg);
}
.popup-close:after{
    transform: rotate(-45deg);
}
@media screen and (max-width: 761px) {
    .popup{
        width: 85%;
    }
    .popup-close{
        width: 30px;
        height: 30px;
        top: 60px;
    }
}</pre></body></html>