@charset "utf-8";
/* =========================================================================================================================================== */
/* フッターデザイン                                                                                                                                */
/* =========================================================================================================================================== */
@media all {
    #footer {
        width: 100%;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--gradient1);
    }
    #page-top #footer {
        position: fixed;
        bottom: 0;
    }

    /* copyright */
    #footer .copyright {
        font-size: 12px;
        color: var(--color-white);
    }


    /* Go Top */
    #goTop {
        width: 65px;
        position: fixed;
        bottom: 42px;
        right: calc((100vw - 1620px) / 2);
        opacity: 0;
        pointer-events: none;
        transition: all ease 0.5s;
    }
    #goTop a {
        cursor: pointer;
    }
    .scroll #goTop {
        display: block;
        opacity: 1;
        pointer-events: initial;
    }
}
@media (max-width: 1730px) {
    /* Go Top */
    #goTop {
        right: 55px;
    }
}
@media (max-width: 767px) {
    #footer {
        height: 29px;
    }
    /*
    #page-top #footer {
        position: initial;
    }
    */

    /* copyright */
    #footer .copyright {
        font-size: 10px;
    }


    /* Go Top */
    #goTop {
        width: 36px;
        right: 25px;
        bottom: 25px;
    }
}