@charset "utf-8";


/* ---------------------------------------------
　elements initialization 
------------------------------------------------ */

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
	

body{
	margin:0;
	padding:0;
	text-align:center;
	height:100%;
	line-height:1.7;
	overflow-x:hidden;
	-webkit-text-size-adjust:100%;
}

a img, fieldset, img{
	border:0;
	vertical-align: middle;
}

blockquote, dd, div, dl, dt, fieldset, form,
h1, h2, h3, h4, h5, h6, input, li, ol, p, pre,
select, span, textarea, td, th, ul{
	margin:0;
	padding:0;
}

abbr, acronym{
	border:0;
}

address, caption, cite, code, dfn, em, th, strong, var{
	font-style:normal;
	font-weight:normal;
}

caption, th{
	text-align:left;
}

code, kbd, pre, samp, tt{
	font-family:monospace;
	line-height:100%;
}

	/* for IE7 */
	*+html code, kbd, pre, samp, tt{
		font-size:108%;
	}

h1, h2, h3, h4, h5, h6{
	font-size:100%;
	font-weight:normal;
}

input, select, textarea{
	font-size:100%;
	border:none;
	background:none;
	background:#f8f8f8;
	border:1px solid #d6d6de;
}

ul li{
	list-style:none;
}

ol {
	margin-left: 23px;
}

q:before, q:after{
	content:'';
}

table{
	border-collapse:collapse;
	border-spacing:0;
	font-size:100%;
}

hr{
	display: none;
}

strong, em{
	font-weight: bold;
}

/* ------ font --------------------------------- */

body{
	font-size:14px;
	color: #000;
	font-family: "メイリオ","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック", Osaka ;
}


/* ------ links color -------------------------- */

a:link,
a:visited,
a:hover,
a:active{
	text-decoration:underline;
}
a:link          { color:#002ab4; }
a:visited       { color:#a600dd; }
a:active		{ color:#002ab4; }
a:hover			{ color:#5272dc;}


/* ------ clearfix scheme ---------------------- */

div:after {
	visibility:hidden;
	display:block;
	font-size:0;
	content:" ";
	clear:both;
	height:0;
}


