@charset "utf-8";

    .logo__center{
        text-align: center;
    }


    @media screen and (min-width: 981px)
    {
        /*　ロゴ位置　*/
        #logo__img{
            width : 50%;
            height : 50%;
            /* text-align:  center; */
        }
    }

    /* -- -------------------------------------------------------------- -- */

    /* タブレット用 */
    @media screen and (min-width: 481px) and (max-width: 980px) 
    {

        #logo__img {
            /* 本体 */
            width : 50%;
            height : 50%;
            text-align: center;
        }

    }
    /* -- -------------------------------------------------------------- -- */

    /* スマートフォン用 */
    @media screen and (max-width:480px)
    {
	    /* ここにCSSを入れる */
        #logo__img {
            /* 本体 */
            width : 50%;
            height : 50%;
            text-align: center;
        }

    }


