@charset "utf-8";

/**
FOOTER
**/
#footer {
    .footer {
        .footer_inner {
            width:calc(100% - 60px);
            max-width:1100px;
            margin:0 auto;
            display: grid;
            grid-row-gap: 50px;
            dl {
                text-align:center;
                dt {
                    width:260px;
                    margin:0 auto;
                    img {
                        display:block;
                    }
                }
                dd {
                    font-size:1.6rem;
                    line-height:1.7;
                    padding-top:1em;
                }
            }
            .fmenu {
                font-size:1.5rem;
                display:flex;
                flex-wrap:wrap;
                gap:1em 2em;
                align-items:center;
                justify-content:center;
                padding-bottom:1.5em;
            }
            .btn_box{
                display: grid;
                grid-template-columns: auto auto;
                grid-column-gap: 50px;
                justify-content: center;
                a{
                    margin-top: 0;
                }
            }
        }
        .copyright {
            font-size:1.4rem;
            padding:1.5em;
            text-align:center;
            border-top:1px solid #FF9F2F;
            border-bottom:5px solid #FF9F2F;
        }
    } 
}

@media (hover:hover) {

    #footer {
        .footer {
            .footer_inner {
                .fmenu {
                    li {
                        a {
                            &:hover {
                                opacity:1;
                                color:#FF9F2F;
                            }
                        }
                    }
                }
            }
        } 
    }
    
}

@media screen and (max-width:1200px) {

}

@media screen and (max-width:1024px) {
}

@media screen and (max-width:768px) {

    #footer {
        .footer {
            .footer_inner {
                width:calc(100% - 40px);
                margin-bottom: 30px;
                dl {
                    dt {
                        width:180px;
                    }
                    dd {
                        font-size:1.4rem;
                        line-height:1.7;
                        padding-top:1em;
                    }
                }
                .btn_box{
                    display: grid;
                    grid-template-columns: auto;
                    grid-column-gap: inherit;
                    grid-row-gap: 30px;
                    justify-content: center;
                    a{
                        margin-top: 0;
                    }
                }
                .fmenu {
                    display: none;
                    font-size:1.3rem;
                    gap:1em 1.5em;
                }
            }
            .copyright {
                font-size:1.2rem;
                padding:1.5em;
            }
        } 
    }
    
}