/* フッターセクション */
.footer-section {
    background-color: #2C2C2C;
    padding: 5vw 0 2vw 0;
}

.footer-container {
    max-width: 80vw;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 会社情報グリッド */
.footer-info-grid {
    width: 100%;
    margin-bottom: 3vw;
}

.footer-item {
    display: flex;
    margin-bottom: 0.8vw;
    align-items: flex-start;
}

.footer-item:last-child {
    margin-bottom: 0;
}

.footer-label {
    font-size: 1.0vw;
    color: white;
    font-weight: bold;
    min-width: 12vw;
    flex-shrink: 0;
    text-align: left;
}

.footer-value {
    font-size: 1.0vw;
    color: white;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    flex: 1;
}

/* フッターリンク */
.footer-links {
    margin-bottom: 1vw;
    text-align: left;
}

.footer-link {
    font-size: 1.0vw;
    color: white;
    text-decoration: none;
    margin-right: 2vw;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F47F2D;
    text-decoration: underline;
}

/* コピーライト */
.footer-copyright {
    font-size: 1.0vw;
    color: #888888;
    text-align: center;
    width: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-section {
        padding: 15vw 0 6vw 0;
    }
    
    .footer-container {
        max-width: 90vw;
    }
    
    .footer-info-grid {
        margin-bottom: 9vw;
    }
    
    .footer-item {
        flex-direction: column;
        margin-bottom: 2.5vw;
        align-items: flex-start;
    }
    
    .footer-label {
        font-size: 3.0vw;
        min-width: auto;
        margin-bottom: 1.5vw;
    }
    
    .footer-value {
        font-size: 3.0vw;
    }
    
    .footer-links {
        margin-bottom: 3vw;
        text-align: left;
    }
    
    .footer-link {
        font-size: 3.0vw;
        display: block;
        margin-bottom: 3vw;
        margin-right: 0;
    }
    
    .footer-link:last-child {
        margin-bottom: 0;
    }
    
    .footer-copyright {
        font-size: 3.0vw;
        color: #888888;
    }
}