html, body {
    height: 100%;
}

p#idToken {
    color: black;
}

p#accessToken {
    color: black;
}

p#refreshToken {
    color: black;
}

p {
    color: black;
}

#view_load {
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
	background: rgba(0,0,0,0.5);
	display: none;
}
#view_load_contents {
	width: 100%;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#view_load img {
	/* アニメーション設定 */
	animation:2s ease-in-out infinite rotation;
}
@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}

.navbar {
	background: rgba(0,0,0,0.5) !important;
	position: absolute;
    width: 100%;
}

.pt-5, .py-5 {
    padding-top: 7.5rem !important;
}

.nabvar_logo {
	width: 2rem;
}

.navbar-brand {
	color: #fff !important;
	font-size: 1.45rem;
}

.login_window{
	background: rgba(0,0,0,0.5);
	color: #fff;
}