@charset "utf-8";

/* ===================================================================
CSS information
 file name : default.css
 style info : body及び基本レイアウトの初期設定 (このスタイルシートは基本的に変更しない)
=================================================================== */

body {
  background: #fff;
  color: #333;
  font-size: 14px;
  font-family: "メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
  line-height: 1.3;
}

img { vertical-align: bottom; }
ul,ol,li { list-style:none; }

/*--- リンク ---*/
a:link,
a:active {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #999;
  text-decoration: none;
}
a:hover,
a:visited:hover {
  text-decoration: underline;
  color: #000;
}

/*--- レイアウト ---*/
#wrapper {
  width: 980px;
  padding: 0 10px;
  margin: 0 auto;
}

#header {
}

#content:after {
  content: "";
  display: block;
  clear: both;
}

#mainContent {
  float: left;
  width: 640px;
}

#sideContent {
  float: right;
  position: relative;
  width: 300px;
  padding-top: 94px;
}

#content.top #sideContent { padding-top: 0; }

#footer {
  overflow: hidden;
  margin-top: 20px;
}


/* パンくず */
#breadcrumb {
  box-sizing: border-box;
  color: #888;
  font-size: 12px;
  height: 36px;
  padding-top: 24px;
}

#breadcrumb a {
  color: #888;
  margin-right: 1em;
}

#breadcrumb span { margin-right: 1em; }

#breadcrumb a + a,
#breadcrumb a + span,
#breadcrumb span+ span { margin-left: 1em; }

