@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: layout.css
 * Summary:   レイアウト用スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    structures
 *       =1-1    header
 *       =1-2    contents
 *                 - main contents
 *                 - navigation
 *       =1-3    pagetop
 *       =1-4    footer
 *       =1-5    sidepanel
 *
 * ===============================================================
*/



/** =1
 * ========================================
 * structures
 * ========================================
 */

#container {
	position: relative;
	margin: 0 auto;
	height: auto;
	min-height: 100%;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
	padding:0 10px 30px;
	background:#FFF;
	width:800px;
}
.ie6 #container {
	height: 100%;
}



	/** =1-1
	 * header
	 * ----------------------------------
	 */

	#header{
		background:url(../src/image/header.jpg);
		width: 100%;
		height: 72px;
		margin:0 0 10px 0;
	}
	#header h1{
		padding-top: 6px;
	}


	/** =1-2
	 * contents
	 * ----------------------------------
	 */

	#contents {
		padding-bottom: 60px;	/* #footerのheightと同じ値（フッターを最下部に固定する為） */
	}



		/* [ main contents ]
		------------------------------ */
		#contents #main {
			background: #FFFFFF;
		}





	/** =1-3
	 * pagetop
	 * ----------------------------------
	 */

	#pagetop {
		display: none;
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 10;
		width: 60px;
		height: 60px;
	}

	#pagetop a {
		display: block;
	}



	/** =1-4
	 * footer
	 * ----------------------------------
	 */

	#footer {
		position: absolute;
		bottom: 0;
		width: 800px;
		height: 60px;
		background: #356a9f;
		font-size: 11rem;
		font-size: 11px;
		color:#FFF;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
		-webkit-border-top-left-radius: 3px;
		-webkit-border-top-right-radius: 3px;
		-moz-border-radius-topleft: 3px;
		-moz-border-radius-topright: 3px;
	}
	#footer p.copy{
		margin: 10px;
		float:left;
	}
	#footer p.logo{
		float:right;
		margin:10px;
	}






