@charset "UTF-8";

/* =========================================
   1. GLOBAL & VARS
   ========================================= */
:root {
    --primary-color: #FE222C;
    --secondary-color: #2c5e4f;
    --accent-color: #eab308;
    --text-color: #333333;
    --bg-color: #ffffff;
    --gray-light: #f4f5f7;
    --gray-border: #ddd;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Inter', 'Noto Sans JP', sans-serif;
}

/* =========================================
   3. COMMON LAYOUT & TYPOGRAPHY
   ========================================= */
section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 0.05em;
}

.section-title span {
    display: block;
    font-size: 14px;
    color: #FE222C;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.section-label {
    font-size: 14px;
    color: #FE222C;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Animation Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   RECRUIT HERO
   ========================================= */
.recruit-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.recruit-hero::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url('../../images/recuruite.png') center/cover no-repeat;
    filter: blur(8px);
    z-index: -2;
}

.recruit-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.recruit-hero h1 {
    font-size: 56px;
    font-weight: 300;
    color: #333;
    z-index: 1;
    letter-spacing: 0.05em;
    position: relative;
    margin-bottom: 0px;
}

.recruit-hero p {
    font-size: 18px;
    color: #FE222C;
    letter-spacing: 0.1em;
    z-index: 1;
}

.recruit-message-box {
    background-color: var(--gray-light) !important;
}

/* Parallax Shapes */
.hero-circle {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hc-1 {
    width: 400px;
    height: 400px;
    background: rgba(58, 125, 104, 0.05);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    opacity: 0.5;
}

.hc-2 {
    width: 300px;
    height: 300px;
    background: rgba(58, 125, 104, 0.08);
    bottom: 50px;
    right: -50px;
    border-radius: 50%;
    opacity: 0.5;
}

/* =========================================
   RECRUIT CONTENT
   ========================================= */
.message-box {
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 100px;
    text-align: center;
    border: 1px solid #eee;
}

.message-text {
    font-size: 16px;
    line-height: 2.2;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.highlight-keyword {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(transparent 70%, yellow 70%);
    padding: 0 5px;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.req-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
    transition: var(--transition);
}

.req-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.req-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.req-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.req-tag {
    font-size: 12px;
    background: #f0f4f8;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Ideal Persona */
.ideal-persona {
    background-color: var(--gray-light);
    padding: 0px;
    padding-bottom: 50px;
}

.check-list {
    max-width: 600px;
    margin: 0 auto;
}

.check-item {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 500;
}

.check-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

/* Entry Area */
.entry-area {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    border-radius: 10px;
}

.entry-btn {
    display: inline-block;
    background: #6C676E;

    color: #fff;
    padding: 15px 50px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(204, 204, 204, 1);
    transition: var(--transition);
}

.entry-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(204, 204, 204, 1);
}

.company-info-section {
    background-color: var(--gray-light);
    background-image: linear-gradient(rgba(58, 125, 104, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 125, 104, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}
/* Responsive */
@media (max-width: 768px) {
    .recruit-hero h1 {
        font-size: 40px;
    }
}