/* ナビボタン関係の設定（button1.css）						*/
/* 　ロールオーバー(背景の表示位置を変えて、ボタンの状態を表現する手法）	*/
/* 　文字乗位置の調整等								*/
/*   ※指定の一部は、HPビルダー上では適用されないため、ブラウザで確認が必要	*/


.btn_cur {
				/* 現在ページのボタン（リンクなし）	*/
  background-position : 0px 128px;	/* 背景の表示位置			*/
  color : white;			/* 文字の色				*/
  background-image : url(../img/button_2.png);	/* 背景画像（全て同じ画像)	*/
  
}

.btn {
					/* 通常のボタン				*/
  background-position : 0px 0px;	/* 背景の表示位置			*/
  color : navy;				/* 文字の色				*/
  background-image : url(../img/button_2.png);	/* 背景画像（全て同じ画像)	*/
  
}

.btn:visited {
				/* 訪問済みのリンクボタン		*/
  background-position : 0px 64px;	/* 背景の表示位置			*/
  color : #6569b6;			/* 文字の色				*/
}				/* 変化した状態なので、すでに背景は指定済み	*/

.btn:hover {
				/* マウスが乗ったときのボタン		*/
  background-position : 0px 64px;	/* 背景の表示位置			*/
  color : blue;				/* 文字の色				*/
}				/* 変化した状態なので、すでに背景は指定済み	*/

.btn:active {
				/* 押しているときのボタン		*/
  background-position : 0px 192px;	/* 背景の表示位置			*/
  color : gray;				/* 文字の色				*/
}				/* 変化した状態なので、すでに背景は指定済み	*/

.btn, .btn_cur{
				/* 全てのボタンに共通の設定		*/
  display: block;			/* インライン情報をブロック情報に変換	*/
				/* （文字を箱に変換してボタンを表現している。）	*/
  text-decoration: none;		/* 文字に付く飾りを排除			*/
  text-align : center;			/* センタリング				*/
  width: 190px;				/* ボタン幅の設定			*/
  height: 36px;				/* ボタン高の設定			*/
  padding-top : 24px;			/* 文字の位置補正			*/
  font-weight : bold;			/* ボールド（太文字）			*/
  font-family : "游ゴシック Medium","Yu Gothic UI Semilight";	/* フォント指定	*/
  font-size : 1.4em;			/* 文字サイズ				*/
}

.nav{
					/* ボタンを入れているテーブル		*/
  margin-left : auto;			/* 左右の余白を同じにする		*/
  margin-right : auto;			/* （センタリング)			*/
}



