@charset "UTF-8";

/*/////-----FORM-CONTENT-----/////*/

.form-content div.row{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
	
	margin-bottom:2.5px;
}

.form-content div.row:last-child{
	margin-bottom:0;
}

.form-content div.row div.que{
	width:100%;
	
	box-sizing: border-box;
	padding:10px;
	border-bottom:solid 2.5px #fff;
	
	background-color:#f0f0f0;
	color:#000;
}

.form-content div.row div.que p.must{
	font-size:0.6rem;
	line-height:20px;
	
	color:#f00;
}


.form-content div.row div.que p.extra{
	font-size:0.6rem;
	line-height:20px;
	
	color:#00f;
}

.form-content div.row div.ans{
	width:100%;
	
	box-sizing: border-box;
	padding:10px;
	
	background-color:#f8f8f8;
	color:#000;
}

.form-content div.row div.ans{
	width:100%;
	
	box-sizing: border-box;
	padding:10px;
	
	background-color:#f8f8f8;
	color:#000;
}

.form-content div.row div.policy{
	width:100%;
	
	box-sizing: border-box;
	padding:10px;
	
	text-align: center;
}

.form-content span.approval input[type="checkbox"]{
	display:none;
}

.form-content span.approval{
	display:inline-block;
	
	box-sizing:border-box;
	padding-left:40px;
	
	position:relative;
}

.form-content label:hover{
	cursor:pointer;
}

.form-content span.approval:before{
	display:block;
	content:"";
	
	width:30px;
	height:30px;
	
	background-color:#f0f0f0;
	color:#000;
	
	border-radius:30px;
	
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	
	margin:auto 0;
}
.form-content span.approval input + span:after{
	display:block;
	content:"";
	
	width:20px;
	height:20px;
	
	background-color:#f0f0f0;
	color:#000;
	
	border-radius:20px;
	
	position:absolute;
	top:0;
	bottom:0;
	left:5px;
	
	margin:auto 0;
}

.form-content span.approval input:checked + span:after{
	display:block;
	content:"";
	
	width:20px;
	height:20px;
	
	background-color:#f40;
	color:#000;
	
	border-radius:20px;
	
	position:absolute;
	top:0;
	bottom:0;
	left:5px;
	
	margin:auto 0;
}

.form-content div.row div.btn-action{
	width:100%;
	
	box-sizing: border-box;
	padding:10px;
	
	text-align: center;
}

.form-content div.row div.btn-action p.btn-submit{
	display:inline-block;
}

@media only screen and (min-width: 720px){
	
	.form-content div.row div.que{
		width:240px;
		
		border-bottom:none;
	}
	
	.form-content div.row div.ans{
		width:calc(100% - 240px);
		
		border-left:solid 2.5px #fff;
	}
	
}

/*/////-----FORM-PARTS-----/////*/

input[type="text"]{
	width:100%;
	max-width: 480px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#fff;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="tel"]{
	width:100%;
	max-width: 240px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#fff;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="email"]{
	width:100%;
	max-width: 480px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#fff;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea{
	width:100%;
	max-width: 480px;
	
	min-height: 120px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#fff;
	color:#000;
	box-shadow: none;
	
	resize: vertical;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="submit"]{
	width:240px;
	
	font-size:1.0rem;
	line-height:50px;
	font-weight:bold;
	
	background-color:#f40;
	border:solid 1px #f40;
	border-radius:2.5px;
	color:#fff;
	cursor: pointer;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="submit"]:hover{
	background-color:#fff;
	color:#f40;
	
	text-decoration: none;
}

.screen-reader-response{
	font-size:0.8rem;
	line-height:1.75em;
	color:#f44;
	
	text-align:center;
	
	margin-bottom:10px;
}

.screen-reader-response ul{
	display:none;
}

.wpcf7-response-output{
	font-size:0.8rem;
	line-height:1.75em;
	color:#f44;
	
	text-align:center;	
}

.wpcf7-not-valid-tip{
	display:block;
	
	font-size:0.8rem;
	line-height:1.75em;
	color:#f44;
}
