.boxProfile {
    margin-top: 40px;
}
.boxProfile + * {
    margin-top: 62px;
}
.boxProfile > .boxInfo01 {
    display: flex;
}
.accordionProfile_item {
    display: block;
    overflow: hidden;
    height: 0;
    transition: height 0.2s ease-out;
}
.boxProfile_name {
    font-size: 24px;
}
.boxProfile_position {
    font-size: 18px;
}
.boxProfile_image {
    width: 20%;
    margin-right: 2.86%;
    flex-shrink: 0;
}
.boxProfile_group {
    width: 100%;
}
.accordionProfile_title {
    position: relative;
    padding: 17px 60px 12px 0;
    cursor: pointer;
    font-size: 18px;
}
.accordionProfile_title:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background-image: url(/-/media/cojp/company/profile/ic_plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}
.accordionProfile.active .accordionProfile_title:after {
    background-image: url(/-/media/cojp/company/profile/ic_minus.svg);
}
.boxProfile table {
    font-size: 14px;
}
.boxProfile table th {
    white-space: nowrap;
    text-align: center;
}
.boxProfile table th,
.boxProfile table td {
    padding: 8px 20px;
}
@media only screen and (max-width: 480px) {
    .boxProfile_name {
        font-size: 20px;
    }
    .boxProfile_position {
        font-size: 16px;
    }
    .boxProfile > .boxInfo01 {
        flex-direction: column;
    }
    .boxProfile_image {
        width: 50%;
    }
}