@charset "utf-8";
/* CSS Document */
img {
    image-rendering: -webkit-optimize-contrast;
}
.main__company-list{
    margin-top: 6rem;
}
.main__company-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.main__company-list ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: .3px;
    height: 100%;
    background-color: #fff;
}
.main__company-list ul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: .3px;
    background-color: #fff;
}
.main__company-list ul li {
    width: 100%;
    max-width: 232px;
    height: 6.5rem;
    margin-top: 0.7rem;
    text-align: center;
    position: relative;
    border-bottom: .3px solid #888888;
}
.main__company-list ul li a {
    display: block;
    width: 100%;
    height: 90%;
    position: relative;
    border-left: .3px solid #888888;
}
.main__company-list ul li a>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.last_list--border_right{
    border-right: .3px solid #888888;
}

/*========== ブレイクポイント調整css ===========*/

@media screen and (max-width: 1230px){
    .last_list--border_right{
        border-right: initial;
    }
}

/*========== レスポンシブcss ===========*/

@media screen and (max-width:960px) {
    
}

/*===== mobile用cssは以下 =====*/
@media screen and (max-width: 615px) {
    .main__company-list ul {
        justify-content: space-around;
    }
    .main__company-list ul li {
        max-width: 32%;
        height: 4.5rem;
        border: 0.3px solid #888888;
    }
    .main__company-list ul li a {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        border: none;
    }
    .main__company-list ul li a > img {
        width: 80%;
    }
    .main__company-list ul::after {
        display: none;
    }
    .main__company-list ul::before {
        display: none;
    }
    
}
