
/**
 * 文字サイズ（大）
 */
function f_txtsize_l () {
  document.body.style.fontSize = "120%";
}
/**
 * 文字サイズ（中）
 */
function f_txtsize_m () {
  document.body.style.fontSize = "100%";
}
/**
 * 文字サイズ（小）
 */
function f_txtsize_s () {
  document.body.style.fontSize = "80%";
}
