/********************
* ログイン画面CSS
*********************/
.login_modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.login_modal_bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.login_modal_content{
    background: #fff;
    left: 50%;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
}
/** ログインモーダル_タイトル */
.loginTitleName {
	background: linear-gradient(to right, #0082ff, #aed0ff);
	padding: 8px 5px 8px 30px;
	font-size: 20px;
	font-weight:bold;
	color: white;
	border-radius: 5px;
}