@charset "utf-8";
/* member css */

.member_box_l {
width: calc(50% - 30px / 2);
height: 180px;
margin-right: 30px;
margin-bottom: 30px;
border: solid 1px #ddd;
display: flex;
justify-content: center;
align-items: center;
}
.member_box_l:nth-child(2n) {
margin-right: 0px;
}
.member_box_wrap {
display: flex;
}
.member_box_wrap a {
transition-duration: 0.5s;
}
.member_box_wrap a:hover {
opacity: .8;
transition-duration: 0.5s;
}
.member_box_m {
width: calc(33.333333% - 30px / 3);
height: 100px;
margin-right: 30px;
margin-bottom: 30px;
border: solid 1px #ddd;
display: flex;
justify-content: center;
align-items: center;
}
.member_box_m:nth-child(3n) {
margin-right: 0px;
}

@media all and (max-width : 767px ){
.member_box_l {
width: calc(50% - 15px / 2);
height: 90px;
margin-right: 15px;
margin-bottom: 15px;
}
.member_box_l .logo {
max-width: 100px;
height: auto;
}
.member_box_m {
width: calc(33.333333% - 10px / 3);
height: 50px;
margin-right: 10px;
margin-bottom: 10px;
}
}