.site-footer {
    background: #0a0f1d; /* 少しだけメイン背景より暗くして締める */
    padding: 60px 0 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    color: #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1000px;
}

.footer-logo {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-color);
    opacity: 0.8;
}

/* SNSアイコンの装飾 */
.sns-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.sns-link {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sns-link:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-3px);
}

.coconala-label {
    font-size: 9px;
    margin-top: 5px;
    font-weight: bold;
}

/* 簡易リンク */
.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.7rem;
    opacity: 0.5;
}

/* スマホ対応：中央揃えにする */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .sns-icons {
        justify-content: center;
    }
}