/* FORM ================================================================================*/
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="password"]{
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 0px;
	border: #ccc 1px solid;
	background-color: rgba(255,255,255,0.40);
	font-size: 18px;
	-webkit-appearance: none; 
	}

input[type="checkbox"]{margin:  5px 8px 6px 0;}

input[type="radio"]{
	margin: 12px 6px 12px 0;
	float: left;
	}

textarea.memoBox {
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	background-color: rgba(255,255,255,0.40);
	border: #ccc 1px solid;
	border-radius: 0px;
	resize: none;
	-webkit-appearance: none; 
   }

input[type="text"].ss {
   width: 50px!important;
	box-sizing: border-box;
	padding: 10px 5px;
   text-align: center;
	}

input[type="text"].short,
input[type="number"].short{
	width: 150px!important;
	text-align: center;
	}
input[type="text"].medium {
	width: 300px!important;
	}

input[type="text"].zip{
	width: 90px;
	text-align: center;
	}

label{font-size: 18px;}

select{
	width: 100%;
	padding: 10px;
	font-size: 18px;
	border: #ccc 1px solid;
	background-color: #F5F5F5;
	border-radius: 0px;
	}


/* ボタン --------------------------------------------------*/
[type="submit"]{
	display: block;
	width: 150px;
	background-color: #333;
	border: #333 1px solid;
	font-size: 18px;
	padding: 10px 0;
	color: #FFF;
	transition-duration: .3s;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0;
	margin: 30px auto;
	}

[type="submit"]:hover{
   color: #333;
	background-color: #FFF;
   transition-duration: .3s;
   }

[type="button"].backBtn{
	display: block;
	width: 150px;
	background-color: #fff;
	border: #333 1px solid;
	font-size: 18px;
	padding: 10px 0;
	color: #333;
	transition-duration: .3s;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0;
	}

[type="button"].backBtn:hover{
	color: #FFF;
	background-color: #333;
	transition-duration: .3s;
	}

.require{
	background-color: #B0272A;
	color: #FFF;
	font-size: 12px;
	border-radius: 3px;
	padding: 0 10px;
	margin: 0 10px 0 0;
	}

ul.line,
ul.stack{
	display: flex;
	flex-wrap: wrap;
	}
ul.line li{
	width: 33%;
	display: flex;
	align-items: center;
	}
ul.stack{
	display: flex;
	flex-direction: column;
	margin: 0 0 10px 0;
	}

ul.line li p{
	font-size: 18px;
	margin: 0 20px 0 5px;
	}
ul.line li:last-child p{margin: 0 5px;}
ul.line li label{
	display: flex;
	align-items:center;
	}
ul.line li img{
	width: 30px;
	height: 100%;
	}
.flexRight{
	justify-content: flex-end;
	}
.flexCenter{
	justify-content: center;
	}

.required::before{
	display: block;
	width: 80px;
	content: "必須";
	color: #FFF;
	font-size: 16px;
	line-height: 26px;
	background-color: #B93639;
	margin: 0 auto;
	border-radius: 3px;
	}

.eny::before{
	display: block;
	width: 80px;
	content: "任意";
	color: #FFF;
	font-size: 16px;
	line-height: 26px;
	background-color: #358AB9;
	margin: 0 auto;
	border-radius: 3px;
	}

/* Media QuelikeTblry ================================================================================*/
@media only screen and (max-width: 479px){
}

@media only screen and (min-width: 480px) and (max-width: 599px) {	
}

@media only screen and (max-width : 599px) {	
	
	input[type="text"],
	input[type="email"],
	input[type="number"],
	input[type="date"],
	input[type="password"],textarea{
		font-size: 5vw;
		}
	
	select{
		font-size: 5vw;
		}
	
	label{font-size: 5vw;}
	
	ul.line{
		flex-direction: column;
		}
	ul.line.flexCenter{
		flex-direction: row;
		}
	
	::placeholder{
		font-size: 5vw;
		}
	
	.required::before,
	.eny::before{
		display: inline-block;
		width: auto;
		font-size: 3vw;
		text-align: center;
		line-height: 1.4em;
		padding: 0 3%;
		margin: 0 2% 0 0
		}
}

@media only screen and (max-width : 992px){
}

@media print, only screen and (min-width:1351px){
}