@charset "shift_jis";

/*全体の設定-------------------------------------------------------------------*/
body {
	font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 75%;		/* %指定でなく、pxでもOK */
	line-height: 2;
	color: #FFFFFF;		/* 白 */
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #2e2e2e url(img/bg.gif) repeat-x top;
}

/*細々の設定-------------------------------------------------------------------*/

h1,h2,h3,p,ul,li{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
	vertical-align: bottom;
}

.look {
	color: #FF0000;		/* 赤 */
	background: #000000;
}

.look2 {
	color: #FFFFFF;
	background: #2e0004;	/* あずき色 */
}

.redbox {			/* 赤四角 */
	color: #A90310;
}

.yellowbox {		/* 黄四角 */
	color: #F0F000;
}

/*リンクカラー設定-------------------------------------------------------------*/
a {
	color: #FFFFFF;		/* カーソルが無いときは白 */
/*
	text-decoration: none;	/* 下線はずし指定 */
*/
}

a:hover {
	color: #ad0a17;		/* カーソルありは赤 */
	background: #000000;
}



/*コンテナ--------------------------------------------------------------------*/
#container {
	background: #2e2e2e url(img/container_bg.gif) no-repeat center top;
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 4px;
	padding-left: 4px;
	width: 760px;
}

/*ヘッダー--------------------------------------------------------------------*/
#header {
	background: url(img/header_bg.gif) repeat-x;
	height: 94px;
	position: relative;
}

#header h1 {
	font-size: 11px;
	font-weight: normal;
	position: absolute;
	left: 10px;
	top: 15px;
	line-height: 13px;
}

#header #logo {
	position: absolute;
	left: 20px;
	bottom: 10px;	/* 下からの位置 */
}



/*右上ナビメニュー----------------------------------------------------------------*/
#nav {
	position: absolute;
	top: 5px;
	right: 0px;
	line-height: 15px;
	background: url(img/nav_bg.gif) no-repeat left top;
	height: 22px;
	padding-right: 15px;
	padding-left: 30px;
}

#nav li {
	display: inline;
	margin-left: 10px;
	background: url(img/arrow1.gif) no-repeat left center;
	padding-left: 22px;
}



/*メインメニュー---------------------------------------------------------------*/
#menu {
	background: #CCCCCC url(img/menu_bg.gif) no-repeat;
	height: 40px;
}

#menu li {
	background: url(img/menu_bg_line.gif) no-repeat right;
	float: left;
	height: 40px;
}

#menu li a {
	color: #000000;
	text-decoration: none;
	font-size: 13px;
	display: block;
	width: 8em;
	text-align: center;
	padding-right: 5px;
	padding-left: 5px;
	line-height: 40px;
}

#menu li a:hover {
	background: url(img/menu_bg_over.gif);
	color: #FFFFFF;
}



/*コンテンツ枠
-------------------------------------------------------------------------------------*/
#contents {
	background: url(img/contents_bg.gif) repeat-y;
}



/*メインコンテンツ--------------------------------------------------------------*/
#main {
	float: left;
	width: 490px;
	display: inline;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: 12px;
}

#main h2 {
	font-size: 13px;
	line-height: 31px;
	background: #000000 url(img/midashi_bg.gif) no-repeat;
	height: 33px;
	width: 475px;
	padding-left: 15px;
}

#main p {
	margin: 0.5em 10px 1em;
}

#main-img {
	background: url(img/main_img_bottom.gif) no-repeat bottom;
	padding-bottom: 9px;
}



/*サブコンテンツ（右側のブロック）--------------------------------------------------*/
#sub {
	float: right;
	width: 220px;
	margin-top: 20px;
	margin-bottom: 50px;
	display: inline;
	margin-right: 12px;
	color: #CCCCCC;
}

#sub p {
	margin-top: 0.5em;
	margin-bottom: 1em;
}

#sub h3 {
	font-size: 100%;
	background: #3C0005;
	border: 1px solid #000000;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

.sub-menu a {
	background: #240003;
	text-decoration: none;
	display: block;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
	width: 218px;
	letter-spacing: 0.5em;
	text-align: center;
	color: #b0b0b0;
}

.sub-menu a:hover {
	background: #520007;
	color: #FFFFFF;
}



/*フッター
-------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	background: url(img/footer_bg.gif) no-repeat center;
	height: 80px;
	padding-top: 20px;
	font-size: 11px;
	width: 768px;
	margin-right: auto;
	margin-left: auto;
}



/*clearfix
-------------------------------------------------------------------------------------*/
#contents:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

#contents { display: inline-block; }

/* Hides from IE-mac \*/
*html #contents { height: 1%; }
#contents { display: block; }
/* End hide from IE-mac */
