  /* ==========================================================================
           systre Footer Plugin Styles - Inline Version
           ========================================================================== */

        .systre-footer * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .systre-footer {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            color: #ffffff;
            line-height: 1.6;
            background: linear-gradient(180deg, #3A3A3A 0%, #575860 100%);
            border-top: 3px solid #ff6b35;
        }

        .systre-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 32px 20px;
        }

        /* Navigation Grid - 4カラム固定（PC） */
        .systre-nav-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 30px;
        }

        .systre-nav-column {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 20px 16px;
            transition: all 0.3s ease;
        }

        .systre-nav-column:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 107, 53, 0.4);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .systre-nav-title {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            position: relative;
        }

        .systre-nav-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #ff6b35, #ff8a65);
            border-radius: 1px;
        }

        .systre-nav-list {
            list-style: none;
        }

        .systre-nav-list li {
            margin-bottom: 12px;
        }

        .systre-nav-list a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .systre-nav-list a:hover {
            color: #ff6b35;
            transform: translateX(4px);
        }

        .systre-logo-item {
            transition: transform 0.3s ease;
        }

        .systre-logo-item:hover {
            transform: scale(1.05);
        }

        .systre-logo-item img {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .systre-logo-item img:hover {
            filter: brightness(1.1);
        }

        /* パートナーデスクトップ表示 */
        .systre-partner-desktop {
            display: block;
        }

        /* モバイル用パートナーテキストリンク */
        .systre-partner-mobile {
            display: none;
        }

        /* Information Feed */
        .systre-info-feed {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 24px 20px;
            margin-bottom: 24px;
        }

        .systre-info-title {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .systre-social-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .systre-social-item {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: all 0.3s ease;
            padding: 20px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .systre-social-item:hover {
            color: #ff6b35;
            border-color: rgba(255, 107, 53, 0.3);
            transform: translateY(-2px);
        }

        /* Main Section (Logo + Login) - 50:50 */
        .systre-main-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: center;
            margin-bottom: 24px;
        }

        .systre-main-logo-section {
            justify-self: start;
        }

        .systre-login-section {
            justify-self: end;
        }

        .systre-main-logo {
            max-width: 200px;
            height: auto;
            transition: all 0.3s ease;
        }

        .systre-main-logo:hover {
            transform: scale(1.02);
        }

        .systre-logout-btn {
            background: rgba(255, 107, 53, 0.1);
            border: 2px solid rgba(255, 107, 53, 0.5);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .systre-logout-btn:hover {
            background: rgba(255, 107, 53, 0.2);
            border-color: #ff6b35;
            transform: translateY(-2px);
        }

        /* User Info */
        .systre-user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .systre-username {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 768px) {
            .systre-user-info {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }

            .systre-username {
                font-size: 12px;
                padding: 6px 10px;
            }
        }

        /* Footer Text */
        .systre-footer-text {
            text-align: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 11px;
            line-height: 1.6;
            margin-top: 20px;
            padding: 16px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 6px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .systre-nav-section {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .systre-social-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .systre-container {
                padding: 20px 16px 16px;
            }

            .systre-nav-section {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                margin-bottom: 16px;
            }

            /* モバイルではパートナーデスクトップ非表示、テキストリンク表示 */
            .systre-partner-desktop {
                display: none;
            }

            .systre-partner-mobile {
                display: block;
                margin-top: 12px;
            }

            .systre-nav-column {
                padding: 12px 12px;
            }

            .systre-nav-title {
                font-size: 13px;
                margin-bottom: 10px;
            }

            .systre-nav-list li {
                margin-bottom: 6px;
            }

            .systre-nav-list a {
                font-size: 12px;
            }

            .systre-logo-item img {
                height: 40px;
            }

            .systre-main-section {
                grid-template-columns: 1fr;
                gap: 12px;
                text-align: center;
            }

            .systre-main-logo-section,
            .systre-login-section {
                justify-self: center;
            }

            .systre-social-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .systre-social-item {
                font-size: 10px;
                padding: 8px 4px;
            }

            .systre-social-item strong {
                font-size: 11px;
                display: block;
                margin-bottom: 2px;
            }

            .systre-info-feed {
                padding: 12px 12px;
                margin-bottom: 16px;
            }

            .systre-info-title {
                font-size: 12px;
                margin-bottom: 12px;
                letter-spacing: 1px;
            }

            .systre-main-logo {
                max-width: 70%;
                max-height: 50px;
            }

            .systre-footer-text {
                font-size: 10px;
                line-height: 1.4;
                padding: 10px;
                margin-top: 12px;
            }

            .systre-logout-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .systre-username {
                font-size: 11px;
                padding: 6px 10px;
            }
        }

        @media (max-width: 480px) {
            .systre-container {
                padding: 16px 12px 12px;
            }

            .systre-nav-section {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .systre-nav-column {
                padding: 8px 6px;
            }

            .systre-nav-title {
                font-size: 11px;
                margin-bottom: 6px;
            }

            .systre-nav-list li {
                margin-bottom: 3px;
            }

            .systre-nav-list a {
                font-size: 10px;
            }

            .systre-partner-mobile {
                margin-top: 8px;
            }

            .systre-info-feed {
                padding: 10px 8px;
                margin-bottom: 12px;
            }

            .systre-info-title {
                font-size: 10px;
                margin-bottom: 8px;
            }

            .systre-social-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

            .systre-social-item {
                padding: 6px 3px;
                font-size: 9px;
            }

            .systre-social-item strong {
                font-size: 10px;
            }

            .systre-footer-text {
                padding: 8px;
                font-size: 9px;
                margin-top: 10px;
            }

            .systre-main-logo {
                max-width: 60%;
                max-height: 40px;
            }

            .systre-logout-btn {
                padding: 6px 12px;
                font-size: 11px;
            }

            .systre-logo-item img {
                height: 35px;
            }
        }