/* CSS Document */
/*-----------------------------------------------------
reset css
-------------------------------------------------------*/

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	background:transparent;
	border:0;
	font-size:100%;
	margin:0;
	outline:0;
	padding:0;
	vertical-align:baseline;
}
/*行の高さをフォントサイズと同じにしています*/
html , body {
	height:100%;
	line-height:1;
}
/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
/*ulのマーカー（行頭記号）を表示しないようにしています*/
ul {
	list-style:none;
}
/*引用符の表示が出ないようにしています*/
blockquote, q {
	quotes:none;
}
/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
/*テキストに打ち消し線が付くようにしています*/
del {
	text-decoration: line-through;
}
/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
	border-collapse:collapse;
	border-spacing:0;
}
/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px dashed #cccccc;
	margin:1em 0;
	padding:0;
}
/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
	vertical-align:middle;
}
/* hasLayout hack IE7ハック */
* {
	zoom:1;
}
/* Firefoxで縦スクロールバーの領域を表示 */
html>/**/body {
	overflow:-moz-scrollbars-vertical;
}


/* link要素 */


/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
	background:transparent;
	color:#4D4239;
	font-size:100%;
	margin:0;
	padding:0;
	text-decoration: underline;
	vertical-align:baseline;
}

a:hover {
	color:#666;
}
a:visited {
	color:#4D4239;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: underline;
}
/*HTML5タグをブロック要素にする */
header, section, footer, aside, nav, article, figure {
	display: block;
}
/*-----------------------------------------------------
 clearfix
-------------------------------------------------------*/

.clearfix:after {
	clear:both;
	content:".";
	display:block;
	height:0;
	line-height:0;
	visibility:hidden;
} /*IE7以外のモダンブラウザ向け*/
.clearfix {
	display:inline-block;
} /*IE7*/
/*Hides from IE-mac\*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
	zoom:1;
}

/*-----------------------------------------------------
 font
-------------------------------------------------------*/


body {
	font:13px/1.231 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, arial, helvetica, clean, sans-serif;
	*font-size:small;
	*font:x-small;
}
h1,h2,h3,h4,h5,h6{
 　　font-size:100%;
 　　font-weight:normal
}
select, input, button, textarea, button {
	font:99% arial, helvetica, clean, sans-serif;
}
table {
	font-size:inherit;
	font:100%;
}
pre, code, kbd, samp, tt {
	font-family:monospace;
	*font-size:108%;
	line-height:1;
}
* html body {
	font-family: 'ＭＳ Ｐゴシック', sans-serif;
}
*:first-child+html body {
	font-family: 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
}

table{
 　　border-collapse:collapse;
 　　border-spacing:0
}
fieldset,img{
 　　border:0
}
address,caption,cite,code,dfn,em,strong,th,var{
 　　font-style:normal;
 　　font-weight:normal
}

caption,th{
 　　text-align:left
}

 q:before,q:after{
 　　content:''
}
 abbr,acronym{
 　　border:0;
 　　font-variant:normal
 }
sup{
 　　vertical-align:text-top
}
sub{
 　　vertical-align:text-bottom
}
input,textarea,select{
 　　font-family:inherit;
 　　font-size:inherit;
 　　font-weight:inherit
}
input,textarea,select{
 　　*font-size:100%
}
legend{
 　　color:#000
}
