@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
メンバーページ共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/* メンバー一覧ページ */
.member-archive-page {
    padding-top: 70px; /* ヘッダーの高さ分のパディング */
}

.member-archive-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 60px;
}

.archive-title {
    text-align: center;
    margin: 0;
}

.archive-title-en {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.archive-title-jp {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.member-archive-content {
    padding: 0 0 80px 0;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.member-pagination {
    text-align: center;
    margin-top: 60px;
}

.no-posts {
    text-align: center;
    padding: 60px 0;
    color: #6c757d;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
メンバー詳細ページ
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
article.member-single {
    padding: 50px 0px 10px;
}


.member-single {
    padding-top: 70px; /* ヘッダーの高さ分のパディング */
}

/* メンバーヒーローセクション */
.member-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 60px;
}

.member-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-image {
    flex-shrink: 0;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.member-photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #6c757d;
    font-size: 14px;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.member-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.member-category {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* メンバーコンテンツセクション */
.member-content {
    padding: 0 0 80px 0;
}

.member-details {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #495057;
}

.member-details h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.member-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 30px 0 15px 0;
}

.member-details p {
    margin-bottom: 20px;
}

.member-details ul {
    margin: 20px 0;
    padding-left: 20px;
}

.member-details li {
    margin-bottom: 8px;
}

/* 他のメンバーセクション */
.member-others {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-en {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.section-title-jp {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.member-archive-link {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
    .member-archive-page {
        padding-top: 70px; /* ヘッダーの高さ分のパディング（モバイルでも同じ） */
    }
    
    .member-archive-hero {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .archive-title-jp {
        font-size: 2rem;
    }
    
    .member-archive-content {
        padding: 0 0 60px 0;
    }
    
    .member-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }
    
    .member-archive-card-link {
        padding: 20px 10px;
    }
    
    .member-archive-photo,
    .member-archive-photo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .member-archive-name {
        font-size: 1.1rem;
    }
    
    .member-single {
        padding-top: 70px; /* ヘッダーの高さ分のパディング（モバイルでも同じ） */
    }
    
    .member-hero {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .member-profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .member-photo,
    .member-photo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .member-name {
        font-size: 2rem;
    }
    
    .member-content {
        padding: 0 0 60px 0;
    }
    
    .member-others {
        padding: 60px 0;
    }
    
    .member-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-jp {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .archive-title-jp {
        font-size: 1.75rem;
    }
    
    .member-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .member-archive-photo,
    .member-archive-photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .member-archive-card-link {
        padding: 15px 10px;
    }
    
    .member-archive-name {
        font-size: 1rem;
    }
    
    .member-archive-category {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .member-name {
        font-size: 1.75rem;
    }
    
    .member-photo,
    .member-photo-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .member-category {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
メンバー一覧カード
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

.member-archive-card {
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.member-archive-card:hover {
    transform: translateY(-4px);
}

.member-archive-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px 10px;
}

.member-archive-image {
    margin-bottom: 20px;
}

.member-archive-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member-archive-card:hover .member-archive-photo {
    transform: scale(1.05);
}

.member-archive-photo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: #6c757d;
    font-size: 14px;
    margin: 0 auto;
}

.member-archive-info {
    text-align: center;
}

.member-archive-categories {
    margin-bottom: 12px;
}

.member-archive-category {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0 4px 4px 0;
}

.member-archive-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}


/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
メンバーカード（詳細ページの他のメンバー表示用）
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

.member-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.member-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.member-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.member-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-card-photo {
    transform: scale(1.05);
}

.member-card-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
}

.member-card-content {
    padding: 20px;
}

.member-card-categories {
    margin-bottom: 12px;
}

.member-card-category {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 4px;
}

.member-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.member-card-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.member-card-excerpt p {
    margin: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .member-card-image {
        height: 180px;
    }
    
    .member-card-content {
        padding: 16px;
    }
    
    .member-card-name {
        font-size: 1.1rem;
    }
}
