form {
	letter-spacing: 0.15em;
	margin-bottom: 50px;
	-webkit-appearance: none;
}

form span{
	display: block;
	margin-bottom: 30px;
}

.form-title {
	background-color: #fff;
	padding: 10px 20px;
	margin-bottom: 1em;
	border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.form-title p {
	color: #262626;
	text-align: left;
	text-indent: 0.5em;
}

@media (max-width:600px){
	
	.form-title {
		padding: 10px 10px;
	}
	
}

.check-box {
	vertical-align: middle;
	margin-right: 0.8em;
}

.fm_box {
	width:100%;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 20px;
}

.fm_tit {
	width:90px;
	height: 50px;
	color: #fff;
	text-align: center;
	font-size: 0.9em;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	background: -moz-linear-gradient(top, #00687e, #005763);
	background: -webkit-linear-gradient(top, #00687e, #005763);
	background: linear-gradient(to bottom, #00687e, #005763);
}

.fm_txt {
	color: #262626;
	width: calc(100% - 90px);
}

.fm_tit2 {
	width: 150px;
	height: 50px;
	color: #fff;
	text-align: center;
	font-size: 0.9em;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	background: -moz-linear-gradient(top, #00687e, #005763);
	background: -webkit-linear-gradient(top, #00687e, #005763);
	background: linear-gradient(to bottom, #00687e, #005763);
}

input[type=text] {
	height:50px;
	width : 100%;
	padding: 10px;
	font-size: 1em;
	border: 1px solid #fff;
	border-bottom-color: #4a97c7;
	-webkit-border-radius : 0;
    -webkit-appearance : none;
	box-sizing: border-box;
}

::placeholder {
	color: #ccc!important;
}

textarea {
	width: 100%;
	border: 1px solid #4a97c7;
	padding: 10px;
	font-size: 1em;
	-webkit-border-radius : 0;
    -webkit-appearance : none;
	box-sizing: border-box;
}

input#submit_button {
	width:200px;
	padding: 20px 0px;
	margin-top: 30px;
	font-size: 1em;
	font-weight: 400;
	color: #fff;
	background-color: #4ca0eb;
	border-style: none;
	letter-spacing: 0.15em;
	border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
	background: -moz-linear-gradient(top, #00687e, #005763);
	background: -webkit-linear-gradient(top, #00687e, #005763);
	background: linear-gradient(to bottom, #00687e, #005763);
	cursor: pointer!important;
}


/*
input#submit_button {
	width: 220px;
	padding: 15px 0px;
	font-size: 1.2em;
	background: linear-gradient(#444, #262626, #111);
	color: #fff;
	border-style: none;
	letter-spacing: 0.15em;
}*/


@media (max-width:600px){
	
	.fm_tit {
		width:70px;
		height: 40px;
	}
	
	.fm_txt {
		width: calc(100% - 70px);
	}
	
	.fm_tit2 {
		width: 125px;
		height: 40px;
	}
	
	input[type=text] {
		height:40px;
	}
	
}

.prv-box {
	width: 100%;
	height: 250px;
	border: solid 1px #fff;
	padding: 15px 20px 10px 20px;
	box-sizing: border-box;
	overflow-y: scroll;
	font-size: 0.9em;
	line-height: 1.5em;
	background: rgba(0,0,0, .4);
	margin: 30px 0 20px 0;
}

@media (max-width:600px){
	
	.prv-box {
		height: 180px;
	}
	
}