@charset "UTF-8";

/* =============================================================
   default
============================================================= */

/* html
----------------------------------------------------*/
html{
    overflow-y: scroll; /* スクロールバーの有無によるズレ対策 */
}
/* フォントスタイル
----------------------------------------------------*/
html {
  font-size: 62.5%; /* 1em = 10px */
}
body {
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  line-height: 1.7;
  color: #222;
}

/* for IE6/7 */
body,
input,
textarea{
  *font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

small,
figcaption {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.5;
}

p,
small,
figcaption {
  text-align: justify;
  text-justify:inter-ideograph;
}
i{
  font-style: normal;
}

/* ベースリンクカラー
----------------------------------------------------*/
a:link{
  color: #0044cc;
  text-decoration: none;
}
a:visited{
  color: #a80000;
}
a:hover{
  color: #000;
}
a:active{
}
a:focus{
}


/* リスト
----------------------------------------------------*/
ul,
ol {
  list-style-type: none;
  padding: 0;
}

/* clerfix -micro clearfix
----------------------------------------------------*/
.inner:before,
.inner:after,
.cf:before,
.cf:after{
  content: "";
  display: block;
  overflow: hidden;
}
.inner:after,
.cf:after {
  clear: both;
}

/* for IE6/7 */
.inner,
.cf {
 *zoom: 1;
}

/* 画像ベースライン
----------------------------------------------------*/
img {
  vertical-align: bottom;
}

/* 画像回り込み
----------------------------------------------------*/
.imgL {
  float: left;
  margin: 0 1em 1em 0;
}
.imgR {
  float: right;
  margin: 0 0 1em 1em;
}
/* for IE6/7 */
.imgL,
.imgR {
  *display: inline;
  *zoom: 1; 
} 
.imgTXT {
  overflow: hidden; /* テキスト回り込み解除 */
} 

/* テキスト行位置
----------------------------------------------------*/
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}

/*  非表示　チェック用
----------------------------------------------------*/
.nodisplay {
  display: none;
}