@charset "UTF-8";
/* ==========================================================================
   PC用のスタイル（基本設定：画面幅が広いとき）
   ========================================================================== */
/* コンテンツ */
.leadership__lead {
    line-height: 1.6;
}

.leadership__lead-title {
    font-size: clamp(24px, 21.82px + 0.91vw, 32px);
    padding-bottom: 32px;
}

.leadership__lead-text {
    font-size: clamp(16px, 14.55px + 0.45vw, 20px);
}


/* グリッドコンテナ */
.leadership__grid-container {
    display: grid;
    /* 1:1 の比率で2列に固定 */
    grid-template-columns: 1fr 1fr;
    gap: 80px 64px;
    margin-bottom: 96px;
}
.leadership__grid-container > * {
    min-width: 0;
}

.leadership__grid-container:not(:has(~ .leadership__grid-container)) {
    margin-bottom: 0;
}

/* ページタイトル */
.leadership__page-title {
    /* タイトルは2列分ぶち抜きで確保し、右側への回り込みを防止 */
    grid-column: 1 / 3;
    width: calc(50% - 32px);
    margin-top: 24px;
    font-size: clamp(24px, 21.82px + 0.91vw, 32px);
    font-weight: 700;
}

/* ボーダーのスタイル */
.leadership__border-bottom {
    position: relative;
    padding-bottom: 16px;
}
.leadership__border-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #575680, #28998c);
}
.leadership__border-bottom--small {
    position: relative;
    max-width: 335px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e8;
}

/* 写真のスタイル */
.leadership__figure {
    width: 100%;
    margin: 0;
}
.leadership__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 名前のスタイル */
.leadership__name-title {
    margin-bottom: 16px;
    padding-bottom: 16px;
}
.leadership__position {
    margin: 0 0 8px 0;
    font-size: clamp(14px, 2vw, 18px);
}
.leadership__name {
    font-size: 24px;
}
.leadership__name-ja {
    display: block;
    font-size: clamp(28px, 2vw, 32px);
    font-weight: bold;
}
.leadership__name-en {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: normal;
}

/* 担当・専門領域 */
.leadership__specialty {
    margin-bottom: 24px;
    padding: 0 8px;
}
.leadership__specialty-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
}
.leadership__specialty-list {
    display: flex;
    gap: 8px;
}
.leadership__specialty-item {
    flex: 1;
    max-width: 170px;
    padding: 8px 0;
    border: 1px solid #000;
    text-align: center;
    font-size: clamp(11px, 10.64px + 0.11vw, 12px);
    font-weight: bold;
    line-height: 1;
}

/* コメント */
.leadership__comment {
    padding: 0 8px;
}
.leadership__comment-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}
.leadership__comment-text {
    font-size: 14px;
    line-height: 1.6;
}

/* 略歴（定義リスト）のスタイル */
.leadership__profile-title {
    padding: 24px 0 8px 4px;
    border-bottom: 1px solid #000;
    font-size: 14px;
    font-weight: bold;
}
.leadership__profile-list {
    display: flex; /* 年月と中身を横並びにする場合 */
    padding: 12px 0 12px 4px;
    border-bottom: 1px solid #c8c8c8;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}
.leadership__profile-label {
    flex-shrink: 0;
    width: 104px; /* 年月エリアの幅を固定 */
}
.leadership__profile-value {
    flex-grow: 1;
    margin: 0;
}

/* カード（専門領域別サマリー） */
.leadership__card {
    min-width: 0;
    padding-bottom: 32px;
    border: 4px solid transparent;
    border-image: linear-gradient(to right, #575680, #28998c);
    border-image-slice: 1;
}
.leadership__card-title {
    width: 90%;
    margin-bottom: 32px;
    padding: 24px 0 8px 16px;
    border-bottom: 1px solid #c8c8c8;
    font-size: clamp(16px, 14.55px + 0.45vw, 20px);
    font-weight: bold;
}
.leadership__card-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 clamp(16px, 4vw, 32px);
}
.leadership__card-item {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    min-width: 0;
    max-width: 100%;
}
.leadership__card-thumbnail {
    --thumbnail-size: clamp(80px, 12vw, 150px);
    flex: 0 0 var(--thumbnail-size);
    margin: 0;
    width: var(--thumbnail-size);
    height: var(--thumbnail-size);
    border-radius: 50%;
    overflow: hidden;
}
.leadership__card-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leadership__card-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    font-weight: bold;
    line-height: 1.4;
    overflow-wrap: break-word;
}
.leadership__card-position {
    font-size: clamp(16px, 14.55px + 0.45vw, 20px);
}
.leadership__card-position span {
    display: block;
    font-size: 12px;
    overflow-wrap: break-word;
}
.leadership__card-name {
    font-size: clamp(20px, 15.64px + 1.36vw, 32px);
}

/* ==========================================================================
   スマホ・タブレット用のスタイル（画面幅が 767px 以下のとき）
   ========================================================================== */
@media (max-width: 767px) {
    .leadership__grid-container {
        /* Gridを解除して、通常の縦並びに変更 */
        display: block;
    }

    .leadership__page-title {
        /* 1列に戻るため、grid-columnの指定を解除 */
        grid-column: auto;
        width: 100%;
        margin-bottom: 40px;
    }

    .leadership__item {
        /* PCではgapで制御していた余白を、スマホ用にmarginで設定（写真とテキストの間の隙間になります） */
        margin-bottom: 24px;
    }

    .leadership__content {
        margin-bottom: 96px;
    }

    .leadership__card-title {
        margin-bottom: 24px;
    }

    .leadership__card-list {
        padding: 0 16px;
    }

    .leadership__card-item {
        gap: 16px;
    }

    .leadership__card-thumbnail {
        --thumbnail-size: 100px;
    }
}
