@charset "utf-8";

*, *:before, *:after { 
    -webkit-box-sizing: border-box; 
       -moz-box-sizing: border-box; 
         -o-box-sizing: border-box; 
        -ms-box-sizing: border-box; 
            box-sizing: border-box; 
}


html { 
  background: url(../images/mainimg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Playball);


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #fff;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;/*文字サイズ・行間・フォント設定*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	font-size: 14px;
	line-height: 2;
	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 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: #FF0000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 100%;	/*ボックス幅*/
	margin: 0 auto;
	
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ヘッダーブロックの幅*/
	height: 250px;	/*ヘッダーの高さ*/
	position: relative;
}
/*ヘッダー内の画像*/
header aside#mainimg img {
	vertical-align: bottom;
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
}
/*h1見出しタグ設定*/
header h1 {
	font-size: 24px;			/*文字サイズ*/
	color: #FFF;			/*文字色*/
	text-shadow: 3px 3px 5px #000;
	position: absolute;
	line-height: 40px;
	left: 62px;	/*ヘッダーブロックに対して右から50pxの位置に配置。*/
	top: 18px;	/*ヘッダーブロックに対して下から0pxの位置に配置。*/
}

header h2 {
	font-size: 14px;			/*文字サイズ*/
	color: #FFF;			/*文字色*/
	text-align: right;
	text-shadow: 3px 3px 5px #000;
	position: absolute;
	line-height: 20px;
	right: 62px;	/*ヘッダーブロックに対して右から50pxの位置に配置。*/
	top: 18px;	/*ヘッダーブロックに対して下から0pxの位置に配置。*/
}
/*上部のメインメニュー 
---------------------------------------------------------------------------*/ 
/*メニューブロック全体の設定*/ 
nav#menubar { 
 height: auto; 
 overflow: hidden; 
 width: 100%; 
 max-width: 1200px; 
 margin: 0 auto; 
} 
nav#menubar ul { 
 width: 100%; 
 overflow: hidden; 
 display: block; 
 padding: 0px; 
} 
/*メニュー１個ごとの設定*/ 
nav#menubar ul li { 
 float: left; 
 width: 24.25%; 
 margin-right: 1%; 
 margin-bottom: 15px; 
} 
  nav#menubar ul li:nth-child(4), 
  nav#menubar ul li:nth-child(8) { 
   margin-right: 0%; /*メニュー幅*/ 
  } 
nav#menubar ul li a { 
 width: 100%; 
 text-decoration: none; 
 display: block; 
 padding: 17px 10px; 
 background-color:rgba(20,20,20,0.7); 
 text-align: center; /*文字をセンタリング*/ 
 color: #fff; /*文字サイズ、行間、冒頭で読み込んでいるGoogle Fontsの指定*/ 
 font-family: arial; 
 font-size: 10px; 
} 
  nav#menubar ul li a img { 
   vertical-align: bottom; 
  } 
  nav#menubar ul li.ex a { 
   padding: 0px; 
  } 
/*マウスオン時*/ 
nav#menubar ul li a:hover { 
 background-color: #111; /*背景色*/ 
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;	/*背景色*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: none;	/*右側に回り込み*/
	width: auto;	/*上、右、下、左への余白*/
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 50px;
	padding-left: 0px;
	background-color:rgba(0,0,0,0.3);

}
body.c1 #main {
	float: none;
	width: 870px;
	margin: 0px auto;
	padding: 0px 0px 50px;	/*上、左右、下への余白*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	font-size: 100%;
	padding: 15px 10px 15px 20px;	/*角丸のサイズ*/
	color: #FFFFFF;		/*背景画像をリピートしない設定*/
	background-position: right center;
	line-height: 30px;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	font-size: 100%;
	clear: both;
	background-color: #003366;	/*背景色*/
	padding: 5px 10px 5px 20px;	/*左から、上、右、下、左側への余白*/
	border-radius: 10px;	/*角丸のサイズ*/
	color: #FFF;			/*文字色*/
	border: 1px solid #003333;
	line-height: 30px;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 20px 15px;	/*左から、上、左右、下への余白*/
}

/*menu.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	height: 400px;	/*ボックスの高さ*/
	width: 21%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #040923;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f6f6f6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #f6f6f6);	/*同上*/
	background-image: linear-gradient(#FFF, #f6f6f6);	/*同上*/
	padding: 10px;	/*ボックス内の余白*/
	float: left;
	overflow: hidden;
	position: relative;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 15px;
	margin-left: 6px;
}
body.c1 #main section.list section {
	width: 20%;	/*ボックスの幅*/
}
/*ボックス内の段落タグ設定*/
#main section.list section p {
	padding: 0px;
	color: #333;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
}
/*ボックス内のh4タグ設定*/
#main section.list section h4 {
	font-size: 100%;
	color: #ef8100;	/*文字色*/
	border-bottom: 2px dotted #ef8100;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内のh5タグ設定*/
#main section.list section h5 {
	font-size: 10px;
	color: #000;	/*文字色*/
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.list section figure img {
	width: 100%;
	height: auto;
}

.alignleft{
float:left;
clear:left;
margin:3px 10px 10px 1px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding: 0px 0px 50px 55px;	/*上、右、下、左への余白*/
}
body.c1 #sub {
	display: none;
}
/*subコンテンツのh2タグの設定*/
#sub h2 {
	background-color: #ef8100;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ff900d), to(#ef8100));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ff900d, #ef8100);	/*同上*/
	background-image: linear-gradient(#ff900d, #ef8100);		/*同上*/
	color: #FFF;	/*文字色*/
	font-size: 100%;
	font-weight: normal;
	padding: 5px 5px 5px 10px;	/*上、右、下、左の余白*/
}
/*subコンテンツのpタグの設定*/
#sub p {
	padding: 5px;	/*余白*/
}

/*サブメニュー
---------------------------------------------------------------------------*/
/*サブメニューブロック全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*ブロックの下にスペースを空ける設定*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #666;	/*下線の幅、線種、色*/
	padding: 2px 2px 2px 10px;	/*上、右、下、左の余白*/
	color: #333;	/*文字色*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	color: #FA2227;				/*マウスオン時の文字色*/
	background-color: #FFCC00;	/*マウスオン時の背景色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	background: #FFF;	/*背景色*/
	color: #333;		/*文字色*/
	padding: 5px;		/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下にスペースを空ける設定*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#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 #ccc;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
	margin: 0px auto;
	background-color: #FFF;	/*背景色*/
	color: #333;	/*文字色*/
}
.ta1 a {
	color: #333;	/*文字色*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #333;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #eee;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #FFCC00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffdf61), to(#FFCC00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffdf61, #FFCC00);	/*同上*/
	background-image: linear-gradient(#ffdf61, #FFCC00);	/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	height: 30px;
	background-color: #003366;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	line-height: 30px;
	float: right;
	letter-spacing: 0.1em;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #333;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}

/*「NEW」表示
---------------------------------------------------------------------------*/
.new {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #36b2eb;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #222;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FFCC00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
	padding-top: 0px;
}
#menubar_hdr {
	display: none;
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 0px;	/*ヘッダーの高さ*/
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}

header h2 {
	color: 000;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menubar {
	height: auto;
	padding: 0px;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-right: 0px;
	width: 100%;
}
nav#menubar ul li a {
	border-radius: 0px;
	border-bottom: 1px solid #333;	/*下側の線の幅、線種、色*/
}
/*奇数番目のメニューの設定*/
nav#menubar ul li a:nth-child(odd) {
	border-left: 1px solid #333;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding: 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto !important;
	padding: 20px 0px 50px 0px;
}

/*menu.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	height: 420px;	/*ボックスの高さ*/
	width: 46% !important;	/*ボックスの幅*/
	margin: 0px 2% 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 0px;	/*ヘッダーの高さ*/
}
/*h1見出しタグ設定*/
header h1 {
	display: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menubar {
	height: auto;
	padding: 0px;
	overflow: hidden;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-right: 0px;
	width: 100%;
}
nav#menubar ul li a {
	border-radius: 0px;
	border-bottom: 1px solid #333;	/*下側の線の幅、線種、色*/
}
/*奇数番目のメニューの設定*/
nav#menubar ul li a:nth-child(odd) {
	border-left: 1px solid #333;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	padding: 10px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto !important;
	padding: 10px 0px 20px 0px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグの設定*/
#main h2 {
	padding: 10px 10px 10px 20px;	/*左から、上、右、下、左側への余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 5px 15px;	/*左から、上、左右、下への余白*/
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/bg1.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#d3d3d3));	/*マイナスアイコンと背景画像とグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/bg1.png) no-repeat right center, -webkit-linear-gradient(#fff, #e5e5e5 49%, #d3d3d3 50%);			/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/bg1.png) no-repeat right center, linear-gradient(#fff, #e5e5e5 49%, #d3d3d3 50%);	/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/bg1.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#d3d3d3));	/*プラスアイコンと背景画像とグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/bg1.png) no-repeat right center, -webkit-linear-gradient(#fff, #e5e5e5 49%, #d3d3d3 50%);				/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/bg1.png) no-repeat right center, linear-gradient(#fff, #e5e5e5 49%, #d3d3d3 50%);	/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*menu.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	float: none;
	height: auto;	/*ボックスの高さ*/
	width: 90% !important;		/*ボックスの幅*/
	margin: 0px auto 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}
