@charset "UTF-8";

.form-content input[type="text"]{
	background-color:#fff;
	color:#444;
	
	box-sizing: border-box;
	padding:10px;
	border:solid 1px #888;
	border-radius:5px;
	
	font-size:1.0rem;
	line-height:1.0em;
	max-width: 100%;
}

.form-content input[type="email"]{
	background-color:#fff;
	color:#444;
	
	box-sizing: border-box;
	padding:10px;
	border:solid 1px #888;
	border-radius:5px;
	
	font-size:1.0rem;
	line-height:1.0em;
	max-width: 100%;
}

.form-content input[type="tel"]{
	background-color:#fff;
	color:#444;
	
	box-sizing: border-box;
	padding:10px;
	border:solid 1px #888;
	border-radius:5px;
	
	font-size:1.0rem;
	line-height:1.0em;
	max-width: 100%;
}

.form-content textarea{
	background-color:#fff;
	color:#444;
	
	box-sizing: border-box;
	padding:10px;
	border:solid 1px #888;
	border-radius:5px;
	width: 90%;
	min-height: 200px;
	
	font-size:1.0rem;
	line-height:1.0em;
	vertical-align: bottom;
}

.form-content select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  
  width:200px;
  border-radius: 2.5px;
  border:solid 1px #888;
  margin: 0;
  padding: 10px;
  background: none transparent;
  background-image:url(../../responsive/images/bg-icon-select.png);
  background-repeat:no-repeat;
  background-size:20px;
  background-position:center right;
  vertical-align: middle;
  font-size: inherit;
  color: #444;
  box-sizing: content-box;
	background-color:#fff;
}

.form-content select option{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-content article.castlist{
	display:inline-block;
	text-align: center;
	padding:5px;
	width:180px;
}

.form-content div.btn-action{
	text-align: center;
	padding:20px 0;
}

.form-content div.btn-action p.btn-submit{
	display:inline-block;
	margin:0 5px;
}

.form-content div.btn-action p.btn-submit input[type="submit"]{
	width:240px;
	border:none;
	padding:15px 0;
	
	font-size:1.0rem;
	line-height:1.0em;
	font-weight:bold;
	
	background-color:#ffafd0;
	border:solid 5px #ffafd0;
	border-radius:2px;
	color:#fff;
	cursor: pointer;
}

.form-content div.btn-action p.btn-submit input[type="submit"]:hover{
	background-color:#ff006e;
	color:#fff;
}

.form-content div.btn-action p.btn-reset{
	display:inline-block;
	margin:0 5px;
}

.form-content div.btn-action p.btn-reset input[type="reset"]{
	width:240px;
	border:none;
	padding:15px 0;
	
	font-size:1.0rem;
	line-height:1.0em;
	font-weight:bold;
	
	background-color:#bcbcbc;
	border:solid 5px #bcbcbc;
	border-radius:2px;
	color:#fff;
	cursor: pointer;
}

.form-content div.btn-action p.btn-reset input[type="reset"]:hover{
	background-color:#fff;
	color:#bcbcbc;
}

.form-content ul.radiolist li{
	display:inline-block;
	box-sizing: border-box;
	padding:0 5px;
}

.form-content input[type="radio"]{
	margin-right:5px;
}