/* ==========================================================================
   Staff Page
   ========================================================================== */

/* ===== Hero ===== */
.about-hero {
    background: #f5f5f5;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

.about-hero-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
}

.about-hero-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.about-hero-company {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.about-hero-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #1a1a1a;
}

.about-hero-title {
    position: relative;
    display: inline-block;
}

.about-hero-title-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(4rem, 11vw, 8rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
    position: relative;
    z-index: 1;
}

.about-hero-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: #ff6600;
    z-index: 0;
}

/* ===== Shared Section ===== */
.about-section {
    background: #fff;
    position: relative;
    z-index: 1;
}

.about-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
}

.about-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about-section-en {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    color: #ff6600;
    letter-spacing: 0.05em;
}

/* ===== Intro ===== */
.staff-intro-catch {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.staff-intro-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
}

/* ===== Numbers ===== */
.staff-numbers {
    background: #fafafa;
}

.staff-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.staff-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.staff-number-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 3px solid #ff6600;
    transition: transform 0.3s ease;
}

.staff-number-card:hover {
    transform: translateY(-4px);
}

.staff-number-value {
    font-family: 'Jost', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6600;
    line-height: 1;
    display: inline;
}

.staff-number-unit {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6600;
    margin-left: 4px;
}

.staff-number-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    margin-top: 12px;
}

/* ===== Staff Cards ===== */
.staff-card {
    display: flex;
    gap: 28px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    border-left: 4px solid #ff6600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:last-child {
    margin-bottom: 0;
}

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

.staff-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #fff5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-card-body {
    flex: 1;
}

.staff-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.staff-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-card-national {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    background: #ff6600;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.staff-card-count {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff6600;
    background: #fff5ee;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.staff-card-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 16px;
}

.staff-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.staff-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff6600;
    background: #fff;
    border: 1px solid #ffe0cc;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== Message ===== */
.staff-message {
    background: #fafafa;
}

.staff-message-box {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #ff6600;
}

.staff-message-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.staff-message-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
}

/* ===== CTA ===== */
.about-cta {
    background: #ff6600;
    position: relative;
    z-index: 1;
}

.about-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.about-cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta-tel {
    font-family: 'Jost', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
}

.about-cta-tel:hover {
    opacity: 0.8;
}

.about-cta-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-hero {
        min-height: 320px;
        padding: 0 24px;
    }

    .about-hero-title-text {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .about-section-inner {
        padding: 64px 24px;
    }

    .staff-intro-catch {
        font-size: 1.375rem;
    }

    .staff-numbers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .staff-number-card {
        padding: 28px 20px;
    }

    .staff-number-value {
        font-size: 2.5rem;
    }

    .staff-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .staff-card-icon {
        width: 52px;
        height: 52px;
    }

    .staff-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .staff-card-title {
        font-size: 1.1rem;
    }

    .staff-message-box {
        padding: 32px 24px;
    }

    .about-cta-inner {
        padding: 60px 24px;
    }

    .about-cta-tel {
        font-size: 2rem;
    }
}
