@charset "UTF-8";
/* common.css */

/* Import Files
---------------------------------------------------------- */

@import url("reset.css");
@import url("common.css");
@import url("header.css");
@import url("contents.css");
@import url("footer.css");


/* Common Elements
---------------------------------------------------------- */

* {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}

html {
	overflow-y: scroll;
	background-color: #f0f0f0;
}

body {
	background: #f0f0f0 url(../image/bg_body.gif) repeat-x 0 0;
	font-size: 84%; /* 12px */
	line-height: 1.5; /* 18px */
	text-align: center;
}

a:link {
	color: #039;
}

a:visited {
	color: #551a8b;
}

a:hover {
	color: #ffa500;
}

hr {
	display: none;
}

img {
	vertical-align: top;
}

strong {
	font-weight: bold;
}

em {
	font-style: normal;
}

sup {
	line-height: 1;
	vertical-align: top;
}

* html sup { /* for Win IE6 */
	vertical-align: super;
}

*:first-child+html sup { /* for Win IE7 */
	vertical-align: super;
}

* html table th,
* html table td { /* for Win IE6 */
	font-size: 84%;
	line-height: 1.5;
}


/* --------------------------------------------------
Class,Id */

div#wrapper {
	width: 100%;
	text-align: center;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

.caption {
	font-size: 80%;
	margin-top: 0.25em;
}

span.caption {
	display: block;
}


/* end */