.loading{
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
	position: fixed;
    z-index:10;
	
}

.loading img{
	width:30%
}
@media only screen and (max-width: 750px) {
	.loading img{
	width:80%
}
}



* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
		  color:#fff 
      }
      p {
        margin-bottom: 2em;
      }
      .img{
		  display: flex;
		  height: 80vh;
		  justify-content: center;
		  align-items: center;
		  text-align: center;
      }
		.img2{
		  display: flex;
		  height: 100vh;
		  justify-content: center;
		  align-items: center;
		  text-align: center;
      }
      .fullPageScroll {
        width: 100%;
        height: 100vh;
        scroll-snap-type: y mandatory;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .section {
        width: 100%;
        height: 100vh;
        padding:0;
        scroll-snap-align: start;
		  text-align: center
      }

      .section1 {
      position: relative;
		  overflow: hidden;
      }

      .section2 {
        background-color: #000;
        overflow: hidden;
        position: relative;
      }

      .imageWrapper{
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
      }
      .section3 {
        background-color: #000;
        overflow: hidden;
        position: relative;
      }

      .section4 {
        background-color: #000;
        overflow: hidden;
        position: relative;
      }

      .section5 {
        background-color: #000;
        overflow: hidden;
        position: relative;
      }

      .pagination {
        position: fixed;
        top: 50%;
        right: 32px;
        transform: translateY(-50%);
      }

      .pagination a {
        display: block;
        width: 5px;
        height: 5px;
        margin: 24px 0;
        border-radius: 50%;
        background-color: #fcfcfc;
        transition: transform 0.2s;
      }

      .pagination a.active {
        transform: scale(1.8);
      }
      
/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    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: 110%;
    min-width: 110%;
}


/*========= デバイス切り替え設定のCSS ===============*/
/* パソコンで見たときは"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; }
}
@media only screen and (max-width: 750px) {
    img { max-width: 100%; }
}