footer {
    background-color: #534741;
}
footer h2 {
    font-size: clamp(22px,2.5vw,28px);
    font-weight: bold;
    margin-bottom: 8px;
}
footer h2 span {
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}
footer h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.4em;
}
footer h3 span {
    display: block;
    font-weight: normal;
    font-size: clamp(13px,2.5vw,14px);
    margin-top: 5px;
    letter-spacing: normal;
}

/*著作権表記*/
footer ul.footer_copy {
    width: 100%;
    background-color: #222;
    padding: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
footer ul.footer_copy li {
    height: 16px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fff;
    display: flex;
    align-items: center;
}
footer ul.footer_copy li:last-child {
    padding-right: none;
    margin-right: none;
    border-right: none;
}
footer ul.footer_copy li a,footer ul.footer_copy li p {
    font-size: clamp(11px,2.5vw,12px);
    color: #fff;
}
/*SP版 サイトマップ*/
@media only screen and (max-width: 890px) {
    footer ul.footer_sitemap{
        flex-wrap: wrap;
        padding: 50px 15px 40px 15px;
    }
    li.sitemap-title:first-child{
        width: 100%;
    }
    .sitemap-links{
        width: calc(50% - 5px);
        margin: 0 !important;
        padding: 0;

    }
    .sitemap-links > a:before{
        content: "●";
        font-size: 85%;
        margin-right: 4px;
        color: #f5877d;
    }
}
/*SP版 最下部コピーライト*/
@media only screen and (max-width: 890px) {
    footer ul.footer_copy {
        padding: 20px 0;
    }
    footer ul.footer_copy li {
        height: 25px;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}