@charset "utf-8";

/* ----------------------------------------------

    top_creators（CREATORS ブロック PC レイアウト）

   ---------------------------------------------- */

   .creators202603up_container {
    padding: 5px 0px;
   }

   /* セクションタイトル */
   .creators_section_title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    /* letter-spacing: 0.1em; */
    text-transform: uppercase;
    margin-bottom: 30px;
}

.creators_section_title::before {
    content: "";
    display: block;
    width: 5px;
    height: 24px;
    background-color: #1058FB; /* アクセントカラー */
}

/* グリッドレイアウト */
.creators_section_grid {
    display: grid;
    gap: 40px 60px;
}

/* 3列レイアウト (Executive) */
.creators_section_grid_3 {
    grid-template-columns: repeat(3, 1fr);
}

.creators202603up_container > section:first-of-type {
    margin-bottom: 40px;
}

/* 4列レイアウト (Creator) */
.creators_section_grid_4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.creators_section_block_sub {
    margin-top: 0;
    border-top: 1px solid #d8d8d8;
    padding-top: 40px;
}

/* レスポンシブ調整 */
@media (max-width: 900px) {
    .creators202603up_container {
        padding: 20px 8%;
    }

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

    .creators_section_block_sub {
        padding-top: 60px;
    }

    .creators_section_title {
        gap: 10px;
        font-size: 16px;
        margin-bottom: 28px;
    }

    .creators_section_title::before {
        width: 4px;
        height: 20px;
    }

    .creators_section_img_wrapper {
        margin-bottom: 14px;
    }

    .creators_section_member_name {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .creators_section_grid_4 .creators_section_member_name {
        font-size: 18px;
    }

    .creators_section_member_role {
        font-size: 12px;
        line-height: 1.6;
    }

    .creators_section_grid_4 .creators_section_member_role {
        font-size: 11px;
    }

    .creators_section_grid_3 .creators_section_profile_card:hover .creators_section_img,
    .creators_section_grid_4 a.creators_section_profile_card:hover .creators_section_img {
        transform: none;
    }
}

@media (max-width: 600px) {
    .creators202603up_container {
        padding: 16px 20px;
    }

    .creators_section_grid_3 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .creators_section_grid_4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .creators_section_block_sub {
        padding-top: 44px;
    }

    .creators_section_title {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .creators_section_member_name {
        font-size: 18px;
    }

    .creators_section_grid_4 .creators_section_member_name {
        font-size: 16px;
    }

    .creators_section_member_role {
        font-size: 11px;
    }

    .creators_section_img_wrapper {
        margin-bottom: 12px;
    }
}

/* プロフィールカード */
.creators_section_profile_card {
    cursor: default;
}

a.creators_section_profile_card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.creators_section_grid_3 .creators_section_profile_card {
    cursor: pointer;
}

.creators_section_img_wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    /* border-radius: 8px; */
    background-color: #eee;
    margin-bottom: 20px;
}

.creators_section_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.creators_section_grid_3 .creators_section_profile_card:hover .creators_section_img {
    transform: scale(1.1);
}

.creators_section_grid_4 a.creators_section_profile_card:hover .creators_section_img {
    transform: scale(1.1);
}
/* テキスト要素 */
.creators_section_member_name {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.creators_section_grid_4 .creators_section_member_name {
    font-size: 22px;
}

.creators_section_member_role {
    font-size: 13px;
    /* color: #6a6a6a; */
    color: #000;
    line-height: 1.7;
}