@charset "utf-8";
/* base.css */

/**
 * 初期化
 *
 */
* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	overflow-y: scroll;
}

body {
	height: 100%;
	color: #1A1A1A;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 18px;
	letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 12px;
	font-weight: normal;
}

ul li {
	list-style: none;
}

img {
	border: none;
}

b {
	font-weight: normal;
}

/**
 * コンテナー定義
 *
 */
#container {
	position: relative;
	width: 800px;
	/*min-height: 100%;*/
	height: 100%;
	margin: 0 auto;
}

body > #container {
	height: auto;
}

/**********************************
 * ヘッダー領域
 *
 **********************************/
#header {
	position: relative;
	width: 798px;
	height: 300px;
	border: 1px solid #000000;
	background: #EDDCD2;
	z-index: 1;
}

/* 画面タイトル領域 */
#cover {
	position: relative;
	width: 798px;
	height: 50px;
	background: #70100C;
	text-align: center;
}

/* 画面タイトル */
#cover h1 {
	position: relative;
	top: 3px;
}

/* ロゴ領域（全体） */
#logoflash {
	position: relative;
	width: 798px;
	height: 220px;
}

/* ロゴ領域（左側）*/
#logoleft {
	position: relative;
	float: left;
	width: 399px;
	height: 220px;
	background: url(../images/header.gif) no-repeat 250px 42px;
}

/* キーワード画像 */
#logoleft .keyword {
	position: relative;
	top: 10px;
	left: 30px;
}

/* ロゴ領域（右側） */
#logoright {
	position: relative;
	float: left;
	width: 399px;
	height: 200px;
	background: url(../images/tel.gif) no-repeat 10px 10px;
}

/* ロゴマーク */
#logoflash .logo {
	position: relative;
	top: 30px;
	left: 80px;
}

/* メッセージ */
#logoflash p {
	position: relative;
	top: 110px;
	left: 20px;
	width: 370px;
	font-size: 12px;
	line-height: 16px;
/*	line-height: 1.2em;
	font-size: 1.2em;*/
}

/* ナビゲーション領域 */
#navi {
	clear: both;
	position: relative;
	width: 798px;
	height: 30px;
}

/* ナビゲーション */
#navi ul {
}

#navi ul li {
	float: left;
}

/* ナビゲーションアンカー */
#navi a,
#navi a:link,
#navi a:visited {
	display: block;
	padding-left: 4px;
	padding-right: 5px;
	color: #1A1A1A;
	text-decoration: none;
	border-right: 1px solid #1A1A1A;
	background: #EDDCD2;
}

#navi a:hover {
	color: #7D0C1A;
	text-decoration: underline;
}

#navi ul li ul {
	position: absolute;
	top: 20px;
	width: 150px;
	height: 100px;
	margin-left: -1px;
	z-index: 1;
}

#navi ul li ul li {
	width: 140px;
	border-left: 1px solid #1A1A1A;
	border-bottom: 1px solid #1A1A1A;
}

#navi a.clear {
	float: none;
	border: none;
}

#navi a.hover {
	display: block;
	border: none;
}

/**********************************
 * コンテンツ領域
 * 
 **********************************/
#contents {
	position: relative;
	width: 800px;
	height: 100%;
	margin-top: 10px;
}

/**********************************
 * フッター領域
 *
 **********************************/
#footer {
	position: relative;
	clear: both;
	width: 798px;
	height: 80px;
	background: #70100C;
	border: 1px solid #000000;
	text-align: center;
	font-size: 0.8em;
	color: #FFFFFF;
}

/* ナビゲーション */
#footer ul {
	margin-top: 5px;
	margin-bottom: 5px;
}

#footer ul li {
	float: left;
}

/* ナビゲーションアンカー */
#footer a,
#footer a:link,
#footer a:visited {
	display: block;
	padding-left: 4px;
	padding-right: 5px;
	color: #FFFFFF;
	text-decoration: none;
	border-right: 1px solid #FFFFFF;
}

#footer a:hover {
	text-decoration: underline;
}

#footer a.clear {
	clear: both;
	padding-right: 0;
	border: none;
}

#footer p {
	clear: both;
}