@charset "UTF-8";

/*==========================================================================================
	CSS initialize
	URL:
	Date: 2014-07-20(+09:00)
	Maintained: T.Shimizu
==========================================================================================*/

/* Table of contents: */
/* ------------------
 *
 * 00:初期化
 * 00:accessibility tweaks
 *
 */

/* プロパティの指定順序 */
/*
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 */



/*==========================================================================================

	//初期化

==========================================================================================*/
html {
	height:100%;
	/*font-size:62.5%;*/
}
body {
	height:100%;
	font-family:"メイリオ","Meiryo","Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3","Osaka","ＭＳ Ｐゴシック",sans-serif;
}
pre,code,kbd,samp,tt	{
	font-family:monospace;
	line-height:1;
}


/*==========================================================================================

	// マージン・パディングをリセット

==========================================================================================*/
body,div,h1,h2,h3,h4,h5,h6,form,ul,li,ol,dl,dt,dd,fieldset,pre,code,legend,blockquote {
	margin: 0;
	padding:0;
}

p { margin: 0;}


h1,h2,h3,h4,h5,h6 {
	font-size:14px;
	font-size:1.4rem;
}
/*
h1 {
	font-size: 189%;
}

h2 {
	font-size: 161.6%;
}

h3 {
	font-size: 146.5%;

}

h4 {
	font-size: 123.1%;
}

h5 {
	font-size: 108%;
}

h6 {
	font-size: 108%;
}
*/


/*==========================================================================================

	// リスト

==========================================================================================*/
li { list-style:none; }



/*==========================================================================================

	// イメージ

==========================================================================================*/
img { border:none; max-width: 100%; height: auto;}
/** html .img { behavior: expression(IEPNGFIX.fix(this)); }*/



/*==========================================================================================

	// フォーム

==========================================================================================*/
input,textarea,select {
	font-size:100%;
}
legend { display:none;}
fieldset { border:none; }
button {
	width: auto;
	padding:0;
	margin:0;
	background:none;
	border:0;
	font-size:0;
	line-height:0;
	overflow:visible;
	cursor:pointer;
}


/*==========================================================================================

	// テーブル

==========================================================================================*/
table {
	empty-cells:show;
	border-collapse:collapse;
	border-spacing:0;
	font-size:inherit;
	font:100%;
}
caption {
	text-align:left;
}
th {
	font-weight:normal;
	text-align:left;
}
td {
	text-align:left;
}



/*==========================================================================================

	//

==========================================================================================*/
q:before,q:after {
	content:'';
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}




/*==========================================================================================

	// accessibility tweaks

==========================================================================================*/

/* スキップボタン
==========================================================================================*/
.skipNav {
	position : absolute ;
	left : -999px ;
	width : 999px ;
}


/* 区切り線
==========================================================================================*/
hr.divider { display:none;}
