{
const div = d3.create("div")
.style('display','flex')
.style('justify-content', 'space-between')
.style('padding', '0 12px')
for(let i=0; i<5; i++){
const section = div.append("section")
.style('background-color','#EEEEEE')
.style('border', '1px solid #888888')
.style('border-radius', '8px')
.style('height', '58px')
.style('padding', '6px 12px')
.style('display', 'flex')
.style('justify-content', 'center')
.style('align-items', 'center')
const p = section.append("p")
.text(`新しいパラグラフ!その${i+1}`)
.style('font-size','15px')
if(i==0){
p.attr("class", "first")
.style('color','#E8392C')
.style('font-weight','800')
}
if(i==4){
p.attr("class","last")
.style('color','#377E22')
.style('font-weight','800')
}
}
return div.node()
}