@charset "utf-8";

/***********************************************************************************
　01.共通指定[枠組]
************************************************************************************/

/* 全体 --------------------------------------------------------------*/

body {
  color: #333;
  font: 13px/1.6 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  *font-size: small;
  *font: x-small;
}
 
/* 外枠の設定----------------------------------------------------*/

#wrapper {
  margin: 0 auto ;
  zoom: 1; /* 印刷バグ解決 */
}

#wrap_inner {
  width: 980px;
  margin: 0 auto;
}
 
#content_left {
  float: left;
  margin-right: 20px;
  width: 660px;
  overflow: hidden;
  zoom: 1; /* 印刷バグ解決 */
}

#content_right {
  float: right;
  width: 300px;
}
   
/* clear --------------------------------------------------------------*/

.clearfix:after {
  content: ".";
  display: block; 
  height: 0.1px; 
  clear: both; 
  visibility: hidden;
} 

.clearfix { 
  zoom: 1; 
}

.clear{clear: both;}

/* iepngfix --------------------------------------------------------------*/

.iepngfix {
  behavior: expression(IEPNGFIX.fix(this));
}

/***********************************************************************************
　02.共通指定[リンク色行寄せ等](編集可)
************************************************************************************/

/* リンク設定----------------------------------------------------*/

a {  
  cursor: pointer;
  color: #40220f;
  text-decoration:underline;
}

a:link {
  color: #40220f;
  text-decoration: none;
}

a:visited {
  color: #40220f;
  text-decoration: none;
}

a:hover {
  color: #40220f;
  text-decoration: none;
}

a:focus {
  color: #FF0099;
  text-decoration: underline;
}

a:active {
  color: #FF0099;
  text-decoration: underline;
}