@charset "utf-8";

/*　★　index.htmlページの専用CSS　★　*/

/*------------------------------------------------------------　左ボックス定義*/
div#mainbox_L {/*左ボックス領域*/
	width: 660px;
	float: left;
}
div.box_L {/*段組の左に来る領域に指定*/
	float: left;
	width: 322px;
	border: 1px solid #CCCCCC;
	margin-bottom: 10px;
}
div.box_R {/*段組の右に来る領域に指定*/
	float: right;
	width: 322px;
	border: 1px solid #CCCCCC;
	margin-bottom: 10px;
}
.text {/*段組内の文章領域*/
	width: 182px;
	float: left;
	margin-bottom: 10px;
}
.image {/*段組内の画像領域*/
	width: 120px;
	float: right;
	margin-bottom: 10px;
}

/*------------------------------------------------------------　右ボックス定義*/
div#mainbox_R {/*右ボックス領域*/
	width: 171px;
	float: right;
}
input.password {/*ログインパスワード部分*/
	width: 60px;
}
input.login {/*ログインボタン部分*/
	width: 50px;
	font-size: 10px;
	vertical-align: top;
}
/*↓　新着情報部分ここから　↓*/
dl#whatsNew {/*新着情報の領域（領域外はスクロールで表示）*/
	height: 300px;
	overflow: auto;
	padding: 5px;
}
dl#whatsNew dt {/*日付部分*/
	color: #CC9900;
	background: url(../images/arrow.gif) no-repeat left top;
	height: 16px;
	line-height: 16px;
	text-indent: 20px;
	margin: 10px 0;
	font-weight: bold;
}
dl#whatsNew dd.news_title {/*タイトル部分*/
	font-weight: bold;
	color: #0033FF;
	margin: 5px 0;
}
dl#whatsNew dd.news_text {/*テキスト部分*/
	padding-bottom: 5px;
	border-bottom: 1px dashed #CCCCCC;
}
/*↑　新着情報部分ここまで　↑*/
ul#Links {/*リンク関連のリスト*/
	list-style: square inside;
	color: #00CC66;
}

