
    /* ==========================================
       FOOTER STYLES - SEO Optimized
       ========================================== */

    /* ----- Reset ----- */
    .ftx-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ftx-nav-list li {
    }

    .ftx-inline-link {
        display: inline !important;
    }

    .ftx-contact-item {
        display: flex;
        align-items: baseline;
        gap: 4px;
        flex-wrap: wrap;
    }

    .ftx-label {
        color: #888;
        font-size: 12px;
        font-weight: 500;
        min-width: 60px;
    }

    .ftx-brand-name {
        font-size: 18px;
        font-weight: 700;
        color: #111;
    }

    .ftx-col-title {
        margin: 0 0 6px 0;
        font-size: 14px;
        font-weight: 700;
        color: #111;
        letter-spacing: 0.2px;
    }

    .ftx-address {
        font-style: normal;
        padding-top: 6px;
    }

    .ftx-copyText,
    .ftx-siteText,
    .ftx-mobile-copy {
        color: #777;
        font-size: 12px;
        line-height: 1.7;
    }

    /* ----- site-footer Container ----- */
    .site-footer {
        max-width: 100%;
        margin: 0 auto;
        background-color: #fafafa;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ----- PC Version ----- */
    .footer-pc {
        display: block;
        width: 100%;
        max-width: 1000px;
    }

    .ftx-grid {
        padding: 18px 0;
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 24px;
    }

    .ftx-col a,
    .ftx-col p {
        color: #666;
        font-size: 13px;
        line-height: 1.7;
        text-decoration: none;
    }

    .ftx-col a:hover {
        color: #8b5a2b;
        text-decoration: underline;
    }

    .ftx-accPanel a:hover {
        color: #8b5a2b;
        text-decoration: underline;
    }

    /* ----- Mobile Version ----- */
    .ftx-mobile {
        display: none;
        width: 100%;
        max-width: 1000px;
        padding: 8px 0 14px;
    }

    .ftx-mobileBrand {
        padding: 14px 0 10px;
        border-bottom: 1px solid #e5e5e5;
    }

    .ftx-mobile-title {
        margin: 0 0 6px 0;
        font-size: 16px;
        color: #111;
    }

    .ftx-accItem {
        border-bottom: 1px solid #e5e5e5;
    }

    .ftx-accBtn {
        width: 100%;
        min-height: 52px;
        padding: 0 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: 0;
        cursor: pointer;
        text-align: left;
        color: #111;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.2px;
        font-family: inherit;
    }

    .ftx-accBtn:focus-visible {
        outline: 2px solid #8b5a2b;
        outline-offset: 2px;
    }

    .ftx-accArrow {
        width: 12px;
        height: 12px;
        flex: 0 0 12px;
        position: relative;
        margin-left: 12px;
    }

    .ftx-accArrow::before {
        content: "";
        position: absolute;
        left: 1px;
        top: 1px;
        width: 8px;
        height: 8px;
        border-right: 1.6px solid #666;
        border-bottom: 1.6px solid #666;
        transform: rotate(45deg);
        transition: transform 0.22s ease, top 0.22s ease;
    }

    .ftx-accBtn.on .ftx-accArrow::before {
        transform: rotate(-135deg);
        top: 4px;
    }

    .ftx-accPanel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease;
    }

    .ftx-accPanelInnerPad {
        list-style: none;
        padding: 0 0 4px 0;
        margin: 0;
    }

    .ftx-accPanelInnerPad li {
        padding: 0 0 10px 0;
    }

    .ftx-accPanelInnerPad li:last-child {
        padding-bottom: 0;
    }

    .ftx-accPanel a {
        color: #666;
        font-size: 13px;
        text-decoration: none;
        display: inline-block;
    }

    .ftx-accPanel .ftx-inline-link {
        display: inline !important;
    }

    /* ----- Responsive ----- */
    @media (max-width: 980px) {
        .ftx-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 640px) {
        .footer-pc {
            display: none;
        }

        .ftx-mobile {
            display: block;
        }

        .site-footer {
            padding: 0 16px;
        }
    }

    @media (min-width: 641px) {
        .ftx-mobile {
            display: none !important;
        }
    }