ToDo

ボックスのテスト
ボックス

追加ボタンのテスト(css)

テクニックメモ
配列を引数に -> ...演算子を使う

btn = [];
for(const key in op) {
  if(!['nav','header','main','footer','json','box','inner','ori','debug'].includes(key)) {
    $this[key] = (isNode(op[key]))?op[key]:el$(op[key]);
    btn.push($this[key]);
  }
}
const $style = (op.debug)?'width:100%;':'display:none!important;';
$this.nav = el$($x$({tag:'nav'},op.nav),...btn);