@charset "UTF-8";
/* CSS Document */

/*========= TOP画像用のCSS ===============*/
/* 画面幅の100%の幅で画像を表示 */
.image-vw {
  width : 100vw ;
  margin: 0　auto;
}
/* ===パソコンで見たときは"pc"のclassがついた画像が表示される=== */
.pc { display: block !important; }
.sp { display: none !important;}
/* ===スマートフォンで見たときは"sp"のclassがついた画像が表示される=== */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*========= 背景動画設定のCSS ===============*/
/*container設定*/
#container{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: fixed;
    z-index: -999;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
  display: none; }

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  position: fixed;
  animation-name: opa1;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  width: 60px;
  /*ボタンの幅*/
  line-height: 60px;
  /*ボタンの高さ*/
  bottom: 50px;
  /*画面の下からの配置場所指定*/
  right: 3%;
  /*画面の右からの配置場所指定*/
  background: #555;
  /*背景色（古いブラウザ用）*/
  background: rgba(0, 0, 0, 0.5);
  /*背景色。0,0,0は黒の事で、0.5は色が50%出た状態の事。*/
  color: #fff;
  /*文字色*/
  border-radius: 50%;
  /*円形にする指定。この１行を削除すると正方形になります。*/ }

body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
  background: #999;
  /*マウスオン時の背景色*/ }
