/* フッター */
.footer {
    width: 100%;
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.footer__inner {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer__year {
    font-family: var(--font-family-en);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        height: var(--header-height-mobile);
    }

    .footer__copyright {
        font-size: var(--font-size-sm);
    }
} 