@charset "UTF-8";

/* =============================================================== 
	要素のリセット
=============================================================== */
/* 全てのブラウザで、どのような状況でも縦スクロールバーを表示 */
html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
	overflow-x: auto;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #000;
	font-family: sans-serif;
}

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: sans-serif;
}

/* ブロック要素のリセット */
div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ol, ul, dl, li, dt, dd, table, th, td, form, fieldset {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: sans-serif;
	font-size: 100%;
}

/* html5の新要素 */
hgroup, section, article, aside, nav, figure, figcaption, header, footer { 
	display: block;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: sans-serif;
}

ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img, input, select, textarea {
	vertical-align: middle;
}

a img {
	
	border: 0;
}

/* IE7のhasLauout問題を解決 */
*:first-child+html * {
	letter-spacing: 0;
}



/* コピーライト */
#copyright {
	padding: 0 0 40px;
	text-align: center;
	font-size: 80%;
	color: #003333;
}