/* Staff */

#staff_list {
    overflow: visible;
}
.staff_list_pane {
    position: relative;
    float: left;
    width: 48%;
}
.staff_list_pane:nth-of-type(even) {
    float: right;
}
.staff_list_pane:nth-last-of-type(n + 3) {
    margin-bottom: 2.1em;
}
.staff_list_pane:nth-of-type(2n + 1) {
    clear: both;
}
.staff_list_image {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
}
.staff_list_image::before {
    display: none;
    position: absolute;
    top: 25px;
    left: 20px;
    font-family: "Fredoka", sans-serif;
    font-size: 1.6em;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #009ea1;
        -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    /* opacity: 0.6; */
    z-index: 1;
}
#staff_list_callcenter .staff_list_image::before {
    content: 'CALL CENTER';
}
#staff_list_estimate .staff_list_image::before {
    content: 'ESTIMATE';
}
#staff_list_pickup .staff_list_image::before {
    content: 'PICK UP';
}
.staff_list_comment {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 130px 2.5em 2.5em 2.5em;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}
.comment_visible .staff_list_comment {
    display: flex;
    justify-content: center;
    align-items: center;
}
.staff_list_comment::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    background: #004748;
    opacity: 0.7;
}
.staff_list_comment h5 {
    position: relative;
    margin-bottom: 0.8em;
    padding-bottom: 0.5em;
    font-size: 1.6em;
    /* letter-spacing: 0.1em; */
    line-height: 1.2em;
    color: #fff;
    border-bottom: 1px solid #fff;
    z-index: 3;
}
.staff_list_comment p {
    position: relative;
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 2.1em;
    color: #fff;
    z-index: 3;
}
.staff_list_comment_switch {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 20px;
    width: 70px;
    height: 70px;
    background: #fff url(../images/staff/icon_comment.png) no-repeat center / 40px 40px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 200ms ease-in-out;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease-in-out;
    z-index: 3;
}
.comment_visible .staff_list_comment_switch {
    background: #fff url(../images/staff/icon_comment_close.png) no-repeat center / 40px 40px;
    transition: all 200ms ease-in-out;
}
.staff_list_comment_switch:hover {
    transform: scale(1.05);
}
.staff_list_pane h4 {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.staff_list_pane h4 span {
    display: block;
    width: fit-content;
    padding: 0.3em 0.5em;
    line-height: 1.2em;
    background: #fff;
    border-radius: 5px;
}
.staff_list_pane h4 .name_ja {
    margin-bottom: 0.4rem;
    font-size: 1.55em;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2em;
}
.staff_list_pane h4 .name_en {
    font-size: 0.9em;
    letter-spacing: 0;
}