<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------
    page.css
---------------------------------------------------------------------------------------------------------------------
*/

.page_top {
    display: block;
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 48px;
    height: 48px;
    text-decoration: none;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    /*background-color: rgba(0, 48, 64, 0.9);*/
    background-color: rgba(0, 24, 32, 0.8);
    border-radius: 24px;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    transform: scale(1.0);
    opacity: 0;
    z-index: 300;
}

.page_top::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    mask: url(../images/arrow-up.svg) no-repeat center;
    -webkit-mask: url(../images/arrow-up.svg) no-repeat center;
}

.page_top:hover {
    transform: scale(1.08);
}

.page_top.fadein {
    opacity: 1;
}

/*-------------------------------------------------------------------------------------------------------------------
    PC wide
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (min-width: 1400px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    PC narrow
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1000px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    .page_top {
        bottom: 16px;
        right: 10px;
    }

    .page_top::before {
        font-size: 30px;
        line-height: 48px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone landscape
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 896px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
}
</pre></body></html>