@charset "UTF-8";
/*
～1000以下の調整と
1000～1199の調整と
768～999の調整をするスタイルシート
★★★★
767以下はsp.cssに記載
★★★★
*/

/*～1000以下の調整*/
@media screen and (max-width: 1000px){
    /*ヘッダー・ログイン・カートボタン*/
    #head_wrap .login_cart{
        position: relative;
        top: inherit;
        right: inherit;
    }
    /*ヘッダー・検索窓*/
    #search_head form{
        width: 100%;
    }
    #search_head form > label{
        margin-left: 1%;
    }
}

/*1000以上～1199以下の調整*/
@media screen and (min-width: 1000px) and (max-width: 1199px){
    /*-----ヘッダーの調整--------*/

    /*-----フッタの調整-------*/
    #footer_wrap .second_wrap .inner ul.fo_cate{
        width: 16%;
    }

    #footer_wrap .second_wrap .inner ul.fo_cate:first-child,
    #footer_wrap .second_wrap .inner ul.fo_cate:first-child + *{
        min-width: 150px;
    }

}

/*768以上～999以下の調整*/
@media screen and (min-width: 768px) and (max-width: 999px){
    /*-----ヘッダーの調整--------*/

    /*-----フッタの調整-------*/
    #footer_wrap .second_wrap .inner ul.fo_cate{
        width: 24%;
    }
}