//フォントサイズ変更

$(document).ready(function(){
var originalFontSize = $('html').css('font-size'); //初期のフォントサイズ
$(".resetFont").click(function(){ //.resetFontをクリックしたときに
$('html').css('font-size', originalFontSize); //フォントサイズを戻す
});

$(".increaseFont").click(function(){ //.increaseFontをクリックしたとき
var currentFontSize = $('html').css('font-size'); //現在のフォントサイズ
var currentFontSizeNum = parseFloat(currentFontSize, 10); 
var newFontSize = currentFontSizeNum*1.1; //フォントサイズを1.1倍する
$('html').css('font-size', newFontSize); //大きくしたフォントサイズを適用
return false;
});

$(".decreaseFont").click(function(){ //.decreaseFontをクリックしたとき
var currentFontSize = $('html').css('font-size'); //現在のフォントサイズ
var currentFontSizeNum = parseFloat(currentFontSize, 10);
var newFontSize = currentFontSizeNum*0.9; //フォントサイズを0.9倍する
$('html').css('font-size', newFontSize); //小さくしたフォントサイズを適用
return false;
});
});
