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;
	z-index: 2000;
}
#view_load_contents {
	width: 100%;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#view_load_inline{
	width: 100%;
	text-align: center;
}
#view_load img {
	/* アニメーション設定 */
	animation:2s ease-in-out infinite rotation;
}
@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}
/* ロード画面のテキスト */
#view_load_text {
	color: #ffffff;
	border-top: solid 1px;
	padding-top: 1rem;
	border-image: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
    border-image-slice: 1;
}
/* ログイン情報破棄ボタン */
#btn_login_clear{
	color: #ffffff;
    padding: 0.5rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    background: rgba(10,36,61,0.7);
    border: solid 1px rgb(255 255 255);
	box-shadow: 0 0 9px 6px rgba(0,0,0,0.3);
	cursor: pointer;
}


/* ログイン画面背景色 */
.login-bg {
	background: rgba(0,0,0,0.5);
	padding-bottom: 1rem !important;
}

/* ボタン背景色 */
.btn-bg {
	background:#358ec7 !important;
}

/* チェックボックス表示エリア */
#area_save_login {
	display: none;
}

/* チェックボックス文言 */
.form-check-label {
	color: white;
}
input[type=checkbox] {
	transform: scale(1.5);
}

/* リンク */
.link {
	padding-top: 2rem;
	font-size: 0.8rem;
	/* background-color: rgba(0,0,0,0.5); */
}

.link a {
	color: #ffffff !important;
	text-decoration: underline;
}