@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: url(../images/bg_line.png) repeat-x center top, url(../images/bg.png);/*左からカンマで区切って背景画像を2つ指定*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #174822;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	text-align: right;		/*右寄せ*/
}
body > h1 a, body > h1 a:hover {
	color: #FFF;
	text-decoration: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 990px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 200px;	/*ヘッダーブロックの高さ*/
	width: 100%;	/*ヘッダーブロックの幅*/
	position: relative;
}
/*h1ロゴの設定*/
header h1 {
	position: absolute;
	left: 40px;	/*ヘッダーブロックに対して左から40pxの位置に配置*/
	top: 80px;	/*ヘッダーブロックに対して上から80pxの位置に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#mainmenu ul {
	font-size: 11px;	/*文字サイズ*/
	height: 120px;		/*ブロックの高さ*/
	width: 520px;		/*ブロックの幅*/
	position: absolute;
	top: 50px;			/*ヘッダーブロックに対して上から50pxの位置に配置*/
	right: 30px;		/*ヘッダーブロックに対して右から30pxの位置に配置*/
}
/*各メニューの設定*/
nav#mainmenu ul li a {
	height: 100px;		/*メニューの高さ*/
	width: 100px;		/*メニューの幅*/
	line-height: 100px;	/*行間（heightの数値と合わせる）*/
	color: #FFF;		/*文字色*/
	text-decoration: none;
	text-align: center;
	display: block;
	background: rgba(3,81,18,0.5);		/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	border-radius: 60px;	/*角丸のサイズ*/
	-webkit-transition: 0.8s;	/*マウスオン時の移り変わるまでの時間設定。0.8秒。*/
	transition: 0.8s;			/*同上*/
	border: 10px solid rgba(255,255,255,0.5);	/*枠線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	overflow: hidden;
	float: left;
	margin-right: 10px;
}
/*マウスオン時の設定*/
nav#mainmenu ul li a:hover {
	background: #FFF;	/*背景色*/
	color: #174822;		/*文字色*/
	border: 10px solid #337942;	/*枠線の幅、線種、色*/
}

nav#mainmenu ul li.login a {
	height: 100px;		/*メニューの高さ*/
	width: 100px;		/*メニューの幅*/
	line-height: 100px;	/*行間（heightの数値と合わせる）*/
	color: #FFF;		/*文字色*/
	text-decoration: none;
	text-align: center;
	display: block;
	background: rgba(255,81,18,0.5);		/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	border-radius: 60px;	/*角丸のサイズ*/
	-webkit-transition: 0.8s;	/*マウスオン時の移り変わるまでの時間設定。0.8秒。*/
	transition: 0.8s;			/*同上*/
	border: 10px solid rgba(255,255,255,0.5);	/*枠線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	overflow: hidden;
	float: left;
	margin-right: 10px;
}
/*マウスオン時の設定*/
nav#mainmenu ul li.login a:hover {
	background: #FFF;	/*背景色*/
	color: #174822;		/*文字色*/
	border: 10px solid #793342;	/*枠線の幅、線種、色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 330px;
	width: 970px;
	border-radius: 10px;	/*角丸のサイズ*/
	margin-bottom: 60px;
}
#mainimg img {
	-webkit-box-shadow: 0px 2px 5px #568b61;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #568b61;			/*同上*/
	vertical-align: bottom;
	border-radius: 10px;	/*角丸のサイズ*/
	border: 10px solid #FFF;	/*枠線の幅、線種、色*/
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh1タグの設定*/
#main h1 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #568b61;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #568b61;			/*同上*/
	font-size: 100%;
	padding: 10px 10px 10px 20px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 10px;	/*角丸のサイズ*/
	color: #337942;	/*文字色*/
}
/*MENUページで使っている濃い色のh1見出しタグのスタイル*/
#main h1.type1 {
	background-color: #3b8b4c;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#3b8b4c), to(#337942));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#3b8b4c, #337942);	/*同上*/
	background-image: linear-gradient(#3b8b4c, #337942);			/*同上*/
	color: #FFF;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 20px 1em;	/*左から、上、左右、下への余白*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}
.footer_end {
	width:100%;
	font-size:80%;
	font-weight:italic;
	margin:0;
	padding-top:20px;
	text-align:right;
	background: url(../images/bg_bottom.png) repeat-x center top;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
/*	overflow: auto;	*/ /*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
/*	height: 150px; */
	margin: 5px 20px 0px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*下線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.3＝30％）の指定。*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	font-size: 16px;	/*文字サイズ*/
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 20px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	height: 370px;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #568b61;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #568b61;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 15px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 9px 1em;
	position: relative;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh1タグ設定*/
#main section.list article h1 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #337942;	/*文字色*/
	border-bottom: 2px dotted #337942;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list article img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

#main section.list2 article {
	height: 110px;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	padding: 15px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 9px 1em;
	position: relative;
}

/* Osa Add */
.topics_box {
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #568b61;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #568b61;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 15px;	/*ボックス内の余白*/
	margin: 0px 9px 1em;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	position: relative;
}
.topics_box a {
	color: #000099;	/*リンクテキストの色*/
}

.pic_box {
	float:left;
	width:250px;
	margin:5px;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 950px;
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #FFF;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
/*	background: rgba(255,255,255,0.1);	*//*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.1＝10％）の指定。*/
	background: rgba(255,255,255,0.8);
	color:#333;
	width: 200px;	/*幅*/
	padding: 10px;
	text-align: center;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
}
/*テーブルのキャプション設定*/
.ta1 caption{
	background: rgba(3,81,18,0.5);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	padding: 10px;
	border-top: 1px solid #FFF;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
	text-align: left;
	font-weight: bold;	/*文字を太字にする設定*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	background-color: rgba(255,255,255,0.7);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.7＝70％）の指定。*/
	color: #337942;	/*文字色*/
	text-decoration: none;
	text-align: center;
	width: 14em;		/*ボックスの幅*/
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 10px;	/*角丸のサイズ*/
}
#pagetop a:hover {
	background-color: rgba(255,255,255,1);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（1＝100％）の指定。*/
	color: #337942;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: rgba(3,81,18,0.5);
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #ebcd26;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
.pagetop {
	clear: both;
	text-align: right;
}

td.address1 {
	vertical-align:top;
	width:25%;
	color: #666;
}

td.address2 {
	vertical-align:top;
	width:75%;
	color: #666;
}

td.address2 a {
	color: #660000;
}

td.address2 a:hover {
	color: #006600;
}

/*汎用ボタン設定
---------------------------------------------------------------------------*/
#common-button {
	clear: both;
	text-align: center;
}
#common-button a {
	background-color: rgba(255,81,18,0.5);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.7＝70％）の指定。*/
	color: #fff;	/*文字色*/
	text-decoration: none;
	text-align: center;
	vertical-align:middle;
	width: 14em;		/*ボックスの幅*/
	font-size: 14px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 5px;	/*角丸のサイズ*/
}
#common-button a:hover {
	background-color: rgba(255,255,255,1);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（1＝100％）の指定。*/
	color: #337942;
}

/*戻るボタン設定
---------------------------------------------------------------------------*/
#return-button {
	clear: both;
	text-align: center;
}
#return-button a {
	background-color: rgba(255,255,255,0.7);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.7＝70％）の指定。*/
	color: #337942;	/*文字色*/
	text-decoration: none;
	text-align: center;
	width: 14em;		/*ボックスの幅*/
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 10px;	/*角丸のサイズ*/
}
#return-button a:hover {
	background-color: rgba(255,255,255,1);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（1＝100％）の指定。*/
	color: #337942;
}

/*共有ボタン設定
---------------------------------------------------------------------------*/
.com-button {
	clear: both;
	text-align: center;
}
.com-button a {
	background-color: rgba(0,117,182,0.7);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.7＝70％）の指定。*/
	color: #ffffff;	/*文字色*/
	text-decoration: none;
	text-align: center;
	width: 80%;		/*ボックスの幅*/
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 2px;	/*角丸のサイズ*/
}
.com-button a:hover {
	background-color: rgba(0,117,182,1);	/*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（1＝100％）の指定。*/
	color: #cccccc;
}

p.err {
	color:#ffcccc ! important;
	background:url("../images/warning.png") 2px 1px no-repeat transparent ! important;
	text-indent:20px ! important;
	padding: 0 ! important;
	font-weight:bold;
}

p.comment {
	font-size:80%;
	color:#ccccff ! important;
	background:url("../images/warning2.png") 2px 1px no-repeat transparent ! important;
	text-indent:20px ! important;
	margin:5px 0 0;
	padding: 0 ! important;
	font-weight:bold;
}

.hissu {
	background-color: rgba(255,128,128,0.7);
	color: #337942;	/*文字色*/
	text-decoration: none;
	font-weight:normal;
	text-align: center;
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	padding:2px;
	display: inline-block;
	border-radius: 5px;	/*角丸のサイズ*/
}

.fltL { float:left; }
.fltR { float:right; }

.w100p { width:100%; }
.w99p  { width:99%; }
.w98p  { width:98%; }
.w97p  { width:97%; }
.w96p  { width:96%; }
.w95p  { width:95%; }
.w94p  { width:94%; }
.w93p  { width:93%; }
.w92p  { width:92%; }
.w91p  { width:91%; }
.w90p  { width:90%; }
.w89p  { width:89%; }
.w88p  { width:88%; }
.w87p  { width:87%; }
.w86p  { width:86%; }
.w85p  { width:85%; }
.w84p  { width:84%; }
.w83p  { width:83%; }
.w82p  { width:82%; }
.w81p  { width:81%; }
.w80p  { width:80%; }
.w79p  { width:79%; }
.w78p  { width:78%; }
.w77p  { width:77%; }
.w76p  { width:76%; }
.w75p  { width:75%; }
.w74p  { width:74%; }
.w73p  { width:73%; }
.w72p  { width:72%; }
.w71p  { width:71%; }
.w70p  { width:70%; }
.w69p  { width:69%; }
.w68p  { width:68%; }
.w67p  { width:67%; }
.w66p  { width:66%; }
.w65p  { width:65%; }
.w64p  { width:64%; }
.w63p  { width:63%; }
.w62p  { width:62%; }
.w61p  { width:61%; }
.w60p  { width:60%; }
.w59p  { width:59%; }
.w58p  { width:58%; }
.w57p  { width:57%; }
.w56p  { width:56%; }
.w55p  { width:55%; }
.w54p  { width:54%; }
.w53p  { width:53%; }
.w52p  { width:52%; }
.w51p  { width:51%; }
.w50p  { width:50%; }
.w49p  { width:49%; }
.w48p  { width:48%; }
.w47p  { width:47%; }
.w46p  { width:46%; }
.w45p  { width:45%; }
.w44p  { width:44%; }
.w43p  { width:43%; }
.w42p  { width:42%; }
.w41p  { width:41%; }
.w40p  { width:40%; }
.w39p  { width:39%; }
.w38p  { width:38%; }
.w37p  { width:37%; }
.w36p  { width:36%; }
.w35p  { width:35%; }
.w34p  { width:34%; }
.w33p  { width:33%; }
.w32p  { width:32%; }
.w31p  { width:31%; }
.w30p  { width:30%; }
.w29p  { width:29%; }
.w28p  { width:28%; }
.w27p  { width:27%; }
.w26p  { width:26%; }
.w25p  { width:25%; }
.w24p  { width:24%; }
.w23p  { width:23%; }
.w22p  { width:22%; }
.w21p  { width:21%; }
.w20p  { width:20%; }
.w19p  { width:19%; }
.w18p  { width:18%; }
.w17p  { width:17%; }
.w16p  { width:16%; }
.w15p  { width:15%; }
.w14p  { width:14%; }
.w13p  { width:13%; }
.w12p  { width:12%; }
.w11p  { width:11%; }
.w10p  { width:10%; }
.w9p   { width:9%; }
.w8p   { width:8%; }
.w7p   { width:7%; }
.w6p   { width:6%; }
.w5p   { width:5%; }
.w4p   { width:4%; }
.w3p   { width:3%; }
.w2p   { width:2%; }
.w1p   { width:1%; }

span.game_result {
	font-size:140%;
	font-weight:bold;
}

span.game_result2 {
	font-size:90% ! important;
	font-weight:bold ! important;
}

/*ランキング用*/
fieldset.ranking_joken {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	-webkit-box-shadow: 0px 2px 5px #568b61;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #568b61;			/*同上*/
	font-size: 100%;
	padding: 10px 10px 10px 20px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-radius: 10px;	/*角丸のサイズ*/
	border:none;
	color: #337942;	/*文字色*/
}

/* ランキングメニュー */
.ranking_menu {
	float:left;
	background-color: #ffffff;
	color: #337942;	/*文字色*/
	text-decoration: none;
	text-align: center;
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	border-radius: 10px;	/*角丸のサイズ*/
	border:solid 1px #aaaaaa;
	cursor:pointer;
	padding:2px 5px 2px 5px;
	margin-right:10px;
}

.ranking_menu_active {
	float:left;
	background-color: rgba(255,81,18,0.8);
	color: #ffffff;	/*文字色*/
	text-decoration: bold;
	text-align: center;
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	display: inline-block;
	border-radius: 10px;	/*角丸のサイズ*/
	cursor:pointer;
	padding:2px 5px 2px 5px;
	margin-right:10px;
}

