@charset "UTF-8";

/* [CSS設定目次]------------------------------------------------------------------------------------

■全体的な設定
■リンク設定
■wrapper・container
■header
■utility
■pageTop
■footer
■subNavi
■footer下部固定

------------------------------------------------------------------------------[CSS設定目次]終わり */

/* [全体的な設定]-------------------------------------------------------------------------------- */

/* 950px・margin: 0auto指定------------------------------ */

div#hdrInner,div#footerInner {
	width: 950px;
	margin: 0 auto;
}

/* -----------------------------/950px・margin: 0auto指定 */

/* スクロールバーの有無によるズレ対策-------------------- */
html {
	/* Firefox */
	overflow-y:scroll;
	/* Safari・Opera・Google Chrome */
	height:100%;
	margin-bottom:1px;
}
/* -------------------/スクロールバーの有無によるズレ対策 */

/* フォント・テキスト関連-------------------------------- */
body {
	color: #444;
	font: 0.8em/1.7em "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
	letter-spacing: 0.14em;
}

p {
	margin-bottom: 1em;
}

/* 中央揃え */
.txtC {
	text-align: center;
}

/* 右寄せ */
.txtR {
	text-align: right;
}

/* 太字 */
.bld {
	font-weight: bold;
}

/* 赤文字 */
.red {
	color: #c00;
}

/* 1.2em */
.em12 {
	font-size: 1.2em;
}

/* 元のフォントサイズ */
.txtRe {
	font-size: 0.8em;
}

/* -------------------------------/フォント・テキスト関連 */

/* 見出し------------------------------------------------ */

/* 読み上げ用見出し */
h2 {
	width: 0;
	height: 0;
	overflow: hidden;
}

div#main h3 {
	width: 171px;
	margin: 0 auto 55px;
}
h4 {
	margin-bottom: 1em;
}
h5 {
}
h6 {
}
/* -----------------------------------------------/見出し */

/* 回り込み：左------------------------------------------ */
.floatL {
	float:left;
}
/* -----------------------------------------/回り込み：左 */

/* 回り込み：右------------------------------------------ */
.floatR {
	float:right;
}
/* -----------------------------------------/回り込み：右 */

/* クリア------------------------------------------------ */
.clr {
	clear:both;
}
/* -----------------------------------------------/クリア */

/* 段落ごとの大きな行間---------------------------------- */
.para {
	margin-bottom: 4em;
}
/* ---------------------------------/段落ごとの大きな行間 */

/* --------------------------------------------------------------------------[全体的な設定]終わり */


/* [リンク設定]---------------------------------------------------------------------------------- */

a:link,a:visited {
	color: #336a33;
	text-decoration: underline;
}

a:hover,a:active {
	color: #336a33;
	text-decoration: none;
}

/* ----------------------------------------------------------------------------[リンク設定]終わり */


/* [container]----------------------------------------------------------------------------------- */

div#container {
	background: #fff url(../images/bg.jpg) repeat-x;
}

/* -----------------------------------------------------------------------------[container]終わり */


/* [header]-------------------------------------------------------------------------------------- */

div#header {
	height: 41px;
	position: relative;
	background: #000 url(../images/header_bg.jpg) repeat-x;
}

div#header h1 {
	position: absolute;
	top: 5px;
}

/* --------------------------------------------------------------------------------[header]終わり */


/* [utility]------------------------------------------------------------------------------------- */

div#utility {
	position: absolute;
	top: 5px;
	left: 820px;
}

/* -------------------------------------------------------------------------------[utility]終わり */


/* [pageTop]------------------------------------------------------------------------------------- */

p#pageTop {
	float: right;
	margin-top: -15px;
	clear: both;
}

/* -------------------------------------------------------------------------------[pageTop]終わり */


/* [footer]-------------------------------------------------------------------------------------- */

div#footer {
	background: #000 url(../images/footer_bg.jpg) repeat-x;
}

address {
	font-size: 0.9em;
	color: #999;
	clear: both;
	margin-top: 1.2em;
}

/* --------------------------------------------------------------------------------[footer]終わり */


/* [subNavi]------------------------------------------------------------------------------------- */

ul#subNavi li {
	float: left;
	margin: 2em 1.5em 0.6em 0;
}

/* -------------------------------------------------------------------------------[subNavi]終わり */


/* [footer下部固定]------------------------------------------------------------------------------ */

html,body,div#wrapper,div#container {
	height: 100%;
}

div#wrapper > div#container {
	height: auto;
	min-height: 100%;
}

 /* paddingにfooterのheightと同じ値を指定 */
div#contents {
	padding-bottom: 140px;
}

/* margin-topにfooterのheightと同じ値のネガティブマージンを指定 */
div#footer {
	clear: both;
	height: 140px;
	position: relative;
	margin-top: -140px;
}

/* CLEAR FIX*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/* End hide from IE-mac */

/* ------------------------------------------------------------------------[footer下部固定]終わり */