@charset "utf-8";

/*このCSSファイルは、ブラウザごとの初期設定の違いをリセットしています。
また、基本レイアウトのCSSを定義しています。*/

/* Base Styles
 * (classes defined in the Markup Guide)
 */
/* Suggested order:
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 */
 
/**ブラウザのリセット****************************************************/

/*すべての要素のマージンとパディングを０でリセット*/
* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
}

/* reset */
/*上記"*"（全称）に対する指定ではIEに効果がないことがあるため、めぼしいブロック要素を指定してリセット*/
html, body, form, fieldset, h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, address ,hr {
	margin: 0;
	padding:0;
}

/*すべてのｈやaddress,caption,em,strongなどのフォントサイズ、ウェイト、スタイルをすべてノーマルに設定
ただし、strongは後の定義でboldに設定しなおしている*/
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th {
	font-size: 1em;
	font-weight: normal;
	font-style: normal;
}
fieldset,img {
	border: none;
}

/*リストはリストマークなし（リストマークは、主に背景画像として設定する設計になっている）*/
ul,ol,li {
	list-style-type:none;
}
caption,th {
	text-align: left;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/**基本的なスタイルの設定****************************************************/
 
/* layout */
.clear {
	clear: both;
}
/*グローバルナビゲーション等、テキストを使った幅を固定したい横並びメニューで、IEやSafariで幅がずれるのを防ぐために指定するクラス*/
.clearfix {	/*IE対策用*/
	display: inline-block;
	display: block;
	zoom: 100%;
}
.clearfix:after {	/*Safari対策用*/
	display: block;
	clear: both;
	height: 0;
	font-size: 0.1em;
	visibility: hidden;
	line-height: 0;
	content: ".";
}

/* アンカーの基本スタイル */
a {
	color: #006699;
	text-decoration: underline;
}
a:link {
	color: #006699;
	text-decoration: underline;
}
a:hover {
	text-decoration: underline;
	color: #ff9900;
}
a:visited {
	color: #006699;
	text-decoration: underline;
}

/**基本レイアウトの設定****************************************************/

/* body */
body {
	background-color: #ffcc99;
	color: #333333;	/*#contentsと#footerは後の設定で別の色に設定されている*/
	font-size: 0.8em;	/*これがサイト全体の標準フォントサイズの設定である*/
	line-height: 130%;
}
body strong {
	font-weight: bold;	/*上の設定で一旦nomalにしたものをここで再度boldに設定*/
}


/* container （コンテンツ全体（header,contents,footer）を収容するボックス）
containerの外の背景色はbodyに定義されている
プリント時はprint.cssが有効になり、width:auto;になる*/
#container {
	width: 900px;
	min-height: 100%;
	margin-right: 0;
	margin-left: 0;
	background-color: #ffcc99;
}

/* header （ヘッダ：メインのタイトル画像とグローバルナビゲーション）*/
#header {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: left;
	background-image: url(../image_navi/bg_01.jpg);
	background-position: top left;
	background-repeat: repeat-y;
	background-color:　#ffcc99；
}


/* contents （コンテンツ：ヘッダとフッタの間の実記事部分）
このボックスは、#titlearea（ページタイトルタブとパンくずリスト）と#maincontents（記事部分）からなる
プリント時はprint.cssが有効になり、width:auto;になる*/
#contents {
	clear: both;
	width: 900px;
	height: auto;
	margin: 0;
	padding: 0 0 100px 0;	/*footerとの間（オレンジのグラデーション部分）は100px*/
	background-image: url(../image_navi/bg_03.jpg);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-color: #ffffff;
	color: #663300;
	text-align: center;
}

/* footer （フッタ：ページ下のオレンジ色バー、住所表示、コピーライト表示部分）*/
#footer {
	clear: both;
	width: 900px;
	height: auto;
	margin: 0;
	padding: 10px 0 0 0;
	border-top: 5px #ff9900 solid;
	background-color: #ffffff;
	color: #663300;
	text-align: center;
}


/* ie hack */
/* Hides from IE-mac \*/
*html #conainer {
	height: 100%;
}
* html #header {
	height:1%;
}
/* End hide from IE-mac */
