@charset "utf-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0;
	list-style: none;
	border: none;
	box-sizing: border-box;
	border-collapse:collapse
}
body {
	font-smoothing: antialiased;/*让字体变清晰*/
	-webkit-font-smoothing: antialiased;/*让字体变清晰*/
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	height: auto;
	outline: 0;
	color: #484848;
	font-size: 12px;
	line-height: 1.6;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
::selection {
	color: green;
}

::-moz-selection {
 color: green;
}
:focus, a {
	outline: 0;
	text-decoration: none;
}
a, a:link, a:visited {
	color: #484848 ; text-decoration:none;
	transition: all .3s;
	-webkit-transition: all .3s;
}
a:hover,a:hover img {
	transition: all .3s;
	-webkit-transition: all .3s;
	opacity:.7
}
img {
	display: block;
	max-width: 100%;
	margin: auto;
}

.mt30 { margin-top:30px; }
