
/* --------------------------------------------
 プラグイン　フォントサイズ変更 /js/jquery.font_resize.js
---------------------------------------------- */

/*前提的に*/
#size_changer{
	position:relative;
	margin: 20px auto 0;
	text-align:left;
	width: 860px;
  height:45px;
}
/*fontsize*/
.fontSize {
	position:absolute;
  margin: 4px 0;
  top: 0;
  right: 0;
  z-index: 100;
}

@media screen and (max-width: 600px) {
  .fontSize {
  position: relative;
  text-align: center;
  top:0;
  }
}

.fontSize li {
  margin-right: 10px;
  vertical-align: bottom;
	line-height:1;
  display: inline-block;
  transition: 0.3s;
}

.fontSize li:last-child {
  margin-right: 0;
}

.fontSize .changeBtn {
  color: #fff;
  background-color: #9bbedf;
  cursor: pointer;
  font-weight: bold;
}

.fontSize .s {
  font-size: 14px;
  padding: 6px;
}

.fontSize .m {
  font-size: 16px;
  padding: 7px;
}

.fontSize .l {
  font-size: 20px;
  padding: 8px;
}

.fontSize .changeBtn.active , .fontSize .changeBtn:hover {
  background-color: #234277;
}
