/* --- 招聘页面专属样式 --- */

body {
    line-height: 2.2;
}

.container {
    max-width: 1000px;
}

.page-header {
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}

.logo-seal {
    display: inline-block;
    border: 2px solid var(--seal-red);
    color: var(--seal-red);
    padding: 10px 20px;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-title {
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 0.2em;
    font-family: var(--font-title);
}

.page-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
    letter-spacing: 0.1em;
}

.back-link {
    position: absolute;
    top: 60px;
    left: 40px;
    text-decoration: none;
    color: var(--ink-color);
    opacity: 0.5;
    font-size: 0.9rem;
}

.back-link:hover {
    opacity: 1;
}

.manifesto-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 120px;
    align-items: center;
}

.manifesto-text-v {
    writing-mode: vertical-rl;
    height: 350px;
    font-family: var(--font-title);
    font-size: 1.1rem;
    line-height: 2.5;
    color: #5d5553;
}

.highlight {
    color: var(--seal-red);
}

.manifesto-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%) contrast(0.9) brightness(1.1);
    mask-image: radial-gradient(white 80%, transparent 100%);
}

.jobs-section {
    margin-bottom: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    font-weight: normal;
}

.section-subtitle {
    font-size: 0.8rem;
    color: #999;
}

.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.job-card {
    border: 1px solid rgba(56, 48, 46, 0.2);
    padding: 40px;
    background: #fff;
    transition: all 0.5s ease;
    position: relative;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(56, 48, 46, 0.08);
    border-color: var(--seal-red);
}

.job-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--ink-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-family: var(--font-title);
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.job-desc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.job-desc-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.job-desc-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--seal-red);
}

.apply-section {
    background: rgba(138, 59, 52, 0.05);
    padding: 60px;
    text-align: center;
    border: 1px dashed rgba(138, 59, 52, 0.3);
}

.apply-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: var(--font-title);
}

.apply-text {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #555;
}

.apply-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
    display: block;
}

.apply-btn {
    display: inline-block;
    background-color: var(--seal-red);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.2em;
    transition: opacity 0.3s;
}

.apply-btn:hover {
    opacity: 0.8;
}

.apply-email {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 768px) {
    .manifesto-section {
        grid-template-columns: 1fr;
    }

    .manifesto-text-v {
        writing-mode: horizontal-tb;
        height: auto;
        margin-bottom: 30px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .back-link {
        display: none;
    }
}
