/*============================== ローディング ==============================*/
#splash {
	/*fixedで全面に固定*/
	  position: fixed;
	  width: 100%;
	  height: 100%;
	  z-index: 999;
	  background:white;
	  text-align:center;
	  color:#fff;
	}
	
	/* Loading画像中央配置　*/
	#splash_logo {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}
	
	/* Loading アイコンの大きさ設定　*/
	#splash_logo img {
	  width:260px;
	}
	
	/* fadeUpをするアイコンの動き */
	.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}



/*============================== ページトップ ==============================*/
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 0px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
	    transform: translateY(150px);
    }
    to {
        opacity: 1;
	    transform: translateY(0);
    }
}

/*　下に下がる動き　*/
#page-top.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
  	    opacity: 1;
	    transform: translateY(0);
    }
    to {
  	    opacity: 1;
	    transform: translateY(150px);
    }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/
	display: block;
	width: 100px;
	height: 100px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
    /*背景画像の指定*/
	background: url("http://hsk-access.info/img/pagetop/01.png") no-repeat center;
	background-size: contain;
}

#page-top.floatAnime a {
	width: 100px;
	height: 130px;
    /*背景画像の指定*/
	background: url("http://hsk-access.info/img/pagetop/02.png") no-repeat center;
	background-size: contain;
    /*アニメーションの指定*/
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}

/*Page Topと書かれたテキストの位置*/
#page-top span {
    position: absolute;
    bottom: -20px;
    right: 20px;
	color: #666;
}
/*検証のためのCSS*/
section {
    padding: 500px 0;
}

.gallery-list li {
	display:inline-block;
}