@charset "utf-8";
@import url("module.css");

/*------------------------------------------------------------
  Init Default HTML
------------------------------------------------------------*/

* {
	margin:0;
	padding:0;
	font-size:100%;
	font-style:normal;
	font-weight:normal;
	text-decoration:none;
	line-height:100%;
}

body {
	color:#333333;
	background-color:#ffffff;
	background-image:url(images/page_bg.gif);
	background-position:left top;
	background-repeat:repeat;
	font-family:"ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif;
}

a:link {
	color:#336699;
	text-decoration:none;
}
a:visited {
	color:#646488;
	text-decoration:none;
}
a:hover {
	color:#0099CC;
	text-decoration:none;
}
a:active {
	color:#0099CC;
	text-decoration:none;
}

img {
	border:0;
}

ul,ol {
	display:block;
	position:relative;
	list-style:none;
}

li {
	list-style-type:none;
}

dl {
	display:block;
}

dt {
	display:block;
}

dd {
	display:block;
	padding-left:1em;
}

strong {
	font-weight:bold;
}

table {
	border-collapse:collapse;
	border-spacing:0;
	empty-cells: show;
}

caption {
	caption-side:top;
	text-align:left;
}

th, td {
	text-align:left;
	vertical-align:top;
}

blockquote {
	margin:1em;
}

fieldset {
	margin:0.5em 0 1em 0;
	padding:1em;
	padding-top:0;
}

legend {
	color:#BA5132;
	font-size:small;
	font-weight:bold;
	padding:0 1em 0.5em 1em;
}

address {
	letter-spacing:0.2em;
}

/*------------------------------------------------------------
  Set Base Layout Style
------------------------------------------------------------*/



/*------------------------------------------------------------
  Common Class - Color
------------------------------------------------------------*/

.cc {
	color:#85784C;	/* Corporate Color */
}

.brown {
	color:#857951;
}
.white {
	color:#FFFFFF;
}
.red {
	color:#FF3300;
}
.green {
	color:#669900;
}
.blue {
	color:#006699;
}
.yellow {
	color:#FFCC00;
}

/*------------------------------------------------------------
  Common Class - Position
------------------------------------------------------------*/

.fll { float:left; }
.flr { float:right;}

.al { text-align:left; }
.ac { text-align:center; }
.ar { text-align:right; }

.vat { vertical-align:top; }
.vam { vertical-align:middle; }
.vab { vertical-align:bottom; }

.fix {
	width:100%;
}
.clear {
	clear:both;
}

.space {
	width:100%;
	height:20px;
}

/*------------------------------------------------------------
  Common Class - Text
------------------------------------------------------------*/

.s {
	font-size:x-small;
	line-height:1em;
}
.m {
	font-size:small;
	line-height:1em;
}
.l {
	font-size:medium;
	line-height:1em;
}
.stx {
	font-size:x-small;
	line-height:1.5em;
}
.mtx {
	font-size:small;
	line-height:1.5em;
}
.ltx {
	font-size:medium;
	line-height:1.5em;
}

/*------------------------------------------------------------
  Common Class - Display
------------------------------------------------------------*/

.hide {
	display:none;
}

.noPrint {
	display:none;
}

