@charset "utf-8";


html { font-size: 62.5%; }


/* ----- body文字設定 ----- */

body {
	color: #444444; /* カスタムCSSで上書き */
	background: #ffffff; /* カスタムCSSで上書き */
	line-height: 1.45;
	font-size: 1.6em;
	font-family: Arial,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

	a:link { color: #666666; text-decoration: none; } /* カスタムCSSで上書き */
	a:visited { color: #666666; text-decoration: none; } /* カスタムCSSで上書き */
	a:hover { color: #999999; text-decoration: underline; } /* カスタムCSSで上書き */


/* ----- 画像のマウスオーバー（PCのみ） ----- */
@media screen and (min-width:768px) {
	
	.hover a:hover img {
	  opacity: 0.7;
	  filter: alpha(opacity=70);
	  -ms-filter: "alpha(opacity=70)";
	}
	
		.hover img {
			transition: 0.2s;
		}
	
} /* ---- (min-width:751px) ---- */