<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

.l-section {
    transition: .5s all ease;
    opacity: 0;
}
.l-section.-show {
    opacity: 1;
}

@media only screen and (max-width: 999px) {
    .p-page_anchor {
        display: none;
    }    
}
@media only screen and (min-width: 1000px) {
    .p-page_anchor {
        font-size: 1.2rem;
        z-index: 1000;
        right: 20px;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        transition: .3s all ease;
    }
    .p-page_anchor.-hide {
        transform: translate(200%, -50%);    
    }

    .p-page_anchor li {
        margin: 0;
        text-align: right;
    }
    .p-page_anchor a {
        display: flex;
        position: relative;
        align-items: center;
        padding: 12px 20px 12px 0;
        width: 50px;
    }
    .p-page_anchor a::before {
        content: '';
        display: block;
        width: 11px;
        height: 11px;
        background: #aaa;
        border-radius: 50%;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
        transition: .5s all ease;
    }
    .p-page_anchor a:hover::before {
        background: #333;
    }
    .p-page_anchor a.is-active::before {
        background: #fcb616;
    }
    .p-page_anchor a span {
        display: block;
        position: absolute;
        right: 20px;
        max-width: 0;
        width: 1px;
        overflow:hidden;
        padding-right: 0;
        transition: .5s all ease;
        text-align:right;
        white-space: nowrap;
    }
    .p-page_anchor a.is-active span,
    .p-page_anchor a:hover span {
        max-width: none;
        overflow:hidden;
        width: 150px;
    }
    .p-page_anchor a[href="#sec05"].is-active {
        color: #fff;
    }
    .p-page_anchor a[href="#sec01"].is-active::before {
        background: #000;
    }
}
</pre></body></html>