.footer {
    padding: 10px;
}

.footer--menuBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.4em;
}

.footer--menuItem {
    list-style-type: none;
    width: auto;
    height: auto;
}

.footer--menuLink {
    display: block;
    padding: 0.3em;
    text-decoration: none;
    /* border-right: 1px solid var(--black); */
}

.footer--menuLink:hover {
    text-decoration: underline;
}

.footer--menuLink::after {
    content: "|";
    margin-left: 8px;
}

.footer--menuItem:last-child .footer--menuLink:after {
    content: "";
    margin-left: 8px;
}

.footer--menuLink:visited,
.footer--menuLink:active {
    color: var(--black);
}

.footer--copyrightbox {
    font-size: 1.4em;
    text-align: center;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .footer {
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .footer--menuBox {
        /* display: block;
        text-align: center; */
        display: none;
    }

    .footer--menuItem {
        border-bottom: 1px solid var(--black);
    }

    .footer--menuLink {
        padding: 0.7em 0;
    }

    .footer--menuItem:last-of-type {
        border-bottom: none;
    }

    .footer--menuLink::after {
        content: "";
    }
}