@media only screen and (min-width: 769px){
  
  #company{
     width: 100%;
    display: flex;
    justify-content: space-between;
}

#company .sfq_sb {
    transform: skewX(10deg);
    width: 250%;
    overflow: hidden;
    position: relative;
    left: -75%;
    height: 100%;
}




#company li{
    width: calc((100% - 0px) / 5);
    overflow: hidden;
    background: #000;
    position: relative;
    min-height: 560px;
    transition: all ease .5s;
  transform: skewX(-10deg);
      transition: all ease .5s;
}
#company li:hover{
    background:var(--theme-color);
}

#company li .sfq_sb > img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: .4;
}
#company li .sfq_sb > a{
    position: absolute;
    opacity:0;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all ease .5s;
}
#company li:hover .sfq_sb > a{
    opacity:1;
}

#company li .sfq_sb .list_text{
    color: #fff;
    line-height: 1.2;
    font-size: 28px;
    font-weight: 900;
}



#company li.active1{
    width: 40%;
}
}

@media only screen and (max-width: 768px){
  #company li {
    width: calc((100% - 0px) / 1);
    overflow: hidden;
    background: #000;
    position: relative;

}
#company .sfq_sb {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
}
  
#company .sfq_sb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#company .sfq_sb .list_box{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
 font-size: 24px;
    font-weight: bold;
    font-family: Arial;
    text-align: center;
    background-color: rgb(0 0 0 / 80%);
    z-index: 9;
    top: 0;
    left: 0;
}
  
}
@media only screen and (max-width: 1440px) and (min-width: 769px){
}


