/* ==========================================================================
   Footer SNS Links
   ========================================================================== */
.footer__sns {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sns-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/* Blog Button Style */
.blog-btn {
    background-color: #e67e22;
    border: 2px solid #e67e22;
}

.blog-btn:hover {
    background-color: #d35400;
    border-color: #d35400;
}

/* Instagram Button Style */
.insta-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}

.insta-btn img {
    height: 20px;
    width: auto;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

/* Facility Rows (Redesign) */
.facility-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
}

.facility-main-link {
    flex-shrink: 0;
    min-width: 130px;
}

/* Override .footer-link styles if needed for visibility */
.facility-main-link.footer-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.facility-sub-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sub-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 15px;
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    transition: opacity 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sub-link-btn.blog {
    background-color: #e67e22;
}

.sub-link-btn.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    width: 30px;
    padding: 0;
}

.sub-link-btn.insta img {
    height: 16px;
    filter: brightness(0) invert(1);
}

.sub-link-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer__sns {
        justify-content: center;
    }

    .sns-btn {
        width: 100%;
        max-width: 200px;
    }

    /* フッター内のSNSボタンのスタイルを維持（白背景の上書きを防ぐ） */
    .footer-link.sns-btn.blog-btn {
        background-color: #e67e22 !important;
        color: #fff !important;
    }

    .footer-link.sns-btn.insta-btn {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
        color: #fff !important;
    }

    .facility-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 10px 0 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
    }

    .facility-row:last-of-type {
        border-bottom: none;
    }

    .facility-main-link {
        min-width: 180px;
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .facility-sub-links {
        justify-content: center;
        gap: 12px;
    }

    .sub-link-btn {
        height: 38px;
        border-radius: 19px;
        padding: 0 20px;
        font-size: 0.95rem;
    }

    .sub-link-btn.insta {
        width: 38px;
    }
}