@charset "utf-8";

/* ouitline
------------------------------*/
.staff__wrap {
    padding: 20px 0;
}
    .staff__list {
        display: flex;
        flex-wrap: wrap;
    }
        .staff__list [class*="staff__item"] {
            width: 255px;
            box-shadow: 0 0 7px #ddd;
        }
        [class*="staff__item"]:not(:nth-child(4n+1)) {
            margin-left: 20px;
        }
        .staff__item {
            margin-top: 20px;
        }
            [class*="staff__item"] a {
                text-decoration: none;
                display: block;
            }
                .staff__img {
                    width: 255px;
                    height: 200px;
                    margin-bottom: 5px;
                }
                .staff__name {
                    padding: 10px;
                    font-size: 18px;
                    font-weight: bold;
                    text-align: center;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    white-space: nowrap;
                }
