/*-----------------------------------------------
 Reset
-----------------------------------------------*/
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,
a, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	
	/*border: 0;*/
	
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	
	-webkit-box-sizing: border-box;	/*paddingとborderの値を、要素の幅と高さに含める*/
	-moz-box-sizing: border-box;	/*paddingとborderの値を、要素の幅と高さに含める*/
	box-sizing: border-box;			/*paddingとborderの値を、要素の幅と高さに含める*/
}

article, aside, dialog, figure, figcaption,
header, footer, nav, section {
	display: block;
}

html {
	overflow-y: scroll;
}

body {
	line-height: 1;
	-ms-text-size-adjust: 100%;		/*文字サイズ自動調整*/
	-webkit-text-size-adjust: 100%;	/*文字サイズ自動調整*/
}

img {
	border: 0;
}

ul {
	margin: 0 0 0 1.5em;
	padding: 0;
}

ol {
	margin: 0 0 0 2em;
	padding: 0;
}

table {
	border-collapse: collapse;/*隣接するセルのボーダーを重ねて表示する*/
}

/*input, select {
	vertical-align: middle;
}*/



/*-----------------------------------------------
 Link
-----------------------------------------------*/
a {
	/*text-decoration: none;*/
	color: #04C;
	transition: all 0.4s ease-in-out 0s;
}

/*a img:hover {
	opacity: 0.6;
	transition: all 0.4s ease-in-out 0s;
}*/

a:link {/*未訪問*/
	/*text-decoration: none;*/
	color: #04C;
}

a:visited {/*訪問済み*/
	/*text-decoration: none;*/
	color: #800080;
}

a:hover {/*カーソルでポイント*/
	/*text-decoration: none;*/
	color: #C00;
}

a:active {/*クリック*/
	/*text-decoration: none;*/
	color: #C00;
}

a:focus {/*タブでポイント*/
	/*text-decoration: none;*/
	color: #C00;
	outline: 0 none;
}




/*-----------------------------------------------
 Font
-----------------------------------------------*/
.bold {
	font-weight: bold;
}

.red {
	color:#F00;
}

.blue {
	color:#00F;
}

.white {
	color:#FFF;
}



/*-----------------------------------------------
 Others
-----------------------------------------------*/
nav ul {
	list-style:none;
}

hr {
	height:1px;
	margin:1em 0;
	padding:0;
	border:0;
	border-top:1px solid #cccccc;
	display:block;
}

mark {/*マーカーで線を引いたようにする*/
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

/*レイアウト*/
.align-l {
	text-align: left;
}
.align-c {
	text-align: center;
}
.align-r {
	text-align: right;
}
.valign-t {
	vertical-align: top;
}
.valign-m {
	vertical-align: middle;
}
.valign-b {
	vertical-align: bottom;
}
.center {
	margin: 0 auto;
}

/*１行目を0.5字上げる*/
.jiage50 {
	text-indent: -0.5em;
}

/*２行目を１字下げる*/
.kome {
	padding-left: 1em;
	text-indent: -1em;
}

/*画像bottom配置*/
.imgbtm img{
	vertical-align: bottom;
}

/*ディスプレイ*/
.display-i {
	display: inline;
}

.display-b {
	display: block;
}

/*ポジション*/
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

/*フロート*/
.float-l {
	float: left;
}

.float-r {
	float: right;
}

/*フロートクリア*/
.clear {
	clear: both;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
}
.clearfix {
	/zoom: 1;
}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}



