/**
 * フッターカスタムCSS
 * SNSとご予約ボタンを横並びに配置
 */

.footer-bottom-actions {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    justify-content: center !important;
    margin-top: 2rem !important;
}

.footer-sns {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 40px !important;
}

.footer-bottom-actions .reservation-button {
    margin-bottom: 40px !important;
}

.footer-sns a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.footer-sns a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .footer-bottom-actions {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
}
