
    var w = screen.width;
    var h = screen.height;
    // 横解像度が0～1024まで
    if(0<w && w<=1024) {
        jQuery("#css").attr("href",css1);
}
// 横解像度が1024より大きい
else {
    jQuery("#css").attr("href",css2);
}
jQuery(function(){
    // 横解像度が0～1024まで
    if(0<w && w<=1024) {
        jQuery("#and_less_1024").show();
    }
    // 横解像度が1024より大きい
    else {
        jQuery("#over_1024").show();
    }
});
