/* 採用情報ページ専用CSS */

.page-header {
    background: linear-gradient(135deg, #E63946 0%, #C8102E 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0.9;
}

.intro {
    background-color: var(--bg-light);
    text-align: center;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.job-info {
    background-color: white;
}

.job-card {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.job-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--accent-color);
}

.job-table {
    width: 100%;
    border-collapse: collapse;
}

.job-table tr {
    border-bottom: 1px solid var(--border-color);
}

.job-table th {
    width: 180px;
    padding: 25px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-color);
    background-color: var(--bg-light);
    vertical-align: top;
}

.job-table td {
    padding: 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.appeal {
    background-color: var(--bg-light);
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.appeal-card {
    background-color: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.appeal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.appeal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.appeal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.appeal-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.application {
    background-color: white;
}

.application-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E63946 0%, #C8102E 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.application-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.application-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.application-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
}

.contact-value:hover {
    background-color: white;
    color: var(--accent-color);
    opacity: 1;
}

@media (max-width: 1024px) {
    .appeal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .intro-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .job-card {
        padding: 30px 20px;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .job-table {
        display: block;
    }

    .job-table tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: none;
    }

    .job-table th,
    .job-table td {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .job-table th {
        border-bottom: 2px solid var(--accent-color);
    }

    .appeal-grid {
        grid-template-columns: 1fr;
    }

    .application-box {
        padding: 35px 25px;
    }

    .application-title {
        font-size: 1.5rem;
    }

    .application-text {
        font-size: 1rem;
    }

    .application-contact {
        flex-direction: column;
        gap: 20px;
    }

    .contact-value {
        font-size: 1.2rem;
    }
}
