/*	Firefox対応のため、filterは一切、使用しない。 */
/*
	font-weight:太さ。100〜900（標準=400） 
	⇒normal･･･････標準の太さです。（数値で400を指定した場合と同じ）
	⇒bold･････････一般的な太字の太さです。（数値で700を指定した場合と同じ）
	⇒lighter･･････相対的に一段階細くします。
	⇒bolder･･･････相対的に一段階太くします。
*/


/* ------------------------------------------------------------------------------------------
	対象タグ	:	BODY
	使用元		:	全HTML
	目的		:	ブラウザによるボックス指定の差をなくす。
	効果（処理）:	高さや幅のサイズに線やパディングを含めて指定する。
	　　（配置）:
	　　（文字）:
	　　（背景）:
------------------------------------------------------------------------------------------ */
body{
	-moz-box-sizing: border-box;								/* Firefox用ボックス指定 */
	-webkit-box-sizing: border-box;								/* Safari 3用ボックス指定 */
	-ms-box-sizing: border-box;								/* Internet Explorer 8用ボックス指定 */
	box-sizing: border-box;									/* Opera用ボックス指定 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	BODY
	使用元		:	全HTML
	目的		:	共通のBODY。
	効果（処理）:
	　　（配置）:
	　　（文字）:	色＝白
	　　（背景）:	色＝紺
------------------------------------------------------------------------------------------ */
body.RedThunders
{
	color: #ffffff;										/* 白色 */
	background-color: #000066;								/* 紺色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	A
	使用元		:	全HTML
	目的		:	共通のリンク(A)。
	効果（処理）:	リンクの制御
	　　（配置）:
	　　（文字）:	通常＝水色，使用後＝青色，マウス＝赤色，選択中＝赤色。
	　　（背景）:
------------------------------------------------------------------------------------------ */
A:link { 
	color: #99ffff; 									/* 水色 */
	text-decoration: underline;								/* ロゴファイルの上に下線などを表示させない*/
}
	/*	訪問後	*/
	A:visited
	{
		color: #0099ff; 								/* 青色 */
	}
	/* クリック中	*/
	A:active {
		color: #ff0000;									/* 赤色 */
	}
	/* マウスをのせたとき	*/
	A:hover {
		color: #ff0000;									/* 赤色 */
	}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	\common\navi\index.html
	目的		:	ナビゲーション部分のレイアウト。
	効果（処理）:
	　　（配置）:	大きさ（幅:965px）
	　　（文字）	:	
	　　（背景）:	濃紺グラデーション（ＩＥフィルターは未使用）
------------------------------------------------------------------------------------------ */
/* 特定テーブル */
table.navi
{
	boader:hidden ;										/* 境界線なし */
  	background-repeat:repeat-x ;								/* 背景＝横方向繰り返し */
	background-position: left top;								/* 背景位置＝左上 */
	background-image : url(../image/header.png) ; 						/* グラデーション背景画像 */
	background-size: auto;									/* 背景サイズ */
	width: 965px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	\common\footer\index.html
				：	\common\footer\footer\index.html
				：	\members-Wanted\index.html
				：	\welcome\index.html
	目的		:	フッター部分のレイアウト。
	効果（処理）:
	　　（配置）:	大きさ（幅:978px）
	　　（文字）	:	
	　　（背景）:	濃紺グラデーション（ＩＥフィルターは未使用）
------------------------------------------------------------------------------------------ */
table.footer
{
	boader:hidden ;										/* 境界線なし */
  	background-repeat:repeat-x ;								/* 背景＝横方向繰り返し */
	background-position: left bottom;							/* 背景位置＝左下 */
	background-image : url(../image/footer.png) ; 						/* グラデーション背景画像 */
	background-size: auto;									/* 背景サイズ */
	width: 978px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	\welcome\index.html
	目的		:	メッセージボードのレイアウト。
	効果（処理）:
	　　（配置）:	開始（上:7px 下:10px 左:2px），大きさ（幅:978px 高さ:10px）
	　　（文字）:
	　　（背景）:	色＝黒，枠線＝太（銀立体）
------------------------------------------------------------------------------------------ */
table.message
{
	border:ridge thick silver;								/* 銀枠つき */
	margin: 7px 0px 10px 2px;
	background-color: #3300ff;								/* 青色 */
	width:978px;
	height:10;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	全HTML
	目的		:	共通の表示領域のレイアウト。
	効果（処理）:
	　　（配置）:	大きさ（幅:978px），文字＝中央
	　　（文字）:
	　　（背景）:
------------------------------------------------------------------------------------------ */
table.body
{
	boader:hidden ;										/* 境界線なし */
	width: 978px;											
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;									/* 画像があるため */

}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	全HTML
	目的		:	共通の内容部（枠線なし）のレイアウト
	効果（処理）:
	　　（配置）:	開始（右:10px 左:18px），大きさ（幅:950px），文字＝左
	　　（文字）:
	　　（背景）:
------------------------------------------------------------------------------------------ */
table.Contents
{
	margin: 0px 10PX 0px 18PX;
	width: 950px;											
	boader:hidden ;										/* 境界線なし */
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;									/* 画像があるため */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	\gallery\index.html
				：	\gallery\2010\index.html
				：	\gallery\2011\index.html
				：	\introduction-player\index.html
				：	\introduction-player\2010\index.html
				：	\introduction-player\2011\index.html
				：	\introduction-player\2012\index.html
				：	\introduction-player\2013\index.html
				：	\introduction-player\2014\index.html
				：	\introduction-player\2015\index.html
				：	\result\index.html
				：	\schedule\index.html
				：	\topix\index.html
	目的		:	共通の内容部（枠線あり）のレイアウト
	効果（処理）:
	　　（配置）:	開始（右:10px 左:18px），大きさ（幅:950px），文字＝左
	　　（文字）:
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
table.boader
{
	margin: 0px 10PX 0px 18PX;
	width: 950px;											
	border:2px solid #999999;								/* 境界線あり */
	border-collapse:collapse;								/* セルボーダー 重ねて表＝collapse 間隔をあける＝separate */ 
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;									/* 画像があるため */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TABLE
	使用元		:	\introduction-team\index.html
	目的		:	内容文中の表レイアウト
	効果（処理）:
	　　（配置）:	大きさ（幅:90％）
	　　（文字）:
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
table.spread
{
	width: 90%;
	border:2px solid #999999;
	border-collapse:collapse;								/* セルボーダー 重ねて表＝collapse 間隔をあける＝separate */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\introduction-player\2010\index.html
				：	\introduction-player\2011\index.html
				：	\introduction-player\2012\index.html
				：	\introduction-player\2013\index.html
				：	\introduction-player\2014\index.html
				：	\introduction-player\2015\index.html
	目的		:	選手プロフィールの２トーン行の様式１（濃紺）。データ部＝colspan="3"
	効果（処理）:
	　　（配置）:	余白（上:2px 右:25px 左:8px），大きさ（幅:158px 高さ:22px）　文字＝左中央
	　　（文字）:	色＝ベージュ，フォント＝HGP創英角ｺﾞｼｯｸUB，サイズ＝110％
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
td.player
{
	height:22px;
	width:250px;										/* 画像サイズに合わせる */
	border: solid 2px #999999;
	padding: 2px 25px 0px 8px;
	vertical-align:middle;
	text-align:left;
	color:#ffffaa;
	font-family:'HGP創英角ｺﾞｼｯｸUB';
	font-size: 100%; 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\introduction-player\2010\index.html
				：	\introduction-player\2011\index.html
				：	\introduction-player\2012\index.html
				：	\introduction-player\2013\index.html
				：	\introduction-player\2014\index.html
				：	\introduction-player\2015\index.html
	目的		:	選手プロフィールの２トーン行の様式２（水色）。データ部＝colspan="3"
	効果（処理）:
	　　（配置）:	余白（上:2px 右:25px 左:8px），大きさ（幅:158px 高さ:22px），文字＝左中央
	　　（文字）:	色＝濃紺，フォント＝HGP創英角ｺﾞｼｯｸUB，サイズ＝110％
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね），水色グラデーション
------------------------------------------------------------------------------------------ */
td.player_2
{
	height:22px;
	width:250px;										/* 画像サイズに合わせる */
	border: solid 2px #999999;
	padding: 2px 25px 0px 8px;
	vertical-align:middle;
	text-align:left;
	color:#ffffaa;
	font-family:'HGP創英角ｺﾞｼｯｸUB';
	font-size: 100%; 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\introduction-player\2010\index.html
				：	\introduction-player\2011\index.html
				：	\introduction-player\2012\index.html
				：	\introduction-player\2013\index.html
				：	\introduction-player\2014\index.html
				：	\introduction-player\2015\index.html
	目的		:	選手プロフィールの写真表示部の定義
	効果（処理）:
	　　（配置）:	大きさ（幅:320px），余白（左右:10px)
	　　（文字）:
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）

------------------------------------------------------------------------------------------ */
td.playerPicture
{
	width:320px; 
	border: solid 2px #999999;
	padding: 0px 10px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\gallery\index.html
				：	\introduction-team\index.html
				：	\result\index.html
				：	\schedule\index.html
	目的		:	罫線付き表の見出し行の定義（文字中央）
	効果（処理）:
	　　（配置）:	大きさ（高さ:21px），文字＝中央
	　　（文字）:	色＝濃紺，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね），水色グラデーション
------------------------------------------------------------------------------------------ */
td.boaderlabel
{
	height:21px;
	border: solid 2px #999999;
	vertical-align:middle;
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-style: italic;
	color:#000066;
	background-repeat:repeat-x ;
	background-position: left top;
	background-image : url(../image/lightTitle.png) ; 
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\schedule\index.html
	目的		:	罫線付き表の見出し行の定義（文字左）⇒スケジュールの会場名
	効果（処理）:
	　　（配置）:	大きさ（高さ:21px），余白（左:5px），文字＝左中央
	　　（文字）:	色＝濃紺，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね），水色グラデーション
------------------------------------------------------------------------------------------ */
td.boaderlabelL
{
	height:21px;
	border: solid 2px #999999;
	padding: 0px 0px 0px 5px;
	vertical-align:middle;
	text-align:-moz-left; 									/* Firefox用 横位置＝左 */  
	text-align:left;
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-style: italic;
	color:#000066;
	background-repeat:repeat-x ;
	background-position: left top;
	background-image : url(../image/lightTitle.png) ; 
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\introduction-player\index.html
				：	\introduction-player\2010\index.html
				：	\introduction-player\2011\index.html
				：	\introduction-player\2012\index.html
				：	\introduction-player\2013\index.html
				：	\introduction-player\2014\index.html
				：	\introduction-player\2015\index.html
				：	\topix\index.html
	目的		:	罫線付き表の表題枠（濃紺）（枠内にはロゴを配置）
	効果（処理）:
	　　（配置）:	余白（左:4px），文字＝左中央
	　　（文字）:
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね），濃紺グラデーション
------------------------------------------------------------------------------------------ */
td.boadertitle
{
	border: solid 2px #999999;
	vertical-align:middle;
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;
	padding: 0px 0px 0px 4px;
	background-repeat:repeat-x ;
	background-position: left top;
	background-image : url(../image/navyTitle.png) ; 
	background-size: auto;
	font-size: 130%; 									/* 字サイズ */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\schedule\index.html
	目的		:	罫線付き表の表題枠（赤）（枠内にはロゴを配置）⇒スケジュールの年月
	効果（処理）:
	　　（配置）:	大きさ（高さ:29PX），文字＝中央
	　　（文字）:	色＝白，フォント＝HGP創英角ｺﾞｼｯｸUB，スタイル＝斜め，大きさ＝150％
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね），赤グラデーション
------------------------------------------------------------------------------------------ */
td.ScheduleYM
{
	height:29px;
	border: solid 2px #999999;
	vertical-align:middle;
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;
	background-repeat:repeat-x ;
	background-position: left top;
	background-image : url(../image/redTitle.png) ; 
	background-size: auto;
	font-family:'HGP創英角ｺﾞｼｯｸUB';
	font-style: italic;
	font-size: 150%; 
	color:#ffffff;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\schedule\index.html
	目的		:	罫線付き表データ（幅100px)⇒スケジュールの日付欄
	効果（処理）:
	　　（配置）:	大きさ（幅:100px），文字＝中央
	　　（文字）:	フォント＝HGP創英角ｺﾞｼｯｸUB
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
td.ScheduleDD
{
	width:100px; 
	border: solid 2px #999999;
	vertical-align:middle;
	text-align:center;
	font-family:'HGP創英角ｺﾞｼｯｸUB';								/* 字フォント＝ポップ */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\schedule\index.html
	目的		:	罫線付き表データ（幅550px、高さ21px)⇒スケジュールの大会名or活動内容欄
	効果（処理）:
	　　（配置）:	余白（左:5px），大きさ（幅:550px 高さ:21px），文字＝中央左
	　　（文字）:	色＝濃紺，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね），水色グラデーション
------------------------------------------------------------------------------------------ */
td.ScheduleEvent
{
	height:21px;
	width:550px; 
	padding: 0px 0px 0px 5px;
	border: solid 2px #999999;
	vertical-align:middle;
	text-align:-moz-left; 									/* Firefox用 横位置＝左 */  
	text-align:left;
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-style: italic;
	color:#000066;
	background-repeat:repeat-x ;
	background-position: left top;
	background-image : url(../image/lightTitle.png) ; 
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\gallery\index.html
				：	\introduction-player\index.html
				：	\result\index.html
				：	\schedule\index.html
				：	\topix\index.html
	目的		:	罫線付き表データ（文字左）
	効果（処理）:
	　　（配置）:	余白（上:2px 下:2px 左:10px），文字＝左
	　　（文字）:	
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
td.boaderleft
{
	padding: 2px 0px 2px 10px;
	border: solid 2px #999999;
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\gallery\2010\index.html
				：	\gallery\2011\index.html
	目的		:	罫線付き表データ（文字中央）
	効果（処理）:
	　　（配置）:	余白（上:2px 下:2px），文字＝上中央
	　　（文字）:	
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
td.boaderCenter
{
	padding: 2px 0px 2px 0px;
	border: solid 2px #999999;
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TD
	使用元		：	\introduction-team\index.html
	目的		:	罫線付き表データ（文字右）
	効果（処理）:
	　　（配置）:	余白（上下:2px 左右:10px），文字＝右上
	　　（文字）:	
	　　（背景）:	枠線＝2px（灰実線，セル境界重ね）
------------------------------------------------------------------------------------------ */
td.boaderRight
{
	padding: 2px 10px;
	border: solid 2px #999999;
	text-align:-moz-right; 									/* Firefox用 横位置＝右*/  
	text-align:right;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	全HTML
	目的		:	ページタイトルの大きさ（高さ）を統一
	効果（処理）:	
	　　（配置）:	大きさ（高さ:35px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.index
{
	height:35px;										/* 自動リサイズ */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\introduction-player\index.html
				:	\introduction-player\2010\index.html
				:	\introduction-player\2011\index.html
				:	\introduction-player\2012\index.html
				:	\introduction-player\2013\index.html
				:	\introduction-player\2014\index.html
				:	\introduction-player\2015\index.html
				:	\introduction-team\index.html
				:	\rink\index.html
	目的		:	大きさ（高さ）の指定 ⇒ タイトルロゴの指定
	効果（処理）:	
	　　（配置）:	大きさ（高さ:28px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.labelTitle
{
	height:28px;										/* 自動リサイズ */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\topix\index.html
	目的		:	大きさ（高さ）の指定 ⇒ トピックスのタイトルロゴの指定
	効果（処理）:	
	　　（配置）:	大きさ（高さ:50px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.topixTitle
{
	height: 50px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\topix\index.html
	目的		:	大きさ（幅）の指定 ⇒ トピックスの写真の指定
	効果（処理）:	
	　　（配置）:	大きさ（幅:300px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.topix
{
	width:300px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\welcome\index.html
	目的		:	大きさ（高さ）の指定 ⇒ 「昭和北レッドサンダーズ」のロゴの指定
	効果（処理）:	
	　　（配置）:	大きさ（高さ:32px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.welcome
{
	height:32px;										/* 自動リサイズ */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\gallery\2011\index.html
	目的		:	大きさ（幅）の指定 ⇒ ２０１１年度のサムネイルの指定
	効果（処理）:	
	　　（配置）:	大きさ（幅:188px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.Thumbs
{
	width:188px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\gallery\2011\index.html
	目的		:	大きさ（幅）の指定 ⇒ ２０１０年度のサムネイルの指定
	効果（処理）:	
	　　（配置）:	大きさ（幅:236px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.oldThumbs
{
	width:236px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	\gallery\2011\index.html
	目的		:	大きさ（幅）の指定 ⇒ 選手紹介の写真の指定
	効果（処理）:	
	　　（配置）:	大きさ（幅:320px）
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
img.player
{
	width:320px;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	IMG
	使用元		：	全HTML（IMG）
	目的		:	共通のIMG
	効果（処理）:	
	　　（配置）:	中央
	　　（文字）:	
	　　（背景）:	枠線なし
------------------------------------------------------------------------------------------ */
img
{
	vertical-align: middle;
	text-align:center;
	border: none;										/* 境界線＝なし */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TEXTAREA
	使用元		：	\welcome\index.html
	目的		:	大きさの指定⇒「更新情報」の指定
	効果（処理）:	
	　　（配置）:	大きさ（幅:470px 高さ:230px）
	　　（文字）:	サイズ＝80％
	　　（背景）:	ユニホーム画像
------------------------------------------------------------------------------------------ */
textarea.news
{
	width:470px;
	height:230px;
	font-size:80%;										/* 文字の大きさ=80% */
	background-repeat : repeat-Y ;
	background-position: center top;
/*	background-image : url(../image/uniform.png) ; */
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	TEXTAREA
	使用元		：	全HTML（TEXTAREA）
	目的		:	共通のTEXTAREA
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	色＝白
	　　（背景）:	色＝紺，罫線なし，ポインタ＝なし
------------------------------------------------------------------------------------------ */
textarea
{
	color : white;										/* 字色＝白 */
	background-color : #000066;								/* 背景色＝紺 */
	border:none;										/* ボーダー＝なし */
	/*border-width : thick thick thick thick;*/						/* ボーダーの太さ＝thin：細い medium:普通 thick:太い */
	/*border-style : ridge ridge ridge ridge;*/						/* ボーダースタイル */
	list-style-type : none;									/* リストのマーカー */

}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	全HTML
	目的		:	ページの横位置を中央によせる
	効果（処理）:	ページ（幅:978）の横位置を中央によせる
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.centerPage{
	position: absolute;  
	left: 50%;										/* 左開始位置を真中へ */
	height: 100%;										/* 縦は関係ない */
	width: 978px; 										/* 幅を固定 */
	margin-left: -489px; 									/* マージンで左開始位置を戻す */  
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\common\navi\index.html
	目的		:	ナビの横位置を中央によせる
	効果（処理）:	ナビ（幅:965）の横位置を中央によせる
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.centerNavi{
	position: absolute;  
	left: 50%;										/* 左開始位置を真中へ */
	height: 100%;										/* 縦は関係ない */
	width: 965px; 										/* 幅を固定 */
	margin-left: -495px; 									/* マージンで左開始位置を戻す */  
 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\common\navi\index.html
	目的		:	ナビボタンの指定
	効果（処理）:	ナビボタンの画像切換とリンク制御
	　　（配置）:	余白（上:13px），大きさ（幅:86 高さ:37px），文字＝中央
	　　（文字）:	色＝白，フォント＝HGP創英角ｺﾞｼｯｸUB，スタイル＝斜め，太さ＝550
	　　			通常＝白，使用後＝白，マウス＝水色，選択中＝水色
	　　（背景）:	グローブのイラスト
------------------------------------------------------------------------------------------ */
div.naviButton { 
}
								 				/* リンク基本（リンクされた場合） */
div.naviButton a { 
	width : 86px ;										/* 画像サイズに合わせる */
	height : 37px ;										/* 画像サイズに合わせる */
	float:left;										/* 画像があるため */
	background-image : url(../navi/button/silver.png);					/* 背景 */
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: center top;							/* 背景配置位置 */
	background-size: auto;									/* 背景大きさ調整 */
	padding : 13px 0px 0px 0px;								/* 字配置間隔 */
	color: #ffffff; 									/* 字色＝白 */
	font-family:'HGP創英角ｺﾞｼｯｸUB';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-size: 100%;									/* 字大きさ */ 
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */
	text-decoration: none;									/* 字飾り＝下線 */
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;									/* 字横よせ（Firefox用の後で指定する） */
	vertical-align: middle;									/* 字縦よせ */
}
								 				/* リンク（未訪問） */
div.naviButton a:link { 
	color: #ffffff; 									/* 字色＝白 */
}
								 				/* リンク（訪問後） */
div.naviButton a:visited{
	color: #ffffff; 									/* 字色＝白 */
}
								 				/* リンク（マウスをのせたとき） */
div.naviButton a:hover {
	color: #99ffff;										/* 字色＝水色 */
	background-image : url(../navi/button/red.png);						/* 背景 */
}
								 				/* リンク（クリック中） */
div.naviButton a:active {
	color: #99ffff;										/* 字色＝水色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\common\navi\index.html
	目的		:	ナビのチームロゴの指定
	効果（処理）:	ナビのチームロゴの画像切換とリンク制御
	　　（配置）:	大きさ（幅:165 高さ:43px）
	　　（文字）:	
	　　（背景）:	通常＝チームロゴ，マウス＝「Ｒ」重ね，選択中＝「Ｒ」重ね
------------------------------------------------------------------------------------------ */
div.naviRedThunders { 
}
								 				/* リンク基本（リンクされた場合） */
div.naviRedThunders a{
	width : 165px;										/* 画像サイズに合わせる */
	height : 43px ;										/* 画像サイズに合わせる */
	float:left;										/* 画像があるため */
	text-decoration: none;									/* ロゴファイルの上に下線などを表示させない*/
	background-image : url(../navi/button/RedThunders.gif);	/* 背景 */
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: left top;								/* 背景配置位置 */
	background-size: auto;									/* 背景大きさ調整 */
}
								 				/* リンク（未訪問） */
div.naviRedThunders a:link { 
}
								 				/* リンク（訪問後） */
div.naviRedThunders a:visited{
}
								 				/* リンク（マウスをのせたとき） */
div.naviRedThunders a:hover{
	background-image : url(../navi/button/R_Redthunders.png) ;
}
								 				/* リンク（クリック中） */
div.naviRedThunders a:active {
	background-image : url(../navi/button/R_Redthunders.png) ;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\common\footer\index.html
				:	\common\footer\footer\index.html
				:	\members-Wanted\index.html
				:	\welcome\index.html
	目的		:	フッターのチームロゴの指定
	効果（処理）:	フッターのチームロゴの画像切換とリンク制御
	　　（配置）:	大きさ（幅:250 高さ:77px）
	　　（文字）:	
	　　（背景）:	通常＝チームロゴ，マウス＝「Ｒ」重ね，選択中＝「Ｒ」重ね
------------------------------------------------------------------------------------------ */
div.footerRedThunders { 
}
												/* リンク基本（リンクされた場合） */
div.footerRedThunders a{
	width : 250px;										/* 画像サイズに合わせる */
	height : 77px ;										/* 画像サイズに合わせる */
	float:left;										/* 画像があるため */
	text-decoration: none;									/* ロゴファイルの上に下線などを表示させない*/
	background-image:url(../footer/button/RedThunders.gif);	/* 背景 */
  	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: left top;								/* 背景配置位置 */
	background-size: auto;									/* 背景大きさ調整 */
}
								 				/* リンク（未訪問） */
div.footerRedThunders a:link { 
}
								 				/* リンク（訪問後） */
div.footerRedThunders a:visited{
}
								 				/* リンク（マウスをのせたとき） */
div.footerRedThunders a:hover{
  background-image : url(../footer/button/R_Redthunders.png) ;
}								 				/* リンク（クリック中） */
div.footerRedThunders a:active {
  background-image : url(../footer/button/R_Redthunders.png) ;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\welcome\index.html
	目的		:	チーム写真の指定
	効果（処理）:	チーム写真の画像切換
	　　（配置）:	大きさ（幅:500 高さ:375px）
	　　（文字）:	
	　　（背景）:	通常＝team_1.jpg，マウス＝/team_3.jpg
------------------------------------------------------------------------------------------ */
div.welcomePicture { 
}
								 				/* リンク基本（リンクされた場合） */
div.welcomePicture a{
	width : 500px;										/* 画像サイズに合わせる */
	height: 375px ;										/* 画像サイズに合わせる */
	float:left;										/* 画像があるため */
	vertical-align: middle;									/* 字縦よせ */
  	background-image : url(../picture/2011/team_1.jpg) ;	/* 背景 */
  	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: left top;								/* 背景配置位置 */
	background-size: auto;									/* 背景大きさ調整 */
}
								 				/* リンク（未訪問） */
div.welcomePicture a:link { 
}
								 				/* リンク（訪問後） */
div.welcomePicture a:visited{
}
								 				/* リンク（マウスをのせたとき） */
div.welcomePicture a:hover{
  background-image : url(../picture/2011/team_3.jpg) ;		/* 背景 */
}
								 				/* リンク（クリック中） */
div.welcomePicture a:active {
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	１月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	門松の画像
------------------------------------------------------------------------------------------ */
div.january
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/january.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	２月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	節分の画像
------------------------------------------------------------------------------------------ */
div.february
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/february.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	３月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	ひな人形の画像
------------------------------------------------------------------------------------------ */
div.march
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/march.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	４月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	花見の画像
------------------------------------------------------------------------------------------ */
div.april
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/april.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	５月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	こいのぼりの画像
------------------------------------------------------------------------------------------ */
div.may
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/may.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	６月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	紫陽花の画像
------------------------------------------------------------------------------------------ */
div.june
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/june.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	７月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	七夕の画像
------------------------------------------------------------------------------------------ */
div.july
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/july.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	８月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	海水浴の画像
------------------------------------------------------------------------------------------ */
div.august
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/august.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	９月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	月見の画像
------------------------------------------------------------------------------------------ */
div.september
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/september.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	１０月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	祭りの画像
------------------------------------------------------------------------------------------ */
div.october
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/october.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	１１月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	落ち葉の画像
------------------------------------------------------------------------------------------ */
div.november
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/november.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\schedule\index.html
	目的		:	１２月のスケジュールの背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	長靴の画像
------------------------------------------------------------------------------------------ */
div.december
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/december.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\gallery\index.html
				:	\result\index.html
				:	\topix\index.html
	目的		:	表の背景
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	稲妻イラスト
------------------------------------------------------------------------------------------ */
div.thunder
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/thunder.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-team\index.html
	目的		:	稲妻画像を表示
	効果（処理）:	
	　　（配置）:	余白（上:20px 右:10px 左:30px）
	　　（文字）:	
	　　（背景）:	稲妻画像
------------------------------------------------------------------------------------------ */
div.realRedthunders {
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: right top;								/* 背景配置位置 */
	background-image : url(../image/realRedthunders.png);	/* 背景 */
	background-size: auto;									/* 背景大きさ調整 */
	padding : 20px 10px 0px 30px;								/* 内部文字配置 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\gallery\2010\index.html
				:	\gallery\2011\index.html
				:	\introduction-player\index.html
				:	\introduction-team\index.html
				:	\members-Wanted\index.html
				:	\rink\index.html
	目的		:	横断幕の画像を表示
	効果（処理）:	
	　　（配置）:	余白（上:10px 下:18px）
	　　（文字）:	
	　　（背景）:	横断幕の画像
------------------------------------------------------------------------------------------ */
div.banner
{
	background-repeat : no-repeat ;
	background-position: center top;
	background-image : url(../image/banner.html) ;
	background-size: auto;
	padding : 10px 0px 10px 0px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\gallery\index.html
				:	\introduction-player\2010\index.html
				:	\introduction-player\2011\index.html
				:	\introduction-player\2012\index.html
				:	\introduction-player\2013\index.html
				:	\introduction-player\2014\index.html
				:	\introduction-player\2015\index.html
				:	\result\index.html
				:	\schedule\index.html
				:	\topix\index.html
	目的		:	団旗(大)の画像を表示
	効果（処理）:	
	　　（配置）:	余白（上:10px 下:10px）
	　　（文字）:	
	　　（背景）:	団旗（大）の画像
------------------------------------------------------------------------------------------ */
div.flag
{
	background-repeat : no-repeat ;
	background-position: center center;
	background-image : url(../image/flag.png) ;
	background-size: auto;
	padding : 10px 0px 10px 0px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-player\index.html
				:	\introduction-team\index.html
				:	\members-Wanted\index.html
				:	\rink\index.html
	目的		:	団旗(小)の画像を表示
	効果（処理）:	
	　　（配置）:	余白（右:25px）
	　　（文字）:	
	　　（背景）:	団旗（小）の画像
------------------------------------------------------------------------------------------ */
div.flag_s
{
	background-repeat : no-repeat ;
	background-position: right center;
	background-image : url(../image/flag_s.png) ;
	background-size: auto;
        font-family:'ＭＳ 明朝';
	padding : 0px 25px 0px 0px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-player\index.html
	目的		:	Ｒロゴを表示
	効果（処理）:	
	　　（配置）:	開始（左:5px），余白（上:1px 左:30px），大きさ（高さ:30px），文字＝左
	　　（文字）:	
	　　（背景）:	Ｒロゴ（小）
------------------------------------------------------------------------------------------ */
div.R
{
	height:　30px;
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;
	vertical-align: middle;
	margin: 0px 0px 0px 5px;
	padding : 1px 0px 0px 30px;
	background-repeat : no-repeat ;
	background-position: left center;
	background-image : url(../image/R_line.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\topix\index.html
	目的		:	Ｒロゴを表示
	効果（処理）:	
	　　（配置）:	開始（左:5px），余白（上:1px 左:55px），大きさ（高さ:52px），文字＝左
	　　（文字）:	
	　　（背景）:	Ｒロゴ（大）
------------------------------------------------------------------------------------------ */
div.RR
{
	height:　52px;
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;
	vertical-align: middle;
	margin: 0px 0px 0px 5px;
	padding : 1px 0px 0px 55px;
	background-repeat : no-repeat ;
	background-position: left center;
	background-image : url(../image/R.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\welcome\index.html
	目的		:	横型タブを表示
	効果（処理）:	
	　　（配置）:	余白（上:6px 左:15px），大きさ（高さ:27px 幅:237px），文字＝左中央
	　　（文字）:	色＝濃紺，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め
	　　（背景）:	横型タブ
------------------------------------------------------------------------------------------ */
div.label
{
	height:27px;										/* 画像サイズに合わせる */
	width:237px;										/* 画像サイズに合わせる */
	float:left;										/* 画像があるため */
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: center top;							/* 背景配置位置 */
	background-image : url(../image/label.png) ;						/* 背景 */
	background-size: auto;									/* 背景大きさ調整 */
	padding : 6px 0px 0px 15px;								/* 内部文字配置 */
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-style: italic;
	color:#000066;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\welcome\index.html
	目的		:	縦型タブ（小）を表示
	効果（処理）:	
	　　（配置）:	余白（上:6px 左:20px），大きさ（高さ:27px 幅:237px），文字＝左中央
	　　（文字）:	色＝濃紺，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め
	　　（背景）:	縦型タブ（小）
------------------------------------------------------------------------------------------ */
div.shortLabel
{
	height:27px;										/* 画像サイズに合わせる */
	width:237px;										/* 画像サイズに合わせる */
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: left top;								/* 背景配置位置 */
	background-image : url(../image/shortLabel.png) ;					/* 背景 */
	background-size: auto;									/* 背景大きさ調整 */
	padding : 6px 0px 0px 20px;								/* 内部文字配置 */
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-style: italic;
	color:#000066;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\welcome\index.html
	目的		:	縦型タブ（大）を表示
	効果（処理）:	
	　　（配置）:	余白（上:6px 左:60px），大きさ（高さ:27px 幅:470px），文字＝左中央
	　　（文字）:	色＝濃紺，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め
	　　（背景）:	縦型タブ（大）
------------------------------------------------------------------------------------------ */
div.longLabel
{
	height:27px;										/* 画像サイズに合わせる */
	width:470px;										/* 画像サイズに合わせる */
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: left top;								/* 背景配置位置 */
	background-image : url(../image/longLabel.png) ;					/* 背景 */
	background-size: auto;									/* 背景大きさ調整 */
	padding : 6px 0px 0px 60px;								/* 内部文字配置 */
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-style: italic;
	color:#000066;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
				:	\rink\index.html
	目的		:	紺色のタブ（ロゴタイトル用）を表示
	効果（処理）:	
	　　（配置）:	余白（上:4px 左:20px），大きさ（高さ:30px 幅:948px），文字＝左中央
	　　（文字）:	色＝赤，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，大きさ＝130％，太さ＝500
	　　（背景）:	紺色のタブ（ロゴタイトル用）
------------------------------------------------------------------------------------------ */
div.navyLabel
{
	height:30px;										/* 画像サイズに合わせる */
	width:948px;										/* 画像サイズに合わせる */
	background-repeat : no-repeat ;								/* 背景連続性 */
	background-position: left top;								/* 背景配置位置 */
	background-image : url(../image/navyLabel.png) ;					/* 背景 */
	background-size: auto;									/* 背景大きさ調整 */
	padding : 4px 0px 0px 20px;								/* 内部文字配置 */
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';
	font-size: 130%; 									/* 字サイズ */
	font-weight:500;									/* 字太さ　100〜900（標準=400） */
	font-style: italic;
	color:#ff0000;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
				:	\topix\index.html
	目的		:	紺色のタブ（ロゴタイトル用）下の本文を記載するエリアの定義
	効果（処理）:	
	　　（配置）:	余白（上:20px 右:10px 下:0px 左:30px），大きさ（高さ:30px 幅:948px），文字＝左中央
	　　（文字）:	大きさ＝120％，太さ＝500
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.labelWriting {
	padding : 20px 10px 0px 30px;								/* 内部文字配置 */
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-size: 100%; 									/* 字サイズ */
	font-weight:500;									/* 字太さ　100〜900（標準=400） */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\gallery\index.html
	目的		:	ギャラリー行の高さと、カメラリンクの制御
	効果（処理）:	カメラリンクの画像切換
	　　（配置）:	開始（上:7px 下:-5px），空白（上:4px 下:-2px 左:35px），大きさ（高さ:28px），文字＝左中央
	　　（文字）:	フォント＝HGP創英角ｺﾞｼｯｸUB，スタイル＝斜め
	　　（背景）:	通常＝カメラ，マウス＝＠ボール
------------------------------------------------------------------------------------------ */
div.camera
{
	height:28px;										/* 画像サイズに合わせる */
	margin:7px 0px -5px 0px; 
	text-align:left;
	vertical-align: middle;
	font-family:'HGP創英角ｺﾞｼｯｸUB';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
}
div.camera a { 
	padding : 4px 0px 2px 35px;
	background-repeat : no-repeat ;
	background-position: left center;
  	background-image : url(../image/camera.gif) ;
	background-size: auto;
}
div.camera a:link { 
}
								 				/* リンク（訪問後） */
div.camera a:visited{
}
								 				/* リンク（マウスをのせたとき） */
div.camera a:hover{
  	background-image : url(../image/camera.gif) ;
}
								 				/* リンク（クリック中） */
div.camera a:active {
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\result\index.html
	目的		:	成績表行の高さと、星リンクの制御
	効果（処理）:	星リンクの画像切換
	　　（配置）:	開始（上:7px 下:-5px 左:5px），空白（上:8px 下:3px 左:30px），大きさ（高さ:28px），文字＝左中央
	　　（文字）:	フォント＝HGP創英角ｺﾞｼｯｸUB，スタイル＝斜め
	　　（背景）:	通常＝星，マウス＝＠ボール
------------------------------------------------------------------------------------------ */
div.star
{
	height:28px;										/* 画像サイズに合わせる */
	margin:7px 0px -5px 5px; 
	text-align:left;
	vertical-align: middle;
	font-family:'HGP創英角ｺﾞｼｯｸUB';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
}
div.star a { 
	padding : 8px 0px 3px 30px;
	background-repeat : no-repeat ;
	background-position: left center;
  	background-image : url(../image/oukan.gif) ;
	background-size: auto;
}
div.star a:link { 
}
								 				/* リンク（訪問後） */
div.star a:visited{
}
								 				/* リンク（マウスをのせたとき） */
div.star a:hover{
  	background-image : url(../image/crown04.gif) ;
}
								 				/* リンク（クリック中） */
div.star a:active {
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\rink\index.html
	目的		:	リンク行の高さと、＠リンクの制御
	効果（処理）:	＠リンクの画像切換
	　　（配置）:	開始（上:7px 下:-5px 左:50px），空白（上:8px 下:3px 左:30px），大きさ（高さ:28px），文字＝左中央
	　　（文字）:	フォント＝HGP創英角ｺﾞｼｯｸUB，スタイル＝斜め
	　　（背景）:	通常＝＠，マウス＝＠ボール
------------------------------------------------------------------------------------------ */
div.URL
{
	height:28px;										/* 画像サイズに合わせる */
	margin:7px 0px -5px 50px; 
	text-align:left;
	vertical-align: middle;
	font-family:'HGP創英角ｺﾞｼｯｸUB';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
}
div.URL a { 
	padding : 5px 0px 2px 30px;
	background-repeat : no-repeat ;
	background-position: left center;
  	background-image : url(../image/kinoko02.gif) ;
	background-size: auto;
}
div.URL a:link { 
}
								 				/* リンク（訪問後） */
div.URL a:visited{
}
								 				/* リンク（マウスをのせたとき） */
div.URL a:hover{
  	background-image : url(../image/kinoko03.gif) ;
}
								 				/* リンク（クリック中） */
div.URL a:active {
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-player\index.html
	目的		:	選手一覧の過去分（2009年度以前）のレイアウト
	効果（処理）:	
	　　（配置）:	開始（左:26px），空白（上:8px），文字＝左中央
	　　（文字）:	大きさ＝120%，太さ＝500
	　　（背景）:	通常＝＠，マウス＝＠ボール
------------------------------------------------------------------------------------------ */
div.playerSpread {
	margin: 0px 0px 0px 26px;								/* 外枠配置 */
	padding : 8px 0px 0px 0px;								/* 内部文字配置 */
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-size: 120%; 									/* 字サイズ */
	font-weight:500;									/* 字太さ　100〜900（標準=400） */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-player\index.html
	目的		:	選手一覧の2010年度以降分のレイアウトとリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	空白（上:3px 下:1px 左26px），文字＝左中央
	　　（文字）:	大きさ＝120%，太さ＝500
	　　（背景）:	通常＝なし，マウス＝＠ボール
------------------------------------------------------------------------------------------ */
div.playerLink {
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-left; 									/* Firefox用 横位置＝左*/  
	text-align:left;									/* 字横よせ */
	font-size: 120%; 									/* 字サイズ */
	font-weight:500;									/* 字太さ　100〜900（標準=400） */
}
div.playerLink a { 
	padding : 3px 0px 1px 26px;
	background-repeat : no-repeat ;
	background-position: left center;
	background-size: auto;
  	background-image : url(../image/kinoko01.html) ;
	text-decoration: none;									/* 字飾り＝なし */
}
								 				/* リンク（未訪問） */
div.playerLink a:link { 
}
								 				/* リンク（訪問後） */
div.playerLink a:visited{
}												/* リンク（マウスをのせたとき） */
div.playerLink a:hover {
  	background-image : url(../image/kira02.gif) ;
}
								 				/* リンク（クリック中） */
div.playerLink a:active {
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\welcome\index.html
	目的		:	今年の成績のレイアウトとリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	文字＝中央
	　　（文字）:	
	　　（背景）:	なし
------------------------------------------------------------------------------------------ */
div.record {
	vertical-align: middle;									/* 字縦よせ */
	text-align:-moz-center; 								/* Firefox用 横位置＝左*/  
	text-align:center;									/* 字横よせ */
}
div.record a { 
	text-decoration: none;									/* 字飾り＝なし */
}							 					/* リンク（未訪問） */
div.record a:link { 
}
								 				/* リンク（訪問後） */
div.record a:visited{
}												/* リンク（マウスをのせたとき） */
div.record a:hover {
}
								 				/* リンク（クリック中） */
div.record a:active {
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\members-Wanted\index.html
	目的		:	Ｅメールマークを表示
	効果（処理）:	
	　　（配置）:	開始（上:4px 左:30px），余白（上:5px 左:40px），大きさ（幅:625px 高さ:34px），文字＝左中央
	　　（文字）:	
	　　（背景）:	Ｅメールマーク
------------------------------------------------------------------------------------------ */
div.e-mail
{
	height:34px;										/* 画像サイズに合わせる */
	width:625px;										/* 画像サイズに合わせる */
	text-align:left;
	vertical-align: middle;
	margin: 4px 0px 0px 30px;								/* 外枠配置 */
	padding : 5px 0px 0px 40px;
	background-repeat : no-repeat ;
	background-position: left top;
  	background-image : url(../image/mail.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\introduction-player\2010\index.html
				:	\introduction-player\2011\index.html
				:	\introduction-player\2012\index.html
				:	\introduction-player\2013\index.html
				:	\introduction-player\2014\index.html
				:	\introduction-player\2015\index.html
	目的		:	選手情報の項目タイトルのレイアウト
	効果（処理）:	
	　　（配置）:	余白（左:25px），大きさ（高さ:21px），文字＝左中央
	　　（文字）:	スタイル＝斜め
	　　（背景）:	ｉマーク
------------------------------------------------------------------------------------------ */
div.infomation
{
	height:　21px;
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;
	vertical-align: middle;
	padding : 1px 0px 0px 25px;
	background-repeat : no-repeat ;
	background-position: left middle;
	background-image : url(../image/enpitu02.gif) ;
	background-size: auto;
	font-style: italic;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\members-Wanted\index.html
	目的		:	フッター部分の内容のレイアウト（部員募集用）
	効果（処理）:	
	　　（配置）:	余白（左:35px），文字＝左中央
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.footerContents
{
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;									/* Internet Explorer 横位置＝中央*/ 
	vertical-align:middle;									/* 縦位置＝下 */
	padding : 0px 0px 0px 35px;								/* 内部文字配置 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\common\footer\index.html
				:	\common\footer\footer\index.html
				:	\members-Wanted\index.html
				:	\welcome\index.html
	目的		:	フッターのレイアウト
	効果（処理）:	
	　　（配置）:	余白（左:10px），文字＝左底
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.footer
{
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;									/* Internet Explorer 横位置＝中央*/ 
	vertical-align:bottom;									/* 縦位置＝下 */
	padding : 0px 0px 0px 10px;								/* 内部文字配置 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	
	目的		:	中央上配置
	効果（処理）:	
	　　（配置）:	文字＝中央上
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.TC
{
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;									/* Internet Explorer 横位置＝中央*/ 
	vertical-align:top;									/* 縦位置＝上 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	\rink\index.html
				:	\welcome\index.html
	目的		:	左真中配置
	効果（処理）:	
	　　（配置）:	文字＝左真中
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.ML
{
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;									/* Internet Explorer 横位置＝中央*/ 
	vertical-align:middle;									/* 縦位置＝下 */
	padding : 3px 0px 0px 3px;								/* 内部文字配置 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	
	目的		:	右真中配置
	効果（処理）:	
	　　（配置）:	文字＝右真中
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.MR
{
	text-align:-moz-right; 									/* Firefox用 横位置＝中央*/  
	text-align:right;									/* Internet Explorer 横位置＝中央*/ 
	vertical-align:middle;									/* 縦位置＝下 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	
	目的		:	左底配置
	効果（処理）:	
	　　（配置）:	文字＝左底
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.BL
{
	text-align:-moz-left; 									/* Firefox用 横位置＝中央*/  
	text-align:left;									/* Internet Explorer 横位置＝中央*/ 
	vertical-align:bottom;									/* 縦位置＝下 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	全HTML
	目的		:	中央真中配置
	効果（処理）:	
	　　（配置）:	文字＝中央真中
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div.MC
{
	vertical-align:middle;									/* 縦位置＝中央 */
	text-align:-moz-center; 								/* Firefox用 横位置＝中央*/  
	text-align:center;									/* Internet Explorer 横位置＝中央*/ 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	DIV
	使用元		：	全HTML（DIV）
	目的		:	ボックス指定
	効果（処理）:	ボックス（ボックスサイズ中に、線の太さやと余白をに含める）指定で統一する
	　　（配置）:	
	　　（文字）:	
	　　（背景）:	
------------------------------------------------------------------------------------------ */
div { 
	-moz-box-sizing: border-box;								/* Firefox用ボックス指定 */
	-webkit-box-sizing: border-box;								/* Safari 3用ボックス指定 */
	-ms-box-sizing: border-box;								/* Internet Explorer 8用ボックス指定 */
	box-sizing: border-box;									/* Opera用ボックス指定 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「レッドサンダーズ」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝赤，使用後＝青，マウス＝水色，選択中＝水色
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.RedThunders
{
	color:#cc0033;										/* 字色＝濃赤 */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */

}
								 				/* リンク基本（リンクされた場合） */
span.RedThunders a { 
	color: #ff0000; 									/* 字色＝赤 */
	text-decoration: underline;								/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.RedThunders a:link { 
	color: #ff0000; 									/* 字色＝赤 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.RedThunders a:visited{
	color: #ff0000; 									/* 字色＝赤 */
}												/* リンク（マウスをのせたとき） */
span.RedThunders a:hover {
	color: #99ffff;										/* 字色＝水色 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.RedThunders a:active {
	color: #99ffff;										/* 字色＝水色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「LOGO」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝赤，使用後＝青，マウス＝水色，選択中＝水色
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Logo
{
	color:#ff0000;										/* 字色＝赤 */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */
	font-size: 130%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Logo a { 
	color: #ff0000; 									/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Logo a:link { 
	color: #ff0000; 									/* 字色＝赤 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Logo a:visited{
	color: #ff0000; 									/* 字色＝赤 */
}												/* リンク（マウスをのせたとき） */
span.Logo a:hover {
	color: #ffffff;										/* 字色＝白色 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Logo a:active {
	color: #ffffff;										/* 字色＝白色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「LOGO2」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝赤，使用後＝青，マウス＝水色，選択中＝水色
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Logo2
{
	color:#ff0000;										/* 字色＝赤 */
	font-family:'ＭＳ ゴシック';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */
	font-size: 130%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Logo2 a { 
	color: #ff0000; 									/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Logo2 a:link { 
	color: #ff0000; 									/* 字色＝赤 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Logo2 a:visited{
	color: #ff0000; 									/* 字色＝赤 */
}												/* リンク（マウスをのせたとき） */
span.Logo2 a:hover {
	color: #ffffff;										/* 字色＝白色 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Logo2 a:active {
	color: #ffffff;										/* 字色＝白色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「LOGO3」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝赤，使用後＝青，マウス＝水色，選択中＝水色
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Logo3
{
	color:#ff0000;										/* 字色＝赤 */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */
	font-size: 130%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Logo3 a { 
	color: #ff0000; 									/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Logo3 a:link { 
	color: #ff0000; 									/* 字色＝赤 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Logo3 a:visited{
	color: #ff0000; 									/* 字色＝赤 */
}												/* リンク（マウスをのせたとき） */
span.Logo3 a:hover {
	color: #DA70D6;										/* 字色＝紫色 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Logo3 a:active {
	color: #DA70D6;										/* 字色＝紫色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「LOGO4」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝赤，使用後＝青，マウス＝水色，選択中＝水色
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Logo4
{
	color:#ff0000;										/* 字色＝赤 */
	font-family:"HGS創英角ﾎﾟｯﾌﾟ体",sans-serif;								/* 字フォント＝ポップ */
	font-style: normal;									/* 字形＝傾斜 */
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */
	font-size: 160%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Logo4 a { 
	color: #ff0000; 									/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Logo4 a:link { 
	color: #ff0000; 									/* 字色＝赤 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Logo4 a:visited{
	color: #ff0000; 									/* 字色＝赤 */
}												/* リンク（マウスをのせたとき） */
span.Logo4 a:hover {
	color: #5F9EA0;										/* 字色＝紫色 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Logo4 a:active {
	color: #5F9EA0;										/* 字色＝紫色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「LOGO6」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝白，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝白，使用後＝白，マウス＝赤，選択中＝赤
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Logo6
{
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-weight:550;									/* 字太さ＝100〜900（標準=400） */
	font-size: 130%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Logo6 a { 
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Logo6 a:link { 
	color: #ffffff; 									/* 字色＝白 */																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Logo6 a:visited{
	color: #ffffff; 									/* 字色＝白 */	
}
												/* リンク（マウスをのせたとき） */
span.Logo6 a:hover {
	color: #ff0000;										/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Logo6 a:active {

}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「MOJI」の書式とリンク制御
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝白色，フォント＝HGS創英角ﾎﾟｯﾌﾟ体，スタイル＝斜め，太さ＝550
	　　			通常＝白，使用後＝白，マウス＝白，選択中＝白
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Moji
{
	color: #fffafa;										/* 字色＝白色 */
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-style: italic;									/* 字形＝傾斜 */
	font-size: 120%; 									/* 字サイズ */

}
								 				/* リンク基本（リンクされた場合） */
span.Moji a { 
	color: #fffafa; 									/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Moji a:link { 
	color: #fffafa; 									/* 字色＝赤 */	 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Moji a:visited {
	color: #fffafa; 									/* 字色＝赤 */
}												/* リンク（マウスをのせたとき） */
span.Moji a:hover {
	color: #fffafa;										/* 字色＝白色 */
	text-decoration: none;									/* 字飾り＝下線 */
}
span.Moji a:active {
	color: #fffafa;										/* 字色＝白色 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「MOJI2」の書式とリンク制御HG江戸文字勘亭流
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤, フォント＝HG江戸文字勘亭流，スタイル＝斜め，太さ＝550
	　　			通常＝白，使用後＝白，マウス＝白，選択中＝白
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Moji2
{
	color: #ffffff; 									/* 字色＝白 */ 
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-size: 90%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Moji2 a { 
	color: #ff0000; 									/* 字色＝白 */ 
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Moji2 a:link { 
	color: #ff0000; 									/* 字色＝白 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Moji2 a:visited {
	color: #ff0000; 									/* 字色＝白 */
}
												/* リンク（マウスをのせたとき） */
span.Moji2 a:hover {
	color: #ff0000;										/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Moji2 a:active {
	color: #ff0000;										/* 字色＝赤 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML（DIV）
	目的		:	「MOJI3」の書式とリンク制御HG江戸文字勘亭流
	効果（処理）:	リンク制御
	　　（配置）:	
	　　（文字）:	色＝赤, フォント＝HG江戸文字勘亭流，スタイル＝斜め，太さ＝550
	　　			通常＝白，使用後＝白，マウス＝白，選択中＝白
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.Moji3
{
	color: #ffffff; 									/* 字色＝白 */ 
	font-family:'HGS創英角ﾎﾟｯﾌﾟ体';								/* 字フォント＝ポップ */
	font-size: 100%; 									/* 字サイズ */
}
								 				/* リンク基本（リンクされた場合） */
span.Moji3 a { 
	color: #ff0000; 									/* 字色＝白 */ 
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（未訪問） */
span.Moji3 a:link { 
	color: #ff0000; 									/* 字色＝白 */ 																/* 字色＝赤 */
}
								 				/* リンク（訪問後） */
span.Moji3 a:visited {
	color: #ff0000; 									/* 字色＝白 */
}
												/* リンク（マウスをのせたとき） */
span.Moji3 a:hover {
	color: #ff0000;										/* 字色＝赤 */
	text-decoration: none;									/* 字飾り＝下線 */
}
								 				/* リンク（クリック中） */
span.Moji3 a:active {
	color: #ff0000;										/* 字色＝赤 */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\welcome\index.html
	目的		:	「welcome」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:17px 下:10px 左:80px）
	　　（文字）:	
	　　（背景）:	「welcome」プラカード
------------------------------------------------------------------------------------------ */
span.welcomeBoard
{
	padding : 17px 0px 10px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/welcome.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\gallery\index.html
				:	\gallery\2010\index.html
				:	\gallery\2011\index.html
	目的		:	「写真」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「写真」プラカード
------------------------------------------------------------------------------------------ */
span.galleryBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/galleryBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
	目的		:	「レッド」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「レッド」プラカード
------------------------------------------------------------------------------------------ */
span.teamBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/teamBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-player\index.html
				:	\introduction-player\2010\index.html
				:	\introduction-player\2011\index.html
				:	\introduction-player\2012\index.html
				:	\introduction-player\2013\index.html
				:	\introduction-player\2014\index.html
				:	\introduction-player\2015\index.html
	目的		:	「選手」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「選手」プラカード
------------------------------------------------------------------------------------------ */
span.playerBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/playerBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\result\index.html
	目的		:	「勝敗」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「勝敗」プラカード
------------------------------------------------------------------------------------------ */
span.resultBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/resultBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\schedule\index.html
	目的		:	「日程」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「日程」プラカード
------------------------------------------------------------------------------------------ */
span.scheduleBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/scheduleBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\members-Wanted\index.html
	目的		:	「募集」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「募集」プラカード
------------------------------------------------------------------------------------------ */
span.wantedBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/wantedBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\members-Wanted\index.html
	目的		:	「リンク」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「リンク」プラカード
------------------------------------------------------------------------------------------ */
span.rinkBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/rinkBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\topix\index.html
	目的		:	「話題」プラカードの表示
	効果（処理）:	
	　　（配置）:	余白（上:15px 下:16px 左:80px）
	　　（文字）:	
	　　（背景）:	「話題」プラカード
------------------------------------------------------------------------------------------ */
span.topixBoard
{
	padding : 15px 0px 16px 80px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/topixBoard.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\welcome\index.html
	目的		:	トップページの学年の書式
	効果（処理）:	
	　　（配置）:	余白（上:6px 下:7px 左:1px）
	　　（文字）:	色＝赤，フォント＝HGP創英角ｺﾞｼｯｸUB，
	　　（背景）:	ソフトボール
------------------------------------------------------------------------------------------ */
span.nen
{
	color:#ff0000;										/* 字色＝赤色 */
	font-family:'HGP創英角ｺﾞｼｯｸUB';								/* 字フォント＝ポップ */
/*	font-style: italic;									字形＝傾斜 */
	padding : 6px 0px 7px 1px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/ball.png) ;
	background-size: auto;

}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-player\index.html
	目的		:	選手一覧の選手名の書式
	効果（処理）:	
	　　（配置）:	余白（上:1px 下:2px 左:25px），文字＝左真中
	　　（文字）:	大きさ＝110%，太さ＝400
	　　（背景）:	スマイリー
------------------------------------------------------------------------------------------ */
span.person
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 1px 0px 2px 25px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/kira01.gif) ;
	background-size: auto;
	font-size: 110%; 									/* 字サイズ */
	font-weight:400;									/* 字太さ　100〜900（標準=400） */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
	目的		:	スマイリー（口開け笑顔）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（口開け笑顔）
------------------------------------------------------------------------------------------ */
span.hay
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/hay.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
	目的		:	スマイリー（口閉じ笑顔）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（口閉じ笑顔）
------------------------------------------------------------------------------------------ */
span.smile
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/smile.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
	目的		:	スマイリー（大声）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（大声）
------------------------------------------------------------------------------------------ */
span.Oh
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/Oh.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
	目的		:	スマイリー（びっくり顔）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（びっくり顔）
------------------------------------------------------------------------------------------ */
span.surprised
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/surprised.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
				:	\welcome\index.html
	目的		:	スマイリー（大笑い）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（大笑い）
------------------------------------------------------------------------------------------ */
span.laugh
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/laugh.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\members-Wanted\index.html
	目的		:	スマイリー（ウィンク）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（ウィンク）
------------------------------------------------------------------------------------------ */
span.wink
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/wink.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\members-Wanted\index.html
				:	\welcome\index.html
	目的		:	スマイリー（大泣き）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（大泣き）
------------------------------------------------------------------------------------------ */
span.cry
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/cry.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
				:	\members-Wanted\index.html
				:	\members-Wanted\index.html
	目的		:	スマイリー（安心顔）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（安心顔）
------------------------------------------------------------------------------------------ */
span.careless
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/careless.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\members-Wanted\index.html
	目的		:	スマイリー（大爆笑）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（大爆笑）
------------------------------------------------------------------------------------------ */
span.XD
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/XD.html) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\welcome\index.html
	目的		:	スマイリー（無表情）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:2px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	スマイリー（無表情）
------------------------------------------------------------------------------------------ */
span.speechless
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 2px 28px;
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/speechless.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\welcome\index.html
	目的		:	選手（赤い人）の表示
	効果（処理）:	
	　　（配置）:	余白（上:5px 下:5px 左:48px），文字＝左真中
	　　（文字）:	
	　　（背景）:	選手（赤い人）
------------------------------------------------------------------------------------------ */
span.player
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 5px 0px 5px 48px;
	background-repeat : no-repeat ;
	background-position: left center;
	background-image : url(../image/crown04.gif) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	全HTML
	目的		:	押しピンの表示
	効果（処理）:	
	　　（配置）:	余白（上:7px 下:10px 左:28px），文字＝左真中
	　　（文字）:	
	　　（背景）:	押しピン
------------------------------------------------------------------------------------------ */
span.clip
{
	text-align:-moz-left; 									/* Firefox用 横位置＝左　*/  
	text-align:left;
	vertical-align: middle;
	padding : 7px 0px 10px 28px;								/* 上下位置は，IEは上のみで調整，Firefox用は上下で調整　*/
	background-repeat : no-repeat ;
	background-position: left top;
	background-image : url(../image/clip.png) ;
	background-size: auto;
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\schedule\index.html
	目的		:	スケジュール上の土曜日の書式
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	色＝青，大きさ＝120%
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.SAT
{
	color:#6699ff;
	font-size: 120%; 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\schedule\index.html
	目的		:	スケジュール上の日曜日の書式
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	色＝赤，大きさ＝120%
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.SUN
{
	color:#cc0033;
	font-size: 120%; 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\schedule\index.html
	目的		:	スケジュール上の日曜日の書式
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	大きさ＝120%
	　　（背景）:	色＝赤
------------------------------------------------------------------------------------------ */
span.holiday
{
	background-color:#cc0033;
	font-size: 120%; 
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\welcome\index.html
	目的		:	大きな字
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	大きさ＝170%，太さ＝700
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.big170
{
	font-size: 170%; 									/* 字サイズ */
	font-weight:700;									/* 字太さ　100〜900（標準=400） */
}
/* ------------------------------------------------------------------------------------------
	対象タグ	:	SPAN
	使用元		：	\introduction-team\index.html
	目的		:	小さな字
	効果（処理）:	
	　　（配置）:	
	　　（文字）:	大きさ＝80%，太さ＝300
	　　（背景）:	
------------------------------------------------------------------------------------------ */
span.small80
{
	font-size: 80%; 									/* 字サイズ */
	font-weight:300;									/* 字太さ　100〜900（標準=400） */
}
