footer {
    padding-top: 2rem;
	padding-bottom: 1rem;
    background-color: #585858;
    color: #FFFFFF;
}
.flex-swap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* 通常の縦並び（SP） */
.item {
    padding: 1rem 1rem 0.5rem;
    width: 100%;
}
.item.a a {
    display: inline-block;
}
.item.a {
    text-align: right;
}
.item.a img {
    max-width: 85px;
    height: auto;
}
.b li {
    font-size: 0.9rem;
    padding-bottom: 0.5em;
}
.c li {
    font-size: 0.8rem;
    padding-bottom: 0.5em;
}
.d {
    font-size: 0.8rem;
}
/* PC：横並び＋順番制御＋内容サイズに応じる */
@media (min-width: 992px) {
    .flex-swap {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .item {
        width: auto;
        box-sizing: border-box;
        margin-bottom: 1rem;
    }
    .item.a {
        order: 2;
        flex: 1 1 15%;
    }
    .item.b {
        order: 1;
        flex: 1 1 80%;
    }
    .item.c {
        order: 3;
        flex: 1 1 auto;
    }
    .item.d {
        order: 4;
        flex: 1 1 auto;
        text-align: right;
    }
    .item li {
        float: left;
        margin-right: 2.5em;
    }
    .item.a img {
        max-width: 110px;
    }
}