/* 採用ページ専用スタイル */

/* ヒーローセクション */
.recruit-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 6rem 0;
    text-align: center;
}

.recruit-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 300;
}

.recruit-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #ff6b9d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.recruit-hero .hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
}

/* パンフレットセクション */
.recruit-pamphlet {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8cc 100%);
    padding: 4rem 0;
    text-align: center;
}

.recruit-pamphlet h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.recruit-pamphlet p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.recruit-pamphlet .btn {
    background: white;
    color: #ff6b9d;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.recruit-pamphlet .btn:hover {
    background: #fff5f8;
    transform: translateY(-2px);
}

/* 魅力セクション */
.recruit-appeal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.recruit-appeal-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 192, 203, 0.2);
}

.recruit-appeal-card img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.recruit-appeal-card h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.recruit-appeal-card p {
    color: #666;
    line-height: 1.8;
}

/* 給与・待遇 */
.recruit-salary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8cc 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.recruit-salary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.recruit-salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.recruit-salary-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.recruit-salary-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.recruit-salary-item .amount {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.recruit-salary-item .detail {
    font-size: 1rem;
    opacity: 0.9;
}

/* モデル月収 */
.recruit-model-salary {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 192, 203, 0.2);
}

.recruit-model-salary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
    color: #2c2c2c;
}

.recruit-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.recruit-model-card {
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.recruit-model-card--pink {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8cc 100%);
}

.recruit-model-card--blue {
    background: linear-gradient(135deg, #6b9dff 0%, #8caaff 100%);
}

.recruit-model-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.recruit-model-breakdown {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.recruit-model-breakdown .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.recruit-model-breakdown .total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.recruit-model-breakdown .note {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.recruit-model-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* 働く環境 */
.recruit-env-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.recruit-env-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 192, 203, 0.2);
}

.recruit-env-card img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto 1rem;
}

.recruit-env-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-align: center;
}

.recruit-env-card ul {
    line-height: 1.8;
    color: #666;
}

/* 応募条件 */
.recruit-requirements {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recruit-requirements h3 {
    margin-bottom: 1.5rem;
    color: #ff6b9d;
    font-size: 1.5rem;
    text-align: center;
}

.recruit-requirements ul {
    line-height: 2;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.recruit-requirements .section-gap {
    margin-top: 3rem;
}

/* 応募方法 */
.recruit-apply {
    text-align: center;
}

.recruit-apply p {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    color: #2c2c2c;
}

.recruit-apply-buttons {
    margin-bottom: 3rem;
}

.recruit-apply-buttons .btn {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    margin: 1rem;
    display: inline-block;
}

.recruit-apply .line-recommend {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8) 0%, rgba(255, 228, 238, 0.8) 100%);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(255, 192, 203, 0.3);
}

.recruit-apply .line-recommend .highlight {
    color: #ff6b9d;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recruit-apply .line-recommend p {
    color: #2c2c2c;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.recruit-apply .documents {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.recruit-apply .documents h4 {
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.recruit-apply .documents p {
    color: #2c2c2c;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

/* 業務委託バナー */
.recruit-commission-banner {
    background: linear-gradient(135deg, #fff5f8 0%, #fffaf8 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid #f4c7d4;
}

.recruit-commission-banner h3 {
    font-size: 1.5rem;
    color: #5a4a42;
    margin-bottom: 1rem;
}

.recruit-commission-banner p {
    color: #7a6a62;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.recruit-commission-banner .btn-labeaute {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f4c7d4 0%, #e8b4c8 100%);
    color: #5a4a42;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #f4c7d4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 199, 212, 0.3);
    border-radius: 4px;
}

.recruit-commission-banner .btn-labeaute:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 199, 212, 0.4);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .recruit-hero h1 {
        font-size: 1.8rem;
    }

    .recruit-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .recruit-salary {
        padding: 2rem 1rem;
    }

    .recruit-salary h3 {
        font-size: 1.5rem;
    }

    .recruit-salary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .recruit-salary-item .amount {
        font-size: 1.5rem;
    }

    .recruit-model-salary {
        padding: 2rem 1rem;
    }

    .recruit-model-salary h3 {
        font-size: 1.5rem;
    }

    .recruit-model-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .recruit-model-card {
        padding: 1.5rem;
    }

    .recruit-model-card h4 {
        font-size: 1.2rem;
    }

    .recruit-model-breakdown {
        padding: 1rem;
    }

    .recruit-apply-buttons .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }
}
