@charset "UTF-8";

/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.nentry-container {
    max-width: 1000px;
    /* Reduced width for focus */
    margin: 0 auto;
    padding: 40px 20px 150px;
}

/* Hero Section */
.hero-parttime {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title-img {
    width: 600px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Intro Text */
.intro-parttime {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: left;
}

/* Common Section Styles */
.section-parttime {
    margin-bottom: 60px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #de1414;
    padding-left: 10px;
    border-left: 5px solid #de1414;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* Job List (業務内容) */
.section-job-content {
    margin-bottom: 100px;
    /* Increased spacing as requested */
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.job-label {
    background-color: #ff6b6b;
    color: #fff;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 4px;
    width: 180px;
    /* Changed from min-width to fixed width */
    flex-shrink: 0;
    /* Prevent shrinking */
    text-align: center;
    font-size: 14px;
}

.job-desc {
    font-size: 15px;
}

/* Voices (業務例) */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    /* Center items horizontally */
}

.voice-item {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    /* Changed to fluid width */
    max-width: 940px;
    /* Max width matches previous fixed width */
    margin: 0 auto;
    /* Center it */
}

.voice-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.voice-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.voice-content {
    flex-grow: 1;
    /* Fill the fixed width */
    width: auto;
}

.voice-header {
    border-bottom: 1px solid #ccc;
    /* Added separator */
    margin-bottom: 15px;
    padding-bottom: 10px;
    display: block;
    /* Restored to block to fill parent width */
}

.voice-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0;
}

.voice-text {
    font-size: 14px;
    line-height: 1.8;
    background: transparent;
    /* Removed background */
    padding: 0;
    /* Removed padding */
    border-radius: 0;
}

.voice-text::before {
    content: none;
}

/* Recommend (こんな方におすすめ) */
.section-recommend {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    /* Removed gap for overlap/tight alignment */
}

.recommend-image img {
    max-width: 480px;
    /* Increased from 380px */
    margin-bottom: 0;
    display: block;
    position: relative;
    /* Ensure stacking context */
    z-index: 1;
}

.recommend-list {
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-left: -40px;
    /* Overlap image */
    flex-shrink: 0;
    /* Prevent text wrapping */
    position: relative;
    z-index: 2;
    /* Text above image */
}

.recommend-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    white-space: nowrap;
    /* Force single line */
}

.recommend-list li::before {
    content: "✔";
    color: #000;
    /* Changed to black to match image */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* Requirements Table (募集要項) - Styling similar to previous but simplified */
.requirements-table {
    border-top: 1px solid #eee;
}

/* Use .req-row from previous recruit css if copied, redefining here for autonomy */
.req-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    gap: 30px;
    /* Added gap for spacing */
}

.req-row dt {
    width: 150px;
    font-weight: bold;
    color: #de1414;
    flex-shrink: 0;
}

.req-row dd {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.8;
}

/* Entry Button */
.entry-btn-container {
    text-align: center;
    margin: 25px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-entry-img {
    position: relative;
    left: 20px;
}

.btn-entry-img img {
    width: 300px;
    max-width: 90%;
    height: auto;
    transition: transform 0.2s;
}

.btn-entry-img:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nentry-container {
        padding: 30px 20px 60px;
    }

    .hero-title-img {
        width: 100%;
    }

    /* Job Content */
    .section-job-content {
        margin-bottom: 60px;
    }

    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 15px;
    }

    .job-label {
        width: auto;
        display: inline-block;
        min-width: 120px;
    }

    /* Voice Section */
    .voice-list {
        gap: 30px;
    }

    .voice-item {
        display: block;
        /* Disable flex to allow relative/absolute positioning */
        position: relative;
        width: 100%;
        min-height: 80px;
        /* Ensure height for icon */
        margin-bottom: 30px;
        /* Add spacing between items */
    }

    .voice-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
    }

    .voice-content {
        display: block;
        width: 100%;
    }

    .voice-header {
        text-align: left;
        margin-left: 100px;
        /* Icon width (80px) + Gap (20px) */
        min-height: 80px;
        /* Align with icon height */
        display: flex;
        align-items: center;
        border-bottom: 1px solid #ccc;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .voice-name {
        width: 100%;
    }

    .voice-text {
        padding-top: 10px;
    }

    /* Requirements */
    .req-row {
        display: block;
        padding: 15px 0;
    }

    .req-row dt {
        width: 100%;
        margin-bottom: 8px;
        padding-left: 0;
        /* Remove padding */
        border-left: none;
        /* Remove border */
    }

    /* Recommend Section */
    .section-recommend {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 40px 0;
    }

    .recommend-image img {
        max-width: 100%;
        width: 80%;
        margin: 0 auto;
    }

    .recommend-list {
        margin-left: 0;
        /* Reset negative margin */
        width: 100%;
        padding: 0 10px;
        text-align: left;
    }

    .recommend-list li {
        white-space: normal;
        /* Allow wrapping on small screens */
        font-size: 15px;
    }

    /* Entry Button */
    .entry-btn-container {
        margin: 40px 0 80px;
    }
}