/**
 * Footer Sections Fix - フッターセクション間の区切り線とレイアウト改善
 * 参考サイト風のクリーンなデザイン
 */

/* フッターセクション間の区切り線 */
.footer__section {
    position: relative !important;
    padding-bottom: 40px !important;
    margin-bottom: 40px !important;
}

.footer__section:not(:last-child)::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: #e0e0e0 !important;
}

/* フッターグリッドの調整 */
.footer__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* セクションのレイアウト改善 */
.footer__section--services,
.footer__section--contact {
    background: transparent !important;
    padding: 0 !important;
}

/* メニューリストの改善 */
.footer__menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer__menu-item {
    margin-bottom: 8px !important;
    padding: 0 !important;
    border-bottom: none !important;
}

.footer__menu-link {
    display: inline-block !important;
    color: #757575 !important;
    text-decoration: none !important;
    padding: 6px 0 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    transition: color 0.2s ease !important;
}

.footer__menu-link:hover {
    color: #4CAF50 !important;
    text-decoration: none !important;
    padding-left: 0 !important;
}

/* お問い合わせ情報の整理 */
.footer__contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.footer__contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.footer__contact-item:last-child {
    border-bottom: none !important;
}

.footer__contact-icon {
    flex-shrink: 0 !important;
    width: 20px !important;
    font-weight: bold !important;
    color: #4CAF50 !important;
    font-size: 14px !important;
}

.footer__contact-content {
    flex: 1 !important;
}

.footer__contact-label {
    font-weight: 600 !important;
    color: #212121 !important;
    margin-bottom: 4px !important;
    font-size: 15px !important;
}

.footer__contact-subtext {
    color: #757575 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

/* 営業時間の強調 */
.footer__business-hours {
    background: #f8f9fa !important;
    padding: 16px !important;
    border-radius: 6px !important;
    margin-top: 24px !important;
    border-left: 4px solid #4CAF50 !important;
}

.footer__hours-label {
    color: #212121 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
}

.footer__hours-text {
    color: #757575 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* SNSセクションの改善 */
.footer__social {
    margin-top: 32px !important;
    padding-top: 24px !important;
    border-top: 1px solid #f0f0f0 !important;
}

.footer__social-label {
    color: #212121 !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    font-size: 15px !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px !important;
    }
    
    .footer__section {
        padding-bottom: 30px !important;
        margin-bottom: 30px !important;
    }
    
    .footer__contact-item {
        padding: 16px 0 !important;
    }
    
    .footer__business-hours {
        margin-top: 16px !important;
        padding: 12px !important;
    }
}