@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	background: #FFF;	/*背景色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}
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;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #70bd2f;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

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

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/header_bg.jpg) no-repeat center center;	/*背景画像の読み込み*/
	height: 370px;	/*ブロックの高さ*/
	width: 100%;	/*ブロックの幅*/
	position: relative;
	margin-bottom: 60px;
}
/*h1タグの設定*/
header h1 {
	font-size: 9px;			/*文字サイズ*/
	line-height: 10px;		/*行間*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。太字がいいならこの１行削除。*/
	position: absolute;
	left: 192px;	/*ヘッダーブロックに対して左から192pxの位置に配置*/
	top: 70px;		/*ヘッダーブロックに対して上から70pxの位置に配置*/
	text-shadow: 1px 1px 1px #FFF, -1px -1px 1px #FFF, 0px 0px 3px #FFF;	/*テキストの影*/
}
header #logo {
	position: absolute;
	left: 180px;	/*ヘッダーブロックに対して左から180pxの位置に配置*/
	top: 90px;		/*ヘッダーブロックに対して上から90pxの位置に配置*/
	border-bottom: 1px solid #000;	/*下線の幅、線種、色*/
	width: 500px;	/*幅*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	float: right;
	margin-top: 170px;
	letter-spacing: 0.1em;	/*文字間隔。通常より少し広めに。不要ならこの行ごと削除。*/
	text-shadow: 1px 1px 1px #FFF, -1px -1px 1px #FFF, 0px 0px 3px #FFF;	/*テキストの影*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	width: 380px;		/*ボタンの幅*/
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*上下、左右への余白*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*英語表記*/
nav#menubar ul li a span {
	padding-left: 10px;
	color: #999;	/*文字色*/
	font-size: 11px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔。通常より少し広めに。不要ならこの行ごと削除。*/
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	color: #70bd2f;			/*マウスオン時の文字色*/
	border-bottom: 1px solid #70bd2f;	/*下線の幅、線種、色*/
}
/*マウスオン時の英語表記の設定*/
nav#menubar ul li a:hover span {
	color: #70bd2f;			/*マウスオン時の文字色*/
}

/*右上「Home」ボタン
---------------------------------------------------------------------------*/
header p#home a {
	position: absolute;
	top: 0px;		/*ヘッダーブロックに対して上から0pxの位置に配置*/
	right: 50px;	/*ヘッダーブロックに対して右から20pxの位置に配置*/
	color: #FFF;	/*文字色*/
	text-decoration: none;
	background: #666;	/*背景色*/
	display: block;
	line-height: 30px;
	height: 30px;
	width: 110px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.2em;
	border-radius: 0 0 4px 4px;
}
#top header p#home a {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	margin: 0px auto;
	width: 800px;	/*コンテンツの幅*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	background-color: #267f07;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/title_bg1.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#70bd2f), to(#267f07));	/*背景画像の読み込みとグラデーション*/
	background: url(../images/title_bg1.png) no-repeat right center, -webkit-linear-gradient(#70bd2f, #267f07);	/*同上*/
	background: url(../images/title_bg1.png) no-repeat right center, linear-gradient(#70bd2f, #267f07);			/*同上*/
	font-size: 100%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px 7px 30px;	/*左から、上、右、下、左への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	font-size: 100%;
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border-radius: 30px;		/*角丸のサイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	width: 700px;	/*ボックスの幅*/
	margin: 0px auto 15px;
	padding: 20px;	/*ボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 10px;		/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 30%;		/*写真の幅*/
	height: auto;	/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #70bd2f;	/*文字色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	border-bottom: 1px solid #70bd2f;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

/*フッター設定
---------------------------------------------------------------------------*/
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{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#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: 700px;	/*テーブル幅*/
	margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
.ta1 td img {
	height: auto;
	width: 100%;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;	/*幅*/
	padding: 10px;
	text-align: center;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	font-size: 10px;	/*文字サイズ*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border-radius: 10px;
	border: 1px solid #666;
}
/*マウスオン時*/
#pagetop a:hover {
	border: 1px solid #FFF;
	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);
}

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



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
	
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;	/*コンテナー幅*/
	margin: 0px 10px 10px;
}

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/header_bg.jpg) no-repeat center center / 100%;	/*背景画像の読み込みとサイズ*/
	margin-bottom: 30px;
}
/*h1タグの設定*/
header h1 {
	position: absolute;
	left: 32px;	/*ヘッダーブロックに対して左から32pxの位置に配置*/
	top: 70px;	/*ヘッダーブロックに対して上から70pxの位置に配置*/
}
header #logo {
	position: absolute;
	left: 20px;		/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 90px;		/*ヘッダーブロックに対して上から90pxの位置に配置*/
	width: auto;	/*幅*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	width: auto;		/*ボタンの幅*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;	/*コンテンツの幅*/
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	width: auto;	/*ボックスの幅*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}

}



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

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

/*ヘッダー（サイト名が入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/header_bg.jpg) no-repeat center center / 100%;	/*背景画像の読み込みとサイズ*/
	height: 170px;
	margin-bottom: 0px;
}
/*h1タグの設定*/
header h1 {
	display: none;
}
header #logo {
	position: absolute;
	left: 0px;
	top: 40px;
	width: auto;
}
header #logo img {
	height: auto;
	width: 90%;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	margin-top: 100px;
	text-align: right;
	margin-bottom: 10px;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	width: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;	/*コンテンツの幅*/
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	width: auto;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}

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

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 5px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 5px;
}
.ta1 p {
	padding: 0px !important;
}

/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
#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;
}

}
