@charset "utf-8";
/* -----------------------------------------------------
* サイトの共通部分に適用させるCSS
* create: 2014/06/23 
* author: akasaka

*INDEX
* 1.htmlタグ要素の設定
	*
* 2.包括ブロック設定
* 3.ヘッダー設定
* 4.メイン設定
* 5.サイド設定
* 6.フッター設定
----------------------------------------------------- */
 /* ----------------------------------------------------------------------------------------------------
 * ▼　1.htmlタグ要素の設定
 * --------------------------------------------------------------------------------------------------*/
html,body{
	height: 100%;
}
body {
	font-size: 62.5%;
	font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	color: #333;
	line-height: 1.5;
	text-align: center;
	background: url(../images/bg.jpg) no-repeat fixed;
}
a:link {/*リンク文字色（未訪問）*/
	color: #fff;
}
a:visited {/*リンク文字色（訪問済）*/
	color: #fff;
}
a:hover {/*リンク文字色（マウスオーバー時）*/
	color: #fff;
}
a:active {/*リンク文字色（クリック時）*/
	color: #fff;
}
p {
	margin-bottom: 5px;
	font-size: 13px;
	line-height: 1.6em;
}
ul,ol,dl,th,td,address {
	font-size: 1.2em;
}
* html th,
* html td {/*IE6及びIE5.5のテーブル内の文字サイズ非継承バグ対策*/
	font-size: 0.75em;
	line-height: 1.5;
}
li{
	list-style: none;
}
div.wrap{
	width: 100%;
	min-height: 100%;
	position: relative;
}
/* ----------------------------------------------------------------------------------------------------
 * ▼　2.headerエリア設定
 * --------------------------------------------------------------------------------------------------*/ 
 header{
	 width: 100%;
	 height: 100px;
	 margin-bottom: 20px;
 }
 header div.header{
	 width: 1000px;
	 margin: 0 auto;
	 overflow: hidden;
 }
 header div.header h1{
	 float: left;
 }
 header div.header nav.global_nav{
	 float: right;
	 overflow: hidden;
 }
 header div.header nav.global_nav ul li{
	 float: left;
	 padding-top: 5px;
 }
 header div.header nav.global_nav ul li img{
	 width: 150px;
 }
 /* ----------------------------------------------------------------------------------------------------
 * ▼　3.footerエリア設定
 * --------------------------------------------------------------------------------------------------*/
 footer{
	 width: 100%;
	 margin: 40px 0;
	 color: #fff;
 }
 footer nav.footer_nav{
	 overflow: hidden;
	 text-align: right;
	 margin-bottom: 10px;
	 margin-right: 5%;
 }
 footer nav.footer_nav ul li{
	 display: inline-block;
 }
 footer nav.footer_nav ul li a{
	 color: #fff;
 }
 footer p{
	 text-align: right;
	 margin-right: 5%;
 }
  /* ----------------------------------------------------------------------------------------------------
 * ▼　4.包括ブロック設定
 * --------------------------------------------------------------------------------------------------*/
 article{
	 width: 100%;
	 margin: 0 auto;
	 background: rgba(0,0,0,0.6);
	 padding: 30px 0;
 }
 article section.contents{
	 width: 1000px;
	 margin: 0 auto;
	 margin-bottom: 50px;
 }
 article p,h2,h3,dt,dd{
	 color: #fff;
 }
 article h2{
	 text-align: left;
	 font-size: 20px;
	 font-weight: normal;
	 background: url(../images/icon.png) no-repeat left 0 top 3px;
	 padding-left: 35px;
	 margin-bottom: 20px;
 }
 article p{
	 text-align: left;
 }