/*arkham website CSS*/
*{  
 font-size:12px;
}

body {
  background-color: #ffffff ;
  background-image: url(images/background.png) ;
  FONT-FAMILY: "ＭＳ Ｐゴシック","ＭＳ ゴシック",Osaka;
  margin: 10px;
  padding: 10px;

/*レイアウト*/
#base {
  width: 802px;
  margin-right: auto;
  margin-left: auto;
#banner {
  width : 800px;
  height: 50px;
  }
#leftsideber {
  width   : 25px;
  float   : left;
  overflow: hidden;/*ブロック内の内容がはみ出す時に、レイアウトが崩れないようにする*/
  }
#contents {
  width   : 750px;
  float   : left;
  overflow: hidden;

  }
#rightsideber {
  width   : 25px;
  float   : left;
  overflow: hidden;

  }
/*レイアウト--コンテンツボタン周り*/
#bt1 {
	list-style-type: none;
	width: 800px;
	height: 50px;
}
#bt1 .bt1_company{
	/*
	display: block;
	*/
	width: 160px;
	height: 35px;
	background-image: url('..images/ba_company.jpg');
	/*
	background-repeat: no-repeat;
	background-position: -150px 0px;
	*/
}
#bt1_link {
	width: 160px;
	height: 35px;
	background-image: url('../images/ba_link.jpg');
	background-repeat: no-repeat;
}
#bt1_recruit {
	width: 160px;
	height: 35px;
	background-image: url('../images/ba_recruit.jpg');
	background-repeat: no-repeat;
}
#bt1_support {
	width: 160px;
	height: 35px;
	background-image: url('../images/ba_support.jpg');
	background-repeat: no-repeat;
}

/*テキスト*/
P{
  font-size: 10pt;
}
.f01{
  font-size: 10pt;
}
.f02{
  font-weight: bold;
  font-size: 120%;
}
/*フッタ*/
.t01{
  margin: 10px;
  padding: 10px;
}
/*リンク*/
A{
  text-decoration: none;
}
A:LINK{/*リンク*/
  color: #1f7fdf;
}
A:VISITED{/*すでにクリックされているリンク*/
  color: #1f7fdf;
}
A:HOVER{/*リンクにマウスポインタを合わせている状態*/
  text-decoration: underline;
  color: #df1f67;
}
A:ACTIVE{/*リンクにマウスをクリックした状態*/
  color: #df1f67;
}