@charset "Shift_JIS"; 
 
@import "reset.css"; 
 
/**
 * ========================================
 * 目次 
 * ========================================
 * File Name:  common.css
 * Style Info: 共通スタイル定義
 * ----------------------------------------
 * Created:    2008-12-24
 * Modified:   2008-12-24
 * Author:     Sicoro-Works
 * Url:        http://www.sicoro.co.jp/
 * ----------------------------------------
 * =1			基本構造（HTML)
 * =1-1			  WIDTH
 * =2			ヘッダー
 * =2-1			  サイト名
 * =2-2			  グローバルナビゲーション
 * =2-3			  リモートナビゲーション
 * =2-4			  検索フォーム
 * =3			コンテンツ部分
 * =3-1			  メインコンテンツ
 * =3-1-1		    メインコンテンツ共通要素
 * =3-2			  サイドバー
 * =3-2-1		    サイドバー共通要素
 * =4			フッター
 * =5			共通クラス
 * =999			ハック
 * =999-1		  CLEAR FIX
 * =999-2		  透過PNG（IE6）
 */
	
/**=
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
/**=1
 * ========================================
 * 基本構造（HTML) 
 * ========================================
 */
	 
html 
{
	overflow-y:scroll;
}
 	
body 
{
	color: #666;
	background-color: #FFF;
	background-image: url(../images/common/bg_body.gif);
	background-position: 0 0;
	background-repeat: repeat-x;
}
 
a 
{
	color: #280000;
}
	 
a:link 
{
}
 
a:visited 
{
}
 
a:hover 
{
	text-decoration: none;
}
 
a:active 
{
}
  
img 
{
	vertical-align: top;
}
 
/**=1-1
 * WIDTH 
 * ========================================
 */
	 
.structure 
{
	margin-right: auto;
	margin-left: auto;
	width: 900px;
}
 
/**=
 * 
 * ----------------------------------------
 */
  
/**=
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
/**=2
 * ========================================
 * ヘッダー 
 * ========================================
 */
	 
#header 
{
	position: relative;
	margin-bottom: 23px;
}
 
/**=2-1
 * サイト名 
 * ========================================
 */
	 
#header .siteName 
{
	border: 1px solid #696661;
	background-image: url(../images/common/bg_header.jpg);
	background-position: 0 0;
	background-repeat: repeat-x;
}
	 
* html #header .siteName 
{
	background-position: 0 1px;
}
 
*+html #header .siteName 
{
	background-position: 0 1px;
}
  
/**=
 * 
 * ----------------------------------------
 */
  
/**=2-2
 * メインビジュアル 
 * ========================================
 */
	 
#header .mainVisual 
{
	border-bottom: 3px solid #290000;
}
 
#header form 
{
}
 
/**=
 * 
 * ----------------------------------------
 */
  
/**=2-3
 * グローバルナビゲーション 
 * ========================================
 */
	
#header .globalNav 
{
}
	
#header .globalNav li 
{
	float: left;
}
  
/**=
 * 
 * ----------------------------------------
 */
  
/**=2-4
 * リモートナビゲーション 
 * ========================================
 */
	
#header .remoteNav 
{
	position: absolute;
	top: 60px;
	right: 15px;
	left: auto;
}
	
#header .remoteNav li 
{
	float: left;
}
 
#header .remoteNav li#btnApplication 
{
	position: absolute;
	top: -45px;
	right: 0;
	left: auto;
}
  
/**=
 * 
 * ----------------------------------------
 */
  
/**=
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
/**=3
 * ========================================
 * コンテンツ部分 
 * ========================================
 */
	 
#content 
{
	font-size: 120%;
}
 
/**=3-1
 * メインコンテンツ 
 * ========================================
 */
	 
.article 
{
	float: left;
	width: 695px;
}
 
/**=3-1-1
 * メインコンテンツ共通要素 
 * ----------------------------------------
 */
	
.article .section 
{
}
  
/**=
 * 
 * ----------------------------------------
 */
  
/**=3-2
 * サイドバー 
 * ========================================
 */
	 
.aside 
{
	float: right;
	width: 175px;
}
 
/**=3-2-1
 * サイドバー共通要素 
 * ----------------------------------------
 */
	 
.aside .section 
{
	margin-bottom :15px;
}
	 
.aside dl.section 
{
	position: relative;
	padding-top: 7px;
	width: 175px;
}
	 
.aside dl.section dt 
{
	position: absolute;
	top: 0;
	left: 8px;
}
 
.aside dl.section dd 
{
	padding: 17px 10px 10px;
	border: 1px solid #290000;
}
    
/**=
 * 
 * ----------------------------------------
 */
   
/**=4
 * ========================================
 * フッター 
 * ========================================
 */
	 
.pageTop 
{
	margin-bottom: 20px;
	text-align: right;
}
 
#footer 
{
	height: 50px;
	background-image: url(../images/common/bg_footer.jpg);
	background-position: left bottom;
	background-repeat: no-repeat;
}
	 
#footer ul 
{
	padding-top: 12px;
	margin-bottom: .2em;
	text-align: center;
}
	 
#footer ul li 
{
	padding: 0 .5em;
	display: inline;
	border-right: 1px solid #FFF;
}
	 
#footer ul li.firstChild 
{
	border-left: 1px solid #FFF;
}
  
#footer ul a 
{
	color: #FFF;
	text-decoration: none;
}
  
#footer .copyright 
{
	text-align: center;
	color: #FFF;
}
  
/**=
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
/**=5
 * ========================================
 * 共通クラス 
 * ========================================
 */
	 
/**=
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
/**=999
 * ========================================
 * ハック 
 * ========================================
 */
	 
/**=999-1
 * CLEAR FIX 
 * ====================================
 */
	 
#content:after, 
.globalNav:after,
#footer ul:after
{
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
	 
#content, 
.globalNav,
#footer ul
{
	display:inline-block;
}
/* Hide from IE Mac \*/
 
#content, 
.globalNav,
#footer ul
{
	display:block;
}
/* End hide from IE Mac */
   
/**=999-2
 * 透過PNG（IE6） 
 * ========================================
 */
	
* html .png 
{
    behavior: url(/static/js/png/iepngfix.htc):
}
 
/**=
 * 
 * ----------------------------------------
 */
  
/**=999
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
/**=
 * ========================================
 * 
 * ========================================
 */
	
/**=
 * 
 * ========================================
 */
	
/**=
 * 
 * ----------------------------------------
 */
   
