:root {
    --pressio-red: #e4001b;
    --text-dark: #333;
    --text-muted: #777;
    --card-gray: #dcdcdc;
}

.recruit-page {
    background-color: #fff;
    padding-top: 80px;
    color: var(--text-dark);
}

.main {
    padding: 16px 0 32px;
    min-height: 0;
}

.main .ttl_page {
    margin: 0 0 72px;
}

.job-hero-list {
    display: grid;
    gap: 24px;
}

.job-hero-columns {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.job-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 160px;
    padding: 0 24px 24px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
}

.job-hero--large {
    min-height: 320px;
}

.job-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .46) 100%);
    opacity: 0.72;
    transition: opacity 0.25s ease;
}

.job-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.25s ease;
}

.job-hero:hover::before {
    opacity: 0.88;
}

.job-hero:hover::after {
    background: rgba(255, 255, 255, 0.5);
}

.job-hero-label {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;

    color: #e4001b;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 10px 16px;

    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

@supports ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) {
    .job-hero-label {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

.job-hero:hover .job-hero-label {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.job-hero-001 {
    background-image: url("https://www.pressio.co.jp/wp/wp-content/uploads/2026/01/careerjobPSbanner.png");
}

.job-hero-002 {
    background-image: url("https://www.pressio.co.jp/wp/wp-content/uploads/2026/01/careercompany.png");
}
.job-hero-003 {
    background-image: url("https://www.pressio.co.jp/wp/wp-content/uploads/2026/01/careerenvironment.png");
}

.job-hero-004 {
    background-image: url("https://www.pressio.co.jp/wp/wp-content/uploads/2026/01/careerrequest.png");
}

.job-hero-000 {
    background: var(--card-gray);
}
.job-hero-000::before {
    background: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 768px) {
    .recruit-page {
        padding-top: 64px;
    }

    .job-hero {
        min-height: 160px;
        padding: 0 16px;
        align-items: center;
    }

    .job-hero--large {
        min-height: 160px;
    }

    .job-hero-columns {
        grid-template-columns: 1fr;
    }
    .job-hero-label {
        font-size: 20px;
        padding: 9px 12px;
        letter-spacing: .03em;
        line-height: 1.2;
    }

    .job-hero-list {
        gap: 24px;
    }

    .job-hero-001 {
        background-image: url("https://www.pressio.co.jp/wp/wp-content/uploads/2026/01/careerjobPSbanner.png");
        background-size: cover;
        background-position: center;
    }

    .job-hero-003,
    .job-hero-004 {
        background-size: cover;
        background-position: center;
    }

    }