@charset "shift_jis";


/*全体の設定
-------------------------------------------------------------------------------------
■文字サイズは75%部分で変更できます。%指定でなく、pxなどでもOK。
■文字色（白）は#FFFFFF部分で変更可。
-------------------------------------------------------------------------------------*/
body {
	font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 75%;
	line-height: 2;
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-color: #2e2e2e;
	background-image: url(images/bg.gif);
	background-repeat: repeat-x;
	background-position: top;
}


/*細々の設定（特に変更する部分なし）
-------------------------------------------------------------------------------------*/
h1{
    display: none;
}

h2,h3,p,ul,li{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
	vertical-align: bottom;
}

.look {
	color: #FF0000;
	background: #000000;
}

.look2 {
	color: #FFFFFF;
	background: #333333;
}

.redbox {
	color: #A90310;
}



/*リンクカラー設定
-------------------------------------------------------------------------------------
■aの部分がリンク設定。下線を外したいなら、「text-decoration: none;」を
1行追加すればOK。
■a:hoverはカーソルが乗った時の設定。
-------------------------------------------------------------------------------------*/
a {
	color: #FFFFFF;
	text-decoration: none;
}

a:hover {
	color: #ad0a17;
	background: #000000;
}


/*コンテナー（特に変更する必要なし）
-------------------------------------------------------------------------------------*/
#container {
	background-color: #2e2e2e;
	background-image: url(images/container_bg.gif);
	background-repeat: no-repeat;
	background-position: center top;
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 4px;
	padding-left: 4px;
	width: 1004px;
}


/*ヘッダー（ロゴとかナビメニューが入っているHPの上部のブロック）
-------------------------------------------------------------------------------------
■ヘッダーの背景画像を入れ替える場合は、「#header」のbackgroundで設定。
■h1タグのサイズや位置は「#header h1」部分で変更する。11pxは文字サイズ。leftとtopに
入っている数字はヘッダーブロックの左上から見て、左から10px、上から15pxの位置に配置、
という意味。数値を変更すれば好きな位置に変更可。色も変えたいなら「color: #FF0000;」
などの1行を追加する。FF0000は赤色。
■h1と同じようにロゴ画像の位置変更可。「#header #logo」部分になる、ロゴは
下からの方が設定しやすかったのでbottom: 15px;とした。下から15pxの位置という意味。
-------------------------------------------------------------------------------------*/
#header {
	background: url(images/header_green.gif) repeat-x;
	height: 94px;
	position: relative;
}

#header h1 {
	font-size: 5px;
	font-weight: normal;
	position: absolute;
	left: 15px;
	top: 25px;
	line-height: 13px;
}

#header #logo {
	position: absolute;
	left: 10px;
	bottom: 15px;
}


/*右上のナビメニュー（特に変更する必要なし）
-------------------------------------------------------------------------------------*/
#nav {
    background: url(images/nav_bg.gif) no-repeat left top;
	position: absolute;
	top: 7px;
	right: 0px;
	line-height: 13px;
	height: 22px;
	padding-right: 15px;
	padding-left: 30px;
}

#nav li {
	display: inline;
	margin-left: 10px;
	background: url(images/arrow1.gif) no-repeat left center;
	padding-left: 20px;
}


/*メインメニュー
-------------------------------------------------------------------------------------
■メニューの背景部分は#menu部分で行う。
■メニュー同士の境界線は「#menu li」のbackground。
■メニューのリンク設定が「#menu li a」部分。文字色を#000000(黒)で文字サイズを13pxで固定。
最大文字数(8文字)というのは「width: 8em;」部分。自分が使うメニューの文字数の
最大文字数に合わせて変更するといい。最大文字数が5文字だったら5em。
■カーソルオーバー時は「#menu li a:hover」で設定。ここでは背景画像と文字色を変えている。
-------------------------------------------------------------------------------------*/
#menu {
	background: #CCCCCC url(images/menu_bg_t.gif) no-repeat;
	height: 40px;
}

#menu li {
	background-image: url(images/menu_bg_line.gif);
	background-repeat: no-repeat;
	background-position: right;
	float: left;
	height: 40px;
}

#menu li a {
	color: #000000;
	text-decoration: none;
	font-size: 13px;
	display: block;
	width: 8em;
	text-align: center;
	padding-right: 5px;
	padding-left: 5px;
	line-height: 40px;
}

#menu li a:hover {
	background-image: url(images/menu_bg_over.gif);
	color: #FFFFFF;
}


/*コンテンツ枠
-------------------------------------------------------------------------------------*/
#contents {
    width: 1004px;
	background-image: url(images/green.gif);
	background-repeat: repeat;
	display: inline-block;
}


/*年度
-------------------------------------------------------------------------------------*/
#nendo {
    margin-bottom: 17px;
    margin-left: 5px;
}

#nendo li a {
    color: #FFFFFF;
    text-decoration: none;
}

#nendo li a:hover {
	color: #FFFF33;
	background-color: #990000;
	text-decoration: underline;
}


#nendo li {
    color: #FFFF33;
    background-image: url(images/arrow3.gif);
    background-repeat: no-repeat;
    background-position: 8px;
   	background-color: #990000;
	display: inline;
	padding: 5px 10px 5px 32px;
	margin-left: 8px;
	text-align: center;
}


/*インデックスメニュー用
-------------------------------------------------------------------------------------*/
#ind {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
}

#ind li a {
    color: #000000;
    text-decoration: none;
}

#ind li a:hover {
	color: #FFFF33;
	text-decoration: underline;
}

#ind li {
    color: #FFFF33;
    background-image: url(images/arrow4.gif);
    background-repeat: no-repeat;
    background-position: 8px;
	display: inline;
	padding: 5px 10px 5px 22px;
	margin-left: 8px;
	text-align: center;
}


/*重要なお知らせ
-------------------------------------------------------------------------------------*/
#imp  {
    margin-top: 15px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 400px;
    color: #ff0000;
}

#imp li {
    background-color: #005500;
    padding-left: 10px;
    font-size: 12px;
}

#imp li a {
    color: #C0C0C0;
}

#imp li a:hover {
    color: #000000;
	background-color: #66FF00;
}


/*重要なお知らせ2
-------------------------------------------------------------------------------------*/
#imp2  {
    margin-top: 15px;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 200px;
    color: #ff0000;
}

#imp2 li {
    background-color: #005500;
    padding-left: 10px;
    font-size: 12px;
}

#imp2 li a {
    color: #C0C0C0;
}

#imp2 li a:hover {
    color: #000000;
	background-color: #66FF00;
}


/*メインコンテンツ（文章が入っているブロック）
-------------------------------------------------------------------------------------
■見出しの設定は「#main h2」で行う。ここでは文字サイズを13pxに固定し、背景の画像を
入れている。
-------------------------------------------------------------------------------------*/
#main {
	width: 960px;
	padding-top: 20px;
	margin-bottom: 50px;
	margin-left: 12px;
	margin-right: 12px;
}

#main h2 {
	color:  #66CC66;
	font-size: 13px;
	line-height: 25px;
	background: #000000 url(images/midashi2_bg.gif) no-repeat;
	height: 25px;
	width: 960px;
	padding-left: 15px;
}

#main h3 {
	color:  #000000;
	font-size: 13px;
    border-bottom: solid 2px #0000FF;
    border-left: solid 10px #0000FF;
	width: 870px;
	margin-top: 15px;
	margin-left: 5px;
	padding-left: 5px;
}

#main p {
	margin: 0.5em 10px 1em;
}

#main table {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 5px;
    width: auto;
    border: none;
    border-collapse: collapse;
}

#main th {
    padding-left: 5px;
    width: auto;
    height: 20px;
    text-align: left;
    background-color: #42662D;
    border: solid 1px #000000;
}
#main td {
    color: #808080;
    padding-left: 5px;
    padding-right: 5px;
    width: auto;
    height: 20px;
    text-align: center;
    background-color: #C5C5C5;
    border: solid 1px #000000;
}



/*データリスト
-------------------------------------------------------------------------------------*/
#data  {
    margin-top: 15px;
}

#data a {
    color: #000066;
    text-decoration: none;
}

#data a:hover {
	color: #ad0a17;
	background-color: #C5C5C5;
	text-decoration: underline;
}
	
#data table {
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 5px;
    width: auto;
    border: none;
    border-collapse: collapse;
}

#data th {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: 16px;
    text-align: left;
    background-color: #42662D;
    border: solid 1px #000000;
    font-weight: normal;
    font-size: 13px;
}

#data td {
    color: #006600;
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: 16px;
    text-align: left;
    background-color: #C5C5C5;
    border: solid 1px #000000;
    line-height: 1.3;
    font-size: 20px;
}

#data li {
    display: inline;
    padding-right: 15px;
}

/*動画
-------------------------------------------------------------------------------------*/
#douga  {
    margin-top: 15px;
}

#douga a {
    color: #000066;
    text-decoration: none;
}

#douga a:hover {
	color: #ad0a17;
	background-color: #C5C5C5;
	text-decoration: underline;
}
	
#douga table {
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 5px;
    width: auto;
    border: none;
    border-collapse: collapse;
}

#douga th {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: 16px;
    text-align: left;
    background-color: #3399CC;
    border: none;
    font-weight: normal;
    font-size: 13px;
}

#douga td {
    color: #000000;
    padding: 10px;
    width: 880px;
    text-align: left;
    background-color: #B3B3B3;
    border: none;
    line-height: 1.3;
    font-size: 12px;
}

#douga li {
    display: inline;
    padding-right: 15px;
}

/*サイトマップ用
-------------------------------------------------------------------------------------*/
#map {
    margin-left: 20px;
}

#map table {
    border-collapse: collapse;
}

#map th {
    background: url(images/arrow3.gif) no-repeat 15px center;
    width: 180px;
    text-align: left;
    padding-left: 35px;
    border-top: none;
    border-bottom: 1px solid #C0C0C0;
    border-left: none;
    border-right: none;
}

#map td {
    color: #D0D0D0;
    background: none;
    width: auto;
    text-align: left;
    padding-left: 15px;
    padding-right: 20px;
    border-top: none;
    border-bottom: 1px solid #C0C0C0;
    border-left: none;
    border-right: none;
}

#map th a {   
    text-decoration: none;    
}

#map th a:hover {
	color: #ad0a17;
	text-decoration: underline;
	background: none;
}

.map {
    font-size: 1.25em;
    background-color: #339966;
    padding-left: 7px;
    width: 600px;    
}

#map li {
    display: inline;
    margin-right: 20px;
}    
 

/*2015プロジェクト
-------------------------------------------------------------------------------------*/
#project {
    margin-top: 30px;
    margin-left: 20px;   
}

#project h3 {
    border-bottom: solid 2px #0000FF;
    border-left: solid 10px #0000FF;
	font-size: 1.25em;
	width: 550px;
	margin-bottom: 10px;
	margin-top: 20px;
	padding-left: 10px;   
}

#project p {
    background: url(images/arrow3.gif) no-repeat left center;
    padding-left: 20px;
}

#project a {
    text-decoration: none;
    color: #FFFFFF;
}

#project a:hover {
	color: #ad0a17;
	text-decoration: underline;
}



#project table {
    margin: 5px;
    border-collapse: collapse;
}






#project th {
    border: solid 1px #C0C0C0;
    line-height: 1.3;
    padding: 6px;
    color: #C0C0C0;
    font-size: 13px;
    background: #003300;
    width: 525px;    
}





#project td {
    border: solid 1px #C0C0C0;
    background: #C0C0C0;
    line-height: 1.3;
    padding: 6px;
    color: #000000;
    font-size: 12px;
}

/*contact(お問い合わせ)
-------------------------------------------------------------------------------------*/
#g_map  {
    width: 455px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    float: left;
}

#contact {
    margin-top: 20px;
    margin-left: 500px;
    margin-right: 20px;
    background-image: url(images/hokkaido.gif);
    background-repeat: no-repeat;
    background-position: right;
    width: auto;
    height: 300px;
}

#contact h3 {
    padding-top: 20px;
    color:  #FFCC00;
	font-size: 15px;
	font-weight: normal;
	border: none;
}


/*リンク
-------------------------------------------------------------------------------------*/
#link {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    width: auto;
}

#link table {
    border-collapse: collapse;
    margin: 0px;
}

#link td {
    background: none;
    padding-top: 8px;
    width: 230px;
    vertical-align: bottom;
    text-align: left;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #669900;
    font-size: 12px;
}

#link a {
    text-decoration: none;
}

#link a:hover {
	color: #ad0a17;
	text-decoration: underline;
	background: none;
}

#link h3 {
    background: #CC6600;
	font-size: 1.25em;
	font-weight: normal;
	width: 800px;
	margin-bottom: 10px;
	margin-top: 30px;
	padding-left: 7px;
	border: none;
}


/*女子委員会
-------------------------------------------------------------------------------------*/
#jyoshi {
    margin-top: 10px;
    margin-left: 20px;
    width: 700px;
    float: left;  
}

#jyoshi h3 {
    color: #FFFFFFF;
    margin-top: 15px;
    margin-left: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: solid 2px #FF6699;
    border-left: solid 10px #FF6699;
    text-align: left;
    width: 600px;
}

#jyoshi h4 {
    color: #FFA2FF;
    padding-left: 0px;
    margin-bottom: 0px;
    font-size: 12px;
}

#jyoshi a {
    text-decoration: none;
    color: #E7E7E7;
}

#jyoshi a:hover {
	color: #ad0a17;
	text-decoration: underline;
}

#jyoshi_img {
    margin-top: 15px;
    margin-right: 20px;
    width: auto;
}

#jyoshi li {
    display: inline;
    background: url(images/arrow9.gif) no-repeat left center;
    padding-left: 13px;
    line-height: 1.3;
    padding-right: 15px;
}    

#jyoshi table {
    margin-top: 5px;
    margin-bottom: 20px;
    margin-left: 5px;
    width: auto;
    border: none;
    border-collapse: collapse;
}

#jyoshi th {
    color: #000000;
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: 20px;
    text-align: left;
    background-color: #FED8F5;
    border: solid 1px #000000;
    font-weight: normal;
    font-size: 12px;
}

#jyoshi td {
    color: #000000;
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: 20px;
    text-align: left;
    background-color: #666666;
    border: solid 1px #000000;
    line-height: 1.3;
    font-size: 12px;
}


/*女子委員会（データテーブル用）
-------------------------------------------------------------------------------------*/
#jyoshi_data {
    margin-top: 10px;
    margin-left: 20px;
    width: auto;
}

#jyoshi_data a  {
	color: #000066;
	text-decoration: none;
}

#jyoshi_data a:hover {
	color: #ad0a17;
	background-color: #C5C5C5;
	text-decoration: underline;
}

#jyoshi_data table {
    margin-top: 15px;
    margin-bottom: 20px;
    margin-left: 5px;
    width: auto;
    border: none;
    border-collapse: collapse;
}

#jyoshi_data th {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: auto;
    text-align: left;
    background-color: #FF6699;
    border: solid 1px #000000;
    font-weight: normal;
    font-size: 13px;
}

#jyoshi_data td {
    color: #000000;
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    height: 25px;
    text-align: left;
    background-color: #C5C5C5;
    border: solid 1px #000000;
    line-height: 1.3;
    font-size: 13px;
}

#jyoshi_data ul {
    margin: 5px;
    width: 350px;
}

#jyoshi_data li {
    background: url(images/arrow6.gif) no-repeat left center;
    padding-left: 15px;
}    

/*女子委員会（なでしこ用）
-------------------------------------------------------------------------------------*/
#nadeshiko {
    margin-top: 10px;
    margin-left: 20px;
    width: 950px;
}

#nadeshiko th {
    background: #FF6699;
    color: #FFFFFF;
    padding: 5px;
    font-size: 14px;
}

#nadeshiko td {
    background: #C0C0C0;
    color: #000000;
    text-align: left;
    padding: 5px;
    font-size: 12px;
    line-height: 1.5;
}

#nadeshiko img {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
}

.midashi {
    color: #A90310;
}


/*シニア委員会
-------------------------------------------------------------------------------------*/
#senior {
    margin-top: 10px;
    margin-left: 20px;
    width: auto;
}

#senior h3 {
    color: #E8BAFE;
    margin-top: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: solid 2px #990099;
    border-left: solid 10px #990099;
    text-align: left;
    width: 870px;
}

#senior h4 {
    color: #E8BAFE;
    margin-top: 5px;
    margin-left: 7px;
    margin-bottom: 5px;
    font-size: 13px;
}

#senior p {
    background: url(images/arrow7.gif) no-repeat left center;
    padding-left: 20px;
    line-height: 1.1;
}

#senior a {
    text-decoration: none;
    color: #FFFFFF;
}

#senior a:hover {
	color: #ad0a17;
	text-decoration: underline;
}

#senior td {
    width: 240px;
}

#senior td a{
    color: #000080;
}

/*テクニカルレポート
-------------------------------------------------------------------------------------*/
#repo {
    margin-top: 10px;
    margin-left: 20px;
    width: auto;
}

#repo h3 {
    color: #00FFFF;
    margin-top: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: solid 2px #000099;
    border-left: solid 10px #000099;
    text-align: left;
    width: 870px;
}

#repo h4 {
    color: #0033FF;
    margin-top: 5px;
    margin-left: 7px;
    margin-bottom: 5px;
    font-size: 13px;
}

#repo p {
    background: url(images/arrow8.gif) no-repeat left center;
    padding-left: 20px;
    line-height: 1.1;
}

#repo a {
    text-decoration: none;
    color: #FFFFFF;
}

#repo a:hover {
	color: #ad0a17;
	text-decoration: underline;
}

#repo td  {
    border: solid 1px #3300FF;
    background: #FFFF33;
    line-height: 1.3;
    padding: 6px;
    color: #000000;
    font-size: 25px;
    width: 900px;
}

#repo td a{
    color: #000080;
}

/*80周年記念誌
-------------------------------------------------------------------------------------*/
#kinen {
    margin-top: 10px;
    margin-left: 20px;
    width: 450px;
    float: left;  
}

#kinen h3 {
    color: #FFFFFF;
    margin-top: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: solid 2px #FFFF00;
    border-left: solid 10px #FFFF00;
    text-align: left;
    width: 900px;
}

#kinen p {
    background: url(images/arrow3.gif) no-repeat left center;
    padding-left: 20px;
    line-height: 1.1;
}

#kinen2 p {
    padding-left: 20px;
    line-height: 1.1;
}

#kinen a {
    text-decoration: none;
    color: #FFFFFF;
}

#kinen a:hover {
	color: #ad0a17;
	text-decoration: underline;
}

#kinen_img {
    margin-top: 30px;
    margin-right: 20px;
    width: auto;
}

/*「夢きたれ」
-------------------------------------------------------------------------------------*/
#kitare {
    margin-top: 10px;
    margin-left: 20px;
    width: 450px;
    float: left;  
}

#kitare h3 {
    color: #FFFFFF;
    margin-top: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: solid 2px #FFFF00;
    border-left: solid 10px #FFFF00;
    text-align: left;
    width: 900px;
}

#kitare p {
    background: url(images/arrow3.gif) no-repeat left center;
    padding-left: 20px;
    line-height: 1.1;
}

#kitare2 p {
    padding-left: 20px;
    line-height: 1.1;
}

#kitare a {
    text-decoration: none;
    color: #FFFFFF;
}

#kitare a:hover {
	color: #ad0a17;
	text-decoration: underline;
}

#kitare_img {
    margin-top: 30px;
    margin-right: 20px;
    width: auto;
}



/*「EXILE CUP 2012」案内
-------------------------------------------------------------------------------------*/
#exile {
    margin-top: 10px;
    margin-left: 20px;
    width: 450px;
    float: left;  
}

#exile h3 {
    color: #FFFFFF;
    margin-top: 15px;
    margin-left: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: solid 2px #FFFF00;
    border-left: solid 10px #FFFF00;
    text-align: left;
    width: 900px;
}

#exile p {
    background: url(images/arrow3.gif) no-repeat left center;
    padding-left: 20px;
    line-height: 1.1;
}

#exile2 p {
    padding-left: 20px;
    line-height: 1.1;
}

#exile a {
    text-decoration: none;
    color: #FFFFFF;
}

#exile a:hover {
	color: #ad0a17;
	text-decoration: underline;
}

#exile_img {
    margin-top: 30px;
    margin-right: 20px;
    width: auto;
}


/*page topへ
-------------------------------------------------------------------------------------*/
#pagetop {
    text-align: left;
    margin-left: 5px;
}   

#pagetop a {
    text-decoration: none;
}

#pagetop a:hover {
    background-color: transparent;
	text-decoration: none;
}


/*フッター
-------------------------------------------------------------------------------------*/
#footer {
	clear: both;
	background-image: url(images/footer2_bg.gif);
	background-repeat: no-repeat;
	background-position: center;
	height: auto;
	padding: 5px;
	font-size: 12px;
	color: #999999;
	width: 998px;
	margin-right: auto;
	margin-left: auto;
}



