@charset "utf-8";

/***************************************************
 * 8-2-1  ページ内リンク（スクロール）
 ***************************************************/

/*========= レイアウトのためのCSS ===============*/
/* この項削除 */

/***************************************************
 * 4-1-7  ローディング&非表示
 ***************************************************/

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background:#000000;
	text-align:center;
	color:#000000;
	display: none;
        margin-top:23px;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width:260px;
}

/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height:100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #000000;
}

a:hover{
     text-decoration: none;   
}
