@charset "utf-8";
.staffList {
    width: 800px;
    margin: 100px auto 60px;
}
.staffList ul {
    display: flex;
    flex-wrap: wrap;
}
.staffList li {
    width: 20%;
    margin-right: 6%;
    margin-bottom: 40px;
}
.staffList li:nth-child(4n) {
    margin-right: 0;
}
.staffList a {
    color: #000;
}
.staffName {
    text-align: center;
    margin-top: 10px;
    font-size: 1.8rem;
}
.staffName span {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.staffInfo {
    width: 800px;
    margin: 0 auto;
}
.staffInfo table {
    width: 100%;
    border-collapse: collapse;
    font-size: 2rem;
    border: 1px solid #000;
}
.staffInfo th {
    vertical-align: middle;
    background: #0878c0;
    color: #fff;
}
.staffInfo td {
    padding: 20px 20px;
    line-height: 1.5;
}

@media screen and (max-width: 835px) {
    .staffList {
        width: auto;
        margin: 60px 4% 30px;
    }
    .staffList ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .staffList li {
        width: 44%;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .staffInfo {
        width: auto;
        margin: 0 4% 60px;
    }
}