@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Playball);

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #c07a00 url(../images/bg.jpg) repeat-x top;	/*背景色、背景画像の読み込み＆X軸(横軸)にリピート＆上部に配置*/
}
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: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #FFCC00;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ヘッダーブロックの幅*/
	height: 300px;	/*ヘッダーの高さ*/
	position: relative;
}
/*ヘッダー内の画像*/
header aside#mainimg img {
	vertical-align: bottom;
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
}
/*h1見出しタグ設定*/
header h1 {
	font-size: 9px;			/*文字サイズ*/
	color: #FFF;			/*文字色*/
	font-weight: normal;	/*デフォルトの太字を標準に。太字がいいならこの１行削除。*/
	position: absolute;
	line-height: 20px;
	right: 50px;	/*ヘッダーブロックに対して右から50pxの位置に配置。*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの位置に配置。*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar {
	background: #b27100;	/*背景色*/
	height: 50px;			/*高さ*/
	padding: 0px 0px 30px 55px;	/*左から、上、右、下、左側への余白*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 210px;	/*メニュー幅*/
	margin-right: 10px;	/*メニューの右側にあけるスペース*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	background-color: #fff;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cdcdcd));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fff, #cdcdcd);	/*同上*/
	background-image: linear-gradient(#fff, #cdcdcd);	/*同上*/
	text-align: center;	/*文字をセンタリング*/
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下の順。*/
	color: #333;	/*文字色*/
	font: 20px/50px 'Century Gothic', cursive;	/*文字サイズ、行間、冒頭で読み込んでいるGoogle Fontsの指定*/
}
/*マウスオン時*/
nav#menubar ul li a:hover {
	background: #fff;	/*背景色*/
}

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

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 650px;	/*メインコンテンツ幅*/
	padding: 0px 55px 50px 0px;	/*上、右、下、左への余白*/
}
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;	/*左から、上、右、下、左側への余白*/
	border-radius: 10px;	/*角丸のサイズ*/
	color: #333;			/*文字色*/
	background-color: #000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.gif), -webkit-gradient(linear, left top, left bottom, from(#717170), to(#000));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/bg1.gif), -webkit-linear-gradient(#717170, #181c18 49%, #000 50%);	/*同上*/
	background-image: url(../images/bg1.gif), linear-gradient(#717170, #181c18 49%, #000 50%);	/*同上*/
	background-repeat: no-repeat;		/*背景画像をリピートしない設定*/
	background-position: right center;	/*背景画像を右側・上下中央に配置*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	font-size: 100%;
	clear: both;
	background-color: #664100;	/*背景色*/
	padding: 5px 10px 5px 20px;	/*左から、上、右、下、左側への余白*/
	border-radius: 10px;	/*角丸のサイズ*/
	color: #FFF;			/*文字色*/
	border: 1px solid #f29a00;	/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 20px 15px;	/*左から、上、左右、下への余白*/
}

/*menu.html内のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list section {
	height: 370px;	/*ボックスの高さ*/
	width: 255px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	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: 20px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 14px 15px;
	overflow: hidden;
	position: relative;
}
body.c1 #main section.list section {
	width: 220px;	/*ボックスの幅*/
}
/*ボックス内の段落タグ設定*/
#main section.list section p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
}
/*ボックス内のh4タグ設定*/
#main section.list section h4 {
	font-size: 100%;
	color: #1c830e;	/*文字色*/
	border-bottom: 2px dotted #1c830e;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.list section figure img {
	width: 100%;
	height: auto;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 200px;	/*サブコンテンツ幅*/
	padding: 0px 0px 50px 55px;	/*上、右、下、左への余白*/
}
body.c1 #sub {
	display: none;
}
/*subコンテンツのh2タグの設定*/
#sub h2 {
	background-color: #f09800;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eeb95e), to(#f09800));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#eeb95e, #f09800);	/*同上*/
	background-image: linear-gradient(#eeb95e, #f09800);		/*同上*/
	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 #333;	/*下線の幅、線種、色*/
	padding: 2px 2px 2px 10px;	/*上、右、下、左の余白*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background-color: #fff;	/*背景色*/
	color: #1c830e;			/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	background: #FFF;	/*背景色*/
	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;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #f29a00;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #664100;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#111), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#111, #000);	/*同上*/
	background-image: linear-gradient(#111, #000);	/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	background: #b27100;
	height: 30px;
}
#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;
}
#menubar_hdr {
	display: none;
}



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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: auto;	/*ヘッダーの高さ*/
}
/*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: 50%;
}
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: auto;	/*ヘッダーの高さ*/
}
/*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: 50%;
}
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.gif) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#717170), to(#000));	/*マイナスアイコンと背景画像とグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/bg1.gif) no-repeat right center, -webkit-linear-gradient(#717170, #181c18 49%, #000 50%);			/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, url(../images/bg1.gif) no-repeat right center, linear-gradient(#717170, #181c18 49%, #000 50%);	/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/bg1.gif) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#717170), to(#000));	/*プラスアイコンと背景画像とグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/bg1.gif) no-repeat right center, -webkit-linear-gradient(#717170, #181c18 49%, #000 50%);				/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, url(../images/bg1.gif) no-repeat right center, linear-gradient(#717170, #181c18 49%, #000 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;
}
