input, select, textarea, submit{
	font-family: "Segoe UI", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
input[type="file" i]::-webkit-file-upload-button{
	font-family: "Segoe UI", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
input::placeholder {
	color:#ccc;
}
input, select, textarea{
	font-size: 15px;
	line-height: 18px;
	color: #000;
	border-radius: 8px;
	border: 1px solid #ccc;
	padding: 3px;
	margin: 3px 3px 5px 2px;
}
input[type="button"] {
	padding:6px 12px;
}
input:hover, select:hover, textarea:hover{
	background:#def;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	}
label{
	border: 1px solid rgba(0,0,0,0);
	border-radius: 15px;
	padding: 0px 5px;
}
label:hover{
	border: 1px solid #aac;
	background:#def;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
input:focus, select:focus, textarea:focus, label:focus{
	border: 1px solid #f00;
	background:#fdd;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
textarea.text {
	width: 98%;
	height: 20em;
}
textarea.large {
	width: 98%;
	height: 25em;
}
textarea.medium-large {
	width: 98%;
	height: 14em;
}
textarea.medium {
	width: 500px;
	height: 10em;
}

@media screen and (max-width: 750px) {
	input[type="button"] {
		padding:4px 8px;
	}
	textarea.medium {
		width: 98%;
	}
}

textarea.small {
	width: 98%;
	height: 5em;
}
checkbox{
	position: absolute;
	content: "";
//	top: 2px;
	left: 10px;
	width: 16px;
	height: 28px;
	border-right: 8px solid #3ea5d9;
	border-bottom: 8px solid #3ea5d9;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.large-file{
	display:flex;
}
.large-file div>div:nth-of-type(1){
	transition: 0.3s ease-in-out;
	display: inline-block;
	overflow: hidden;
	position: relative;
	padding: 7px 20px;
	border: 1px solid var(--orange);
	border-radius: 10px;
	background: var(--orange);
	color:#fff;
}
.large-file div>div:nth-of-type(1):hover{
	background: #3be;
	border: 1px solid #7af;
}
.large-file input[type="file"] {
	opacity: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	position: absolute;
	right: 0;
	top: 0;
	margin: 0;
	font-size: 100px;
	cursor: pointer;
}

.input_required{
	white-space: nowrap;
	font-size:10px;
	color:#fff;
	border:1px solid #faa;
	background:#e00;
	margin-right:5px;
	margin-left:auto;
	padding: 1px 4px 1px 4px;
}
/*-------------------------------*/
.submit_buttons{
	display:flex;
	justify-content: flex-end;
	margin-bottom:15px;
}
.submit_buttons li{
	min-width:130px;
	height:50px;
	transition: 0.3s ease-in-out;
	padding: 10px 30px;
	margin: 2px 5px;
	border: 1px solid #ea3;
	border-radius:20px;
	background: var(--orange);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-align:center;
	white-space: nowrap;
}
.submit_buttons img{
	margin-right:6px;
}
.submit_buttons li:hover{
	border: 1px solid #Fac;
	background:#f00;
	cursor: pointer;
	box-shadow: 0 0 6px 1px rgba(210, 230, 255, 0.8);
}
/*-------------------------------*/
.auth_mail_back{
	display: none;
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 50;
	opacity : 0;
	background: rgba(0, 0, 0, 0.5);
}
.auth_mail{
	position: absolute;
 	left: 50%;
 	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 700px;
	width:80%;
	//height: 200px;
	z-index: 51;
	background:#fff;
	border:1px solid #eee;
	border-radius: 10px;
}
.auth_mail > ul {
}
.auth_mail > ul >li{
	width: 100%;
	padding:20px;
}
#auth_mail_message{
	color: #f00;
	font-weight: bold;
}
@media screen and (max-width: 750px) {
	.auth_mail{
		width:98%;
	}
}