当社の歴史

1967年 | 西日本グレーンセンタ一株式会社 設立 |
---|---|
1968年 | 第1期サイロ完成、ニューマ1,2号機据付完了(岡山) |
1970年 | 第2期サイロ完成、ニューマ3号機据付完了(岡山) |
1971年 | 南日本グレーンセンター株式会社 設立 |
1972年 | 第1期サイロ完成(鹿児島) |
1973年 | 第1期ミールサイロ完成(鹿児島) |
1974年 | ニューマ3号機船積ダストレスローダ完成(岡山) 第2期サイロ、第2期ミールサイロ完成(鹿児島) |
1977年 | 第3期サイロ完成(鹿児島) |
1979年 | 第4期サイロ、第3期ミールサイロ完成(鹿児島) |
1980年 | 第3期サイロ完成(岡山)、 第5期サイロ完成(鹿児島) |
1981年 | ニューマ1基増設(鹿児島) |
1982年 | 第6期サイロ完成、特別高圧受電設備設置(鹿児島) |
1984年 | 第4期サイロ完成(岡山) |
1985年 | 第7期サイロ完成(鹿児島) |
1989年 | ニューマ1基を機械式アンローダに入替(鹿児島) |
1991年 | 第5期サイロ完成(岡山) |
1995年 | 南日本グレーンセンター株式会社 八代支店開業、 第1期サイロ完成(八代) |
1997年 | 西日本グレーンセンター㈱と南日本グレーンセンター㈱が合併し、商号を「パシフィックグレーンセンター株式会社」に変更 第2期サイロ完成(八代) |
2000年 | 自家用発電機設備完成(八代) |
2002年 | 八代埠頭倉庫株式会社を吸収合併 |
2005年 | 第6期サイロ完成(岡山) |
2007年 | 第3期サイロ完成(八代) |
2010年 | 十勝グレーンセンター株式会社に出資 |
2017年 | 創業50周年を迎える |
2023年 | 本社事務所 東京都から福岡県へ移転 |
function table_cross() {
if($(window).width() >= 860 ){
//行数を取得
var history_rows = $('.history_flow table tr').length;
//左カラムの行数
var history_left_rows = Math.ceil(history_rows / 2);
console.log(history_left_rows);
//右カラムの行数
var history_right_rows = Math.floor(history_rows / 2);
//行数が左右で異なる場合(奇数の場合)、空のtrタグを追加する
if(history_left_rows != history_right_rows){
var html = '
';
$('.history_flow table').append(html);
}
for(i=1; i<=history_left_rows; i++){ //右側の番号 var i2 = i + history_left_rows; var left_height = $('.history_flow table tr:nth-child(' + i + ') th').height(); var right_height = $('.history_flow table tr:nth-child(' + i2 + ') th').height(); if(i % 2 == 0) { $('.history_flow table tr:nth-child(' + i + ') td').addClass('color2'); $('.history_flow table tr:nth-child(' + i2 + ') td').addClass('color2'); $('.history_flow table tr:nth-child(' + i + ') td').addClass('c___' + i); } if($('.history_flow table tr').eq(i+history_left_rows).height() ==undefined){ continue; } var new_height = left_height > right_height ? left_height : right_height;
$('.history_flow table tr:nth-child(' + i + ') th').height(new_height);
$('.history_flow table tr:nth-child(' + i2 + ') th').height(new_height);
}
}
}
window.onresize = table_cross;
table_cross();