@charset "UTF-8";

/*
================================================================
 スティッキーナビ
================================================================
*/


a.fixed-nav-scroll-to-top {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    background-color: transparent;
    background-image: url(../img/icon/ico_scroll_top.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    visibility: visible;
    opacity: 0.1;
    transform: translateY(200%);
    transition: 
        opacity var(--themeval-hover-transition),
        transform var(--themeval-hover-transition),
        visibility var(--themeval-hover-transition);
}
html.agent-prop--not-iOS a.fixed-nav-scroll-to-top {
    visibility: hidden;
    opacity: 0;
}
a.fixed-nav-scroll-to-top.scrolled,
html.agent-prop--not-iOS a.fixed-nav-scroll-to-top.scrolled {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
html:not(.agent-prop--Touch) a.fixed-nav-scroll-to-top.scrolled:hover {
    opacity: var(--themeval-hover-opacity);
}


@media (max-width: 1279px) {

    a.fixed-nav-scroll-to-top {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

}

@media (max-width: 959px) {

    a.fixed-nav-scroll-to-top {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

}

/* 印刷用設定 */
@media print {
    a.fixed-nav-scroll-to-top {
        display: none;
    }
}



/*
================================================================
 グローバルフッター
================================================================
*/

.global-footer {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-text-black);
}
.global-footer .layout-container {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    width: 90%;
}
.global-footer a {
    color: inherit;
    text-decoration: inherit;
    opacity: 1;
    transition: opacity var(--themeval-hover-transition);
}
html:not(.agent-prop--Touch) .global-footer a:hover {
    opacity: var(--themeval-hover-opacity); /* $hover-opacity */
}

.global-footer-copyright {
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 40px 0 0;
    width: 100%;
    height: 100px;
    color: var(--themeval-color-theme-text-black);
    font-weight: 400;
    text-align: center;
    font-size: calc( 12rem / var(--themeval-root-font-size) ); /* $base-font-size */
    line-height: 20px
}
.global-footer-copyright .layout-container {
    max-width: 1300px;
}

@media (max-width: 1279px) {
    
    .global-footer-copyright {
        padding: 30px 0 0;
        height: 80px;
        text-align: center;
        font-size: calc( 12rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 20px
    }

}

@media (max-width: 959px) {

    .global-footer-copyright {
        padding: 20px 0 0;
        height: 60px;
        text-align: center;
        font-size: calc( 11rem / var(--themeval-root-font-size) ); /* $base-font-size */
        line-height: 20px
    }

}


