

/* ============================================
   Recruitment Hero Section
   ============================================ */
.recruitment-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruitment-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.recruitment-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruitment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 1, 0.5) 0%, rgba(12, 39, 101, 0.5) 100%);
    z-index: 1;
}

.recruitment-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.recruitment-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.recruitment-hero-subtitle {
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ============================================
   New Graduate Section
   ============================================ */
.new-graduate-section {
    padding: 80px 0;
    position: relative;
}

/* Background decoration */
.new-graduate-section {
    padding: 80px 0;
    background-image: url(../images/product/uzumaki_bg.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 40%;
    position: relative;
}
/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Information Table */
.info-table {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    border-bottom: 1px solid #e0e0e0;
    min-height: 80px;
    padding: 2em 0;
}



.info-label {
    background-color: #001a4d;
    color: #fff;
    padding: 15px 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content {
    padding: 15px 20px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #333;
    display: flex;
    align-items: center;
}

/* Entry Button Wrapper */
.entry-button-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.entry-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(90deg, #0099ff 0%, #40419B 100%);
    color: #fff;
    padding: 40px 80px;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 60%;
    letter-spacing: 2px;
}

.entry-button:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.entry-button .arrow {
    font-size: 20px;
}

/* ============================================
   Responsive Design (Tablet)
   ============================================ */
@media (max-width: 1024px) {
    .new-graduate-section::before {
        display: none;
    }

    .info-row {
        grid-template-columns: 120px 1fr;
    }

    .info-label {
        padding: 12px 15px;
        font-size: 13px;
    }

    .info-content {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* ============================================
   Responsive Design (Smartphone)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .recruitment-hero {
        height: 200px;
    }

    .recruitment-hero-title {
        font-size: 28px;
    }

    .recruitment-hero-subtitle {
        font-size: 12px;
    }

    .new-graduate-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .info-row {
        grid-template-columns: 100px 1fr;
        min-height: 70px;
    }

    .info-label {
        padding: 10px 12px;
        font-size: 12px;
    }

    .info-content {
        padding: 10px 12px;
        font-size: 12px;
    }

    .entry-button {
        padding: 15px 50px;
        font-size: 16px;
        gap: 10px;
    }

    .entry-button .arrow {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .recruitment-hero {
        height: 150px;
    }

    .recruitment-hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 26px;
    }

    .info-row {
        grid-template-columns: 80px 1fr;
        min-height: 60px;
    }

    .info-label {
        padding: 8px 10px;
        font-size: 11px;
    }

    .info-content {
        padding: 8px 10px;
        font-size: 11px;
    }

    .entry-button {
        padding: 12px 40px;
        font-size: 14px;
    }
}
