@charset "utf-8";
.footer{
	width: 100%;
	background-color: #89c7de;
	color: #fff;
	text-align: center;
	padding: 30px 0;
	position: absolute;
	bottom: 0; /*下に固定*/
}
.page{
	width: 1000px;       /* サイトの基本となる横幅 */
	margin-right: auto; /* 右側の余白を自動で調整 */
	margin-left: auto;  /* 左側の余白を自動で調整 */
}
.slide{
	top: 5000px;
	width: 1000px;
	height: 600px;
	margin-right: auto;
	margin-left: auto;
}
.title {
	font-weight: bold;
}
.logo img{
	width: 750px;
	height: 75px;
	display: block;
	margin: auto;
}
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#333;
  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);
  }
}



/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #333;
}

a:hover{
     text-decoration: none;   
}