/*
修正
*/
.recruit-page {
    background-color: #fff;
    padding-top: 80px;
}

.page-header {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.667em;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-header .subtitle {
    font-size: 1.333em;
    line-height: 1.8;
    margin-top: 20px;
}

.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

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

.main h2 {
    font-size: 2em;
}

.section-title .en-title {
    color: #999;
    font-size: 1.333em;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
}

.work-description-list {
    margin: 40px 0;
}

.work-item {
    background: #f8f9fa;
    border-left: 4px solid #d32f2f;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.work-item h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.work-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.8;
}

.schedule-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.schedule-list {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.schedule-time {
    font-size: 1.667em;
    font-weight: bold;
    color: #d32f2f;
    min-width: 100px;
}

.schedule-content {
    flex: 1;
    color: #666;
}

.interview-section {
    padding: 50px 0;
}

.interview-qa {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.interview-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.interview-q-mark {
    background: #d32f2f;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

.interview-q-text {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    padding-top: 8px;
}

.interview-answer {
    margin-left: 55px;
    color: #666;
    line-height: 1.8;
}

.message-section {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.message-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.message-section p {
    font-size: 1em;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

.main p {
    font-size: 1.333em;
}

.recruit-info-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.info-table {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: #f8f9fa;
    padding: 20px 25px;
    font-weight: bold;
    color: #333;
    min-width: 200px;
    border-right: 1px solid #e0e0e0;
}

.info-content {
    padding: 20px 25px;
    color: #666;
    flex: 1;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }

    .page-header .subtitle {
        text-align: left;
    }

    .message-section p {
        font-size: 0.8em;
    }

    .message-section p:not(.en-title) {
        text-align: left;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule-time {
        margin-bottom: 10px;
    }

    .info-row {
        flex-direction: column;
    }

    .info-label {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        min-width: auto;
    }

    .interview-answer {
        margin-left: 0;
        margin-top: 15px;
    }
}