@charset "utf-8";

/* --------------------------------------------------
-------------------------------------------------- ページ全体 */
html {
	width: 100%;
	min-height: 100%;
}
body {
	width: 100%;
	min-height: 100%;
	font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
	font-size: 1em;
	line-height: 1.8em;
	-webkit-text-size-adjust: 100%;
}
a:link {
	color: #0099ff;
	text-decoration: none;
}
a:visited {
	color: #0099ff;
	text-decoration: none;
}
a:hover {
	color: #0099ff;
	text-decoration: underline;
}
a:active {
	color: #0099ff;
	text-decoration: underline;
}
a.alpha {
	cursor: pointer;
	-webkit-transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	 -o-transition: 0.1s ease-in-out;
	 transition: 0.1s ease-in-out;
}
a.alpha:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/* --------------------------------------------------
-------------------------------------------------- Clearfix */

.cf:before, .cf:after {
	content:"";
	display:table;
}
.cf:after {
	clear:both;
}
.cf {
	*zoom:1;
}

