/* ============================================================
   staff-detail.css
   スタッフ詳細ページ (/staff/:id) 専用スタイル
   2026-05-21 リファクタで style.css から分離
   ============================================================ */

/* ========================================
   スタッフ詳細ページ
   ======================================== */

/* ヒーロー */
.rc-staff-hero {
    position: relative;
    height: 520px;
    margin-bottom: 60px;
}

.rc-staff-hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    overflow: hidden;
}

.rc-staff-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-staff-hero-card {
    position: absolute;
    left: 5%;
    bottom: -40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 48px 52px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.rc-staff-hero-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 600;
}

.rc-staff-hero-quote {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    margin-bottom: 24px;
}

.rc-staff-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 17px;
    color: #777;
    line-height: 1.6;
    font-weight: 600;
}

/* インタビュー */
.rc-staff-interview {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 0;
}

.rc-staff-qa {
    margin-bottom: 40px;
}

.rc-staff-question {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rc-staff-q-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #E91E90;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.rc-staff-question p {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    padding-top: 4px;
}

.rc-staff-answer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.rc-staff-a-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    color: #E91E90;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.rc-staff-answer p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    padding-top: 4px;
}

.rc-staff-interview-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.rc-staff-interview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* プロフィール */
.rc-staff-profile {
    display: flex;
    gap: 40px;
    max-width: 820px;
    margin: 0 auto;
    align-items: flex-start;
}

.rc-staff-profile-image {
    width: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.rc-staff-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rc-staff-profile-info {
    flex: 1;
}

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

.rc-staff-profile-table th {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #E91E90;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(233, 30, 144, 0.2);
    white-space: nowrap;
    vertical-align: top;
    width: 120px;
}

.rc-staff-profile-table td {
    font-size: 14px;
    color: #555;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(233, 30, 144, 0.2);
    line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
    

    .rc-staff-hero {
        height: 360px;
    }

    .rc-staff-hero {
        height: auto;
        margin-bottom: 0;
    }

    .rc-staff-hero-bg {
        position: relative;
        width: 100%;
        height: 360px;
    }

    .rc-staff-hero-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -60px 0 0;
        max-width: none;
        padding: 32px 24px;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .rc-staff-hero-quote {
        font-size: 17px;
    }

    .rc-staff-hero-meta {
        font-size: 12px;
    }

    .rc-staff-interview {
        padding: 32px 0;
    }

    .rc-staff-question p {
        font-size: 15px;
    }

    .rc-staff-answer p {
        font-size: 14px;
    }

    .rc-staff-profile {
        flex-direction: column;
        align-items: center;
    }

    .rc-staff-profile-image {
        width: 160px;
    }

    .rc-staff-profile-table th {
        width: 100px;
        font-size: 12px;
    }

    .rc-staff-profile-table td {
        font-size: 13px;
    }
}

