@charset "utf-8";

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#bfb7a2;
	background:#282c31;
	/* background:#93857a; */
	/* background:#52463c; */
	/* background:#485565; */
	/* background:#da9062; */
	/* background:#857273; */
	/* background:#7b7570; */
	/* background:#958f80; */
	/* background:#a49d8c; */
	/* background:#a9a290; */
	/* background:#a49d8c; */
	/* background:#aca593; */
	/* background:#8c8778; */
	/* background:#6b413a; */
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width:320px;
}

/* fadeUpをするアイコンの動き */

.fadeUpLogo{
animation-name: fadeUpAnimeLogo;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnimeLogo{
  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;   
} */