/* ==========================================================================
   メンバー紹介ページ専用スタイル
   ========================================================================== */

/* ページ全体の背景設定 */
.scroll-content-wrapper {
    background-color: rgba(255, 255, 255, 1.0);
}

/* メンバープロフィールセクション */
.member-profile {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    border-bottom: 1px solid #f0f0f0;
}

/* 偶数番目のセクションはレイアウトを反転 */
.member-profile:nth-child(even) {
    flex-direction: row-reverse;
}

.member-image-wrapper {
    flex: 0 0 250px;
}
.member-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member-details {
    flex: 1;
}
.member-name {
    font-size: 2.5rem;
    color: var(--gray_dark);
}

.member-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 15px;
}

/* メンバー個人のSNSリンク */
.member-social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #ffffff;
    text-decoration: none;
}