@charset "UTF-8";

/* common.css */
/*
	1.Import File
	2.Font
	3.Elements
	4.Id
	
	Print
*/

/* --------------------------------------------------
1.Import File
-------------------------------------------------- */

@import url("reset.css");
@import url("header.css");
@import url("body.css");
@import url("footer.css");


/* --------------------------------------------------
2.Elements
-------------------------------------------------- */

body {
	background-color: #f0f0f0;
	font-size: 84%;
	line-height: 1.5;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	text-align: center;
}

table {
	font-size: 100%;
	line-height: 1.5;
}

img {
	vertical-align: bottom;
}

a:link {
	color: #009;
}

a:visited {
	color: #639;
}

a:hover {
	color: #f60;
}


/* --------------------------------------------------
3.Id
-------------------------------------------------- */

div#wrapper {
	width: 760px;
	margin: 0 auto;
	text-align: left;
	background: url(../image/bg-zentai.gif) repeat-y left top;
}


/* --------------------------------------------------
3.Class
-------------------------------------------------- */

.font-sml {
	font-size: 80%;
}

.clear {
	clear: both;
}

div#wrapper p.pankuzu {
	margin: 0 1px;
	padding: 10px 14px;
	background-color: #fff;
	font-size: 80%;
}

div#wrapper p.pankuzu em {
	color: #999;
}


/* --------------------------------------------------
Print
-------------------------------------------------- */

@media print {

	p.pankuzu {
		display: none;
	}
	
}


/* EOF */