﻿@charset "utf-8";

/* 
目次
01 CSSの初期化
02 wrap
03 header
04 contents
05 左欄
06 ナビゲーション
07 右欄
08 footer

10 clear
11 clearfixハック
 */


/* 
01 css初期化 */
*{
}

body {
	background-color:#FFFFFF;
	font-size:100%;
	font-style:normal;
	line-height:1.3em;
	letter-spacing:normal;
	margin:0px;
	padding:0px;
	text-align: center;
}

head,html,h1,h2,h3,h4,h5,div,span,p,ol,ul,li,img,table,th,tr,td,strong,a,address {
	font-family:'ＭＳＰゴシック', Osaka,'ヒラギノ角ゴ Pro W3',sans-serif;
	font-style:normal;
	margin:0px;
	padding:0px;
}
img { 
	vertical-align:bottom 
}

/*
02 wrap */
#wrap{
	width: 800px;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	vertical-align: top;
}


/*
03 header */
#header{
	width: 800px;
	margin: 0px;
	padding: 0px;
	height: 100px;
}
#header h1{
	margin: 0px;
	padding: 0px;
}

/*
04 contents */

#cont {
	width: 800px;
	margin: 0px;
	padding: 0px;
}

/*
05 左欄 */


#boxleft{
	float: left;
	width: 140px;
	padding: 0px;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	vertical-align: top;
}
/*
06 ナビゲーション */

#navi{
	text-align: left;
	margin: 0px;
	padding: 0px;
	width: 140px;
	vertical-align: top;
}
#navi ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#navi li{
	padding: 0px;
	list-style-type: none;
	width: 140px;
	height: 45px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}

#navi img {
	visibility: hidden;
}

#navi a,
#navi a:link,
#navi a:visited {
	background-position: 0px 0px;
	display: block;
}
#navi a:focus,
#navi a:hover,
#navi a:active {
	background-position: 0px 45px;
	display: block;
}

#navi .n-top a {
	background-image: url(../img/nv_top.gif);
}
#navi .n-prof a {
	background-image: url(../img/nv_prof.gif);
}
#navi .n-serv a {
	background-image: url(../img/nv_serv.gif);
}
#navi .n-work a {
	background-image: url(../img/nv_work.gif);
}
#navi .n-recr a {
	background-image: url(../img/nv_recruit.gif);
}
#navi .n-cnt a {
	background-image: url(../img/nv_contact.gif);
}
#navi .n-news a {
	background-image: url(../img/nv_news.gif);
}



/*
07 右欄 */

#boxright {
	padding: 0px;
	float: right;
	width: 650px;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: left;
	vertical-align: top;
	
}
#boxright h2{
	font-size: 1.2em;
	font-weight: bold;
	color: #000066;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 30px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #000066;
	margin-right: 30px;
}
#boxright p{
	font-size: 0.8em;
	font-weight: normal;
	color: #000000;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 30px;
	margin-right: 30px;
	line-height: 140%;
	text-align: left;
	vertical-align: top;
}

#boxright table{
	font-size: 0.8em;
	font-weight: normal;
	color: #000000;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 30px;
	margin-right: 30px;
	line-height: 140%;
	text-align: left;
	vertical-align: top;
}


/*
08 フッター */
#footer{
	font-size: 0.8em;
	color: #666666;
	margin: 0px;
	padding: 10px;

}









/*
10 clear */
.clear {
	clear:both;
	margin: 0px;
	padding: 0px;
}

/*
11 clearfixハック */
.clearfix {/*for IE 5.5-7*/
    zoom:1;
}
div.clearfix:after{/*for modern browser*/
    content:".";
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}

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