/*--------------------------------------
/*
 * ・
 *
 *---------------------------------------/
/*******
 * PC
 *******/
.team__title::before {
    width: 5rem;
    height: 5rem;
    top: -2rem;
    background-image: url("../images/common/hand_logo.svg");
}

.team__content {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.team__content {
    padding: 1rem 3rem 0;
}

.team__content_point {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    width: 48%;
}

.team__point h2 {
    color: var(--main-color);
    font-size: var(--font-12);
}

.team__point p {
    font-size: var(--font-09);
}

.team__content_organization {
    width: 48%;
}

.team__organization {
    padding: 0.5rem 1.5rem 1.5rem;
    border-radius: 5px;
    background-color: var(--main-color);
    text-align: center;
}

.team__organization_title {
    color: #fff;
    font-size: var(--font-14);
}

.team__organization_staff {
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    background-color: #fff;
    border-radius: 5px;
}

.team__organization_staff h4 {
    font-family: 'Shin Maru Go Regular', sans-serif;
}

.team__organization_staff span {
    display: block;
    margin: 0.3rem auto 0;
    width: 2.5rem;
    height: 0.2rem;
    background-color: var(--main-color);
}

.team__organization_staff p {
    margin-top: 0.5rem;
    font-size: var(--font-07);
    text-align: left;
}

.team__organization_staff:last-child {
    margin-bottom: 0;
}

/*******
 * Tablet・SP
 *******/
@media screen and (max-width: 955px) {
}

/*******
 * SP
 *******/
@media (max-width: 639px) {
    .team__content {
        padding: 0 0.6rem;
        flex-direction: column;
    }

    .team__content_point {
        width: 100%;
    }

    .team__point h2 {
        font-size: var(--font-16);
    }

    .team__point p {
        font-size: var(--font-12);
    }

    .team__content_organization {
        width: 100%;
        margin-top: 2rem;
    }

    .team__organization_title {
        font-size: var(--font-18);
    }

    .team__organization_staff p {
        font-size: var(--font-10);
    }
}

/*******
 * PC
 *******/
.intro {
    margin-top: 5rem;
    padding: 6rem 3rem 4rem;
    background-color: #EEEEEE;
    text-align: center;
}

.intro__staff {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 2rem;
    column-gap: 2rem;
    margin-top: 2rem;
}

.intro__staff li {
    width: calc(100% / 4.5);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.intro__staff_img {
    max-height: 11rem;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.intro__staff_img img {
    object-fit: cover;
}

.intro__staff_text {
    background-color: #fff;
    padding: .5rem 1rem;
    text-align: left;
    border-radius: 0 0 5px 5px;
    flex-grow: 1;
}

.intro__staff_text h2 {
    font-size: var(--font-09);
}

.intro__staff_text p {
    color: var(--main-color);
    font-size: var(--font-06);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.2rem;
}

/*******
 * Tablet・SP
 *******/
@media screen and (max-width: 955px) {
    .intro {
        padding: 6rem 3rem 5rem;
    }
}

/*******
 * SP
 *******/
@media (max-width: 639px) {
    .intro {
        padding: 5rem 0.6rem;
    }

    .intro__staff li {
        width: 49%;
    }

    .intro__staff_img {
        max-height: 11rem;
    }

    .intro__staff_text p {
        font-size: var(--font-10);
    }
}