@charset "UTF-8";
/* Full Background Img */

body {
  /* 画像 */
  background-image: url(../img/SS2019-MAIN.jpg);
   
  /* 天地左右の中央に配置 */
  background-position: center center;
   
  /* 繰り返し表示しない */
  background-repeat: no-repeat;
   
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
   
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
   
  /* 読み込み前表示の背景のカラー */
  background-color: #000;
}


@media only screen and (max-width: 767px) {
  body {
    background-image: url(../img/SS2019-MAIN-S.jpg);
  }
}