.human_resources_image_list {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(2, 46%);
    grid-auto-flow: column;
    justify-content: space-between;
    row-gap: 1rem;
    font-size: 1rem;
}

@media print,
screen and (max-width: 767px) {
    .human_resources_image_list {
        display: grid;
        grid-template-columns: 100%;
        grid-auto-flow: row;
        justify-content: space-between;
        row-gap: 2em;
    }
}


.human_resources_image_list>li>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.human_resources_caption_list {
    display: grid;
    grid-auto-flow: column;
    column-gap: .5em;
    height: fit-content;
}

.human_resources_caption_list_term {
    grid-column: 1;
}

.human_resources_caption_list_desc {
    grid-column: 2;
}



.human_resources_table caption {
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.25em;
}

.human_resources_table th {
    text-align: left;
    font-weight: normal;
    line-height: 1.1;
    width: fit-content;
    padding-right: .5em;
}

.human_resources_table td {
    grid-column: 3;
    padding-left: .5em;
    position: relative;
    vertical-align: middle;
}

.human_resources_table td::before {
    content: "}";
    position: absolute;
    left: 0;
    transform: scaleY(3) scaleX(1.1) translateY(1px);
    line-height: 1;
    margin-right: 0.5em;
}

.human_resources_image_list_02 {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 40% 20% 40%;
    justify-content: center;
    row-gap: 1rem;
}

.human_resources_image_list_02_figure {
    display: grid;
    grid-auto-flow: row;
    height: fit-content;
}

.human_resources_image_list_02_figcaption {
    height: fit-content;
    font-weight: bold;
    margin-bottom: 1em;
}

:where(.human_resources_image_list_02 figure img) {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.human_resources_image_list_02_img01 {
    width: 80%;
    justify-self: end;
}

.human_resources_image_list_02::after {
    content: "";
    grid-column: 2;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #D1D2D4;
    border-right: 0;
    justify-self: center;
    align-self: center;
}

.human_resources_image_list_02_img02 {}


@media print,
screen and (max-width: 767px) {
    .human_resources_image_list_02 {
        display: grid;
        grid-auto-flow: row;
        grid-template-columns: 100%;
        justify-content: center;
        row-gap: 3rem;
    }

    .human_resources_image_list_02_img01 {
        width: 80%;
        justify-self: center;
    }

    .human_resources_image_list_02::after {
        --width01: max(2rem, 6vw);
        --width02: max(2.5rem, 9vw);
        content: "";
        grid-column: 1;
        grid-row: 2;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: var(--width01) solid transparent;
        border-left: var(--width01) solid transparent;
        border-top: var(--width02) solid #D1D2D4;
        border-bottom: 0;
        justify-self: center;
        align-self: center;
    }

    .human_resources_image_list_02_figure.--figure02 {
        grid-row: 3;
    }

    .human_resources_image_list_02_img02 {
        width: 80%;
        justify-self: center;

    }

}