/*りぼんてんCSS*/


/*共通設定CSS呼び出し*/
/*
@import url(general.css);
@import url(basic.css);
*/

* {
	margin: 0;
	padding: 0;
	outline: none;
}

body {
	text-align: center;
}

img {
	border: none;
}

/*=====コンテナボックス=====*/
div#container {
	width: 85%;
	margin: 0 auto;
	background: #ffffff;
}
/*=====endコンテナボックス=====*/


/*=====ヘッダー=====*/
div#header {
	text-align: left;
	background: #999999;
	color: #CCCCCC;
	font-size: 12px;
}

h1 {
	display: inline;
	margin-left: 5px;
	margin-right: 5px;
	color: #cccccc;
	font-size: 12px;
	font-weight: normal;
}
/*=====endヘッダー=====*/



/*=====告知とメインビジュアル=====*/
div#notice {
	padding-top: 10px;
	margin-bottom: 10px;
}


.noticetext {
	width: 100%;
	margin: 3px auto;
	padding: 2px auto;
	border: #000000 solid 2px;
	font-size: 14px;
}
/*=====end告知とメインビジュアル=====*/



/*=====メニュー=====*/
div#menu {
	float: left;
	width: 200px;
	margin-left: -100%;
	margin-bottom: 15px;
	text-align: left;
}

ul {
	list-style: none;
}

li a {
	display: block;
	width: 193px;
	height: 28px;
	padding-left: 5px;
	border-top: #FFCCFF solid 1px;
	border-bottom: #993399 solid 1px;
	border-left: #FFCCFF solid 1px;
	border-right: #993399 solid 1px;
	background: #CC99CC;
	color: #000000;
	font-size: 12px;
	text-decoration: none;
	line-height: 30px;
}

li a:hover {
	border-top: #330000 solid 1px;
	border-bottom: #990000 solid 1px;
	border-left: #330000 solid 1px;
	border-right: #990000 solid 1px;
	background: #663333;
	color: #FFFFFF;
	text-decoration: underline;
}


/*=====endメニュー=====*/



/*=====メインコンテンツ=====*/
div#main {
	float: left;
	width: 100%;
	margin-bottom: 15px;
	text-align: left;
}

div#main div.inner {
	margin-left: 200px;
}
/*=====endメインコンテンツ=====*/



/*=====フッター=====*/
div#footer {
	clear: both;
	background: #999999;
}
/*=====endフッター=====*/

