@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    scroll-behavior: smooth;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.3) 1px, transparent 0),
        radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.4) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.6;
}

.recruit-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .recruit-card {
        padding: 2.5rem 2.5rem;
    }
}

.recruit-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.recruit-badge--closed {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.recruit-badge--open {
    background: linear-gradient(90deg, #0047FF 0%, #6366F1 100%);
    color: #ffffff;
}

.recruit-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.recruit-heading [data-lucide] {
    flex-shrink: 0;
    color: #3b82f6;
}

.recruit-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.recruit-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #475569;
}

.recruit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #3b82f6;
}

.recruit-list li:last-child {
    margin-bottom: 0;
}

.recruit-list li strong {
    color: #0f172a;
}

@media (max-width: 768px) {
    header {
        backdrop-filter: blur(8px);
    }
}
