@charset "UTF-8";

/*----------------------------------------------------
	☆PC
----------------------------------------------------*/


.backSqBox::before{
    width: 30vw;
}
#contents .brandList li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}
#contents .brandList li:last-child{
    margin-bottom: 0;
}

#contents .brandList li .image{
    width: 40%;
}

#contents .brandList li .info{
    width: 55%;
}
#contents .brandList li .info .title{
    display: flex;
    align-items: center;
    line-height: 1.2;
    font-size: clamp(20px,36px,36px);
    margin-bottom: 40px;
}
#contents .brandList li .info .title .logo{
    width: 140px;
    margin-right: 20px;
    flex-shrink: 0;
}

/*----------------------------------------------------
	☆ANIMATION
----------------------------------------------------*/

/*----------------------------------------------------
	☆901以上　PCのみ & HOVER
----------------------------------------------------*/

@media screen and (min-width:901px) {
}
    
/*----------------------------------------------------
	☆UNDER 900
----------------------------------------------------*/

@media screen and (max-width:900px) {
    
    #contents .brandList li .info .title{
        font-size: clamp(20px,26px,26px);
        margin-bottom: 30px;
    }
    #contents .brandList li .info .title .logo{
        width: 100px;
    }
    
}


/*----------------------------------------------------
	☆UNDER 600
----------------------------------------------------*/

@media screen and (max-width:600px) {
    
    .backSqBox{
        padding: 0;
    }
    .backSqBox::before{
        display: none;
    }
    
    #contents .brandList li{
        flex-direction: column;
        margin-bottom: 60px;
    }
    
    #contents .brandList li .image{
        width: 80%;
    }
    #contents .brandList li .info{
        width: 80%;
        margin-top: 30px;
    }
    #contents .brandList li .info .title{
        flex-direction: column;
        text-align: center;
        font-size: 28px;
        margin-bottom: 15px;
    }
    #contents .brandList li .info .title .logo{
        width: 100px;
        margin: 0 0 20px 0;
    }

}

