@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;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
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;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #4f4f4f;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}



/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #1976D2;	/*背景色*/
	height: 70px;			/*高さ*/
}
header .inner {
	width: 1000px;	/*幅*/
	height: 140px;	/*高さ*/
	margin: 0 auto;
	background: url(../images/header_bg_s.png) no-repeat right bottom;	/*背景画像（古いブラウザ用）*/
	background: url(../images/header_bg.png) no-repeat right bottom/auto 130px;	/*背景画像。最後の130pxは高さの指定。*/
}
/*ロゴ画像*/
#logo img {
	width: 400px;	/*画像幅*/
	margin-top: 10px;	/*header内でのバランスを取るために上にスペースをあける*/
	margin-left: 10px;	/*左側にスペースをあける*/
}



/*「お問い合わせフォーム」ブロック*/
.form {
	font-size: 14px;	/*文字サイズ*/
	text-align: center;
}
.form a {
	display: block;
	text-decoration: none;
	color: #fff;	/*背景色*/
	border: 1px solid #4f4f4f;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	background: #4f4f4f;	/*背景色*/
}
.form a:hover {
	background: #fff;	/*マウスオン時の背景色*/
	color: #4f4f4f;		/*マウスオン時の文字色*/
}

/*「お問い合わせフォーム」ブロック*/
.form02 {
	font-size: 14px;	/*文字サイズ*/
	text-align: center;
}
.form02 a {
	width: 30%;
	display: block;
	text-decoration: none;
	color: #FFFFFF;	/*背景色*/
	border: 1px solid #4f4f4f;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	background: #2f4f4f;	/*背景色*/
}
.form02 a:hover {
	background: #fff;	/*マウスオン時の背景色*/
	color: #4f4f4f;		/*マウスオン時の文字色*/
}

/*「お問い合わせフォーム」ブロック*/
.form03 {
	font-size: 14px;	/*文字サイズ*/
	text-align: center;
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
.form03 a {
	display: block;
	text-decoration: none;
	color: #4f4f4f;	/*背景色*/
	border: 1px solid #4f4f4f;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	background: #b0c4de;	/*背景色*/
}
.form03 a:hover {
	background: #fff;	/*マウスオン時の背景色*/
	color: #4f4f4f;		/*マウスオン時の文字色*/
}

/*「お問い合わせフォーム」ブロック*/
.form04 {
	font-size: 14px;	/*文字サイズ*/
	text-align: center;
}
.form04 a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;	/*背景色*/
	border: 1px solid #4f4f4f;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	background: #2f4f4f;	/*背景色*/
}
.form04 a:hover {
	background: #fff;	/*マウスオン時の背景色*/
	color: #4f4f4f;		/*マウスオン時の文字色*/
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.15);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.15は透明度15%の事。*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);			/*同上*/
}
/*サイト幅にしたmenu-box内のブロック*/
#menubar {
	width: 1000px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
	border-left: 1px solid #ccc;	/*左の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 248px;		/*メニュー幅*/
	text-align: center;	/*内容をセンタリング*/
	border-right: 1px solid #ccc;	/*右の線の幅、線種、色*/
	line-height: 50px;	/*高さ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
}
#menubar a {
	display: block;
	width: auto;
	text-decoration: none;
}
/*マウスオン時*/
#menubar li:hover {
	background: #fff;	/*背景色*/
}
/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/icon_menu.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 50px 200px;	/*背景画像のサイズ。※実寸は100pxと400pxだが、高解像度の端末用に50%のサイズで指定している。*/
}
.menu1 a {
	background-position: 0 0px;		/*背景画像の左から0px、上から0pxの部分を読み込む指定*/
}
.menu2 a {
	background-position: 0 -50px;	/*背景画像の左から0px、上から-50px（※マイナス記号をつける）の部分を読み込む指定*/
}
.menu3 a {
	background-position: 0 -100px;	/*背景画像の左から0px、上から-100px（※マイナス記号をつける）の部分を読み込む指定*/
}
.menu4 a {
	background-position: 0 -150px;	/*背景画像の左から0px、上から-150px（※マイナス記号をつける）の部分を読み込む指定*/
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position:absolute;
	visibility: hidden;
	z-index: 101;
	padding-top: 1px;
	-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.1);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.1が透明度。*/
	box-shadow: 2px 2px 4px rgba(0,0,0,0.1);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*背景色。rgbaは色設定で255,255,255は白。0.9は透明度90%の事。*/
	border: none;
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

#menubar ul.ddmenu li a {
	background: none;
}
/*マウスオン時の設定*/
#menubar ul.ddmenu li a:hover {
	background: #fff;	/*背景色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*main,sub,sideを囲むブロック設定*/
#contents {
	clear: left;
	padding-top: 40px;	/*上部メニューとの余白*/
	overflow: hidden;
	width: 1000px;		/*幅*/
	margin: 0 auto;
}
/*main,subを囲むブロック設定*/
#contents-inner {
	float: left;
	width: 1000px;
	overflow: hidden;
}
/*main,subを囲むブロック設定（※２カラム利用時）*/
.c2 #contents-inner {
	float: none;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 750px;	/*幅*/
}
/*２カラム利用時*/
.c2 #main {
	width: 770px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;		/*文字色*/
	padding: 5px 15px;	/*上下、左右への余白*/
	background: #757575;	/*背景色*/
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	padding: 3px 15px;	/*上下、左右への余白*/
	color: #000;		/*文字色*/
	background: #f5f5f5;	/*背景色（古いブラウザ用）*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #4f4f4f;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

#main h2 + p.indent,
#main h3 + p.indent {
	padding-top: 0px;
	margin-top: -5px;
	text-indent:1em;
}

/*右寄せ*/
p.indent-right {
	text-align: right; 
}



/*箇条書き　インデント*/
ul.indent-1 li ul {
	margin: 0 0 0 3em;
	padding: 0;
}

/*箇条書き　インデント*/
p.indent-2 {
	padding-left: 1em;
	text-indent:-1em;
	margin-left: 20px;
}

/*箇条書き　インデント*/
ul.indent-3 li {
	text-indent:-1em;
	margin-left: 20px;
}

/*各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色の設定。「0,0,0」はrgbでの「黒」を指し、「0.1」は透明度「10%」の事。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);			/*同上*/
}
#main .list a {
	padding: 3%;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/
#main .list a:hover {
	background: #f1f1f1;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
	margin-bottom: 0.5em;
	color: #4f4f4f;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list h4::first-letter {
	border-left: 3px solid #4f4f4f;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*ボックス内の段落タグ設定*/
#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%;		/*写真の右側に空ける余白*/
}

/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list.compact {
	width: 18%;	/*幅*/
	float: left;
	margin-left: 1.3%;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;
}
#main .list.compact a {
	height: 220px;	/*高さ*/
}
/*ボックス内のh4タグ設定（※compactタイプへの追加設定）*/
#main .list.compact h4 {
	border: none;
}
/*ボックス内のh4タグの１文字目への設定（※compactタイプへの追加設定）*/
#main .list.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#main .list.compact p {
	margin: 0;
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#main .list.compact figure img {
	float: none;
	margin: 0;
	margin-bottom: 5px;
	border: none;
	width: auto;
	padding: 0;
}


#main .list2 {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックスの下に空ける余白*/
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色の設定。「0,0,0」はrgbでの「黒」を指し、「0.1」は透明度「10%」の事。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);			/*同上*/
	padding: 3%;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/
#main .list2:hover {
	background: #f1f1f1;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list2 h4 {
	margin-bottom: 0.5em;
	color: #4f4f4f;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list2 h4::first-letter {
	border-left: 3px solid #4f4f4f;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*ボックス内の段落タグ設定*/
#main .list2 p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main .list2 figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}


/*各ボックスの設定*/
#main .list3 {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	margin-bottom: 0px;	/*ボックスの下に空ける余白*/
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色の設定。「0,0,0」はrgbでの「黒」を指し、「0.1」は透明度「10%」の事。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);			/*同上*/
}
#main .list3 a {
	padding: 1%;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時のボックス*/
#main .list3 a:hover {
	background: #f1f1f1;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list3 h4 {
	margin-bottom: 0.5em;
	color: #4f4f4f;		/*文字色*/
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
}
/*ボックス内のh4タグの１文字目への設定*/
#main .list3 h4::first-letter {
	border-left: 3px solid #4f4f4f;	/*左側の線の幅、線種、色*/
	padding-left: 10px;	/*線と文字との余白*/
}
/*ボックス内の段落タグ設定*/
#main .list3 p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main .list3 figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}

/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list3.compact {
	width: 18%;	/*幅*/
	float: left;
	margin-left: 1.3%;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;
}
#main .list3.compact a {
	height: 220px;	/*高さ*/
}
/*ボックス内のh4タグ設定（※compactタイプへの追加設定）*/
#main .list3.compact h4 {
	border: none;
}
/*ボックス内のh4タグの１文字目への設定（※compactタイプへの追加設定）*/
#main .list3.compact h4::first-letter {
	border: none;
	padding: 0;
}
/*ボックス内の段落タグ設定（※compactタイプへの追加設定）*/
#main .list3.compact p {
	margin: 0;
}
/*ボックス内の写真設定（※compactタイプへの追加設定）*/
#main .list3.compact figure img {
	float: none;
	margin: 0;
	margin-bottom: 5px;
	border: none;
	width: auto;
	padding: 0;
}








/*ボックス内のテーブル
---------------------------------------------------------------------------*/
#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%;	/*幅*/
}

/*詳細ページの画像切り替え（imgchg_pack.js）
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	position: relative;
}
/*大きな画像の１行目*/
#item-image #item_image1 {
	z-index:2;
	position:relative;
	overflow:hidden;
}
/*大きな画像の２行目*/
#item-image #item_image2 {
	z-index:1;
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
}
/*サムネイル画像*/
.thumbnail {
	width: 80px;	/*画像の幅*/
	height: 80px;	/*画像の高さ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;
}
.thumbnail:hover {
	border: 1px solid #000;	/*マウスオン時の枠線の幅、線種、色*/
}

/*sub,sideコンテンツ
---------------------------------------------------------------------------*/
#sub,#side {
	width: 200px;	/*幅*/
	overflow: hidden;
}
#sub {
	float: left;	/*左に回り込み*/
}
#side {
	float: right;	/*右に回り込み*/

}
.c2 #side {
	display: none;	/*２カラム利用時にsideブロックを非表示にする設定*/
}
/*sub,sideコンテンツ内のh2タグ設定*/
#sub h2,
#side h2 {
	padding-bottom: 10px;
}
/*sub,sideコンテンツのh2タグの１文字目への設定*/
#sub h2::first-letter,
#side h2::first-letter{
	border-left: 3px solid #4f4f4f;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*sub,sideコンテンツ内のpタグ設定*/
#sub p,
#side p {
	padding: 0px 0px 15px;
}

/*sub,sideコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu,
#side ul.submenu{
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li,
#side ul.submenu li{
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
#sub ul .submenu li a,
#side ul.submenu li a{
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*sub,sideコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1,
#side .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #f1f1f1;	/*背景色*/
	border: solid 1px #d1d1d1;	/*線の線種、幅、色*/
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu,
#side .box1 ul.submenu {
	margin-bottom: 0px;
}

/*sub,sideコンテンツ
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list,
#side .list {
	font-size: 10px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
	position: relative;
	overflow: hidden;
	background: #fff;	/*背景色*/
	line-height: 1.2;
}
#sub .list a,
#side .list a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	background: #fff;	/*背景色*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*奇数番目のボックスにだけ背景色をつける設定*/
#sub .list:nth-of-type(odd) a,
#side .list:nth-of-type(odd) a {
	background: #f1f1f1;
}
/*h4見出しタグ*/
#sub .list h4,
#side .list h4{
	color: #4f4f4f;		/*文字色*/
}
/*サムネイル画像設定*/
#sub .list figure img,
#side .list figure img {
	float: left;	/*左に回り込みさせる設定*/
	width: 50px;		/*幅*/
	margin-right: 5px;	/*画像の右側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*.box1の中の設定*/
#sub .box1 .list a,
#side .box1 .list a {
	background: #fff;	/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #4f4f4f;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 960px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 20px;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpaddingの2%でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 2%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
	height: 170px;
	overflow: auto;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f1f1f1;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}


/*ta2設定*/
.ta2 {
	width: 100%;
	margin-bottom: 15px;
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f1f1f1;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	width: 200px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta2 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta2 td .specialbox img {
	vertical-align: middle;
}

/*ta3設定*/
.ta3 {
	width: 100%;
	margin-bottom: 15px;
}
.ta3, .ta3 td, .ta3 th {
	/*border: 1px solid #f1f1f1;	テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f1f1f1;	/*背景色*/
}
/*ta3の左側ボックス*/
.ta3 th {
	width: 500px;	/*幅*/
	text-align: left;	/*センタリング*/
	vertical-align:baseline; /*垂直方向　1行目のベースラインを揃える*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta3 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta3 td img {
	/*width: 200px;*/
	vertical-align: middle;
}

/*ta4設定*/
.ta4 {
	width: 100%;
	margin-bottom: 15px;
}
.ta4, .ta4 td, .ta4 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta4 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f1f1f1;	/*背景色*/
}
/*ta4の左側ボックス*/
.ta4 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta4 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta4 td .specialbox img {
	vertical-align: middle;
}


/*ta5設定*/
.ta5 {
	width: 100%;
	margin-bottom: 15px;
}
.ta5, .ta5 td, .ta5 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta5 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/

}
/*ta5の左側ボックス*/
.ta5 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f5f5f5;	/*背景色*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta5 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta5 td .specialbox img {
	vertical-align: middle;
}

/*ta6設定*/
.ta6 {
	width: 100%;
	margin-bottom: 15px;
}
.ta6, .ta6 td, .ta6 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta6 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/

}
/*ta6の左側ボックス*/
.ta6 th {
	width: 40px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f5f5f5;	/*背景色*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta6 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta6 td .specialbox img {
	vertical-align: middle;
}


/*ta7設定*/
.ta7 {
	width: 100%;
	margin-bottom: 15px;
}
.ta7, .ta7 td, .ta7 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta7 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f1f1f1;	/*背景色*/
}
/*ta7の左側ボックス*/
.ta7 th {
	width: 300px;	/*幅*/
	text-align: center;	/*センタリング*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta7 td .specialbox {
	float: left;
	width: 25%;
	height: 40px;
}
.ta7 td .specialbox img {
	vertical-align: middle;
}




/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #4f4f4f;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 50%;	/*角丸のサイズ*/
	width: 50px;	/*幅*/
	line-height: 50px;	/*高さ*/
	margin-bottom: 30px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #999;	/*背景色*/
	color: #FFF;			/*文字色*/
}


/*NEW 帯表示
---------------------------------------------------------------------------*/
.new {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 100px;
	position: absolute;
	lift: 0px;
	bottom: 0px;
	-webkit-transform: rotate(315deg) translate(37px,20px);
	-ms-transform: rotate(315deg) translate(37px,20px);
	transform: rotate(315deg) translate(37px,20px);
}
h2 span.new {
	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 {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #4f4f4f;}
.color2, .color2 a {color: #ff5f2e;}
.color3, .color3 a {color: #004e66;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 1.2em;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	width: auto;
	height: 100px;
	background: url(../images/header_bg.png) no-repeat right bottom/60%;
	margin: 0 10px;
}
/*ロゴ画像*/
header #logo {
	margin-top: 30px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	display: none;
}
	
/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	position: absolute;
	top: 70px;	/*headerの高さと同じサイズにする*/
	width: 100%;
	z-index: 102;
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.3は透明度15%の事。*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.3);			/*同上*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	border-bottom: 1px solid #ccc;	/*右の線の幅、線種、色*/
	background: rgba(255,255,255,0.9);
	line-height: 50px;	/*高さ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定。不要ならこの行削除。*/
}
#menubar-s a {
	display: block;
	width: auto;
	text-decoration: none;
	padding-left: 50px;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 25px;		/*上から25pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*main,sub,sideを囲むブロック設定*/
#contents {
	width: auto;
	padding: 10px;
}
/*main,subを囲むブロック設定*/
#contents-inner {
	float: none;
	width: auto;
}

/*main,sub,sideコンテンツ
---------------------------------------------------------------------------*/
#main, #sub, #side {
	float: none;
	width: auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*２カラム利用時*/
.c2 #main {
	width: auto;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: #4f4f4f url(../images/btn_minus.png) no-repeat right center/34px 34px;
}
section#new h2.close {
	background: #4f4f4f url(../images/btn_plus.png) no-repeat right center/34px 34px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #side,body.s-n #footermenu {display: none;}
.sh {display:block;}
.pc {display:none;}

}

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	width: 50%;		/*幅*/
}

}

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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header .inner {
	height: 70px;
	background: none;	/*ヘッダー背景画像を消す*/
}
/*ロゴ画像*/
header #logo {
	width: 80%;
	margin-top: 15px;
}



/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	position: absolute;
	top: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
}

/*一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#main .list figure img {
	padding: 0px;
	border: none;
	margin-right: 1.5%;		/*写真の右側に空ける余白*/
}
/*各ボックスの設定（※compactタイプへの追加設定）*/
#main .list.compact {
	width: 47%;	/*幅*/
	margin-left: 2%;
}
#main .list.compact a {
	height: 250px;	/*高さ*/
}

/*ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.2;	/*行間*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*テーブル内の左側*/
.ta2 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta2 td {
	width: auto;
	padding: 5px;
}	

/*テーブル内の左側*/
.ta3 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta3 td {
	width: auto;
	padding: 5px;
}	

/*テーブル内の左側*/
.ta4 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta4 td {
	width: auto;
	padding: 5px;
}

/*テーブル内の左側*/
.ta5 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta5 td {
	width: auto;
	padding: 5px;
}
	
/*テーブル内の左側*/
.ta6 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta6 td {
	width: auto;
	padding: 5px;
}	

/*テーブル内の左側*/
.ta7 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta7 td {
	width: auto;
	padding: 5px;
}



/*フォーム用ボタン
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	border: 1px solid #1e2f5a;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	background: #1e2f5a;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*マウスオン時*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}	
	
	
	
	
	
/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}

}



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

/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	width: 50%;
}

}
