@charset "UTF-8";

@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');

.wrapper {
	box-sizing: border-box;
	padding: 70px 0;
    min-height: 100vh;
}
* {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 400;
	/* - 250 Thin
	- 300 Light
	- 350 DemiLight
	- 400 Regular
	- 500 Medium
	- 700 Bold
	- 900 Black */
}

body {
	background: #fff;
	overflow: auto;
	text-align: center;
}


body::-webkit-scrollbar-thumb {
	background-color: #3b3b45;
}

body::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0);
}

body::-webkit-scrollbar {
	width: 2px;
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}


#flashMessage {
	position: fixed;
	top: 0;
	left: 0;
	height: 31px;
	line-height: 32px;
	font-size: 16px;
	z-index: 9999;
	border: none;
	color: white;
	width: 100% !important;
	text-align: center;
	margin: auto;
}

.error{
	background: #BA3234;
	text-decoration: underline;
}
/* 保存の際のflashメッセージ */
.success {
	background: #14CC36 !important;
	text-decoration:none !important;
}



#wrapper {
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
    background: white;
    border: double 5px #ccc;
    /* width: 800px; */
    width: 60%;
    /* min-width: 550px; */
    margin: 32px auto 0 auto;
    text-align: center;
    padding: 40px 30px 40px 30px;
    font-size: 19px;
    height: auto;
    border-radius: 5px;
}

legend {
	color: #555;
	padding-bottom: 10px;
	text-align: center;
	padding-right:50px;
}

.submit{
	text-align: center;
}

.submit button[type="submit"] {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
    color: #999;
    margin-top: 12px;
    font-size: 16px;
	line-height:20px;
	background: #fff;
	border: double 3px #ccc;
	border-radius:4px;
	padding: 8px 25px;
	transition-property: background, color;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
	margin-right: auto;
    margin-left: auto;
}

.submit button[type="submit"]:hover {
	background: #fff;
	color: #930000;
	opacity: 1;
	border: double 3px #aaa;
}

.adduser a{
	text-decoration:none;
}


input {
	outline-color: #333;
}

#name{
	overflow: hidden;
	width: 100%;
	margin: 21px auto 30px auto;
	line-height: 29px;
}
#pass {
	overflow: hidden;
	width: 100%;
	margin: 30px auto 30px auto;
	line-height: 29px;
}

#UserUsername,
#UserPassword {
    width: 100%;
    border: solid 1px #ddd;
    text-align: center;
}
#UserUsername{
    margin: 15px 0 10px 0;
}
#UserPassword{
    margin: 15px 0 0 0;
}


#UserUsername:focus,
#UserPassword:focus{
	border-color: #66afe9 !important;
	box-shadow: none !important;
    outline: none !important;
}

label {
	display: block;
	font-size: 16px;
}

#authMessage {
	display: none;
}


#welcome{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	min-width:100%;
	height:100vh;
	min-height:100vh;
	padding-top:25vh;
	z-index:9999;
	max-width:100%;
	max-height:100vh;
	font-size:22px;
	background:white;
	display:none;
}

.welcome_p{
	display:none;
	text-align: center;
	line-height: 55px;
}

body > div.animsition > p.adduser > a{
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
	-ms-transition: color 0.5s;
	-o-transition: color 0.5s;
	transition: color 0.5s;
}



.adduser a{
    font-size: 16px;
    margin: 0 auto;
    display: block;
    width: 250px;
    background: #f1f1f1;
    padding: 2px 5px;
    border: solid 3px #c1c1c1;
    height: 43px;
    color: #333 !important;
    line-height: 30px;
    margin-top: 45px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}
.adduser a:hover{
	background: rgba(255,255,255,1);
	opacity: 1;
}

body > div.animsition > p.adduser > a:nth-child(1):hover{
	color:#34e9b3 !important;
}


body > div.animsition > p.adduser > a:nth-child(3){
	/* color:rgb(199, 58, 60) !important; */
	color:rgb(255, 29, 32) !important;
}
body > div.animsition > p.adduser > a:nth-child(3):hover{
	color:#34e9b3 !important;
}

.visible600{
	display:none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #fff;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

.text_title{
	letter-spacing: 0.075em;
	color:#fff;
}

.text_title a{
	font-family: "Sawarabi Mincho";
	text-decoration: none;
}

.text_title a:hover{
	opacity: 0.85;
}
.wrapper{
	background:#930000;
}
.animsition{
	box-sizing: border-box;
}
@media screen and (max-width:1200px) {
	#wrapper {
		width: 80%;
	}
	#content {
		min-width: 331px;
	}
	#loginbox {
		width: 100%;
	}
	#name,
	#pass {
		overflow: hidden;
		width: auto;
		margin: 10px 0;
		line-height: 29px;
	}
	#UserUsername,
	#UserPassword {
		float: none;
	}
}

@media screen and (max-width:500px) {
	#UserUsername,
	#UserPassword {
		width: 98% !important;
		float: none;
	}
}


/*
.message{
	padding-bottom:50px;
	display:none;
}*/

@media screen and (max-width:600px) {
	#wrapper {
		width: 90%;
		padding: 50px 10px 20px 10px;
		margin: 14px auto;
	}
	legend {
		padding-right:0;
		background: white;
	}
	#name,
	#pass {
		font-size: 16px;
	}
	input {
		outline: none;
	}
	#UserUsername:focus {
		border: solid 1px lightskyblue;
		outline: none;
	}
	#UserPassword:focus {
		border: solid 1px lightskyblue;
		outline: none;
	}
	#UserLoginForm>div.submit {
		margin-bottom: 50px;
	}


	.visible600{
		display:block;
	}
	.text_title {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.text_title img{
		width:50px;
		height: 50px;
	}
}
