/* footer.php — .main-footer, .footer-title, .footer-address, .footer-nav, .copyright */

/* --- フッター --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 16px;
}
.footer-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    margin: 0 0 8px;
}
.footer-address {
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    margin: 0 0 24px;
}
.footer-nav {
    background-color: #333;
    margin: 0 0 24px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
}
.footer-nav__item {
}
.footer-nav__link {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.footer-nav__link::after {
    margin-left: 2px;
    content: "";
    display: block;
    width: 21px;
    height: 21px;
    background: var(--img-chevron-right-sm-w) center center no-repeat;
}
.copyright {
    font-weight: 200;
    font-style: italic;
    font-size: 13px;
    line-height: 150%;
    margin: 0;
    text-align: right;
}
