/* =============================================
   フッター
   ============================================= */
.footer {
    background: #8B5E3C;
    color: white;
    padding: 60px 0 30px;
    width: 100%;
    font-family: 'M PLUS Rounded 1c', 'Kosugi Maru', 'Hiragino Kaku Gothic ProN', sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    gap: 20px;
}

.footer-logo-img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-company {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-company strong {
    font-size: 15px;
}

.footer-contact {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-contact-title {
    font-weight: 700;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.7;
}

/* sp-only: スマートフォンのみ表示 */
.sp-only {
    display: none;
}

/* =============================================
   フッター レスポンシブ
   ============================================= */
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
