/*CSSの設定*/
/*各種HTMLにclassとidを設定することにより変化します。*/
/*CSSファイルに「.***」とあるものは class="***"と指定し、*/
/*CSSファイルに「#***」とあるものは id="***"と指定すれば指定通りに変更が可能です。*/
/*ただし id はHTML内で一回しか使えません。*/


/*インポート属性*/

/*（基本以外で例外的にCSSを設定したいときに使うファイル）*/
@import url("./client.css");

/*（マージン設定）*/
@import url("./margin.css");

/*（パディング設定）*/
@import url("./padding.css");

/*（カラー設定）*/
@import url("./color.css");

/*（ボックス設定）*/
@import url("./div.css");

/*（フォント設定）*/
@import url("./fontsize.css");

/*（タブ設定）*/
@import url("./tab.css");

/*（テーブル設定）*/
@import url("./table.css");

/*（ナビゲーション設定）*/
@import url("./nav.css");

/*（ナビゲーション設定）*/
@import url("./bukken.css");

/*（htag設定）*/
@import url("./htag.css");

/*基礎ＨＴＭＬ部分*/

html{
	height:100%;
	background:url(../images/bg.gif) center top;
}

body{
	height:100%;
	margin: 0;
	padding: 0;
	* padding-left: 1px;
	border: 0;
	font-size: 12px;
	line-height: 150%;
	color: #666666;
	background:url(../images/bg_main.gif) center top repeat-y;	
}

body > html{
    height: auto;
}

address{
	font-style: normal;
	font-size: 10px;
}

table,form,div,p,img,td,th,tr,h1,h2,h3,h4,h5{
	margin: 0px;
	padding: 0px;
	border: 0px;
}


/*リンク設定部分*/
a { 
	text-decoration: underline; 
	color: #0066CC;
} 
a:hover { 
	text-decoration: underline; 
	color: #FF0000;
} 


/*リスト部分*/

ul.list{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}


/*ライン設定*/

.ue{
	background-image: url(../images/yoko.gif);
	background-position: top;
	background-repeat: repeat-x;
	padding: 10px 0 5px 0;
}

.shita{
	background-image: url(../images/yoko.gif);
	background-position: bottom;
	background-repeat: repeat-x;
	padding: 5px 0 10px 0;
}

.migi{
	background-image: url(../images/tate.gif);
	background-position: right;
	background-repeat: repeat-y;
	padding: 0 5px 0 5px;
}

.hidari{
	background-image: url(../images/tate.gif);
	background-position: left;
	background-repeat: repeat-y;
	padding: 0 5px 0 5px;
}


/*基本汎用テキスト部分*/

.mini{
	font-size: 10px;
	line-height: 130%;
}

.off{
	display: none;
}

.text{
	text-indent: -9500px;
}

.strong{
	font-style : normal;
	font-weight: lighter;
}

.bold{
	font-weight: bold;
}

.zero{
	margin: 0;
	padding: 0;
	border: 0;
}

/*文字寄せ*/
.textLeft{
	text-align: left;
}

.textCenter{
	text-align: center;
}

.textRight{
	text-align: right;
}

.textTop{
	vertical-align: top;
}

.textMiddle{
	vertical-align: middle;
}

.textBottom{
	vertical-align: bottom;
}


/*基本hタグの設定*/
h1{

	font-weight: lighter;
}

h2,h3{

	line-height: 150%;
}

h4,h5{

	line-height: 150%;
}

.htag0{
	height: 35px;
	padding: 15px 0 0 10px;
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 100%;
	background-repeat: repeat-x;
	background-image: url(../images/parts/htag0.gif);
}

.htag{
	height: 24px;
	padding: 12px 0 0 20px;
	margin: 10px 0 0 0;
	font-size: 14px;
	line-height: 100%;
	border-right: solid 1px #DDDDDD;
	border-left: solid 1px #DDDDDD;
	background-repeat: no-repeat;
	background-image: url(../images/htag/htag.gif);
}


.kihonBox{
	background-repeat: repeat-y;
	font-size: 12px;
	line-height: 150%;
	border-right: solid 1px #DDDDDD;
	border-left: solid 1px #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	margin: 0;
	padding: 10px;
	margin:  0 0 10px 0;
}

.htag2{
	height: 12px;
	padding: 12px;
	margin: 10px 0 0 0;
	font-size: 12px;
	line-height: 100%;
	background: #EEEEEE;
	border: 1px solid #CCCCCC;
}


.htag3{
	margin: 10px 0 0px 0;
	padding: 8px;
	border-width:0 0 5px 0 ;
	border-color:#3399CC;
	border-style:solid;
	background:#80CEDD;
	color:#0763AA;
	font-size: 16px;
	line-height:140%;
	font-weight:bold;
}


.kihonBox2{
	background-repeat: repeat-y;
	font-size: 12px;
	line-height: 150%;
	background: #EEEEEE;
	border-left: 1px solid #CCCCCC; 
	border-right:  1px solid #CCCCCC; 
	border-bottom: 1px solid #CCCCCC; 
	margin:  0 0 10px 0;
	padding: 10px;
}

.kihonBox3{
	margin:0 0 10px 0;
	padding:2px 8px;
	border:solid 1px #029EBC;
	background:#80CEDD;
	color:#e4f7fb;
}

/*clear属性*/

.cr{
	clear: both;
}

.clear{
	text-align: right;
	clear: both;
}

.clearfix:after {
   content: ".";
   display: block;
   clear: both;
   height: 0;
   visibility: hidden;
}
.clearfix { display: inline-block; }
/* exlude MacIE5 \*/
* html .clearfix { height: 1% }
.clearfix {display:block;}
/* end MacIE5 */



/*画像配置やリサイズ*/

.imgLeft{
	margin: 0 10px 10px 0;
	float: left;
}


.imgRight{
	margin: 0 0 10px 10px;
	float: right;
}

/*画像リサイズ*/
.photoImage{
	position:relative;
	width:100px;
	height:100px;
	margin: 0 10px 10px 0;
	float: left;
}

.photo10075{
	width: 100px;
	height: 75px;
}