/*==================================================
12 Media Component
Infinity Technology Corporate CSS Ver3.1
==================================================*/

/*----------------------------------
Media Base
----------------------------------*/

.it-media{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin:0 auto;

    overflow:hidden;

}

/* 画像 */

.it-media img{

    display:block;

    max-width:100%;

    width:auto;

    height:auto;

    object-fit:contain;

}


.it-media-cover img{

    width:100%;
    height:100%;
    object-fit:cover;

}

/*----------------------------------
Small
----------------------------------*/

.it-media-sm{

    height:120px;

}

.it-media-sm img{

    max-height:100px;

}

/*----------------------------------
Medium
----------------------------------*/

.it-media-md{

    height:180px;

}

.it-media-md img{

    max-height:160px;

}

/*----------------------------------
Large
----------------------------------*/

.it-media-lg{

    height:260px;

}

.it-media-lg img{

    max-height:240px;

}