@charset "UTF-8";

.site-footer {
    background-color: #fcfaf5;
    padding: 80px 0 40px;
    color: #4a3728;
    font-family: 'Zen Maru Gothic', sans-serif;
}

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

/* 上部：ロゴ・住所エリア */
.footer-branding-top {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e0d5;
}

.footer-corp {
    font-size: 14px;
    font-weight: 800;
    color: #f1c40f;
    margin-bottom: 5px;
}

.footer-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-address-info {
    display: flex;
    gap: 30px;
    font-size: 15px;
    font-weight: 700;
}

/* メイン：3列グリッドレイアウト */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr; /* 3列の比率調整 */
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* 各列の見出し */
.footer-nav-title {
    font-size: 15px;
    font-weight: 900;
    color: #f1c40f;
    margin-bottom: 25px;
    display: block;
}

/* リストスタイル */
.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: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.footer-nav-list a:hover {
    color: #f1c40f !important;
    padding-left: 5px;
}

/* お問い合わせ列の独自スタイル */
.footer-btn-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f1c40f;
    color: #fff !important;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
}

.btn-footer:hover {
    transform: translateY(-3px);
    background-color: #d4ac0d;
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
}

.btn-icon { margin-right: 10px; }

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

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

/* スマホ対応 */
@media screen and (max-width: 850px) {
    .footer-main-grid {
        grid-template-columns: 1fr; /* 縦一列に */
        gap: 50px;
        text-align: center;
    }
    
    .footer-address-info {
        flex-direction: column;
        gap: 10px;
    }

    .btn-footer {
        margin: 0 auto;
    }
}