@charset "Shift_JIS";

/*----------------------------------------------------
デフォルトの定義
----------------------------------------------------*/

html {
	height: 100%;
	text-align: center;
}

body {
	height: 100%;
	text-align: left;
	margin: 0 auto;
}

* html div#container {
	height: 100%;
}

div#container {		/* コンテナ（コンテンツとフッターを含むサイトの構成要素すべてを囲む） */
	width: 900px;	/* サイトの横幅を入力 */
	margin: 0px auto;
	position: relative;
	min-height: 100%;
}

body > #container {
	height: auto;
}



/*----------------------------------------------------
レイアウトの定義
----------------------------------------------------*/

/* コンテンツ（フッターより上の要素を囲む） */
div#contents {
	padding-bottom: 100px; /* div#contentsと#footerの高さを合わせる */
}

/* フッター */
#footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 100px;/* div#contentsと#footerの高さを合わせる */
}


/*------------------------------------
以下、コンテンツ内の要素
------------------------------------*/

/* ヘッダー */
#header {
	width: 900px;
}

#header h1{
    padding:50px 0px 20px 10px;
}

#g-navi{
    padding:0px 10px 10px 10px;
}


/* サイドナビ --いずれかを選択 */
/*#left-navi {
	float: left;
	width: 200px;

}*/

#right-navi {
	float: right;
	width: 180px;

}

.right-menu li{
    padding:0px 0px 10px 10px;
}





/* メインエリア --必要なものを使用 */
#left-main {
	float: left;
	width: 650px;
}

#left-main .inner{
    padding-left:10px;
}

/*#right-main {
	float: right;
	width: 580px;
	background-color: #FFFFCC;
}*/


#main-img{
    position:relative;
    background:url(../../img/main_img.jpg) no-repeat;
	width:900px;
	height:300px
}

#main-img a{
    position:absolute;
	top:246px;
	left:22px;
}


.line-dot-x{
	background:url(../img/bar.jpg) repeat-x 0px 0px;
	width:100%;
	padding-top: 1px;
}

.line-dot-y{
	background:url(../img/line_dot_y.jpg) repeat-y center;
	height:100%;
}


#mid-main { /* ３段組の時に使用 */
	float: left;
	width: 900px;
}

#mid-main .inner{
    padding-left:10px;
}



#info{
    padding:0px 10px 10px 10px;
}


.top-bg{
	background-color:#f3f3f3;
	border: 1px solid #dddddd;
}



/* ページトップ */

.pagetop a{
    display:block;
    background:url(../img/pagetop.jpg) no-repeat;
    width:36px;
    height:12px;
}

.pagetop a:hover{
    background:url(../img/pagetop_s.jpg) no-repeat;
}



/* plants */

.img_border{
border:1px solid #dddddd;
width:450px;

}



/*----------------------------------------------------
その他の定義
----------------------------------------------------*/

/* 親要素でfloatを解除する .clearfix 開始 */
.clearfix:after {		/* IE以外のブラウザ用 */
	content: ".";		/* 新しい要素を作る */
	display: block;		/* 新しい要素をブロックレベル要素に */
	clear: both;		/* ブロックレベル要素をクリア */
	height: 0;			/* 高さを0pxに */
	visibility: hidden;	/* 表示しない */
}

.clearfix {				/* 要素の幅か高さを指定した場合，floatした子要素の高さも含めて算出するIEのバグを利用 */
	min-height: 1%;	/* IE7用 */
}

* html .clearfix {
	height: 1%;				/* IE6以前用 前行のimportantによってIE6以前にもmin-heigtと同じ動作をさせる */
}

/* Mac IE5.x用 Mac IE5.xのみ読んでしまうコメントアウトの書き方でinline-tableを当てる */
/*\*//*/
.clearfix{
  display:inline-table;
}
/**/
/* 親要素でfloatを解除する .clearfix 終了 */

