/* ===== フッター ===== */
.mainFooter {
    background: linear-gradient(135deg, #166534 0%, #16a34a 50%, #22c55e 100%);
        color: var(--theme-white);
    padding: 60px 0 20px;
    position: relative;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    }
    
    .footerContainer {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
        
        .footerContent {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            
            .footerBrand {
                .footerLogo {
                    font-family: 'Klee One', 'Zen Antique Soft', 'Noto Serif JP', serif;
                    font-size: 2rem;
                    font-weight: 700;
                    margin-bottom: 16px;
                        color: var(--theme-white);
                    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                    letter-spacing: 0.02em;
                }
                
                .footerTagline {
                    font-size: 1rem;
                    color: rgba(255, 255, 255, 0.8);
                    line-height: 1.6;
                    font-weight: 300;
                }
            }
            
            .footerNav {
                .footerNavTitle {
                    font-size: 1.2rem;
                    font-weight: 600;
                    margin-bottom: 20px;
                        color: var(--theme-white);
                    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
                }
                
                .footerNavList {
                    li {
                        margin-bottom: 12px;
                        
                        .footerLink {
                            color: rgba(255, 255, 255, 0.8);
                            font-weight: 300;
                            transition: color 0.3s ease;
                            
                            &:hover {
                                    color: var(--theme-white);
                                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
                            }
                        }
                    }
                }
            }
            
            .footerContact {
                .footerContactTitle {
                    font-size: 1.2rem;
                    font-weight: 600;
                    margin-bottom: 20px;
                        color: var(--theme-white);
                    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
                }
                
                .footerPhone {
                    font-size: 1.1rem;
                    font-weight: 600;
                        color: var(--theme-white);
                    margin-bottom: 8px;
                    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
                }
                
                .footerHours {
                    color: rgba(255, 255, 255, 0.8);
                    font-weight: 300;
                    font-size: 0.9rem;
                }
            }
        }
        
        .footerBottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
            
            .copyright {
                color: rgba(255, 255, 255, 0.7);
                font-size: 0.9rem;
                font-weight: 300;
            }
        }
    }
}

/* ===== レスポンシブ（フッター） ===== */
@media (max-width: 768px) {
    .mainFooter {
        .footerContainer {
            padding: 0 16px;
            
            .footerContent {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                
                .footerBrand {
                    .footerLogo {
                        font-size: 1.8rem;
                    }
                }
            }
        }
    }
}