/*フッターメニュー*/
.footer05 {
    margin-top: 50px;
    padding: 0px;
}

.footer05 a {
    text-decoration: none;
    color: #001a00;
}

.footer05 li a {
    font-size: 13px;
    position: relative;
    padding: 0 0px 2px;
    line-height: 1.6;
}

.footer05 li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #d0531d;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.footer05 li a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.footer05 .f_wrap {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer05 .f_wrap h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
    padding: 0;
    border-bottom: 1px #d0531d solid;
}

.footer05 .f_wrap .f_box {
    width: 18%;
}

.footer05 .f_wrap .f_box ul {
    margin: 0;
    list-style: none;
}

@media only screen and (max-width: 768px) {

    .footer05 li a {
        font-size: 13px;
    }

    .footer05 .f_wrap {
        padding: 0 0px;
        box-sizing: border-box;
    }

    .footer05 .f_wrap h3 {
        font-size: 14px;
        border: none;
    }

    .footer05 .f_wrap .f_box {
        width: 100%;
    }

    .footer05 .f_wrap .f_box ul {
        border-top: 1px #d0531d solid;
        padding: 0 0 20px 0;
    }

    .footer05 .f_wrap .f_box ul li a {
        display: block;
        padding: 5px 10px;
        border-bottom: 1px #d0531d solid;
    }

    .footer05 li a::after {
        display: none;
    }


}