/* CSS Document */

/* --------------------------------------------------
initialize
-------------------------------------------------- */

/* .pkg class wraps enclosing block element around inner floated elements */
.pkg:after {
	content : " ";
	display : block;
	visibility : hidden;
	clear : both;
	height : 0.1px;
	font-size : 0.1em;
	line-height : 0;
}
* html .pkg {
	display: inline-block;
}
/* no ie mac \*/
* html .pkg {
	height: 1%;
}
.pkg {
	display: block;
}
/* */

#container-inner, #pagebody-inner, #header-inner, #alpha-inner, #beta-inner, #footer-inner, #copyright-inner {
	position : static;
	width : 100%;
}
/* --------------------------------------------------
デフォルト
-------------------------------------------------- */

* {
	padding: 0px;
	margin: 0px;
	font-size:12px;
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}
a {
	color : #336;
	text-decoration : none;
}
a:hover {
	color : #7575DF;
}
img {
	border:0;
}
li {
	list-style : none;
}
p {
	margin:0 0 20px;
	line-height:1.7em;
}
.fltrt { /* このクラスは、ページ上でフローティングエレメントを右側に配置するのに使用できます。プローティングエレメントは、ページ上でその横に配置されるエレメントの前に配置される必要があります。 */
	float: right;
	margin-left: 0px;
}
.fltlft { /* このクラスは、ページ上でフローティングエレメントを左側に配置するのに使用できます */
	float: left;
	margin-right: 0px;
}
.clearfloat { /* このクラスは、div またはブレークエレメントに適用される必要があり、また、フローティングエレメントが完全に含まれているコンテナの末尾の直前にある最後のエレメントである必要があります */
	clear:both;
	height:0;
}
.center {
	text-align:center;
}
