﻿@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*全体の設定
---------------------------------------------------------------------------*/

body {

	margin: 0px;padding: 0px;

	color: #333;
	/*全体の文字色*/

	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*フォント種類*/

	font-size: 14px;
	/*文字サイズ*/

	line-height: 2;
		/*行間*/

	-webkit-text-size-adjust: none;

	background: #fff;
	/*背景色*/

}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}


/*リンク（全般）設定
---------------------------------------------------------------------------*/

a {

	color: #333;
	/*リンクテキストの色*/

}
a:hover {

	color: #49a81f;
			/*マウスオン時の文字色（全体）*/

	text-decoration: none;
	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/

}


/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/

/*ヘッダーブロック*/

header {

	background: -webkit-linear-gradient(#FFF 80%, #ededed);
	/*グラデーション*/

	background: linear-gradient(#FFF 80%, #ededed);
			/*同上*/

}


/*ヘッダーブロックの中*/

header .inner {

	max-width: 1200px;
	/*ブロック幅*/

	height: 100px;
	/*高さ*/

	position: relative;

	margin: 0px auto;
}


/*h1ロゴの設定*/

header #logo {

	width: 400px;
	/*ロゴの幅*/

	position: absolute;

	left: 20px;
	/*innerに対して左から20pxの場所に配置*/

	top: 20px;
	/*innerに対して上から20pxの場所に配置*/

}


/*電話番号ボックスの設定*/

header address {

	position: absolute;

	top: 25px;
		/*innerに対して上から25pxの位置に配置*/

	right: 20px;
	/*innerに対して右から20pxの位置に配置*/

	font-size: 11px;
	/*文字サイズ*/

	text-align: center;
	/*文字をセンタリング*/

	line-height: 1.6;
	/*行間*/

	letter-spacing: 0.2em;
	/*文字間隔を少し広めにとる設定*/

}

/*電話番号の文字設定*/

header address .tel {

	font-size: 18px;
	/*文字サイズ*/

	color: #49a81f;
		/*文字色*/

	font-weight: bold;
	/*太字に*/

	display: block;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/

/*メニューブロック設定*/

#menubar {

	height: 60px;
	/*ブロックの高さ*/

	background: -webkit-linear-gradient(#FFF, #e7e7e7);
	/*グラデーション*/

	background: linear-gradient(#FFF, #e7e7e7);
			/*同上*/

	border-top: 1px solid #d4d4d4;
		/*メニューの上側の線の幅、線種、色*/

	border-bottom: 5px solid #49a81f;
	/*メニューの下側の線の幅、線種、色*/

}

#menubar ul {

	max-width: 1200px;

	margin: 0px auto;
}

/*メニュー１個ごとの設定*/

#menubar ul li {

	float: left;
	width: 16.6%;
	/*メニュー幅*/

	text-align: center;
	/*文字を中央に揃える*/

	font-weight: bold;
	/*文字を太字にする設定*/

}

#menubar ul li:first-child {

	width: 17%;
	/*メニュー６個で100%になるようここで調整（16.6%×5+17%=100%）*/

}

#menubar ul li a {

	text-decoration: none;

	display: block;

	line-height: 30px;

	padding-top: 5px;

	font-size: 16px;
	/*文字サイズ*/

	letter-spacing: 0.1em;
	/*文字間隔を少しあける設定*/

	text-shadow: #FFF 0px 2px;
	/*テキストの影。色、右方向、下方向への指定。*/

	border-right: 1px solid #d4d4d4;
	/*メニューの右側の線の幅、線種、色*/

}

/*最初のメニューの設定*/

#menubar ul li:first-child a {

	border-left: 1px solid #d4d4d4;
	/*左側に線を入れる*/

}

/*マウスオン時の設定*/

#menubar ul li a:hover {

	background: #FFF;
	/*背景色*/

	border-bottom: 5px solid #74c74f;
	/*メニューの下側の線の幅、線種、色*/

}

/*英語表記の設定*/

#menubar ul li a span {

	color: #49a81f;
	/*文字色*/

	font-size: 9px;
	/*文字サイズ*/

	display: block;

	font-weight: normal;
	/*文字を太字でなく標準に戻す設定*/

	letter-spacing: 0.2em;
	/*文字間隔を少しあける設定*/

	line-height: 20px;

	padding-bottom: 5px;
}

/*小さな端末用メニューを表示させない*/

#menubar-s {

	display: none;
}

/*３本バーアイコンを表示させない*/

#menubar_hdr {

	display: none;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/

#contents {

	clear: left;

	max-width: 1200px;

	margin: 0px auto;

	padding-top: 50px;
	/*メニューと下の左右のブロックの間に空ける余白*/

}


/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/

#main {

	float: right;
	/*右側に回り込み*/

	width: 73%;
		/*メインコンテンツ幅*/

	padding-bottom: 50px;
}

/*mainコンテンツのh2タグ設定*/

#main h2 {

	clear: both;

	margin-bottom: 15px;

	background: #FFF;
	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: url(../images/arrow1.png) no-repeat left center, -webkit-linear-gradient(#FFF, #e6e6e6);
	/*マークとグラデーション*/

	background: url(../images/arrow1.png) no-repeat left center, linear-gradient(#FFF, #e6e6e6);
			/*同上*/

	-webkit-box-shadow: 1px 2px 7px #ccc;
	/*影の設定。右・下・ぼかし幅・色の設定*/

	box-shadow: 1px 2px 7px #ccc;
			/*同上*/

	color: #49a81f;
	/*文字色*/

	padding: 5px 15px 5px 30px;
	/*左から、上、右、下、左への余白*/

	border-top: 1px solid #d4d4d4;
		/*上の線の幅、線種、色*/

	border-right: 1px solid #d4d4d4;
	/*右の線の幅、線種、色*/

	border-bottom: 4px solid #49a81f;
	/*下の線の幅、線種、色*/

	border-left: 1px solid #d4d4d4;
		/*左の線の幅、線種、色*/

	border-radius: 6px 6px 0px 0px;
		/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/

}

/*mainコンテンツのh3タグ設定*/

#main h3 {

	clear: both;

	margin-bottom: 15px;

	background: #FFF;
	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#FFF, #e6e6e6);
	/*グラデーション*/

	background: linear-gradient(#FFF, #e6e6e6);
			/*同上*/

	color: #49a81f;
		/*文字色*/

	padding: 4px 15px;
	/*左から、上下、左右への余白*/

	border: 1px solid #d4d4d4;
		/*線の幅、線種、色*/

	border-radius: 6px;
	/*角丸のサイズ*/

}

/*メインコンテンツのp(段落)タグ設定*/

#main p {

	padding: 0px 16px 14px;
	/*上、左右、下への余白*/

}
#main h2 + p,
#main h3 + p {

	margin-top: -5px;
}


/*一覧ページ
---------------------------------------------------------------------------*/

/*各ボックスの設定*/

#main .list {

	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/

	border-radius: 6px;
		/*角丸のサイズ*/

	margin-bottom: 15px;
	/*ボックス間のスペース*/

	background: -webkit-linear-gradient(#FFF, #e3e3e3);
	/*グラデーション*/

	background: linear-gradient(#FFF, #e3e3e3);
			/*同上*/

	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;
	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/

	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;
			/*同上*/

	position: relative;

	overflow: hidden;
}

#main .list a {

	padding: 10px;
	/*ボックス内の余白*/

	text-decoration: none;

	display: block;

	overflow: hidden;
}

/*マウスオン時*/

#main .list a:hover {

	border-radius: 6px;
		/*角丸のサイズ*/

	background-color: #fff8c7;
	/*背景色*/

}

/*ボックス内の段落タグ設定*/

#main .list p {

	padding: 0px;

	margin-left: 24%;
	/*左の写真とのバランスをとって設定*/

}

/*ボックス内の写真設定*/

#main .list figure img {

	float: left;
			/*画像を左へ回り込み*/

	width: 20%;
	/*画像の幅*/

	background: #FFF;
	/*画像の背景色。ここでは枠線と画像の間の色になります。*/

	padding: 1%;
			/*余白。ここに上の行で設定した背景色が出ます。*/

	border: 1px solid #CCC;
	/*枠線の幅、線種、色*/

	margin-right: 1%;
		/*写真の右側に空ける余白*/

}

/*ボックス内のh4タグ設定*/

#main .list h4 {

	padding: 2px 0px 2px 10px;
	/*上、右、下、左側への余白*/

	border-bottom: 1px solid #CCC;
	/*下側の線の幅、線種、色*/

	border-left: 3px solid #49a81f;
	/*左側の線の幅、線種、色*/

	margin-bottom: 15px;

	color: #49a81f;
	/*文字色*/

}

/*登録日情報（高機能版用）*/

#main .list .date {

	display:block;

	font-size:11px;

	color:#999;

	text-align: right;
}

/*一覧ページの各ボックス内のテーブル
---------------------------------------------------------------------------*/

#main .list table {

	font-size: 12px;
	/*文字サイズ*/

	background: #FFF;
	/*背景色*/

	width: 76%;
			/*テーブル幅*/

	margin-bottom: 5px;
}
#main .list table,
#main .list table td,
#main .list table th {

	border: 1px solid #bcbcbc;
	/*枠線の幅、線種、色*/

}
#main .list table td,
#main .list table th {

	padding: 1%;
	/*テーブル内の余白*/

}

/*色のついた見出しブロック*/

#main .list table th {

	width: 20%;

	text-align: center;
		/*文字をセンタリング*/

	font-weight: normal;
	/*デフォルトの太字を標準にする設定*/

	background: #edf0f5;
	/*背景色*/

}

/*白い説明用ブロック*/

#main .list table td {

	width: 30%;
}


/*サブコンテンツ
---------------------------------------------------------------------------*/

#sub {
	float: left;
	/*左側に回り込み*/

	width: 23%;
	/*サブコンテンツ幅*/

	padding-bottom: 50px;
}

/*subコンテンツ内のh2タグ設定*/

#sub h2 {
	font-size: 100%;

	text-align: center;
	/*文字をセンタリング*/

	background: #666;
	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#999, #666);	
/*グラデーション*/

	background: linear-gradient(#999, #666);
			/*同上*/

	padding: 3px 0px;
	/*上下、左右への余白*/

	color: #FFF;
		/*文字色*/

	border-radius: 6px 6px 0px 0px;
	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/

}

/*box1の中にあるh2タグの設定*/

#sub .box1 h2 {

	border-radius: 0;
	/*角丸をなくす設定*/

}

/*subコンテンツ内のbox1設定*/

#sub .box1 {

	background-color: #eee;
		/*背景色*/

	border: 1px solid #cfcfcf;
	/*枠線の幅、線種、色*/

	padding: 7px;
				/*ボックス内の余白*/

	margin-bottom: 15px;
		/*ボックスの下にあけるスペース*/

}

/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/

#sub h2 + ul,
#sub h2 + .box1 {

	border-top: none;
}

/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/

#sub .box1 ul {

	margin-bottom: 0;
}


/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/

/*メニューブロック全体の設定*/

#sub ul {
	border-top: 1px solid #cfcfcf;
		/*上側の線の幅、線種、色*/

	border-right: 1px solid #cfcfcf;
	/*右側の線の幅、線種、色*/

	border-left: 1px solid #cfcfcf;
		/*左側の線の幅、線種、色*/

	margin-bottom: 15px;
	/*メニューブロックの下にあけるスペース*/

}

/*メニュー１個ごとの設定*/

#sub ul li a {

	text-decoration: none;

	display: block;

	border-bottom: 1px solid #cfcfcf;
	/*下側の線の幅、線種、色*/

	padding-left: 10px;

	background: #FFF;
	/*背景色*/

}

#sub ul li a:hover {
	background-color: #fff8c7;
	/*マウスオン時のボックス色*/

}


/*サブコンテンツ　一覧ボックス
---------------------------------------------------------------------------*/

/*ボックス１個あたりの設定*/

#sub .box2 {

	font-size: 11px;
	/*文字サイズ*/

	background: -webkit-linear-gradient(#FFF, #e3e3e3);
	/*グラデーション*/

	background: linear-gradient(#FFF, #e3e3e3);
			/*同上*/

	border-bottom: 1px solid #999;
	/*下の線の幅、線種、色*/

	border-right: 1px solid #999;
	/*右の線の幅、線種、色*/

	border-left: 1px solid #999;
	/*左の線の幅、線種、色*/

	line-height: 1.6;
	/*行間*/

	position: relative;

	overflow: hidden;
}
#sub .box2 a {

	padding: 5px;
	/*ボックス内の余白*/

	text-decoration: none;

	display: block;

	overflow: hidden;
}
#sub .box2 a:hover {
	background-color: #fff8c7;
	/*マウスオン時のボックス色*/

}

/*h4見出しタグ*/

#sub .box2 h4 {

	color: #49a81f;
		/*文字色*/

	font-size: 100%;
}

/*サムネイル画像*/

#sub .box2 figure img {

	width: 28%;
		/*画像幅*/

	float: left;
	/*左に回り込みさせる設定*/

	margin-right: 3%;

	border: 1px solid #999;
	/*枠線の幅、線種、色*/

}


/*フッターメニュー設定
---------------------------------------------------------------------------*/

ul#footermenu {

	clear: both;

	margin: 0px auto;

	text-align: center;
}
ul#footermenu li {

	display: inline;

	padding: 0px 5px;
}


/*フッター設定(copyrightなどが入った最下部ブロック)---------------------------------------------------------------------------*/

footer {

	clear: both;
	text-align: center;

	padding-top: 15px;

	padding-bottom: 15px;

	color: #FFF;
	/*文字色*/

	background: #49a81f;
	/*背景色*/

}
footer .pr {

	display: block;

	font-size: 80%;
}
footer a {

	text-decoration: none;

	color: #FFF;
}
footer a:hover {

	color: #FFF;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/

/*ブロック全体の設定*/

#new dl{

	overflow: auto;
	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/

	height: 150px;
	/*ブロックの高さ*/

	padding-left: 10px;
}

/*日付設定*/

#new dt {

	font-weight: bold;
	/*太字にする設定。標準がいいならこの行削除。*/

	float: left;
	width: 8em;
}

/*記事設定*/

#new dd {

	border-bottom: 1px solid #d2d2d2;	
/*下線の幅、線種、色*/

	padding-left: 8em;
}


/*テーブル１
---------------------------------------------------------------------------*/

.ta1 {
	width: 100%;

	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {

	border: 1px solid #CCC;
	/*テーブルの枠線の幅、線種、色*/

	word-break: break-all;
}

/*テーブル内の右側*/

.ta1 td {

	padding: 10px;
}

/*テーブル内の左側の見出し部分*/

.ta1 th {

	width: 140px;

	padding: 10px;

	text-align: center;

	background-color: #f1f1f1;
	/*背景色*/

}

/*テーブル１行目に入った見出し部分

.ta1 th.tamidashi {

	width: auto;

	text-align: left;

	background-color: #bebebe;
	/*背景色*/

}

/*ボタンの設定*/

input[type="submit"],
input[type="button"],
input[type="reset"] {

	width: 250px;
	/*ボタン幅*/

	padding: 10px;
	/*ボタン内の余白*/

	margin-bottom: 20px;

	border-radius: 30px;
	/*角丸のサイズ*/

	background: #e5e5e5;
	/*背景色（古いブラウザだとここの色のみが出ます）*/
	
background: -webkit-linear-gradient(#FFF, #e5e5e5);
	/*グラデーション*/

	background: linear-gradient(#FFF, #e5e5e5);
			/*同上*/

	-webkit-box-shadow: 1px 2px 7px #ccc;
	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/

	box-shadow: 1px 2px 7px #ccc;
			/*同上*/

	font-size: 16px;
	/*文字サイズ*/

	letter-spacing: 0.1em;

	border: 1px solid #999;
	/*枠線の幅、線種、色*/

}

/*ボタンのマウスオン時の設定*/

input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;
	/*背景色（古いブラウザだとここの色のみが出ます）*/

	background: -webkit-linear-gradient(#e5e5e5, #FFF);
	/*グラデーション*/

	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/

}

/*こだわりアイコンのフロート指定(CMS用)*/

.ta1 td .specialbox {
	float: left;
	width: 95px;

	height: 40px;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/

#pagetop {

	clear: both;
}
#pagetop a {

	color: #FFF;
		/*文字色*/

	font-size: 10px;
	/*文字サイズ*/

	background-color: #49a81f;
	/*背景色*/

	text-decoration: none;

	text-align: center;

	width: 10em;
	/*ボックス幅*/

	display: block;

	float: right;
}

/*マウスオン時*/

#pagetop a:hover {

	background-color: #333;

	color: #FFF;
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/

/*ブロック全体*/

.faq {

	padding: 0px 15px;
	/*上下、左右への余白*/

}

/*質問の設定*/

.faq dt {

	color: #49a81f;
	/*文字色*/

	font-weight: bold;
	/*太字*/

	padding-top: 15px;
}
.faq dt a {

	color: #1a4ef7;
	
}

/*回答の設定*/

.faq dd {

	border-bottom: 1px solid #CCC;
	/*下線の幅、線種、色*/

	overflow: hidden;

	padding-bottom: 15px;
}


/*「おすすめ（又はオプション１）」表示
---------------------------------------------------------------------------*/

.option1 {
	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);
}
h2 span.option1 {

	position: static;

	-webkit-transform: none;

	-ms-transform: none;

	transform: none;

	display: inline-block;
}


/*「ご契約済（又はオプション２）」表示
---------------------------------------------------------------------------*/

.option2 {
	font-size: 10px;
	/*文字サイズ*/

	color: #FFF;
		/*文字色*/

	background: #069;
	/*背景色*/

	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);
}
h2 span.option2 {

	position: static;

	-webkit-transform: none;

	-ms-transform: none;

	transform: none;

	display: inline-block;
}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/

.newicon {

	background: #F00;
	color: #FFF;

	font-size: 10px;

	padding: 0px 5px;

	border-radius: 2px;

	margin: 0px 5px;
}


/*その他
---------------------------------------------------------------------------*/

.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #f61468;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh {display: none;}




/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:1200px){


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/

#contents {

	width: auto;

	margin: 0 2%;

	padding-top: 30px;
}

}




/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:800px){


/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/


/*h1ロゴの設定*/

header #logo {

	width: 300px;
	/*ロゴの幅*/

	top: 28px;
		/*上から28pxの場所に配置*/

}


/*電話番号ボックスの設定*/

header address {

	right: 90px;
	/*右から90pxの位置に配置*/

	letter-spacing: normal;

	font-size: 10px;
	/*文字サイズ*/

}


/*上部のメインメニュー
---------------------------------------------------------------------------*/

/*メニューブロック設定*/

#menubar-s {

	display: block;
	/*小さな端末用メニューを非表示から表示に切り替える*/

	border-top: 1px solid #d4d4d4;
	/*メニューの上の線の幅、線種、色*/

}

/*メニュー１個ごとの設定*/

#menubar-s ul li {

	float: left;
	width: 50%;
	/*メニュー幅*/

	text-align: center;
	/*文字を中央に揃える*/

	font-weight: bold;
	/*文字を太字にする設定*/

}

#menubar-s ul li a {
	text-decoration: none;

	display: block;

	border-bottom: 1px solid #d4d4d4;
	/*メニューの下の線の幅、線種、色*/

	padding: 8px 0;
}

/*奇数番目のメニューの設定*/

#menubar-s ul li:nth-child(odd) a {

	border-right: 1px solid #d4d4d4;
	/*メニューの右側の線の幅、線種、色*/

}

/*英語表記の設定*/

#menubar-s ul li a span {

	color: #49a81f;
	/*文字色*/

	font-size: 9px;
	/*文字サイズ*/

	display: block;

	font-weight: normal;
	/*文字を太字でなく標準に戻す設定*/

}

/*大きな端末用メニューを非表示にする*/

#menubar {

	display: none;
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/

/*３本バーブロック*/

#menubar_hdr {

	display: block;

	position: absolute;

	top: 24px;
	/*上から24pxの場所に配置*/

	right: 2%;
	/*右から2%の場所に配置*/

	width: 30px;
	/*幅*/

	border: 1px solid #000;
	/*枠線の幅、線種、色*/

	padding: 12px 10px 5px;
	/*上、左右、下へのボックス内余白*/

}

/*３本のバー（1本あたり）*/

#menubar_hdr span {

	display: block;

	border-top: 3px solid #000;
	/*枠線の幅、線種、色*/

	margin-bottom: 7px;
	/*バー同士の余白*/

}


/*main,subコンテンツ
---------------------------------------------------------------------------*/

#main, #sub {

	float: none;

	width: auto;
}


/*サブコンテンツ　一覧ボックス
---------------------------------------------------------------------------*/

/*ボックス１個あたりの設定*/

#sub .box2 {

	font-size: 14px;
	/*文字サイズ*/

}

/*サムネイル画像*/

#sub .box2 figure img {

	width: 15%;
		/*画像幅*/

}


/*その他
---------------------------------------------------------------------------*/

body.s-n #sub {display: none;}

}




/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:650px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/

/*ヘッダーブロックの中*/

header .inner {

	text-align: center;

	height: auto;

	padding: 15px 0;
}


/*h1ロゴの設定*/
header #logo {

	position: static;

	margin: 0 auto 10px;
}


/*電話番号ボックスの設定*/

header address {
	position: static;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: none;
}


/*h1ロゴの設定*/

header #logo {

	width: 200px;
	/*ロゴの幅*/

	margin: 0;

	margin-left: 5%;
}


/*電話番号ボックスの設定*/

header address {

	display: none;
	/*非表示にする設定*/

}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/

/*３本バーブロック*/

#menubar_hdr {

	top: 5px;
	/*上から5pxの場所に配置*/

}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/

#top #contents {

	padding-top: 20px;
}


/*一覧ページ
---------------------------------------------------------------------------*/

/*ボックス内の段落タグ設定*/

#main .list p {

	margin-left: 0;
}

/*ボックス内の写真設定*/

#main .list figure img {

	float: none;

	margin: 0px;

	width: 100%;

	height: auto;

	margin-bottom: 10px;

	box-sizing: border-box;

	-moz-box-sizing: border-box;

	-webkit-box-sizing: border-box;
}

/*一覧ページの各ボックス内のテーブル
---------------------------------------------------------------------------*/

#main .list table {

	width: 100%;
	/*テーブル幅*/

}


/*サブコンテンツ　一覧ボックス
---------------------------------------------------------------------------*/

/*サムネイル画像*/

#sub .box2 figure img {

	width: 30%;
		/*画像幅*/

}


/*フッターメニュー設定
---------------------------------------------------------------------------*/

ul#footermenu {

	display: none;
	/*非表示にする設定*/

}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/

section#new h2.open {

	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);
	/*マイナスアイコンとグラデーション*/

	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);
			/*同上*/

}
section#new h2.close {

	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);
		/*マイナスアイコンとグラデーション*/

	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);
				/*同上*/

}


/*テーブル１
---------------------------------------------------------------------------*/

/*テーブル内の右側*/

.ta1 td {

	width: auto;

	padding: 2px;
}

/*テーブル内の左側の見出し部分*/

.ta1 th {

	width: 100px;

	padding: 2px;
}


/*その他
---------------------------------------------------------------------------*/

.ws,.wl {width: 95%;}

}
