/* ===================================
   メンバー紹介ページ - スタイルシート
   =================================== */

/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.members-page {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* ===================================
   ページタイトルエリア
   =================================== */
.page-title-area {
    margin-bottom: 80px;
}

.page-title-en {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
}

.page-title-ja {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

/* ===================================
   メンバーセクション
   =================================== */
.members-section {
    margin-bottom: 80px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* メンバーカード（大） */
.member-card.large {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.member-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.member-info {
    padding: 20px 0;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.member-position {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* ===================================
   リンクカードセクション
   =================================== */
.link-cards-section {
    margin: auto;
    max-width: 80%;
}

.link-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* リンクカード（小） */
.link-card.small {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card.small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.link-card .card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.card-label {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* ===================================
   レスポンシブデザイン - タブレット
   =================================== */
@media screen and (max-width: 768px) {
    .members-page {
        width: 90%;
        padding: 40px 0;
    }

    .page-title-area {
        margin-bottom: 60px;
    }

    .page-title-ja {
        font-size: 28px;
    }

    .members-section {
        margin-bottom: 60px;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .link-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===================================
   レスポンシブデザイン - スマートフォン
   =================================== */
@media screen and (max-width: 480px) {
    .members-page {
        width: 90%;
        padding: 30px 0;
    }

    .page-title-area {
        margin-bottom: 40px;
    }

    .page-title-en {
        font-size: 12px;
    }

    .page-title-ja {
        font-size: 24px;
    }

    .members-section {
        margin-bottom: 50px;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .member-info {
        padding: 15px 0;
    }

    .member-name {
        font-size: 16px;
    }

    .member-position {
        font-size: 12px;
    }

    .link-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-label {
        font-size: 14px;
    }
}