﻿<@charset "UTF-8";>


<style type="text/css">

#index {
   margin: 0px

  /* 画像ファイルの指定 */
  background-image: url(../image/2-1.jpg);
   
  /* 画像を常に天地左右の中央に配置 */
  background-position: center bottom ;
   
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: contain;
   
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #FFFFFF;
 
    }
<!--
#index {
      background-image: url(../image/2-1.jpg);
      background-position: center bottom; /*左右、上下の順で位置を割合で指定*/ 
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: contain;
      background-color: #FFFFFF;}
-->
</style>
