@charset "utf-8";


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━
  初期化
━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

* { 
	margin: 0;
	padding: 0; 
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━
  規定タグ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

body {
	font-size: 14px;
	color: #333;
	font-family: verdana, "ヒラギノ丸ゴ ProN W4", 'Hiragino Kaku Gothic ProN', Meiryo, メイリオ, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	/* background: url(./img/back.png) repeat-x left top #f5f5f5; */
	background: #f5f5f5;
	line-height: 1.5;
}

img { 
	border-style: none; 
}

li { 
	list-style: none; 
}

ul li {
	list-style-type: disc;
	list-style-position: inside;
}

ol li {
	list-style-type: decimal;
	list-style-position: inside;
}

a { 
	color: #5a9aff; 
}

a:hover { 
	color: #F25B00; 
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━
  エリアタグ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/


/*---全体---------------------------------------*/

div#area-all{
}


/*---トップエリア--------------------------------*/

div#area-top{
	width: 100%;
	padding: 4px 0px;
	background: #333;
}



div#area-top h1{
	font-size: 11px;
	font-weight: normal;
	color: #b6b6b6;
}


/*---ヘッダーエリア-----------------------------*/

header{
	width: 100%;
	height: 100px;
}

h2 {
	padding-top: 20px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 24px;
	text-decoration: none;
	color: #333;
}

h2 a{
	text-decoration: none;
	color: #333;
}

h2 img{
	max-width:100%;
}

p#area_header_desc{
	padding-left: 5px;
	padding-right: 5px;
	font-size: 11px;
	margin-top: 0px;
	margin-bottom: 0;
}




/*---グローバルメニューエリア--------------------------------*/

ul#area-globalmenu{
	clear: both;
	overflow: hidden;
	width: 100%;
	background: #fff;
	border: 1px solid #dcdcdc;
	margin-bottom: 20px;
	box-shadow: 0 0 5px 0 #dcdcdc;

}

ul#area-globalmenu li{
	list-style: none;
}

ul#area-globalmenu li a{
	display: block;
	font-size: 12px;
	height: 30px;
	padding-top: 5px;
	float: left;
	background: url(./img/gm.png) repeat-x left bottom #032ca6;
	color: #333;
	text-decoration: none;
	text-align: center;
	border-right: 1px solid #ccc;
	/*box-shadow: -1px 1px 0 0 #fff inset;*/
	box-shadow: 0 0 0 5px #fff inset;
}


ul#area-globalmenu li a:hover{
	color: #F25B00; 

}


/*---メインイメージ--------------------------------*/

div#area_mainimage{
	clear: both;
	overflow: hidden;  
	line-height: 0;
	margin-bottom: 20px;
}

div#area_mainimage img{
	max-width: 100%;
	height: auto;
}


/*---メインエリア---------------------------------*/

div#area-main{
	clear: both;
	overflow: hidden;  
   	height: auto;
   	border-bottom: 1px solid #ccc;
}


/*---コンテンツエリア------------------------------*/

div#area-contents{
	padding: 0 0px 0 10px;
}

div#area-contents .child{
	margin-bottom:20px;
	padding: 10px 0;
	background: #fff;
	border: 1px solid #dcdcdc;
	box-shadow: 0 0 5px 0 #dcdcdc;
}

div#area-contents .child2{
	padding: 0px 10px;
}

/*div#area-contents h3{
	font-size: 13px;
	padding: 4px 3px 5px 20px;
	font-weight: normal;
	border: 1px solid #dcdcdc;
	background: #ffffff;
	background: url(./img/h3.png) no-repeat left top #032ca6;
	box-shadow: 0px 2px 2px 0 #dcdcdc;
}*/

/*div#area-contents h3:before{
	content: "\f101";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	margin-left:5px;
	margin-right:5px;
	color: #800000;
	font-size:16px;
}*/


div#area-contents h3 {
    position: relative;
    color: #ffffff ;
    background: #032ca6;
    background: url(./img/h3.png) repeat-x left bottom #032ca6;
    font-size: 14px ;
    line-height: 1;
    margin: 0px 0px 20px -10px;
    padding: 10px 5px 15px 15px;
    box-shadow:1px 3px 3px 0px  #aaa ;
    font-weight: normal;
}
div#area-contents h3:after{
    content: "";
    position: absolute;
    top: 100%;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top: 5px solid #666;
}
div#area-contents h3:after {
    left: 0;
    border-right: 5px solid #666;
}


div#area-contents img{
	max-width: 100%;
	height: auto;
}


div#area-contents .fs{
	padding: 0;
	margin-bottom: 10px;
	overflow:hidden;
}

h4 {
	font-weight: normal;
	padding:3px;
	background: #f5f5f5;
	border: 1px solid #dcdcdc;
	margin-bottom: 10px;
	box-shadow:inset 1px 1px 0 rgba(255,255,255,0.4);

}

h4:before{
	content: "\f054";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	margin-left:2px;
	margin-right:5px;
	color: #032ca6;
	font-size:14px;
}



h5 {
	font-weight: normal;
	padding: 1px;
	font-size:14px;
	margin-bottom: 10px;
}

h5:before{
	content: "\f14a";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	margin-left:2px;
	margin-right:5px;
	color: #032ca6;
	font-size:16px;
}

h6 {
	font-weight: normal;
	padding: 1px;
	border-bottom: 0px solid #800000;
	font-size:14px;
	margin-bottom: 10px;
}

h6:before{
	content: "\f0da";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	margin-left:2px;
	margin-right:5px;
	color: #032ca6;
	font-size:16px;
}


/*---パンくずエリア------------------------------*/

div.navi{ 
	font-size:12px;
	margin-bottom:10px;
}

div.navi a{ text-decoration:none; }

div.navi a:after{
	content: "\f0da";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	margin-left:8px;
	margin-right:3px;
	color: #999;
	font-size:12px;
}


/*---カテゴリページリスト--------------------------*/

p.pagelist_title{ 
	margin-bottom:5px;
	border-top:1px solid #dcdcdc;
	border-bottom:1px solid #dcdcdc;
	background:#f5f5f5;
	padding:3px 10px;
}

p.pagelist_title a{
	text-decoration:none;
}

p.pagelist_contents{
	margin:0 5px;
	margin-bottom:30px;
} 


/*---前後ページリンクエリア------------------------*/

div#area_balink{
	margin:0 0 20px 0;
	padding: 5px 5px 5px 5px;
	font-size:9pt;
	background:#fff;
	border: 1px solid #dcdcdc;
	box-shadow: 0 0 5px 0 #dcdcdc;
	overflow:hidden;
	
}

div#area_balink i{
	color:#0060FF;
	margin:0 5px;
	font-size:10pt;
}

div#area_balink a{
	text-decoration:none;
}

div#area_balink a:hover i{
	color: #F25B00;
}


div.before_link {
	width:50%;
	float:left;
	text-align:left;
}

div.after_link {
	width:50%;
	float:right;
	text-align:right;
}


/*---カテゴリリンクエリア------------------------*/

div#area_catelink{
	margin:0 0 20px 0;
	padding: 5px 10px 5px 10px;
	font-size:9pt;
	background:#fff;
	border: 1px solid #dcdcdc;
	box-shadow: 0 0 5px 0 #dcdcdc;
	overflow:hidden;
}

div#area_catelink p{ margin-bottom:5px; }

div#area_catelink i{ font-size:11pt; }

div#area_catelink ul{ margin-left:10px; }
div#area_catelink li{ 
	line-height:180%;
}



/*---サイドメニューエリア---------------------------*/

div#area-sidemenu{
	padding-bottom: 32767px;  
	margin-bottom: -32767px;
	font-size: 12px;
	padding-left: 5px;
}

div#area-sidemenu .sidechild{
	margin-bottom: 20px;
	padding: 0 5px 5px 5px;
}


div#area-sidemenu h3{
	font-size: 13px;
	padding: 3px;
	font-weight: normal;
	color: #666;
	margin-bottom: 0px;
}

div#area-sidemenu .sidetitle{
	height: 8px;
	background: #ccc;
	margin-bottom: 5px;
	box-shadow: -1px -1px 0 0 #fff inset;
}


div#area-sidemenu ul{
}

div#area-sidemenu li{
	list-style-type: none;
}

div#area-sidemenu li a{
	display: block;
	padding: 3px;
	border-bottom: 1px solid #dcdcdc;
	text-decoration: none;
}


div#area-sidemenu .freespace{
	padding: 3px;
}


/*---フッターメニューエリア--------------------*/

div#area-footermenu{
	clear: both;
	overflow: hidden;
	padding: 10px;
	background: #f5f5f5;
	box-shadow: 0 5px 5px -3px #fff inset;
	text-align: center;
}


div#area-footermenu a{
	font-size: 12px;

}

div#area-footermenu a:after{
	content: "|";
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	margin-left:8px;
	margin-right:8px;
	color: #ccc;
}

div#area-footermenu a:last-child:after{
	content: "";
}


/*---フッターエリア---------------------------*/

footer{
	padding: 8px 3px;
	text-align: center;
	font-size: 12px;
	background: #333;
	color: #dcdcdc;

}

/*---サイトマップ-------------------------------------------------------*/

ul.sitemap li{
	list-style-type:none;
	padding:3px;
}

ul.sitemap li i.fa-home{ font-size:18px;color:#1e90ff; }
ul.sitemap li i.fa-folder-open{ color:#ffd400; }
ul.sitemap li i.fa-file-o{ padding:0 3px; }

ul.sitemap li.n20{ padding-left:20px; }
ul.sitemap li.n40{ padding-left:40px; }
ul.sitemap li.n60{ padding-left:60px; }
ul.sitemap li.n80{ padding-left:80px; }
ul.sitemap li.n100{ padding-left:100px; }






/*----------------------------------------------------
 PC
------------------------------------------------------*/
@media only screen and (min-width: 980px) {


	/*---全体---------------------------------------*/
	div#area-all{
		width: 960px;
		margin: 0 auto;
	}


	/*---トップエリア--------------------------------*/
	div#area-top-in{
		width: 956px;
		margin: 0 auto;
		padding: 0 2px;
	}


	/*---グローバルメニューエリア--------------------------------*/
	ul#area-globalmenu{
		height: 35px;
	}

	ul#area-globalmenu li a{
		width: 159px;
	}

	ul#area-globalmenu li:nth-child(6) a{
		width: 160px;
		border-right: 0;
	}

	/*---コンテンツエリア------------------------------*/	
	div#area-contents{
		float: left;
		width: 690px;
	}

	/*---サイドメニューエリア---------------------------*/
	div#area-sidemenu{
		float: right;
		width: 245px;
	}


}


/*----------------------------------------------------
 タブレット
------------------------------------------------------*/
@media only screen and (max-width:979px) and (min-width:641px){

	/*---全体---------------------------------------*/
	div#area-all{
		margin: 0 5px;
	}

	/*---グローバルメニューエリア--------------------------------*/
	ul#area-globalmenu li a{
		width: 33%;
		border-bottom: 1px solid #ccc;

	}

	ul#area-globalmenu li:nth-child(3n) a{
		border-right:0;
		width: 33.65%;
	}

}


/*----------------------------------------------------
 スマートフォン（横）
------------------------------------------------------*/
@media only screen and (max-width:640px) {

	.img_float_left{ float:none; }
	.img_float_right{ float:none; }

	/*---全体---------------------------------------*/
	div#area-all{
		margin: 0 5px;
	}


	/*---グローバルメニューエリア--------------------------------*/
	ul#area-globalmenu li a{
		width: 49.6%;
		border-bottom: 1px solid #ccc;

	}

	ul#area-globalmenu li:nth-child(2n) a{
		border-right:0;
		width: 50%;
	}


}

/*----------------------------------------------------
 スマートフォン（縦）
------------------------------------------------------*/
@media only screen and (max-width:480px) {


}


