@charset "utf-8";

    .bookList__center{
        text-align: center;
    }

    .bookList__amlink{
        text-align: center;
        font-size: x-large;
    }

    .foot{
        text-align: center;
        font-size: x-large;
    }

    @media screen and (min-width: 981px)
    {
        /*メニュー１個あたりの設定*/
        .bookList__center li {
            display: inline;	/*横並びにする設定*/
            flex-wrap: wrap;
        }

        .bookList__center li img {
            text-decoration: none;
            padding: 4px 0px;	/*各メニュー内の余白。上下に15px、左右に0pxあけるという意味。*/
            width: 10%;
        }
    }

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

    /* タブレット用 */
    @media screen and (min-width: 481px) and (max-width: 980px) 
    {
        /*メニュー１個あたりの設定*/
        .bookList__center li {
            display: inline;	/*横並びにする設定*/
            flex-wrap: wrap;
        }

        .bookList__center li img {
            text-decoration: none;
            padding: 4px 0px;	/*各メニュー内の余白。上下に15px、左右に0pxあけるという意味。*/
            width: 10%;
        }
        .bookList__amlink{
            text-align: center;
            font-size: large;
        }
        .foot{
            text-align: center;
            font-size: large;
        }
    }
    /* -- -------------------------------------------------------------- -- */
   

    /* スマートフォン用 */
    @media screen and (max-width:480px)
    {
        /*メニュー１個あたりの設定*/
        .bookList__center li {
            display: inline;	/*横並びにする設定*/
            flex-wrap: wrap;
        }

        .bookList__center li img {
            text-decoration: none;
            padding: 4px 0px;	/*各メニュー内の余白。上下に15px、左右に0pxあけるという意味。*/
            width: 10%;
        }
        .bookList__amlink{
            text-align: center;
            font-size: xx-small;
        }
        .foot{
            text-align: center;
            font-size: xx-small;
        }
    }


