@charset "UTF-8";

body{
/*全体の背景を決めています*/
       background-image: url(../image/wipeoutkabetop.jpg);/*背景画像*/
	background-attachment: fixed; /*背景画像を固定しています*/



}



/*全体に関わる定義を決めています*/

a img {
        border-style:none;    /*画像のボーダー非表示*/
} 

a{ 
        text-decoration:none;   /*リンクを張ったときに下線を出さない*/
}

/*文字入力の設定 個別に文字の大きさを変えたいときに*/
.small10{
        font-size: 10px;
}
.small12{
       font-size:12px;
}

.small24{
       font-size:24px;
}
.small8{
	font-size:8px;
}


a:hover {
	text-decoration: underline;
}

.red{
      color: #ff0000;
}



/*全体はここから*/

#container{

	margin:auto;
	width:1200px;
	/*height:1800px;*/


}
/* トップの写真を載せています */
#header{
	padding-top:20px;
       background-image: url(image/top.jpg);
	width:1200px;
	/*height:2550px;*/

}

#rogo{
	margin-left:20px;
}
/*写真の下側にメニューが来るように設定してあります。
上から620px下げて表示*/
#headernavi{

	width:1200px;
	height:24px;
	text-align:center;
	margin-top:28px;



}


#headernavi ul{
	width:1200px;
	height:24px;


        margin-top: 6px;
        padding: 0;
        list-style-type: none;


        letter-spacing: 2px;
}
#headernavi li {
        float: left;
        width: 200px;

        text-align: center;
        margin: 0;
        padding: 0;


	overflow: hidden;

}

/*メニューにカーソルを合わせたときに360°回るように設定してあります。*/

#headernavi li img{
	transition: 0.2s;
}

#headernavi li :hover{
	-moz-transform: rotateY(360deg);
	-webkit-transform:rotateY(360deg);
	-o-transform:rotateY(360deg);
	-ms-transform:rotateY(360deg);
}


/*写真より下側のメインの場所はここから*/

#main{
	width:1200px;/*710*/
	height:500px;
	margin-top:80px;
	color:#ffffff;
	margin-left:200px;
	font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho 		ProN", Meiryo, serif; 


}




table.list{
	border:0px;
	color:#ffffff;
	font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho 		ProN", Meiryo, serif; 
}

td.listmain{
	text-align:center;
	width:1200px;/*900*/
	background-color:#000000;
	font-size:18px;
}

td.listsubmain{
	text-align:center;
	width:100px;
	background-color:#000000;
	font-size:18px;

}

td.listmenu{
	background-color:#5f5f5f;
	text-align:center;
}

td.listsub{
	text-align:center;
	width:100px;


}

 /* コピーライトの設定 */

#footer{
	font-size:14px;
        font-family: Georgia, "Times New Roman", Times, serif;
	background-color:#000000;
        width: 1200px;
        height: 22px;

        color: #ffffff;
        text-align: center;
        font-style: italic;
        letter-spacing: 2px;
	padding-top:6px;





