/* =============================================
   RECRUIT PAGE - recruit.css
   ============================================= */

/* ===== OUR MISSION ===== */
.rc-mission {
    border-bottom: 1px solid #f0f0f0;
}

.rc-mission-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.rc-mission-left {
    flex: 0 0 45%;
}

.rc-mission-right {
    flex: 1;
}

.rc-mission-catch {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
}

.rc-mission-text {
    font-size: 0.9375rem;
    color: #555;
    line-height: 2;
    margin-bottom: 16px;
}

.rc-mission-text:last-child {
    margin-bottom: 0;
}

/* ===== FEATURES & PERSONALITY 共通 ===== */
.rc-features {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.rc-personality {
    border-bottom: 1px solid #f0f0f0;
}

.rc-features-catch {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 48px;
    text-align: center;
}

.rc-features-catch em {
    font-family: 'Jost', sans-serif;
    font-style: italic;
    font-weight: 600;
    color: #ff6600;
}

.rc-features .about-section-inner,
.rc-personality .about-section-inner {
    max-width: 1100px;
}

.rc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rc-feature-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rc-personality .rc-feature-card {
    background: #f9f9f9;
}

.rc-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.rc-feature-num {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #ff6600;
    display: block;
    padding: 24px 24px 12px;
}

.rc-feature-image {
    margin: 0 16px;
    border-radius: 12px;
    overflow: hidden;
}

.rc-feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rc-feature-card:hover .rc-feature-image img {
    transform: scale(1.05);
}

.rc-feature-image--accent {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.rc-new-normal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rc-new-normal-arrow {
    font-size: 2rem;
    color: #ff6600;
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.rc-new-normal-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

.rc-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 20px 24px 8px;
    text-align: center;
}

.rc-feature-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.9;
    padding: 0 24px 28px;
}

/* ===== RECRUIT 募集要項 ===== */
.rc-recruit {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.rc-recruit .about-section-inner {
    max-width: 1100px;
}

.rc-recruit-catch {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 24px;
}

.rc-recruit-badge {
    text-align: center;
    margin-bottom: 48px;
}

.rc-recruit-badge span {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 4px;
}

.rc-recruit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.rc-recruit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.rc-recruit-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    transition: background 0.3s;
}

.rc-recruit-toggle:hover {
    background: #fafafa;
}

.rc-recruit-toggle-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.rc-recruit-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.rc-recruit-toggle[aria-expanded="false"] .rc-recruit-toggle-icon {
    transform: rotate(180deg);
}

.rc-recruit-body.is-open {
    max-height: none;
}

.rc-recruit-table {
    width: 100%;
    border-collapse: collapse;
}

.rc-recruit-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.rc-recruit-table tr:last-child {
    border-bottom: none;
}

.rc-recruit-table th {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    padding: 20px 20px;
    width: 100px;
    vertical-align: top;
    white-space: nowrap;
    background: #fafafa;
}

.rc-recruit-table td {
    font-size: 0.85rem;
    color: #555;
    padding: 20px 20px;
    line-height: 1.8;
}

.rc-recruit-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.rc-recruit-list li {
    list-style: disc;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 4px;
}

.rc-recruit-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.8;
}

/* ===== ユーティリティ ===== */
.rc-mt-8 {
    margin-top: 8px;
}

.rc-mt-12 {
    margin-top: 12px;
}

.rc-bold {
    font-weight: 700;
    color: #1a1a1a;
}

/* ===== ENTRY ===== */
.rc-entry {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.rc-entry .about-section-inner {
    max-width: 1100px;
}

.rc-entry-content {
    text-align: center;
    margin-bottom: 48px;
}

.rc-entry-catch {
    font-family: 'Jost', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    font-style: italic;
    color: #ff6600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.rc-entry-text {
    font-size: 1rem;
    color: #555;
    line-height: 2.2;
}

.rc-entry-form-area {
    max-width: 640px;
    margin: 0 auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
    .rc-mission-layout {
        flex-direction: column;
        gap: 32px;
    }

    .rc-mission-left {
        flex: none;
    }

    .rc-mission-catch {
        font-size: 1.5rem;
    }

    .rc-features-catch {
        font-size: 1.375rem;
        margin-bottom: 32px;
    }

    .rc-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }

    .rc-feature-image img,
    .rc-feature-image--accent {
        height: 220px;
    }

    .rc-recruit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rc-recruit-table th {
        display: block;
        width: 100%;
        padding: 16px 16px 4px;
        background: transparent;
        border-bottom: none;
    }

    .rc-recruit-table td {
        display: block;
        padding: 4px 16px 16px;
    }

    .rc-recruit-table tr {
        border-bottom: 1px solid #f0f0f0;
    }

    .rc-entry-catch {
        font-size: 2rem;
    }

    .rc-entry-text {
        font-size: 0.875rem;
    }

    .rc-entry-form-area {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .rc-feature-num {
        font-size: 1.5rem;
        padding: 16px 16px 8px;
    }

    .rc-feature-image {
        margin: 0 12px;
    }

    .rc-feature-title {
        padding: 16px 16px 8px;
    }

    .rc-feature-desc {
        padding: 0 16px 20px;
        font-size: 0.8rem;
    }
}
