@charset "Shift_JIS";
/*
layout.cssでは以下の要素を制御しています。
[]内はキーとなるid名、クラス名です。
・テキストインデント
・メインコンテンツ[#contents]
・ヘッダ[#head]
・グローバルメニュー[#gMenu]
・フッタ[#foot]
・基本構造
*/

/* @group メインコンテンツ[#contents] */
div#contents {
  padding: 0;
  /*background: rgba(255, 255, 255, 0.7);*/
  text-align: center;
}

.b {
  font-weight: 400;
  font-size: 13px;
}
.r {
  font-weight: 700px;
  font-size: 18px;
  text-align: right;
  color: #FF0000;
}
.blue {
  font-weight: 700px;
  font-size: 18px;
  text-align: right;
  color: #FF0000;
}
/* @end */

/* @group 基本構造 */
body {
 /* background-image: url("../img/bk_france.jpg");*/
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
  border: 0;
}

div#wrapper {
  width: 1024px;
  text-align: left;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  div#wrapper {
    width: 100%;
  }
}
/* @end */