/*==================================================
  CSS information
  --------------------------------------------------
  Filename   ：base.css
  Author     ：イースマイルシステムズ
  Description：基本スタイルを記述
==================================================*/
* {
	margin: 0;
	padding: 0;
}

body {
	background: #FFFFFF;
	background-size: 100% auto;
	color: #000;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 90%;
	text-align: center;
}
p {
	text-align: justify;
	text-justify: inter-ideograph;
	white-space: inherit;
}
h1,h2,h3,h4 {
	font-size: 100%;
}
hr {
	clear: both;
	margin-bottom: 10px;
	padding-top: 10px;
	border: 0px;
	border-bottom: 1px dotted #BBBBBB;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
th {
	font-weight: normal;
	text-align: left;
}

/*--------------------------------------------------
  リンク
--------------------------------------------------*/
a { text-decoration: none; }
a:link, a:visited { color: #009E84; }
a:active, a:hover { text-decoration: none; }
a img { border: none; text-decoration: none; }

/*--------------------------------------------------
  フォントサイズ
--------------------------------------------------*/
.b  { font-weight: bold; }		/* 太字 */
.fs { font-size: 75%; }				/* 小さい文字 */
.fm { font-size: 105%; }			/* 大きい文字 */
/*--------------------------------------------------
  フォントカラー
--------------------------------------------------*/
.red  { color: #e60012; }			/* 赤 */
.blue  { color: #0074C1; }			/* 青 */
.pick { color: #1E60AC; }			/* 注目色 */
.thin { color: #777777; }			/* 薄い色 */

/*--------------------------------------------------
  配置
--------------------------------------------------*/
.cen { text-align: center; }	/* 中央寄せ */
.lft { text-align: left; }		/* 左寄せ */
.rit { text-align: right; }		/* 右寄せ */

.vtop { vertical-align: top; }		/* 上詰め */
.vbtm { vertical-align: bottom; }	/* 下詰め */

/*--------------------------------------------------
  画像配置（文字を回り込ます）
--------------------------------------------------*/
.img_lft { float: left; margin-right: 18px; margin-bottom: 10px; }
.img_rit { float: right; margin-left: 18px; }

/*--------------------------------------------------
  その他
--------------------------------------------------*/
/* フロート解除 */
.cb { clear: both; }
/* クリアフィックス */
.cf:after,
.cb:after,
.box:after {
    clear: both;
    display: block;
    overflow: hidden;
    height: 0px;
    content: "";
}
/* 背景固定 */
html, body, #wrap {
	height: 100%;
}
body > #wrap {
	height: auto;
	min-height: 100%;
}
/* Hides from IE-mac \*/
* html .cf {
	height: 1%;
}
.cf {
	display: block;
}
/* End hide from IE-mac */ 