@charset "utf-8";
/* ================================================
基本共通css
================================================ */

/*目次=======================================
1_リセット設定
	(1)全体リセットと基本のフォント、bodyの設定
	(2)リンクの設定
	(3)floatの設定
	(4)マージンの設定
	(5)段落設定(p, dd)
	(6)クリアフィックス(.clearfix)

2_基本設定

3_パンくずリスト設定

4_フッター設定

	==============================================*/

/*1_基本設定
-----------------------------------------------*/
/*(1)全体リセットと基本のフォント、bodyの設定*/
*{
	margin:0px;
	padding:0px;
        font-family:'Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	line-height:1.5;
	font-size:100%;
}

body {
	font-size:0.75em;
	text-align:center;
}

h1,h2,h3,h4,h5,h6{
	font-weight:normal;
}

dl,dt,dd,ul,ol,li{
  list-style-type:none;
}
table{
  border:0 none;
}
img{
	border:0 none;
}
address {
  font-style:normal;
}
/*(2)リンクの設定*/

a:link,
a:visited{
  text-decoration:underline;
}
a:hover{
  text-decoration:none;
}

/*(4)clearfixの設定*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*fontの太さやカラーの指定*/

strong{
	font-weight:bold;
}
em{
	color:#c00;
	font-weight:bold;
	font-style:normal;
}

/*2_サマリの設定
-----------------------------------------------*/
/*h1{
	font-size:0.75em;
	color:555;
	text-align:left;
}*/

/*3_パンくずリスト
-----------------------------------------------*/
ul#pan{
	text-align:left;
}
ul#pan li{
	padding:0 10px 0 0;
	display:inline;
	text-align:left;
}
#pan li a{
	padding:0 10px 0 0;
}

/*4_フッターの設定
-----------------------------------------------*/
/*(1)基本*/
#footer {
  width:100%;
  text-align:center;
  clear:both;
}
/*(2)ナビゲーション*/
ul#fnav{
	margin-bottom:10px;
}
ul#fnav li {
	display:inline;
	line-height:1.2em;
	padding-right:0.5em;
	margin-right:0.5em;
	border-right-width:1px;
	border-right-style:solid;
}

/*(3)copyright*/
#footer address {
  font-size:0.9em;
  font-family:Arial, Helvetica, sans-serif;
}

/*5_特殊クラス
-----------------------------------------------*/
.red{
	color:#c00;
}
