@charset "UTF-8";
/* footer */
.footer{
    z-index: 9999;
    padding: 0!important;
    margin: 0;
}
.global-footer, .copyright{
    max-width: 1200px;
    margin: 0 auto;
}
.global-footer-heading{
    position: relative;
    font-weight: bold;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    padding: 15px;
    margin: 0 -2px -2px -2px;
}
.global-footer-heading::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    font-weight: bold;
    transition: 0.3s;
    font-size: 20px;
    right: 15px;
    top: 15px;
    color: #333;
    z-index: 10;
}
.global-footer-heading.active::after{
    transform: rotate(180deg) translateY(3px);
}
.global-footer-content{
    display: none;
}
.global-footer-content ul{
    padding: 0;
}
.global-footer-content ul li a{
    color: #333;
    text-align: left;
}
.global-footer-content ul li a:before{
    color: #e96000;
    content:'\f068';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right:5px;
}
.global-footer-content ul li a:hover{
    color: #555;
    background-color: transparent;
}
.copyright{
    background-color: #f5f5f5;
    color: #aaa;
    padding: 10px 15px;
    margin-top: 2px;
}

/* 950px以上 */
@media screen and (min-width:950px){
    footer{
        font-size: 12px;
        border-top: 2px solid #ddd;
    }
    .global-footer{
        padding: 30px 15px 15px 15px;
    }
    .global-footer-menu{
        display: grid;
        grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    }
    .global-footer-heading{
        background-color: #fff;
        border: none;
        padding: 10px 0;
        margin-bottom: 0;
    }
    .global-footer-heading::after{
        display: none;
    }
    .global-footer-content{
        display: block;
    }
    .global-footer-content-list{
        display: grid;
        grid-template-columns: 2fr 3fr;
    }
    .global-footer-content ul li a{
        font-size: 12px;
        font-weight: normal;
        padding: 0;
    }
    .copyright{
        background-color: #fff;
    }
}