/* コメントは削除可能 */
/* [CSS設定目次--------------------------------------------------------------------
01.全体的な設定
02.レイアウト設定
03.ヘッダ
04.ナビゲーション
05.コンテンツ
06.フッター
--------------------------------------------------------------------------------*/
/* 01.全体的な設定---------------------------------------------------------------*/
/* 文字コード */
@charset "utf-8";

/* 各ブラウザの差異をリセット */
* {
	margin: 0;
	padding: 0;
	font: normal normal normal 100%/1.3 "ＭＳ Ｐゴシック","Osaka",sans-serif;
	border: none;
}

/* 基本デザイン */
body {
	text-align: center;
	margin: 0 auto;
	width: 760px;
}

/* リンクスタイル基本 */
a:link {
	color: #003399;
	text-decoration: none;
}
a:visited {
	color: #003399;
	text-decoration: none;
}
a:hover {
	color: #003399;
	text-decoration: underline;
}
a:active {
	color: #003399;
	text-decoration: underline;
}

/* 見出し(hタグ)等 */
h1 {
	display:none;
}
h2 {
	display:none;
}
h3 {
	margin:10px 0px;
	padding: 1px 5px;
	color: #666;
	font-size: 13px;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	letter-spacing: 0.1em;
	background-color: #ccc;
	border: 1px solid #999;
}
h4 {
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 15px;
	color: #666;
    font-size: 13px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	background-image: url(images/mark_h4.gif);
	background-position: center left;
	background-repeat: no-repeat;
}
.tx_bo {
	font-weight: bold;
	letter-spacing: 0.1em;
}
.note {
	color: #ff3333;
}
.tx_s {
	font-size: 11px;
}
	
/* リストスタイル マーカー */
ul{ 
	margin: 0;
	padding:0px 10px;
    list-style: none;
	width: 600px;
}
li{ 
	list-style: none;
	list-style-position: inside;
	padding-left: 2em;
	background-image: url(images/mark_li.gif);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}

/* 02.レイアウト設定---------------------------------------------------------------*/
/* 位置レイアウト個別 */
.aln_l {
	text-align: left;
}
.aln_c {
	text-align: center; 
}
.aln_r {
	text-align: right; 
}
.valn_t {
	vertical-align: top;
}
.valn_m {
	vertical-align: middle;
}
.valn_b {
	vertical-align: bottom;
}

/* マージン個別 */
.wd_f {
	padding: 0px 50px;
}
.wd_l {
	padding: 0px 30px 0px 50px;
}
.wd_r {
	padding: 0px 50px 0px 30px;
}
.wd_l2 {
	padding: 0px 10px 0px 50px;
}
.wd_r2 {
	padding: 0px 50px 0px 10px;
}

/* その他レイアウト */
.bk_fix {
	background-repeat: no-repeat;
}
/* 03.ヘッダ---------------------------------------------------------------*/
/*　ヘッドライン */
.hdln {
	padding: 0px 25px 0px 0px;
	color: #333;
	font-size: 11px;
	font-family: sans-serif;
	letter-spacing: 0.1em;
}

/* 04.ナビゲーション---------------------------------------------------------------*/
/* ナビゲーション */

/* 05.コンテンツ---------------------------------------------------------------*/
/*　本文(編集領域) */
.cnts {
	color: #333;
	font-size: 12px;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	line-height: 160%;
}
img.icon {
	margin: 0px;
	padding: 0px 10px 10px 0px;
	float:left;
	vertical-align:top;
}

/* 06.フッタ---------------------------------------------------------------*/
/* フッター */
.foot {
	color: #333;
	font-family: sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
}

