/*ieでテーブルにcol-xを指定するとmax-widthが効かないバグ対策*/
@media all and (-ms-high-contrast: none) {
    .col-1{
        width:8.33%;
    }
    .col-2 {
        width: 16.66%;
    }
    .col-3 {
        width: 24.99%;
    }
    .col-4 {
        width: 33.32%;
    }
    .col-5 {
        width: 41.66%;
    }
    .col-6 {
        width: 49.98%;
    }
    .d-flex {
        display: table-row !important;
    }
}
