/* CSS for Recruit Page */

/* Header & Breadcrumb */
.recruit-header {
    background-color: #f5f8fa;
    padding: 120px 0 60px;
    text-align: left;
}

.recruit-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Hero Logo (Responsive) */
.recruit-hero-wrapper {
    text-align: center;
    padding-bottom: 20px;
}

.recruit-hero-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Gap between mark and text */
}

.recruit-hero-logo .logo-mark {
    color: #004d99;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}

.recruit-hero-logo .logo-text {
    color: #000;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}

/* Section Titles */
.recruit-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

/* Info Section (Image) */
.recruit-info-section {
    padding: 60px 0;
    /* Reduced bottom padding */
    text-align: center;
}

.recruit-main-image img {
    width: 100%;
    max-width: 1000px;
    /* Constrain width */
    height: auto;
    border-radius: 4px;
}

/* Job Openings Section */
.job-openings-section {
    padding: 0 0 100px;
    text-align: center;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.job-item {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.job-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.job-banner {
    width: 100%;
    height: 120px;
    /* Fixed height for consistency */
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* Overlay dark gradient to make text readable */
.job-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Stronger gradient from left (dark blue/black) to transparent */
    background: linear-gradient(to right, rgba(0, 51, 102, 0.8) 0%, rgba(0, 51, 102, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.job-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    /* Lighter weight as per typical Japanese design */
    z-index: 2;
    position: relative;
    letter-spacing: 0.1em;
    padding-left: 20px;
    /* Indent text */
    border-left: 4px solid #4da6ff;
    /* Accent line on left */
    line-height: 1.2;
}

.job-arrow {
    color: #fff;
    font-size: 20px;
    z-index: 2;
    position: relative;
    /* Remove background box, just the arrow */
    background: transparent;
    width: auto;
    height: auto;
    margin-right: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recruit-header {
        padding: 100px 0 40px;
    }

    /* Resize Hero Logo for Mobile */
    .recruit-hero-logo {
        gap: 10px;
    }

    .recruit-hero-logo .logo-mark,
    .recruit-hero-logo .logo-text {
        font-size: 40px;
        /* Reduced from 80px */
    }

    /* Adjust Section Titles */
    .recruit-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* Job Banner Adjustments */
    .job-banner {
        height: 80px;
        /* Smaller height for mobile */
        padding: 0 15px;
    }

    .job-title {
        font-size: 14px;
    }

    .job-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    /* Container Padding is handled globally, but ensuring spacing */
    .recruit-info-section {
        padding: 40px 0 40px;
        /* Reduced bottom padding for mobile */
    }

    .job-openings-section {
        padding: 0 0 40px;
    }
}