/*================
      member listページ
================*/
.memberWrapper{
    width: 980px;
    padding: 100px 0 38px;
    margin: 0 auto;
}

.memberList{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 76PX;
}

.memberList_item{
    width: 230px;
    margin: 0 20px 27px 0;
}

.memberList_item:nth-child(4n){
    margin-right: 0;
}

.memberList_item > a{
    display: block;
    text-align: center;
}

.memberList_item > a:hover{
    opacity: 0.8;
}

.memberImageArea{
    box-sizing: border-box;
    position: relative;
    height: 140px;
    border: 1px solid #ddd;
    margin-bottom: 13px;
}

.memberImage{
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: auto;
	width: 226px;
	height: 54px;
}

.memberListHead{
    display: inline;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    color: #2E9AB5;
}

.memberList_item > a:hover .memberListHead{
    background-position: -100% 0;
    color: #fff;
}

/*ie11 edge用記述*/
/*edge*/
@supports (-ms-ime-align:auto) {
.memberList_item > a:hover .memberListHead {
    color: rgba(46,154,181,1);
    text-decoration: underline;
}
}
/*ie11*/
@media all and (-ms-high-contrast:none) {  
*::-ms-backdrop, .memberList_item > a:hover .memberListHead {
    color: rgba(46,154,181,1);
    text-decoration: underline;
}
}

.notes{
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    color: #999;
    margin-top: 100px;
}
