/*-----------------------------------------------
 Reset / Base
-----------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	/*border: 0;*/
	font-style: normal;
	/*vertical-align: baseline;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	overflow-y: scroll;
}

body {
	line-height: 1;
	zoom: 1;
}

img {
	border: 0;
}

/*リスト*/
ul {
	margin: 0 0 0 1.5em;
	padding: 0;
}

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

table {
	/*border-collapse: collapse;*/
	/*border-spacing: 0;*/
}

/*レイアウト*/
.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;
}

/*画像top配置*/
.imgtop img{
	vertical-align: top;
}

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

.display-b {
	display: block;
}

.display-ib {
	display: inline-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;
	/**/
}



/*-----------------------------------------------
 Link
-----------------------------------------------*/
a {
	/*text-decoration: none;*/
	color: #04C;
}

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;
}

.deep_red {
	color:#cd0000;
}

.blue {
	color:#00F;
}

.white {
	color:#FFF;
}



/*-----------------------------------------------
 その他
-----------------------------------------------*/
a img:hover {
	opacity:0.75;
	transition: all 0.2s ease-in-out 0s;
}



