/* 縦書きの表示方法 */
g.vertical text {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;

    -webkit-text-orientation: upright;
    text-orientation: upright;
}

/* マウスオーバー時のハイライト */
g.focus > path,
g.focus g.textbox.victory rect {
    stroke: #7eb26d;
}
g.textbox.focus > rect {
    stroke: #7eb26d;
}
g.textbox.focus text {
    fill: #7eb26d;
}

/* 結果入力時のハイライト */
g.selected > path,
g.selected g.textbox.victory rect {
    stroke: #7eb26d;
}

/* リンク */
tspan.link a {
    fill: #00f;
}
