/* フッターのスタイル */
.footer {
    color: #fff;
    padding: 0;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__logo {
    flex: 0 0 14%;
    display: flex;
    align-items: center;
}

.footer__logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.footer__info {
    flex: 0 0 43%;
    padding: 0 10px;
}

.footer__site-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer__address,
.footer__contact,
.footer__email {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__access {
    flex: 0 0 43%;
}

.footer__access-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer__access-info {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__copyright-container {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 15px 0;
}

.footer__copyright {
    margin: 0;
    font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        padding: 30px 5%;
    }
    
    .footer__logo,
    .footer__info,
    .footer__access {
        flex: 0 0 100%;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .footer__logo {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer__info,
    .footer__access {
        text-align: center;
    }
}