/* ==========================================================================
   Red Eagles - メンバー募集ページスタイル
   ========================================================================== */

/* === メンバー募集ページ専用スタイル === */

/* メッセージセクション（ダーク背景） */
.staff-message-section {
    background: var(--re-secondary);
    color: var(--re-white);
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 3.5rem 1.5rem;
}

.staff-message-section .message-main {
    font-size: 1.75rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.staff-message-section .message-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.staff-message-section .message-slogan {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--re-primary);
}

/* CTAセクション */
.staff-cta-section {
    text-align: center;
    padding: 3rem 1.5rem;
}

.staff-cta-section p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--re-gray-900);
    margin-bottom: 1.5rem;
}

.staff-cta-button {
    display: inline-block;
    background: var(--re-primary);
    color: var(--re-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.staff-cta-button:hover {
    background: var(--re-primary-dark);
    color: var(--re-white);
}

.staff-cta-button:focus-visible {
    outline: 3px solid var(--re-primary);
    outline-offset: 3px;
    background: var(--re-primary-dark);
    color: var(--re-white);
}

.staff-cta-note {
    margin-top: 1rem;
    color: var(--re-gray-600);
    font-size: 0.9rem;
}

/* === 募集セクション共通 === */
.join-section {
    padding: 3rem 0;
}

.join-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.join-section-white {
    background: var(--re-white);
}

.join-section-alt {
    background: var(--re-gray-100);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.join-section-title {
    color: var(--re-gray-900);
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.join-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--re-primary);
}

.join-section-subtitle {
    text-align: center;
    color: var(--re-gray-600);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* === 選手・スタッフ 2カラムロールカード === */
.join-role-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.join-role-card {
    background: var(--re-gray-50, #fafafa);
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid var(--re-primary);
}

.join-role-card-title {
    color: var(--re-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.join-role-card-lead {
    color: var(--re-gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.join-role-card-text {
    color: var(--re-gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.join-role-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.join-role-card-list li {
    padding: 0.5rem 0 0.5rem 1.25rem;
    position: relative;
    color: var(--re-gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.join-role-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    background: var(--re-primary);
    border-radius: 50%;
}

.join-role-card-note {
    color: var(--re-gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

/* === 活動について（共通情報） === */
.join-activity-section {
    border-top: 1px solid var(--re-gray-200, #e5e5e5);
    padding-top: 2rem;
}

.join-activity-title {
    color: var(--re-gray-900);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.join-activity-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.join-activity-card {
    text-align: center;
    padding: 1.25rem;
}

.join-activity-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--re-primary);
}

.join-activity-card h4 {
    color: var(--re-gray-900);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.join-activity-card p {
    color: var(--re-gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === サポーター募集セクション === */
.join-support-ways {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.join-support-card {
    background: var(--re-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--re-primary);
}

.join-support-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--re-primary);
}

.join-support-card-icon svg {
    width: 40px;
    height: 40px;
}

.join-support-card h3 {
    color: var(--re-gray-900);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.join-support-card p {
    color: var(--re-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.join-support-note {
    text-align: center;
    font-size: 1rem;
    color: var(--re-gray-600);
    line-height: 1.7;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .join-role-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .join-role-card {
        padding: 1.5rem;
    }

    .join-activity-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .join-support-ways {
        grid-template-columns: 1fr;
    }

    .join-section-title {
        font-size: 1.3rem;
    }

    .staff-message-section .message-main {
        font-size: 1.35rem;
    }

    .staff-message-section .message-slogan {
        font-size: 1.1rem;
    }

    .staff-cta-section p {
        font-size: 1.1rem;
    }

    .staff-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
