/* CSS Document */

a {
  color: #FF16AE;  
}

.base {
	background-color: rgba(112,190,255,0.50);
}

/* ヘッダのせいでずれるので、アンカーのオフセット調整 */
H2 {
  margin-top: -80px;
  padding-top: 100px;
}

body {
    background-image: url("../image/tepsss-background.jpg");
    background-color: #FFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.lg {
  display: inline;
}

.sp {
  display: none;
}

/* スマホ */
@media only screen and (max-width: 767px) {
  
  /* 背景画像がまともに表示できないのであきらめる */
  body {
    background-image: url();
  }

  /* サンプル動画を小さくする */  
  .lg {
    display: none;
  }
 
  .sp {
    display: inline;
  }
}
