@charset "UTF-8";

/* ============================================================
   8. Footer Section (フッター：完全リニューアル版)
   ============================================================ */
.site-footer {
    background-color: #fcfaf5; /* 共通の温かい背景色に統一 */
    padding: 80px 0 40px;
    border-top: 2px solid #F8F6D7;
    color: #4a3728 !important; /* 文字色を少し柔らかい茶色へ */
    font-family: 'Zen Maru Gothic', sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* --- 左側：ブランディングエリア --- */
.footer-branding {
    flex: 1;
}

.footer-corp {
    font-size: 15px;
    font-weight: 700 !important; /* 厚み強化 */
    margin-bottom: 8px;
    color: #08A66C; /* 法人名はテーマカラーに */
}

.footer-name {
    font-size: 36px;
    font-weight: 900 !important; /* 最大の厚み */
    color: #4a3728; 
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

/* 💡 追加した住所エリア */
.footer-address-info {
    margin-bottom: 25px;
}

.footer-address {
    font-size: 16px;
    font-weight: 700 !important; /* しっかりした厚み */
    color: #4a3728;
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-tel-label {
    font-size: 13px;
    font-weight: 900 !important;
    color: #08A66C;
}

.footer-tel-number {
    font-size: 32px;
    font-weight: 900 !important;
    color: #4a3728;
    line-height: 1;
}

/* --- 右側：ナビゲーション & ボタン --- */
.footer-right-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.footer-nav-group {
    display: flex;
    gap: 60px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 15px;
}

.footer-nav-list a {
    text-decoration: none;
    color: #4a3728 !important;
    font-size: 16px;
    font-weight: 700 !important; /* リンクも厚く */
    transition: color 0.3s;
}

.footer-nav-list a:hover {
    color: #08A66C !important;
}

/* --- フッターボタンエリア --- */
.footer-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 900 !important; /* ボタン文字は最大 */
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ✉ お問い合わせ */
.btn-footer.btn-mail {
    background-color: #08A66C;
    color: #fff !important;
}

/* 👥 保護者専用 */
.btn-footer.btn-parent {
    background-color: #e67e22; /* オレンジで差別化 */
    color: #fff !important;
}

/* 💡 Instagramボタン */
.btn-footer.btn-insta {
    background-color: #fff;
    color: #E1306C !important;
    border: 2px solid #E1306C;
}

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

.btn-icon-insta img {
    width: 20px;
    margin-right: 8px;
}

.btn-footer:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* --- 下部：コピーライト --- */
.footer-bottom {
    border-top: 1px solid #e5e0d5;
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 13px;
    font-weight: 700 !important;
    color: #999;
}

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        align-items: center;
    }
    
    .footer-right-block {
        align-items: center;
        width: 100%;
    }

    .footer-nav-group {
        gap: 40px;
    }

    .footer-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-footer {
        width: 100%;
        justify-content: center;
    }
}