@charset "utf-8";


footer {
    background-color: var(--sub-color);
    color: #345;
    clear: both;
    width: 100%;
    display: block;
    padding-top: 20px;
    border-bottom-width: 20px;
    border-bottom-style: solid;
    border-bottom-color: #D2E1E3;
}

footer .cont_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

footer .cont_wrap .f_box {
    width: 20%;
    padding: 10px;
}

footer .cont_wrap .f_box.lg {
    width: 60%;
}

footer .cont_wrap p {
    font-size: 13px;
}

footer .cont_wrap ul {
    padding: 20px;
}

footer .cont_wrap ul li a {
    display: block;
    text-decoration: none;
    font-size: 13px;
    color: #555;
}

footer .cont_wrap ul li.contact a {
    text-align: center;
    color: #FFF;
    background-color: var(--main-color);
    font-size: 14px;
    padding: 2px;
    margin-top: 5px;
}

footer .cont_wrap ul li.contact a:hover {
    color: var(--main-color);
}

footer .cont_wrap ul li.contact a::before {
    display: none;
}

footer .cont_wrap ul li a::before {
    content: "・ ";
    color: #999;
}

footer .cont_wrap ul li a:hover {
    color: #111;
    background-color: #FFF;
}

address {
    clear: both;
    font-size: 12px;
    font-style: normal;
    padding: 20px;
    text-align: center;
    letter-spacing: 1px;
}

footer .box_pr {
    clear: both;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 10px;
    color: #8a7e55;
    letter-spacing: 1px;
    background-color: #e3dcd2;
    padding-top: 18px;
    line-height: 22px;
}

.box_pr ul li {
    display: inline;
    padding: 5px;
}

.box_pr ul li a {
    color: #8a7155;
}

@media screen and (max-width:960px) {
    footer {
        border-bottom-width: 60px;
    }

    footer .cont_wrap .f_box {
        width: 50%;
        text-align: center;
    }

    footer .cont_wrap .f_box.lg {
        width: 100%;
    }

    .no_sp {
        display: none;
    }
}