@charset "utf-8";
/* CSS Document */

html,
body{
	width:100%;
	height:100%;
	font-size:12px;
}

body {
	color:#333333;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HiraKakuPro-W3","ＭＳ Ｐゴシック","MS PGothic",Arial, Helvetica,sans-serif;
}

.sp{display: none;}

#wrapper {
	width: 100%;
	min-height:100%;
	background:url(../img/bg.jpg) no-repeat center center / cover;
	position:relative;
	text-align:center;
	margin: 0 auto;
	box-sizing: border-box;
}

.contents {
	position: relative;
	max-width: 600px;
	min-height: 100vh;
	margin:0 auto;
	background: #b70005;
	box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.5);
}
.contents img {
	width: 100%;
	height: auto;
}

.contents .login {
	position: absolute;
	top: 500px;
	left: 0;
	right: 0;
	border: 1px solid #fff;
	background:rgba(255,255,255,.75);
	-webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
	box-sizing:border-box;
    border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */
	width: 90%;
	padding:20px;
	margin: 0 auto;
	z-index: 2;
}

.contents .login p {
	font-size:18px;
	font-weight:bold;
	margin-bottom:15px;
}
.contents .login p.close {
	margin-bottom:0;
}

.contents .login p.error {
	font-size:14px;
	font-weight:bold;
	margin-bottom:0;
	margin-top:15px;
	color:#F00;
}

.contents .login input[type=text] {
	width:100%;
	text-align:center;
	padding:5px;
    font-size : 20px;
    border : 0;
    -webkit-border-radius : 5px;
    -webkit-appearance : none;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
	box-sizing:border-box;
}

.contents .login input[type=submit] {
	width: 200px;
    text-align: center;
    padding: 15px 15px 13px;
    background: #174173;
    color: #fff100;
    font-size: 18px;
    font-weight: bold;
    line-height: 1em;
    border: 0;
    -webkit-border-radius: 1000px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    margin-top: 20px;
}

.copy {
	color:#fff;
	font-size:11px;
	width: 100%;
	text-align:center;
	position:absolute;
	left:0;
	bottom:15px;
}

@media screen and (max-width: 600px) {
	.sp{display: block;}
	.pc{display: none;}
	#wrapper {
		background:none;
	}
	.contents {
		width:100%;
		box-sizing:border-box;
	}
	.contents .login{
		top: 84vw;
	}

}


