/* CSS Variables */
        :root {
            --amaranth: #e91e63;
            --ebony-clay: #1f2937;
            --white: #ffffff;
            --catskill-white: #f9fafb;
            --pale-sky: #6b7280;
            --royal-blue: #2563eb;
            --monza: #d5030e;
            --noto-sans-jp-font-family: "Noto Sans JP", sans-serif;
            --animation-speed: 0.3s;
            --animation-curve: cubic-bezier(0.4, 0, 0.2, 1);
            --container-max: 1360px;
            --header-height: 88px;
            --section-gap: 12px;
            --card-pad-y: 12px;
            --card-pad-x: 16px;
            --m-sticky-h: 56px;
        }

        /* Reset and Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

body {
    font-family: var(--noto-sans-jp-font-family);
    background: #f9fafb;
    color: var(--ebony-clay);
    overflow-x: hidden;
    line-height: 1.6;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

/* Icon image safeguards */
img[src^="assets/icons/"] {
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

        /* Animation Keyframes */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes shimmer {
            0% { background-position: -200px 0; }
            100% { background-position: calc(200px + 100%) 0; }
        }

        /* Progress and Toast */
        .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    z-index: 1001;
    transition: width 0.1s;
    display: none;
}

        .toast-notification {
            position: fixed;
            top: 80px;
            right: 20px;
            background: #10b981;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 1002;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .toast-notification.show {
            transform: translateX(0);
        }

        /* Animation Classes */
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .animate-slide-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .animate-slide-right {
            animation: slideInRight 0.8s ease-out forwards;
        }

        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }
        .animate-delay-3 { animation-delay: 0.3s; }
/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0 0px;
    margin-top: 30px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 12px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 12px;
    font-weight: 300;
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: block !important;
    background: var(--amaranth);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #c2185b;
    transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mobile-overlay.show {
    display: block;
}

/* Mobile Menu Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    display: none;
}

.mobile-menu.open {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-title {
    font-weight: 600;
    color: inherit;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #374151;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--amaranth);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

/* Mobile Menu Items */
.mobile-nav-item {
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.current {
    background: rgba(233, 30, 99, 0.05);
    border-left-color: var(--amaranth);
    color: var(--amaranth);
}

.tag-scroll-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tag-scroll-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
    border-color: #d1d5db;
}

.tag-scroll-btn:focus-visible {
    outline: 2px solid var(--amaranth);
    outline-offset: 2px;
}

.tag-scroll-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.tag-scroll-btn.is-hidden {
    visibility: hidden;
    pointer-events: none;
}
        /* DESKTOP STYLES (≥769px) - Match reference breakpoint */
        @media (min-width: 769px) {
            /* Hide mobile elements on desktop */
            .mobile-header-nav,
            .mobile-header-section,
            .mobile-main-container {
                display: none !important;
            }

            .mobile-menu,
            .mobile-overlay,
            .mobile-menu-btn {
                display: none !important;
            }
           /* Main Header with Logo and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    width: 100%;
}
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 12px;
    width: 100%;
}
.header .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 12px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 60px;
    width: auto;
}

.logo-svg {
    height: 55px;
    width: auto;
    max-width: 300px;
    display: block;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.3), transparent);
    transition: left 0.5s;
}

.logo:hover::before {
    left: 100%;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
    margin-right: 48px;
}

.nav-item {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--amaranth);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::before,
.nav-item.current::before {
    width: 80%;
}

.nav-item:hover {
    color: var(--amaranth);
    background: rgba(233, 30, 99, 0.05);
}

.nav-item.current {
    color: var(--amaranth);
    font-weight: 700;
}



/* Breadcrumb Section - Now separate from main header */
.breadcrumb-action-bar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 90;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 48px;
}

            .breadcrumb-nav {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .breadcrumb-link {
                color: var(--royal-blue);
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                padding: 6px 12px;
                border-radius: 6px;
                transition: all var(--animation-speed);
            }

            .breadcrumb-link:hover {
                color: var(--amaranth);
                background: rgba(233, 30, 99, 0.08);
            }

            .breadcrumb-separator {
                color: var(--ebony-clay);
                font-weight: 700;
                margin: 0 8px;
            }

            .breadcrumb-current {
                color: var(--ebony-clay);
                font-weight: 700;
                padding: 6px 12px;
                background: rgba(31, 41, 55, 0.05);
                border-radius: 6px;
            }

            .header-actions {
                display: flex;
                align-items: center;
                gap: 16px;
            }

            .phone-link {
                color: var(--ebony-clay);
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 8px 16px;
                border-radius: 8px;
                transition: all var(--animation-speed);
                font-weight: 500;
            }

            .phone-link:hover {
                background: var(--catskill-white);
                color: var(--monza);
            }

            .apply-btn {
                background: var(--amaranth);
                color: var(--white);
                padding: 12px 24px;
                border: none;
                border-radius: 25px;
                font-weight: 700;
                cursor: pointer;
                text-decoration: none;
                transition: all var(--animation-speed);
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 44px;
            }

            .apply-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
            }

            /* Hero Section */
.hero-section {
    margin-top: 0;
    padding: 16px 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    position: relative;
}

            .hero-gradient {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
                pointer-events: none;
            }

            .hero-container {
                max-width: var(--container-max);
                margin: 0 auto;
                padding: 0 12px;
                position: relative;
                z-index: 2;
            }

.job-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

            .job-number {
                background: var(--ebony-clay);
                border-radius: 24px;
                padding: 8px 18px;
                color: var(--white);
                font-weight: 700;
                font-size: 14px;
                min-height: 40px;
                display: flex;
                align-items: center;
            }

            .status-badge {
                background: #eb2546;
                border-radius: 24px;
                padding: 8px 19px;
                display: flex;
                align-items: center;
                gap: 10px;
                color: var(--white);
                font-weight: 700;
                font-size: 14px;
                min-height: 40px;
            }

            .status-indicator {
                background: var(--white);
                border-radius: 6px;
                width: 10px;
                height: 10px;
            }

            .category-badge {
                background: rgba(38, 26, 185, 0.79);
                border-radius: 24px;
                padding: 8px 19px;
                color: var(--white);
                font-weight: 700;
                font-size: 14px;
                min-height: 40px;
                display: flex;
                align-items: center;
            }

.job-title {
    color: var(--ebony-clay);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 14px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .job-title {
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        margin-bottom: 10px;
        font-size: clamp(22px, 2.2vw, 30px);
        line-height: 1.25;
        max-width: 100%;
    }

    .job-title br {
        display: none;
    }
}

            .job-tags-wrapper {
                display: flex;
                align-items: center;
                gap: 8px;
                overflow: hidden;
                width: 100%;
            }

            .job-tags-scroll {
                display: flex;
                gap: 8px;
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-behavior: smooth;
                scrollbar-width: none;
                min-width: 0;
                flex: 1;
                align-items: center;
            }

            .job-tags-scroll::-webkit-scrollbar {
                display: none;
            }

            .tag-scroll-btn {
                width: 32px;
                height: 32px;
                font-size: 18px;
                border-radius: 50%;
                border: 1px solid #e5e7eb;
                background: #ffffff;
                color: #6b7280;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s;
            }

            .job-tag {
                background: var(--white);
                border: 1px solid #e5e7eb;
                border-radius: 24px;
                padding: 10px 21px;
                color: var(--ebony-clay);
                font-size: 14px;
                font-weight: 500;
                transition: all var(--animation-speed);
                cursor: pointer;
                min-height: 40px;
                display: flex;
                align-items: center;
                flex: 0 0 auto;
                width: max-content;
                white-space: nowrap;
            }

            .job-tag:hover {
                background: #fce7f3;
                transform: translateY(-1px) scale(1.02);
                box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
            }

            /* Main Content Structure */
.main-container {
    max-width: 1920px;
    padding: var(--section-gap) 0 0;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: var(--container-max);
    width: 100%;
    padding: 0 12px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 20px;
    align-items: flex-start;
}

.content-left {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

            /* Section Cards */
.section-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all var(--animation-speed);
    margin-bottom: 0;
}

            .section-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            }

.section-header {
    border-bottom: 1px solid var(--catskill-white);
    padding: var(--card-pad-y) var(--card-pad-x);
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
}

.section-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.section-title {
    color: var(--ebony-clay);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.section-content {
    padding: var(--card-pad-y) var(--card-pad-x);
}

.job-details-list {
    padding: var(--card-pad-y) var(--card-pad-x);
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(249, 250, 251, 0.5);
    min-height: 40px;
}

            .job-detail-item:last-child {
                border-bottom: none;
            }

            .job-detail-item > div {
                min-width: 0;
                flex: 1;
            }

.checkmark {
    width: 22px;
    height: 16px;
    fill: #374957;
    flex-shrink: 0;
    flex: 0 0 22px;
}
.mobile-job-details-list .mobile-job-detail-item div {
    font-size: 12px;
    line-height: 1.5;
}

.job-details-list .job-detail-item div {
    font-size: 14px;
    line-height: 1.5;
}

.mobile-job-detail-item > div {
    min-width: 0;
    flex: 1;
}
.notice-box {
    background: #eff6ff;
    border-left: 3px solid var(--royal-blue);
    border-radius: 6px;
    padding: 12px 14px;
    color: var(--royal-blue);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 14px;
}

.requirements-list {
    padding: var(--card-pad-y) var(--card-pad-x);
}

.work-time-box {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
    margin-top: 16px;
}

.work-time-title {
    color: #1f2937;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.work-time-row {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.work-time-label {
    color: #1f2937;
    font-weight: 700;
    font-size: 13px;
}

.work-time-value {
    color: #6b7280;
    font-size: 13px;
}

.work-time-note {
    color: #6b7280;
    font-size: 12px;
    margin-top: 10px;
}

            /* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.condition-item {
    background: var(--catskill-white);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--animation-speed);
}

            .condition-item:hover {
                background: #f3f4f6;
                transform: translateX(2px);
            }

.condition-item > img {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

            .condition-content {
                display: flex;
                flex-direction: column;
                min-width: 0;
                flex: 1;
            }

.condition-label {
    color: var(--pale-sky);
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 2px;
}

.condition-value {
    color: var(--ebony-clay);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    white-space: normal;
}

@media (min-width: 769px) {
    .conditions-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .condition-item {
        padding: 6px 8px;
    }

    .condition-value {
        font-size: 11px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }
}

@media (min-width: 1024px) {
    .conditions-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .condition-item {
        padding: 6px 8px;
        min-width: 0;
    }

    .condition-label {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .condition-value {
        font-size: 11px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }
}

            /* Sidebar */
.sidebar {
    width: 330px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.salary-card {
    background: var(--white) !important;
    background-image: none !important;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
    padding-top: 10px !important;   /* more space above 時給 */
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}



/* text color cleanup */
.salary-number,
.salary-unit,
.salary-label,
.salary-detail-title,
.salary-detail-amount {
    color: var(--ebony-clay) !important;
}

.salary-detail-text,
.salary-detail-note,
.salary-detail-subnote {
    color: var(--pale-sky) !important;
}

/* inner detail panel → soft neutral instead of glass */
.salary-details {
    background: var(--catskill-white) !important;
    border: 1px solid #eef2f7;
    backdrop-filter: none;
}

            .salary-content {
                position: relative;
                z-index: 2;
                text-align: center;
            }

.salary-number {
    color: var(--white);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
}

.salary-unit {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}

.salary-details {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px;
    backdrop-filter: blur(5px);
    margin-top: 14px;
}

.salary-heading {
    margin-bottom: 10px;
}

.salary-label {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    opacity: 0.9;
    margin-bottom: 6px;
}

            .salary-amount {
                display: flex;
                justify-content: center;
                align-items: baseline;
                gap: 8px;
            }

.salary-detail {
    margin-bottom: 10px;
}

.salary-detail-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.salary-detail-text {
    color: var(--white);
    font-size: 13px;
    text-align: center;
}

.salary-detail-amount {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4px;
}

.salary-detail-note {
    color: var(--white);
    font-size: 10px;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 4px;
}

.salary-detail-subnote {
    color: var(--white);
    font-size: 10px;
    text-align: center;
    opacity: 0.8;
}

.action-card, .contact-card {
    background: var(--white);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
}

.action-card-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

            .contact-card-note {
                color: #6b7280;
                font-size: 14px;
                text-align: center;
            }

@media (min-width: 769px) {
    .contact-card-note {
        font-size: 12px;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.primary-action-btn {
    background: linear-gradient(98.96deg, rgba(233, 30, 99, 0.8) 0%, var(--amaranth) 100%);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all var(--animation-speed);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

            .primary-action-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
            }

.secondary-action-btn {
    background: var(--white);
    border: 2px solid var(--amaranth);
    border-radius: 10px;
    padding: 10px 16px;
    color: var(--amaranth);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--animation-speed);
    min-height: 44px;
}

            .secondary-action-btn:hover {
                background: var(--catskill-white);
            }

            .staff-card {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
                margin-bottom: 16px;
                padding: 12px;
            }

            .staff-avatar {
                background: linear-gradient(135deg, var(--ebony-clay) 0%, var(--royal-blue) 100%);
                border-radius: 28px;
                width: 56px;
                height: 56px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                font-size: 24px;
                font-weight: 900;
                box-shadow: 0px 4px 12px rgba(236, 72, 153, 0.3);
            }

            .staff-details h3 {
                color: var(--ebony-clay);
                font-size: 18px;
                font-weight: 700;
                margin: 0 0 4px 0;
            }

            .staff-details p {
                color: var(--pale-sky);
                font-size: 14px;
                margin: 0;
            }

            .phone-contact {
                background: var(--catskill-white);
                border-radius: 12px;
                padding: 16px 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                margin-bottom: 16px;
                box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
                transition: all var(--animation-speed);
            }

            .phone-contact:hover {
                background: #f3f4f6;
                transform: translateY(-1px);
            }

            .phone-number {
                color: var(--monza);
                font-weight: 700;
                font-size: 20px;
                text-decoration: none;
            }


        }

        /* MOBILE STYLES (≤768px) */
 @media (max-width: 768px) {
    body { 
        zoom: 1; 
        padding-top: 0px;
    }

   
.header {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0px 0;
        z-index: 999 !important;
        background: white !important;
    }
    
.header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 2px !important;
        position: relative;
    }
    
    .header .container {
        padding: 0 10px !important;
    }
    
    .logo {
        z-index: 1;
    }
 .mobile-menu-btn {
    display: none;
    background: var(--amaranth);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #c2185b;
    transform: scale(1.05);
}

/* Mobile Menu Styles */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mobile-overlay.show {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    display: none;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #374151;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-nav-item {
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.current {
    background: rgba(233, 30, 99, 0.05);
    border-left-color: var(--amaranth);
    color: var(--amaranth);
}
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: var(--amaranth) !important;
        color: white !important;
        border: none !important;
        padding: 10px 16px !important;
        border-radius: 8px !important;
        font-size: 20px !important;
        cursor: pointer !important;
        z-index: 999 !important;
        position: relative !important;
        min-width: 50px;
        min-height: 44px;
    }
    /* Hide desktop navigation, show mobile menu button */
    .main-nav {
        display: none !important;
    }
    
.mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 999;
        cursor: pointer;
        pointer-events: auto;
    }
    
    /* Logo sizing for mobile */
.logo {
        height: 45px;
    }
    
    .logo-svg {
        height: 40px;
        width: auto;
        max-width: 220px;
    }
    
    /* Mobile sticky breadcrumb bar */
    .breadcrumb-action-bar {
        display: none;
    }

    /* Push content down when mobile sticky header is visible */
    body.has-mobile-sticky .main-container {
        padding-top: var(--m-sticky-h);
    }
    
    /* Hide desktop hero and main container */
    .hero-section,
    .main-container {
        display: none !important;
    }

    /* Mobile Header Navigation (the sticky one with job title) */
    .mobile-header-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 12px;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 95;
    backdrop-filter: blur(20px);
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    pointer-events: none;
    overflow: visible;
}

.mobile-header-nav.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.has-mobile-sticky .mobile-header-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

    .sticky-header-content {
        flex: 1;
        min-width: 0;
        margin-right: 16px;
    }

    .sticky-job-title {
        color: #1f2937;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 1;
        transition: all 0.3s;
        margin-bottom: 4px;
    }

    .sticky-job-title.visible {
        opacity: 1;
    }

    .sticky-job-title br {
        display: none;
    }

    .sticky-badges {
        display: flex;
        gap: 6px;
        opacity: 1;
        transition: all 0.3s;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .sticky-badges.visible {
        opacity: 1;
    }

    .sticky-badges::-webkit-scrollbar {
        display: none;
    }

    .sticky-badge {
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 9px;
        font-weight: 600;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .sticky-badge-id { background: #1f2937; color: #ffffff; }
    .sticky-badge-recruiting { background: #eb2546; color: #ffffff; }
    .sticky-badge-category { background: rgba(38, 26, 185, 0.79); color: #ffffff; }

    .back-nav-compact {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        border-radius: 20px;
        background: rgba(249, 250, 251, 0.8);
        cursor: pointer;
        font-size: 12px;
        font-weight: 500;
        color: #1f2937;
    }

    /* Mobile Hero Section */
    .mobile-header-section {
        display: block;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.03), rgba(37, 99, 235, 0.03));
        padding: 10px 22px;
        margin-top: 10;
    }

    .mobile-status-wrapper {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
        width: 100%;
        overflow: visible;
    }

    .mobile-status-row {
        display: flex;
        justify-content: flex-start;
        gap: 6px;
        margin-bottom: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        min-width: 0;
        flex: 1;
    }

    .mobile-status-row::-webkit-scrollbar {
        display: none;
    }

    .badge-scroll-btn {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid #e5e7eb;
        background: #ffffff;
        color: #6b7280;
        font-size: 12px;
        cursor: pointer;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .badge-scroll-btn:hover {
        background: #f3f4f6;
        color: #1f2937;
        border-color: #d1d5db;
    }

    .badge-scroll-btn:disabled {
        opacity: 0.4;
        cursor: default;
    }

    .badge-scroll-btn.is-hidden {
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-badges-scroll {
        flex: 1;
        overflow-x: auto;
        scrollbar-width: none;
        display: flex;
        gap: 6px;
        scroll-behavior: smooth;
        min-width: 0;
        flex-wrap: nowrap;
    }

    .mobile-badges-scroll::-webkit-scrollbar {
        display: none;
    }

    .mobile-status-badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 700;
        margin: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .mobile-status-badge-small {
        font-size: 10px;
        padding: 4px 10px;
    }

    .mobile-badge-job-id { background: #1f2937; color: #ffffff; }
    .mobile-badge-recruiting { background: #eb2546; color: #ffffff; }
    .mobile-badge-category {
        background: rgba(38, 26, 185, 0.79);
        color: #ffffff;
        display: inline-flex;
        visibility: visible;
        opacity: 1;
    }

    .job-title {
        color: var(--ebony-clay);
        font-size: 16px;
        font-weight: 800;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .tag-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
        margin: 0;
    }

    .mobile-tags-wrapper {
        display: flex;
        align-items: center;
        gap: 6px;
        overflow: hidden;
        width: 100%;
        margin: 10px 0;
    }

    .mobile-tags-scroll {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        min-width: 0;
        flex: 1;
    }

    .mobile-tags-scroll::-webkit-scrollbar {
        display: none;
    }

    .tag-scroll-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .mobile-job-tag {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 4px 8px;
        font-size: 10px;
        font-weight: 500;
        color: #1f2937;
        min-height: 0;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: background 0.2s ease;
        box-shadow: none;
        white-space: nowrap;
    }

    .mobile-job-tag:hover {
        background: #f9fafb;
        color: #1f2937;
        border-color: #e5e7eb;
        transform: none;
        box-shadow: none;
    }

    .mobile-job-tag:active {
        transform: none;
    }

    /* Mobile Main Container */
    .mobile-main-container {
        display: block;
        background: #ffffff;
        padding-top: 0;
        min-height: 100vh;
    }

    .mobile-content-wrapper {
        background: #ffffff;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 14px;
    }

    /* Mobile Salary Section - Optimized */
    .mobile-salary-section {
    background: var(--white) !important;
    background-image: none !important;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.06);
}

/* remove decorative gradient remnants */
.mobile-salary-section::before {
    display: none !important;
}

/* mobile text color normalization */
.mobile-salary-label,
.mobile-salary-amount,
.mobile-salary-unit,
.mobile-salary-detail-title,
.mobile-salary-detail-amount {
    color: var(--ebony-clay) !important;
}

.mobile-salary-detail-text,
.mobile-salary-detail-note,
.mobile-salary-detail-subnote {
    color: var(--pale-sky) !important;
}

/* mobile inner panel */
.mobile-salary-details {
    background: var(--catskill-white) !important;
    border: 1px solid #eef2f7;
    backdrop-filter: none;
}

    .mobile-salary-heading {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-bottom: 10px;
        justify-content: center;
    }

    .mobile-salary-label {
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        opacity: 0.9;
        line-height: 1;
    }

    .mobile-salary-amount {
        color: var(--white);
        font-size: 30px;
        font-weight: 900;
        display: inline;
        line-height: 1;
    }

    .mobile-salary-unit {
        font-size: 14px;
        font-weight: 700;
        margin-left: 3px;
        line-height: 1;
    }



    .mobile-salary-detail:first-child {
        position: static;
        padding-right: 0;
    }

    .mobile-salary-detail:first-child::after {
        display: none;
    }

    .mobile-salary-detail:last-child {
        padding-left: 0;
    }

    .mobile-salary-detail {
        text-align: center;
    }

    .mobile-salary-detail-title {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 2px;
        font-size: 8px;
        opacity: 0.9;
        line-height: 1.2;
    }

    .mobile-salary-detail-text {
        color: #ffffff;
        font-size: 9px;
        line-height: 1.2;
    }

    .mobile-salary-detail-amount {
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .mobile-salary-detail-note {
        color: #ffffff;
        font-size: 8px;
        opacity: 0.85;
        line-height: 1.2;
    }

    .mobile-salary-detail-subnote {
        color: #ffffff;
        font-size: 8px;
        opacity: 0.8;
    }

    /* Mobile Info Cards */
    .mobile-info-card {
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all var(--animation-speed);
        margin-bottom: 12px;
        border: 1px solid #f0f0f0;
    }

    .mobile-info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .mobile-card-header {
        background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
        border-bottom: 1px solid #e9ecef;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 40px;
    }

    .mobile-card-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .mobile-card-title {
        color: #1f2937;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -0.2px;
        line-height: 1.3;
    }

    .mobile-job-details-list {
        padding: 10px 14px;
    }

    .mobile-job-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 6px 0;
        border-bottom: 1px solid rgba(249, 250, 251, 0.5);
        min-height: 32px;
    }

    .mobile-job-detail-item > div {
        min-width: 0;
        flex: 1;
        font-size: 12px;
        line-height: 1.5;
    }

    .mobile-job-detail-item:last-child {
        border-bottom: none;
    }

    .mobile-job-detail-text {
        color: #6b7280;
        font-size: 12px;
        line-height: 1.5;
    }

    .checkmark {
        width: 16px;
        height: 12px;
        margin-top: 2px;
    }

    .mobile-notice-box {
        background: #eff6ff;
        border-radius: 4px;
        border-left: 2px solid #2563eb;
        padding: 8px 10px;
        margin-top: 10px;
    }

    .mobile-notice-text {
        color: #2563eb;
        font-size: 10px;
        line-height: 1.5;
    }

    .mobile-condition-list {
        padding: 10px 12px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 10px;
        background: transparent;
        border-radius: 0;
    }

    .mobile-condition-item {
        background: transparent;
        border-radius: 6px;
        padding: 8px 6px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 6px;
        min-height: auto;
        margin-bottom: 0;
        border-bottom: none;
        transition: all 0.2s ease;
    }

    .mobile-condition-item:hover {
        background: rgba(255,255,255,0.4);
    }

    .mobile-condition-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 2px;
        margin-bottom: 0;
    }

    .mobile-condition-item img,
    .mobile-condition-icon img {
        width: 16px;
        height: 16px;
    }

    .mobile-condition-content {
        display: flex;
        flex-direction: column;
        min-width: 0;
        width: 100%;
    }

    .mobile-condition-label {
        color: #6c757d;
        font-size: 9px;
        font-weight: 500;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .mobile-condition-value {
        color: var(--ebony-clay);
        font-size: 11px;
        font-weight: 600;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
    }

    .mobile-feature-card {
        margin-bottom: 0;
    }

    .mobile-feature-title {
        text-align: center;
        color: #1f2937;
        font-weight: 700;
        font-size: 11px;
        margin-bottom: 5px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-feature-description {
        text-align: center;
        color: #6b7280;
        font-size: 10px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-contact-card {
        background: var(--white);
        border-radius: 16px;
        padding: 14px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin-bottom: 0;
        margin-top: 0;
        border: 1px solid #f0f0f0;
    }

    .mobile-contact-title {
        text-align: center;
        color: #1f2937;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }

    .mobile-contact-title--cta {
        margin-bottom: 20px;
    }

    .mobile-contact-card--cta {
        margin-bottom: 12px;
    }

    .mobile-contact-card--info {
        margin-top: -50px;
    }

    .mobile-staff-card {
        background: #f9fafb;
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .mobile-staff-avatar {
        background: linear-gradient(135deg, var(--ebony-clay) 0%, var(--royal-blue) 100%);
        border-radius: 50%;
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 4px 12px rgba(102, 126, 234, 0.3);
        margin: 0 auto;
    }

    .mobile-staff-avatar-text {
        color: #ffffff;
        font-weight: 900;
        font-size: 20px;
    }

    .mobile-staff-name {
        color: #1f2937;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 2px;
        text-align: center;
    }

    .mobile-staff-dept {
        color: #6b7280;
        font-size: 12px;
        text-align: center;
    }

    .mobile-contact-note {
        color: #6b7280;
        font-size: 10px;
        line-height: 1.5;
        text-align: center;
    }

    .mobile-cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
    }

    .mobile-cta-button {
        background: linear-gradient(99deg, rgba(233, 30, 99, 0.9) 0%, #e91e63 100%);
        border-radius: 28px;
        color: var(--white);
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 12px auto;
        padding: 16px 24px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: all var(--animation-speed);
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        letter-spacing: 0.5px;
    }

    .mobile-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }

    .mobile-secondary-cta {
        background: var(--white);
        border: 2px solid #e91e63;
        border-radius: 28px;
        color: #e91e63;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 12px auto;
        padding: 14px 24px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--animation-speed);
        letter-spacing: 0.5px;
    }

    .mobile-secondary-cta:hover {
        background: rgba(233, 30, 99, 0.05);
        color: #e91e63;
        border-color: #e91e63;
    }

    .mobile-phone-button {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 10px auto;
        box-shadow: none;
        transition: all var(--animation-speed);
        cursor: pointer;
        min-height: 54px;
    }

    .mobile-phone-button:hover {
        background: #f3f4f6;
        transform: none;
        box-shadow: none;
    }

    .mobile-phone-button img {
        filter: none;
        opacity: 0.7;
    }

    .mobile-phone-number {
        color: #1f2937;
        font-weight: 700;
        font-size: 17px;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

    /* ========================================
       MOBILE LAYOUT OPTIMIZATIONS
       ======================================== */

    /* 1) SALARY SECTION - COMPACT LAYOUT */
    .mobile-salary-section {
        padding: 10px 12px;
        margin: 0 0 12px 0;
    }

    .mobile-salary-heading {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-bottom: 10px;
        justify-content: center;
    }

    .mobile-salary-label {
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
    }

    .mobile-salary-amount {
        font-size: 30px;
        font-weight: 900;
        line-height: 1;
    }

    .mobile-salary-unit {
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
    }

    /* 2-column layout with divider */
    .mobile-salary-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: center;
        padding: 10px;
        margin-top: 0;
    }

    .mobile-salary-detail:first-child {
        position: relative;
        padding-right: 0;
        border-right: none;
    }

    .mobile-salary-detail:last-child {
        padding-left: 0;
    }

    .mobile-salary-detail-title {
        font-size: 8px;
        margin-bottom: 2px;
    }

    .mobile-salary-detail-text {
        font-size: 9px;
    }

    .mobile-salary-detail-amount {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .mobile-salary-detail-note {
        font-size: 8px;
    }


    /* 2) FEATURE CARDS - 2×2 GRID */
    .mobile-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 12px 0;
        padding: 0;
    }

    .mobile-feature-card {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        border-radius: 12px;
        padding: 12px 8px;
        text-align: center;
        border: 1px solid #e9ecef;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 130px;
    }

    .mobile-feature-card .feature-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 8px;
        flex-shrink: 0;
    }

    .mobile-feature-title {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 6px;
        color: #1f2937;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-feature-description {
        font-size: 10px;
        line-height: 1.4;
        color: #6b7280;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    /* 3) 勤務条件 - 2-COLUMN GRID */
    .mobile-condition-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 8px;
        padding: 10px 12px;
        background: transparent;
        border-radius: 0;
    }

    .mobile-condition-item {
        padding: 8px 6px;
        background: transparent;
        border-radius: 6px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 6px;
    }

    .mobile-condition-icon {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        margin-bottom: 0;
    }

    .mobile-condition-icon img {
        width: 16px;
        height: 16px;
    }

    .mobile-condition-label {
        font-size: 9px;
        font-weight: 500;
        color: #6c757d;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .mobile-condition-value {
        font-size: 11px;
        font-weight: 600;
        color: #1f2937;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    /* 4) 担当者情報 - CENTERED WITH PINK ACCENT */
    .mobile-contact-card--info {
        text-align: center;
        margin-top: 12px;
    }

    .mobile-contact-title {
        font-size: 15px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 14px;
        text-align: center;
    }

    .mobile-staff-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        background: linear-gradient(135deg, #fce7f3 0%, #fff 100%);
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .mobile-staff-avatar {
        background: linear-gradient(135deg, var(--ebony-clay) 0%, var(--royal-blue) 100%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        margin: 0 auto;
    }

    .mobile-staff-avatar-text {
        color: #fff;
        font-size: 22px;
        font-weight: 900;
    }

    .mobile-staff-name {
        font-size: 16px;
        font-weight: 700;
        color: #1f2937;
        text-align: center;
    }

    .mobile-staff-dept {
        font-size: 12px;
        color: #6b7280;
        text-align: center;
    }

    .mobile-phone-button {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 10px auto;
        box-shadow: none;
        max-width: 280px;
        width: 100%;
    }

    .mobile-phone-number {
        color: #1f2937;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .mobile-contact-note {
        font-size: 10px;
        line-height: 1.6;
        color: #6b7280;
        text-align: center;
        padding: 0 8px;
    }

    /* Floating CTA */
    .floating-cta {
        display: flex !important;
        z-index: 997;
    }
    .scroll-progress {
        display: block;
    }
}

/* Floating CTA for mobile */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(91.62deg, rgba(233, 30, 99, 0.9) 0%, rgba(233, 30, 99, 1) 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    min-height: 52px;
    display: none !important;
    align-items: center;
    justify-content: center;
    transition: all var(--animation-speed);
}

.floating-cta:hover {
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 480px) {
    body {
        padding-top: 30px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        min-height: 50px;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-svg {
        height: 100%;
        max-width: 220px;
    }
    
    .mobile-header-section {
        margin-top: 40px; 
    }
    
    .floating-cta {
        display: flex !important;
        width: 70%;
        font-size: 15px;
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        font-size: 20px;
        border-radius: 8px;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .job-tag:active,
    .condition-item:active {
        background: #f3f4f6 !important;
        transform: scale(0.98) !important;
    }
}

/* Features Section - 4 Center Strength Points */
/* Desktop Version - Align with 769px breakpoint */
@media (min-width: 769px) {
    .features-section {
        margin-bottom: var(--section-gap);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature-card {
        background: linear-gradient(117.92deg, rgba(252, 231, 243, 0.5) 0%, rgba(239, 246, 255, 0.5) 100%);
        border-radius: 10px;
        width: 100%;
        height: auto;
        position: relative;
        padding: 14px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Version - 2x2 Grid - Align with 768px breakpoint */
@media (max-width: 768px) {
    .features-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px 0;
        height: auto;
    }

    .feature-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 10px;
        width: 100%;
        height: auto;
        min-height: 90px;
        position: relative;
        padding: 10px 8px;
        text-align: center;
        transition: all 0.3s ease;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid #e9ecef;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    }

    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        border-color: #667eea;
    }
}

/* Common styles for both desktop and mobile */
.feature-icon,
.feature-card img[src*="feature-icon"] {
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px;
    margin: 0 auto 6px auto;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon,
.feature-card:hover img[src*="feature-icon"] {
    transform: rotate(3deg) scale(1.05);
}

.feature-title {
    color: #1f2937;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.feature-description {
    color: #6b7280;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .feature-title {
        font-size: 15px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .feature-card {
        padding: 16px 12px;
        min-height: 120px;
    }
}
.mobile-condition-item > .mobile-condition-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Recommended Section */
.recommended-section {
    background: linear-gradient(180deg, #f9fafb, #fff);
    padding: var(--section-gap) 0 0;
    margin-top: 0;
}

.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

.rec-title-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rec-icon {
    font-size: 18px;
}

.rec-title {
    font-size: 20px;
    font-weight: 800;
}

.rec-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-left: 6px;
}

.see-all-link {
    color: var(--amaranth);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
    border-color: #d1d5db;
}

.carousel-inner {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.carousel-inner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95));
    z-index: 2;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.job-card {
    flex: 0 0 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
}

.job-card-code {
    position: absolute;
    bottom: 8px;
    left: 12px;
    font-size: 9px;
    color: #9ca3af;
    font-weight: 600;
    z-index: 1;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--amaranth);
}

.job-card-image {
    height: 110px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 10px;
    overflow: hidden;
}

.job-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.job-card-image.c1 { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #3b82f6; }
.job-card-image.c2 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #ec4899; }
.job-card-image.c3 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #22c55e; }
.job-card-image.c4 { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #f59e0b; }

.card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: var(--amaranth);
}

.card-badge.popular {
    background: #f59e0b;
}

.card-fav {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 12px;
    color: #9ca3af;
    cursor: pointer;
    display: none;
}

.card-fav:hover {
    color: var(--amaranth);
}

.job-card-content {
    padding: 10px 12px;
}

.card-category {
    font-size: 9px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.card-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-location {
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 2px;
}

.card-salary {
    font-size: 10px;
    font-weight: 600;
    color: var(--amaranth);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e5e7eb;
}

.dot.active {
    width: 18px;
    border-radius: 3px;
    background: var(--amaranth);
}

@media (max-width: 768px) {
    .m-rec-section {
        background: #f9fafb;
        padding: 14px 0 18px;
        margin-top: 10px;
    }

    .m-rec-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
        margin-bottom: 10px;
    }

    .m-rec-title {
        font-size: 14px;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .m-see-all {
        font-size: 11px;
        color: var(--amaranth);
        text-decoration: none;
        font-weight: 600;
    }

    .m-rec-wrapper {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0 8px;
    }

    .m-rec-btn {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid #e5e7eb;
        background: #fff;
        font-size: 14px;
        color: #6b7280;
        cursor: pointer;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .m-rec-scroll {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .m-rec-scroll::-webkit-scrollbar {
        display: none;
    }

    .job-card-image {
        height: 70px;
    }

    .m-rec-card {
        flex: 0 0 120px;
        background: #fff;
        border-radius: 8px;
        border: 1px solid #f3f4f6;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        position: relative;
    }

    .m-rec-card-code {
        position: absolute;
        bottom: 4px;
        left: 6px;
        font-size: 7px;
        color: #9ca3af;
        font-weight: 600;
        z-index: 1;
    }

    .m-rec-image {
        height: 65px;
        background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
        color: #9ca3af;
        position: relative;
        overflow: hidden;
    }

    .m-rec-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .m-rec-badge {
        position: absolute;
        top: 6px;
        left: 6px;
        background: var(--amaranth);
        color: #fff;
        font-size: 9px;
        padding: 2px 6px;
        border-radius: 8px;
    }

    .m-rec-badge.popular {
        background: #f59e0b;
    }

    .m-rec-content {
        padding: 8px 10px;
    }

    .m-rec-category {
        font-size: 9px;
        font-weight: 600;
        color: #6366f1;
        margin-bottom: 2px;
    }

    .m-rec-job-title {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 3px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .m-rec-salary {
        font-size: 9px;
        color: var(--amaranth);
        font-weight: 600;
    }

    .m-rec-content {
        padding: 6px 8px;
    }
}
/* FONT-MARKER */

@font-face {
    font-family: "Noto Sans JP";
    src: url("../css/fonts/NotoSansJP-300-1.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../css/fonts/NotoSansJP-400-1.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../css/fonts/NotoSansJP-500-1.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../css/fonts/NotoSansJP-700-1.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("../css/fonts/NotoSansJP-900-1.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
