@charset "UTF-8";

/* ================================
	default
================================ */
/* html
-------------------------------- */
html{
	overflow-y: scroll;
}

/* フォントスタイル
-------------------------------- */
html{
	font-size: 62.5%; /* 1em = 10px */
}
body{
	/* chromeの解釈変更? 要検証 */
}
.page{
	font-size: 13px;
	font-size: 1.3rem;
	font-family:"Lucida Grande","Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.7;
	color: #333;
}

/* for IE6/7 */
body,
input,
textarea{
	*font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
}

small,
figcaption{
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 1.5;
	text-align: justify;
	text-justify:inter-ideograph;
}

p{
	text-align: justify;
	text-justify:inter-ideograph;
}

i{
	font-style: normal;
}

/* ベースリンクカラー
-------------------------------- */
a,
a:link{
	color: #a80000;
	text-decoration: none;
}
a:visited{
	color: #a80000;
}
a:hover{
	color: #000;
}
a:active{
}
a:focus{
}


/* list
-------------------------------- */
ul,
ol{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* clerfix -micro clearfix
-------------------------------- */
.cf:before,
.cf:after{
	content: "";
	display: table;
}
.cf:after{
	clear: both;
}
.cf{
 *zoom: 1;
}

/* 画像ベースライン
-------------------------------- */
img{
	vertical-align: bottom;
}

/* 画像回り込み
-------------------------------- */
.imgL{
	float: left;
	margin: 0 1em 0 0;
}
.imgR{
	float: right;
	margin: 0 0 0 1em;
}
.imgL,
.imgR{
	*display: inline;
	*zoom: 1;
}
/* txt用 */
.imgTXT{
	overflow: hidden;
}

/* テキスト行位置
-------------------------------- */
.tC{
	text-align: center;
}
.tR{
	text-align: right;
}

/* 非表示 チェック用
-------------------------------- */
.nodisplay{
	display: none;
}