/**
 * カスタムフッタースタイル
 * Figmaデザイン準拠版
 */

/* ========================================
 * フッター全体
 * ======================================== */
.site-footer-custom {
    width: 100%;
    background-color: #1f2937;
    padding: 60px 20px;
}

.site-footer-custom__inner {
    max-width: 1146px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ========================================
 * 上部セクション（ロゴ + ナビゲーション）
 * ======================================== */
.site-footer-custom__main {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

/* ロゴ */
.site-footer-custom__logo {
    flex-shrink: 0;
}

.site-footer-custom__logo a {
    display: block;
}

.site-footer-custom__logo-img {
    width: 294px;
    height: 96px;
    object-fit: contain;
}

/* ナビゲーション */
.site-footer-custom__nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.site-footer-custom__nav-column {
    padding: 0 20px;
}

/* ナビタイトル（リンクなし） */
.site-footer-custom__nav-title {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 12px;
}

/* ナビタイトル（リンクあり - ホーム用） */
.site-footer-custom__nav-title-link {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-footer-custom__nav-title-link:visited {
    color: #ffffff;
}

.site-footer-custom__nav-title-link:hover {
    opacity: 0.8;
    color: #ffffff;
}

/* ナビリスト */
.site-footer-custom__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer-custom__nav-list li {
    margin: 0;
}

.site-footer-custom__nav-list a {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-custom__nav-list a:visited {
    color: #9ca3af;
}

.site-footer-custom__nav-list a:hover {
    color: #ffffff;
}

/* ========================================
 * 下部セクション（コピーライト）
 * ======================================== */
.site-footer-custom__bottom {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.site-footer-custom__copyright {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #9ca3af;
    margin: 0;
}

/* ========================================
 * レスポンシブ: タブレット (959px以下)
 * ======================================== */
@media screen and (max-width: 959px) {
    .site-footer-custom {
        padding: 60px 0;
    }

    .site-footer-custom__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .site-footer-custom__logo {
        padding-left: 20px;
    }

    .site-footer-custom__logo-img {
        width: 294px;
        height: 96px;
    }

    .site-footer-custom__nav {
        flex-direction: column;
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
    }

    .site-footer-custom__nav-column {
        padding: 0 20px;
    }
}

/* ========================================
 * レスポンシブ: スマートフォン (599px以下)
 * Figma SP版デザイン準拠
 * ======================================== */
@media screen and (max-width: 599px) {
    .site-footer-custom {
        padding: 60px 0;
    }

    .site-footer-custom__inner {
        gap: 40px;
    }

    .site-footer-custom__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

    .site-footer-custom__logo {
        padding-left: 20px;
    }

    .site-footer-custom__logo-img {
        width: 294px;
        height: 96px;
    }

    .site-footer-custom__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

    .site-footer-custom__nav-column {
        padding: 0 20px;
        text-align: left;
    }

    .site-footer-custom__nav-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .site-footer-custom__nav-title-link {
        font-size: 16px;
    }

    .site-footer-custom__nav-list {
        align-items: flex-start;
        gap: 12px;
    }

    .site-footer-custom__nav-list a {
        font-size: 14px;
    }

    .site-footer-custom__bottom {
        padding: 20px;
    }

    .site-footer-custom__copyright {
        font-size: 14px;
        text-align: center;
    }
}
