/*-----------------------------------------------
 Reset / Base
-----------------------------------------------*/
html, body,
applet, object, iframe,
div, span, p, h1, h2, h3, h4, h5, h6, address,
a, img,
form, label {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}

html {
	overflow-y: scroll;
}

body {
	margin: 0 auto;
	padding: 0;
	zoom: 1;
}

/*見出し*/
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

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

ol {
	margin: 0 0 0 2em;
	padding: 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;
}

/*ディスプレイ*/
.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;
	/**/
}


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

/*ダウンロード・外部リンク　アイコン*/
a[href$=".pdf"] {
	padding-left:20px;
	background:url(../img/dlIconPdf.gif) no-repeat left center;
	}
a.pdf_noicon{/*画像のpdfリンクアイコンを外す*/
	padding-left:0px;
	background:none;
	}
a[href$=".xls"] ,
a[href$=".xlsx"]{
	padding-left:20px;
	background:url(../img/dlIconXls.gif) no-repeat left center;
	}
a[href$=".ppt"] ,
a[href$=".pptx"]{
	padding-left:20px;
	background:url(../img/dlIconPpt.gif) no-repeat left center;
	}
a[href$=".doc"],
a[href$=".docx"] {
	padding-left:20px;
	background:url(../img/dlIconDoc.gif) no-repeat left center;
	}
a.ex-link:after {
	content: url(../img/outLink_s0.png);
	vertical-align: top;
	margin: 0 5px 0 5px;
}

map area {
	cursor: pointer;
	cursor: hand;
}


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

.red {
	color:#F00;
}

.blue {
	color:#00F;
}

.white {
	color:#FFF;
}


/*-----------------------------------------------
 その他
-----------------------------------------------*/
.link_img:hover{
	opacity:0.75;
	filter: alpha(opacity=75); /* IE lt 8 */
	-ms-filter: "alpha(opacity=75)"; /* IE 8 */
	-khtml-opacity: .75; /* Safari 1.x */
	-moz-opacity: .75; /* FF lt 1.5, Netscape */
}


