/* html,body,liタグの初期化/初期設定 */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	color: #000;
}
input{
	font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-weight: bold;
}
ul li{
	list-style-type: none;
}
#navi ul li a{
	text-decoration: underline;
}
a{
	text-decoration: none;
}

/* 全体を囲う大枠 */
div#contents {
	background-color: #f6f6f6;
	position: relative;
	min-height: 85%;
	min-width: 912px;
	padding-bottom: 50px;
	border-bottom: solid 5px #9cc;
}

/* ヘッダーの背景 */
div#header-bk {
	background-image: url(../img/top.png);
	background-repeat: repeat;
	padding: 0px 0 0;
	height: 10px;
	width: 100%;
}

/* タイトルの背景 */
div#title {
	background-color: #ffffff;
	padding: 25px;
}

/* パンくずリスト */
#navi ul li{
	display: inline;
	font-size: 0.9em;
}
/* パンくずリスト（liの前に階層表記追加） */
#navi ul li:before{
	content: "　＞　";
	font-size: 0.9em;
}
/* パンくずリスト（最初のliだけ階層表記なし） */
#navi ul li:first-child:before{
	content: "";
}

/* コンテンツ内のボタン配置 */
div.sub_menu{
	text-align: center;
}

/* 最終手数料計算日 */
div.cal_date{
	margin-top: 20px;
	margin-left: 37px;
	font-size: 1em;
}

/* floatクリア */
div#clear{
	clear: both;
}

