/* ================================================================
   ベータテスト中の背景
   ----------------------------------------------------------------
   ベータテストが終わったら、各ページの
   <link rel="stylesheet" href="beta.css"> の1行を消すだけで解除できます。
   (育成フォルダ内のページは href="../beta.css" です)

   ページ側の body{background:...} に負けないよう、
   html要素に背景を敷き、body側は透明にしています。
================================================================ */
html{
  background-image:url("img/beta-bg.png") !important;
  background-repeat:repeat !important;
  background-size:340px auto !important;
  background-attachment:fixed !important;
  background-position:center top !important;
  background-color:#FBF8FE !important;
}

/* ページ側の背景色を透けさせて、htmlの模様を見せます */
body{
  background-color:transparent !important;
  background-image:none !important;
}

@media (max-width:480px){
  html{ background-size:250px auto !important; }
}
