@charset "utf-8";

/* 最新型式情報
----------------------------------------------------------------------------- */

.latest-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}
.latest-box > div{
    width: calc(50% - 25px);
    margin-right: 50px;
}
.latest-box > div:nth-child(2n){
    margin-right: 0;
}

.latest .list-link {
	margin-bottom: 30px;
}

@media screen and (max-width:768px){
    .latest-box{
        display: block;
    }
    .latest-box > div{
        width: 100%;
        margin-right: 0;
    }
    .latest-box > div:nth-child(2n+1){
        margin-bottom: 50px;
    }
    .latest-box > div:nth-child(2n){
        margin-right: 0;
    }

    .latest .list-link {
        margin-bottom: 30px;
    }
}