/*==================================================
  CSS information
  --------------------------------------------------
  Filename   ：base.css
  Description：基本スタイルを記述
==================================================*/
* {
	margin: 0;
	padding: 0;
}

body {
	background: #FFFFFF url(../img/bg.gif) repeat-x top;
	color: #3E3A39;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 90%;
/*	word-break: break-all; */
	text-align: center;
	-webkit-text-size-adjust: none;
	min-width: 1300px;
}
p {
	margin-bottom: 0.8em;
	text-align: justify;
	text-justify: inter-ideograph;
}
p.nm {
	margin-bottom: 0px;
}
h1, h2, h3, h4 {
	/*font-size: 100%;*/
}
hr {
	margin-bottom: 0.8em;
	border: 0px;
	border-bottom: 1px dashed #BBBBBB;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
th {
	font-weight: normal;
	text-align: left;
}
img {
	vertical-align: bottom;
}

/*--------------------------------------------------
  リンク
--------------------------------------------------*/
a { text-decoration: underline; }
a:link, a:visited { color: #195FAA; }
a:active, a:hover { text-decoration: none; }
a img { border: none; text-decoration: none; }

/*--------------------------------------------------
  フォントサイズ
--------------------------------------------------*/
.b  { font-weight: bold; }		/* 太字 */
.fs { font-size: 85%; }				/* 小さい文字 */
.fm { font-size: 120%; }			/* 大きい文字 */

/*--------------------------------------------------
  フォントカラー
--------------------------------------------------*/
.red  { color: #FF0000; }			/* 赤 */
.pick { color: #195FAA; }			/* 注目色 */
.thin { color: #888888; }			/* 薄い色 */

/*--------------------------------------------------
  配置
--------------------------------------------------*/
.cen { text-align: center; }	/* 中央寄せ */
.lft { text-align: left; }		/* 左寄せ */
.rit { text-align: right; }		/* 右寄せ */

.vtop { vertical-align: top; }		/* 上詰め */
.vbtm { vertical-align: bottom; }	/* 下詰め */

.fl { float: left; }	/* 左寄せ（float） */
.fr { float: right; }	/* 右寄席（float） */

.indent { text-indent: -0.5em; }

/*--------------------------------------------------
  画像配置（文字を回り込ます）
--------------------------------------------------*/
.img_lft { float: left; margin-right: 20px; }
.img_rit { float: right; margin-left: 20px; }

/*--------------------------------------------------
  IME（フォームコントロール用）
--------------------------------------------------*/
/* 半角 */
.disabled {
	ime-mode: disabled;
	border: 1px solid #A5ACB2;
	padding: 2px;
}
/* 全角(切替可) */
.active {
	ime-mode: active;
	border: 1px solid #A5ACB2;
	padding: 2px;
}

/*--------------------------------------------------
  その他
--------------------------------------------------*/
/* フロート解除 */
.cb { clear: both; }
/* クリアフィックス */
.cf:after,
.cb:after,
.box:after,
.main: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 */ 