/******************************************************
div構造

┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃.cover　　　　　　　　　　　　　　　　　　　　　　┃
┃┏━━━━━━━━━━━━━━━━━━━━━━━┓┃
┃┃.container　　　　　　　　　　　　　　　　　　┃┃
┃┃┏━━━━━━━━━━━━━━━━━━━━━┓┃┃
┃┃┃.fix_width　　　　　　　　　　　　　　　　┃┃┃
┃┃┃┏━━━━━━━━━━━━━━━━━━━┓┃┃┃
┃┃┃┃#header 　　　　　　　　　　　　　　　┃┃┃┃
┃┃┃┣━━━━━━━━━━━━━━━━━━━┫┃┃┃
┃┃┃┃#main 　　　　　　　　　　　　　　　　┃┃┃┃
┃┃┃┃　　　　　　　　　　　　　　　　　　　┃┃┃┃
┃┃┃┃　　　　　　　　　　　　　　　　　　　┃┃┃┃
┃┃┃┗━━━━━━━━━━━━━━━━━━━┛┃┃┃
┃┃┗━━━━━━━━━━━━━━━━━━━━━┛┃┃
┃┣━━━━━━━━━━━━━━━━━━━━━━━┫┃
┃┃footer　　　　　　　　　　　　　　　　　　　　┃┃
┃┃┏━━━━━━━━━━━━━━━━━━━━━┓┃┃
┃┃┃.fix_width　　　　　　　　　　　　　　　　┃┃┃
┃┃┗━━━━━━━━━━━━━━━━━━━━━┛┃┃
┃┗━━━━━━━━━━━━━━━━━━━━━━━┛┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━┛


******************************************************/


html{
	height:100%;
}
body{
	height:100%;
}


/******************************************************
	#footerを最下部に表示
******************************************************/
* html div.cover{
	height:100%;
}
div.cover{
	margin:0px auto;
	min-height:100%;
	position:relative;
}
body > .cover {
	height:auto;
}
div.container{
	/*text-align:center;*/
	padding-top:30px;
    padding-bottom:50px;		/*　可変　#footerの縦幅　*/
}
footer{
	background-color:#ddd;
	position:absolute;
	bottom:0;
	font-size:90%;
	height:50px;				/*　可変　#footerの縦幅　*/
	line-height:50px;
	text-align:center;
	width:100%;
}

.fix_width{
	margin:0 auto;
	text-align:left;
	width:800px;				/*　可変　全体の横幅　*/
}


header{
	background-color:#f6f6f6;
	border-bottom:1px solid #ddd;
	padding:20px;
}
header .site_title{
	float:left;
	vertical-align:middle;
}
header ul{
	/*padding:5px 0 5px 420px;*/
	padding-left:420px;
}
header ul li{
	border-bottom:1px solid #ddd;
	border-top:1px solid #ddd;
	border-right:1px solid #ddd;
	float:left;
	font-size:14px;
	font-weight:bold;
	/*height:28px;*/
	height:38px;
	line-height:38px;
	text-align:center;
	width:88px;
}
header ul li.active a{
	color:#63F;
}
header ul li a{
	color:#666;
	display:block;
	text-decoration:none;
}
header ul li a:hover{
	background-color:#fff;
	border:1px solid #eee;
	border-top-color:#ddd;
	border-lfet-color:#ddd;
	color:#63f;
	line-height:36px;
	text-decoration:none;
	text-shadow:3px 3px 0px #f6f6f6;
}
header ul li:first-child{
	border-left:1px solid #ddd;
	
}
h1.pageTitle{
	border-bottom:1px solid #ddd;
	font-size:150%;
	font-weight:normal;
	height:50px;
	line-height:50px;
	padding:0 20px;
}
.site_title span{
	font-weight:bold;
	margin-left:1em;
	color:#666;
}
a.site_title:hover{
	text-decoration:none;
}

#main .column_alpha{
	float:left;
	width:200px;
}
#main .column_alpha .inner{
	padding:20px;
}
#main .column_beta{
	border-right:1px solid #ddd;
	border-left:1px solid #ddd;
	float:left;
	width:600px;
}
#main .column_gamma{
	padding-left:820px;
}

/******************************************************
	カラムの回り込み解除
******************************************************/
.clearfix:after {
	content:".";  /* 新しい要素を作る */
	display:block;  /* ブロックレベル要素に */
	clear:both;
	height:0;
	visibility:hidden;
}
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height:1px;
	height:1%;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.clearfix {
	display: block;
}


