@charset "utf-8";
/* CSS Document */

/************************************************************************************
* BORDER-BOX
*************************************************************************************/
* {
	-webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
	box-sizing:border-box;
}
*:before, *:after {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
	box-sizing: border-box;
}

/************************************************************************************
HTML,BODY
*************************************************************************************/
html,body {
	width:100%;
	height:100%;
	min-height:100%;
}
body {
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	text-size-adjust:100%;
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','sans-serif';
	color:#333;
	font-size:80%;
	line-height:1.5em;
	text-align:center;
	overflow-x: auto;
	background-image:url(../images/common/bg_01.gif);
	background-repeat:repeat;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after {
	content:".";
	display:block;
	height:0;
	clear: both;
	visibility:hidden;
}
.clearfix {/* for IE<8 */
	zoom:1;
}

/************************************************************************************
FLOAT
*************************************************************************************/
.floatleft {
	float:left;
}
.floatright {
	float:right;
}
.floatnone {
	float:none;
}

/************************************************************************************
LINK
*************************************************************************************/
a:link {
	color:#333;
	text-decoration:underline;
	outline: none;
}
a:visited {
	color:#333;
	text-decoration:underline;
}
a:hover {
	color:#333;
	text-decoration:none;
}
a:active, a:focus{
	outline:none;
}
.alphaover a:hover img {
	opacity:0.7;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	-webkit-transition-duration:1s;
	-moz-transition-duration:1s;
	-o-transition-duration:1s;
	-ms-transition-duration:1s;
	transition-duration:1s;
}

/************************************************************************************
TEXT
*************************************************************************************/
.caution {
	text-align:center !important;
}
.bold {
	font-weight:bold !important;
}
.red {
	color:#c00 !important;
}

/************************************************************************************
CONTAINER
*************************************************************************************/
#container {
	width:752px;
	height:auto;
	text-align:left;
    border-left:1px solid #999;
    border-right:1px solid #999;
	background-color:#FFF;
	margin:0 auto;
}

/************************************************************************************
HEADER
*************************************************************************************/
header#header {
	width:750px;
}
#header article#hLeft {
	width:400px;
	height:72px;
	float:left;
}
#header article#hRight {
	width:350px;
	text-align:right;
	margin-top:27px;
	padding-right:15px;
	float:right;
}
header#header nav ul {
	width:750px;
	height:50px;
}
header#header nav ul li {
	width:150px;
	height:50px;
	float:left;
}
header#header nav ul li a {
	width:150px;
	height:50px;
	display:block;
}
	
/************************************************************************************
MAIN
*************************************************************************************/
main {
	width:550px;
	padding:20px 10px;
	float:right;
}
main article {
	margin-bottom:30px;
}
main h1 {
	color:#069;
	font-size:16px;
	font-weight:bold;
	letter-spacing:1px;
	border-left:4px #069 solid;
    padding:0 0 2px 10px;
	margin-bottom:10px;
}
main h1 span {
	color:#333;
	font-size:13px;
	font-weight:normal !important;
	line-height:180%;
}
main section {
	margin-bottom:20px;
}
main h2 {
    font-size:14px;
	font-weight:bold;
	letter-spacing:1px;
    padding-bottom:0.2em;
	padding-left:25px;
    margin:0.5em 30px;
    border-bottom:1px #666 dotted;
	background-image:url(../images/common/h2.gif);
	background-position:left center;
	background-repeat:no-repeat;
}
main p {
	padding:10px 50px;
}
main p.button {
	text-align:center !important;
}
main figure {
	padding:5px 50px;
}
main figure img {
	width:100%;
	height:auto;
}
main figcaption {
	padding:5px 50px;
}
main section a.readMore {
	height:15px;
	text-align:right;
	display:block;
	background-image:url(../images/common/detail.gif);
	background-position:center right;
	background-repeat:no-repeat;
	margin:5px 25px;
}
main section ul {
	padding:10px 50px;
}
main section dl {
	padding:10px 50px;
}
main section dl dt {
	margin-top:5px;
	margin-bottom:5px;
}

main div#pankuzu {
	padding:0 0.5em 1em;
}
main div#pankuzu ul li {
	float: left ;
	font-weight: 700 ;
}
main div#pankuzu ul li:after {
	content: ">" ;
	padding: 0 8px ;
	font-weight: 400 ;
}
main div#pankuzu ul li:last-child:after {
	content: none ;
}

main table {
	width:430px;
	margin:25px auto 0;
	table-layout: fixed;
}
main table th, main table td {
	text-align:center !important;
	vertical-align:middle !important;
}
main table td.tImg img {
	width:100%;
	height:auto;
}
/************************************************************************************
ASIDE
*************************************************************************************/
aside {
	width:200px;
	background-image:url(../images/common/bg_side.gif);
	background-repeat:repeat;
	padding:0 10px 20px;
	float:left;
}
aside dl {
	width:180px;
	font:11px;
	padding-top:10px;
}
aside dl dt {
	color:#FFF;
	font-size:11pt;
	font-weight:bold;
    background-color:#069;
    padding:0.5em 1.0em;
	margin-top:10px;
}
aside dl dd {
	padding:0.5em 1.0em;
    border:#CCC solid;
    border-width:0 1px 1px 1px;
    background-color:#fff;
}
aside dl dd img {
	width:100%;
	height:auto;
}
	
/************************************************************************************
TIMELINE
*************************************************************************************/
aside dl dd#timeLine {
	width:180px;
	height:281px;
	background-image:url(../images/common/timeline.jpg);
	background-position:center top;
	background-repeat:no-repeat;
	border:1px #5170a6 solid;
	border-top:none;
	padding-right:20px;
	
}
aside dl dd#timeLine dl {
	width:153px;
	height:123px;
	margin-top:100px;
	overflow-y:scroll;
	padding:0 5px;
	margin-bottom:16px;
}
aside dl dd#timeLine dl dt {
	color:#5170a6;
    font-size:12px;
    font-weight:bold;
    background-color:transparent;
    padding:0;
    margin-top:0;
}
aside dl dd#timeLine dl dd {
	font-size:12px;
    padding:0;
    border:none;
    background-color:transparent;
	margin-bottom:15px;
}
aside dl dd#timeLine p {
	text-align:center;
	padding-left:10px;
}
aside dl dd#timeLine p a {
	color:#5170a6;
	transition:all 0.5s;
}
aside dl dd#timeLine p a:hover {
	color:#edf0f6;
}


/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
	color: #eee;
    text-align: center;
	border-top: #555 solid 1px;
    background: #069;
    padding: 3px;
}