@charset "utf-8";
/* ===================================================================
CSS information

 file name  :staff.css
 author     :PCBrain
 style info :会社案内用
=================================================================== */

.staffUI {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    border-bottom: 1px solid #d5d5d5;
    padding: 20px 0;
}
    .staffUI > div:first-child {
        width: 300px;
    }
        .staffUI > div:first-child .staff-photo {
            width: 280px;
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        .staffUI > div:first-child .staff-photo img {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: auto;
            max-height: 100%;
        }
    .staffUI > div:last-child {
        width: 398px;
    }
        .staffUI > div:last-child h4 {
            font-size: 1.2em;
            font-weight: bold;
        }