/**
 * Member Page Styles - Consultant Introduction
 * コンサルタント紹介ページ専用スタイル
 * 
 * @package YoungBush
 */

/* ========================================
   ページ全体の設定
======================================== */
.member-page {
    background: #ffffff;
}

.member-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   メンバーグリッド
======================================== */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.member-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8ebe9;
}

.member-card:hover {
    box-shadow: 0 8px 30px rgba(26, 77, 58, 0.08);
    transform: translateY(-4px);
}

/* ========================================
   メンバー写真
======================================== */
.member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f4f2;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

/* ========================================
   メンバー情報
======================================== */
.member-info {
    padding: 30px 25px;
}

.member-name-ja {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4d3a;
    margin: 0 0 8px 0;
    letter-spacing: 0.03em;
}

.member-name-en {
    font-size: 0.9rem;
    color: #5a6a62;
    margin: 0 0 25px 0;
    font-weight: 400;
}

/* ========================================
   詳細情報
======================================== */
.member-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
    align-items: start;
}

.detail-label {
    font-weight: 600;
    color: #1a4d3a;
    white-space: nowrap;
    min-width: 80px;
}

.detail-separator {
    color: #1a4d3a;
}

.detail-content {
    color: #3a4a42;
    line-height: 1.7;
}

.detail-content a {
    color: #569578;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: #1a4d3a;
    text-decoration: underline;
}

/* 外部リンクアイコン */
.detail-content a[href*="http"]::after {
    content: "↗";
    display: inline-block;
    margin-left: 4px;
    font-size: 0.85em;
    opacity: 0.7;
}

/* ========================================
   追加コンテンツ
======================================== */
.additional-content {
    margin-top: 60px;
    padding: 60px 40px;
    background: #f8faf9;
    border-radius: 12px;
}

.additional-content h2 {
    font-size: 2rem;
    color: #1a4d3a;
    margin-bottom: 30px;
    text-align: center;
}

.additional-content h3 {
    font-size: 1.5rem;
    color: #1a4d3a;
    margin: 40px 0 20px;
}

.additional-content p {
    line-height: 1.8;
    color: #3a4a42;
    margin-bottom: 20px;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 1024px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .member-page .container {
        padding: 0 20px;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
        margin-bottom: 80px;
    }
    
    .member-info {
        padding: 25px 20px;
    }
    
    .member-name-ja {
        font-size: 1.3rem;
    }
    
    .member-name-en {
        font-size: 0.85rem;
    }
    
    .detail-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .detail-label,
    .detail-separator {
        display: inline;
    }
    
    .detail-content {
        margin-top: 5px;
    }
    
    .additional-content {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .member-name-ja {
        font-size: 1.2rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
}

