@charset "utf-8";

/*==================================================

	■デフォルトスタイルの初期設定と基本定義

	1.初期設定（リセット）
	2.ボディ・リンク設定
	3.コンテンツ基本設定

===================================================*/


/*-------------------------------------------------
	1. 初期設定（リセット）
---------------------------------------------------*/

*{
	margin:0;
	padding:0;
}

em{
	font-style:normal;
	font-weight:bold;
}

ul{
	list-style:none;
	list-style-position:outside;
	line-height:1.5em;
}

ol{
	list-style-position:outside;
	line-height:1.5em;
}

img{
	border:none;
	vertical-align:bottom;
}

p,
address{
	line-height:1.5em;
	font-style:normal;
	font-weight:normal;
}

hr{
	display:none;
}

fieldset{
	border:none;
}

/*-------------------------------------------------
	2. ボディ・リンク設定
---------------------------------------------------*/

body{
	color:#333;			/* 全体のテキスト色 */
	background-color:#FFF;	/* ページ背景の色 */
	font-family:"ＭＳ Ｐゴシック",sans-serif,Osaka;
	font-size:81.25%;
}

/* 全体のリンク設定 */
a{
	color:#2496B7;		/* テキストリンク色 */
	text-decoration:underline;	/* リンク下線あり */
}

/* 一度でも押したことがあるリンクの設定 */
a:visited{
	color:#2496B7;		/* テキストリンク色 */
	text-decoration:underline;	/* リンク下線あり */
}

/* リンクにマウスがあたった時の設定 */
a:hover{
	color:#E07E07;		/* テキストリンク色 */
	text-decoration:none;	/* リンク下線 */
}

/* リンクを押した時の設定 */
a:active{
	color:#2496B7;		/* テキストリンク色 */
	text-decoration:none;	/* リンク下線なし */
}

/*-------------------------------------------------
	3. コンテンツ基本設定
---------------------------------------------------*/

#container{
	background: url(../../img/top_bg.png) repeat-x center top;
}

#container.second{
	background: url(../img/2nd_bg.png) repeat-x center top;
}

#container.third{
	background: url(../img/3nd_bg.png) repeat-x center top;
}


#wrp{
	margin:0 auto;		/* コンテンツのマージン */
	padding:0;	/* コンテンツの余白 */
	width:980px;		/* コンテンツのヨコ幅・原則変えない */
}
