.page_heading_en {
    font-size: 3.6rem;
}
.staff_area_dtl {
    margin-left: auto;
}
.headline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
@media (max-width: 767px) {
    .staff_area_dtl {
        margin-left: 0;
    }
    .staff-profile_name {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 1rem;
        font-size: 2rem;
    }
    .staff-profile_name_en {
        margin-left: 0;
        margin-top: 1rem;
        font-size: 1rem;
    }
    .headline {
        flex-direction: column;
        gap: 1rem;
    }
}

.staff_cont {
    margin: 10rem 0 12rem;
    scroll-margin-top: 10rem;
}
.staff_list,
.staff_list-assistant.is-open {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 2rem;
    margin-top: 2rem;
}
.staff_box {
    margin-top: 2rem;
}
.staff_name {
    font-size: 2rem;
    letter-spacing: 0.01em;
}
.staff_area_item + .staff_area_item {
    margin-top: 8rem;
}
.staff_area_dtl {
    position: relative;
    color: var(--main-color);
}
.staff_area_dtl::before {
    content: "";
    position: absolute;
    top: -2px;
    width: 0.9rem;
    height: 1.4rem;
    background-image: url(../img/icon/map-point.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.staff_area_dtl_text {
    padding-left: 1.75rem;
}
.staff_cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.staff_cta_btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16.8rem;
    height: 4.5rem;
    background-color: rgba(51, 51, 51, 0.13);
    border-radius: var(--corner-radius);
}
.link_text_animation_box span {
    line-height: 1;
}
.staff_cta_link {
    display: block;
}
.staff_cta_text {
    position: relative;
    font-size: 1.25rem;
    letter-spacing: 0.01em;
}
.staff_cta_reserve {
    position: relative;
    background-color: var(--main-color);
    color: #fff;
}
.staff_cta_reserve::before {
    content: "";
    width: 1.3rem;
    height: 1.2rem;
    background-image: url(../img/icon/reserve-white.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.staff_cta_reserve .staff_cta_link {
    margin-left: 1rem;
}
.staff_list-assistant {
    margin: 8rem 0 0;
    opacity: 0;
    transform: translateY(0.1rem);

    transition:
        max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
}
.staff_list-assistant.is-open {
    margin-top: 8rem;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s, 0.08s, 0.08s;
    pointer-events: auto;
}
.staff_more_btn {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 18rem;
    margin: 6rem auto 0;
    padding-bottom: 1.5rem;
    cursor: pointer;
    border-bottom: 2px solid var(--black);
}
.staff_more_btn_en {
    font-size: 2.2rem;
    font-family: var(--font-ivymode);
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0.02em;
}
.staff_more_btn_jp {
    display: block;
    margin-top: 0.8rem;
    font-size: 1.25rem;
    line-height: 1;
}
.staff_more_btn_icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem;
    height: 1.3rem;
}
.staff_more_btn_icon::before,
.staff_more_btn_icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.3rem;
    height: 1px;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.staff_more_btn_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.staff_more_btn.is-open .staff_more_btn_icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.6);
}
@media (max-width: 767px) {
    .staff_cont {
        margin: 8rem 0;
        scroll-margin-top: 6rem;
    }
    .staff_list,
    .staff_list-assistant.is-open {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
    .staff_name {
        font-size: 1.8rem;
    }
    .staff_area_item:nth-of-type(n + 2) {
        margin-top: 8rem;
    }
    .staff_area_dtl::before {
        top: 0;
        width: 0.7rem;
        height: 1.1rem;
    }
    .staff_area_dtl_text {
        padding-left: 1.25rem;
        font-size: 1.1rem;
    }
    .staff_box {
        margin-top: 1rem;
    }
    .staff_cta {
        display: block;
        margin-top: 1.5rem;
    }
    .staff_cta_btn {
        width: 100%;
        height: 4rem;
    }
    .staff_cta_reserve {
        margin-top: 1rem;
    }
    .staff_more_btn {
        width: 15rem;
        padding-bottom: 1rem;
    }
    .staff_more_btn_en {
        font-size: 1.8rem;
    }
    .staff_more_btn_jp {
        font-size: 1rem;
    }
}
