CSS ファイルで定義した内容は document.querySelector('#hoge').style では取れないのね。代わりに window.getComputedStyle(document.querySelector('#hoge')) で取得するようにした。
document.querySelector('#hoge').style
window.getComputedStyle(document.querySelector('#hoge'))
ブラウザ依存もあるみたい?だけど、実験で使っていただけなので、とりあえずこれで解決。