@charset "UTF-8";

.form-content{
	border:solid 5px #c00;
	
	background-color:#fff;
	color:#444;
}

.form-content div.row{
	width:100%;
	margin:0 auto;
}

.form-content div.row p.ttx{
	vertical-align:top;
	
	box-sizing:border-box;
	padding:10px;
	
	background-color:#a00;
	font-weight:bold;
	color:#fff;
}

.form-content div.row p.ttx span.must{
	display:block;
	font-size:0.8rem;
	line-height:1.5em;
	font-weight:normal;
	color:#fff;
}

.form-content div.row p.ttx span.extra{
	display:block;
	font-size:0.8rem;
	line-height:1.5em;
	font-weight:normal;
	color:#fff;
}

.form-content div.row div.ans{
	vertical-align:top;
	
	box-sizing:border-box;
	padding:10px;
}

.form-content input[type="text"]{
	border:solid 1px #ccc;
	height:20px;
	
	padding:5px;
	border-radius:2.5px;
	margin:5px;
	
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:1.0rem;
	line-height:20px;
	color:#444;
	
	width:80%;
}

.form-content input[type="tel"]{
	border:solid 1px #ccc;
	height:20px;
	
	padding:5px;
	border-radius:2.5px;
	margin:5px;
	
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:1.0rem;
	line-height:20px;
	color:#444;
	
	width:80%;
}

.form-content input[type="email"]{
	border:solid 1px #ccc;
	height:20px;
	width:80%;
	
	padding:5px;
	border-radius:2.5px;
	margin:5px;
	
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:1.0rem;
	line-height:20px;
	color:#444;
	
}

.form-content textarea{
	border:solid 1px #ccc;
	width:90%;
	min-height:100px;
	
	padding:5px;
	border-radius:2.5px;
	margin:5px;
	
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:1.0rem;
	line-height:20px;
	color:#444;
	
	resize: vertical;
}

.form-content select{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  
  width:200px;
  border-radius: 2.5px;
  border:solid 1px #ccc;
  margin: 0;
  padding: 10px;
  background: none transparent;
  background-image:url(../images/bg-icon-select.png);
  background-repeat:no-repeat;
  background-size:20px;
  background-position:center right;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  
  font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size:1.0rem;
  line-height:20px;
  color:#666;
}

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

.form-content .checkbox {
  display: none;
}

.form-content .checkbox + .checkbox-icon {
  position: relative;
  vertical-align: middle;
  margin-right:5px;
}

.form-content .checkbox + .checkbox-icon:before {
  content: "\f372";
  font-family: "Ionicons";
  color: #ccc;
  font-size: 20px;
}

.form-content .checkbox:checked + .checkbox-icon:before {
  content: "\f374";
  color: #0ae;
}

.form-content .radio {
  display: none;
}

.form-content .radio + .radio-icon:before {
  content: "\f3a6";
  font-family: "Ionicons";
  color: #ccc;
  font-size: 20px;
  margin-right:5px;
  vertical-align:middle;
}

.form-content .radio:checked + .radio-icon:before {
  content: "\f3a7";
  color: #0ae;
}

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

.form-content div.btn-action p.btn-submit input[type="submit"]{
	width:200px;
	padding:10px;
	background-color:#f80;
	box-shadow:2px 2px #f60;
	border-radius:5px;
	color:#fff;
	border:none;
	
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:1.2rem;
	line-height:1.75em;
	font-weight:bold;
	margin:5px;
	-webkit-appearance: none;

}

.form-content div.btn-action p.btn-reset input[type="reset"]{
	width:200px;
	padding:10px;
	background-color:#0af;
	border-radius:5px;
	color:#fff;
	box-shadow:2px 2px #08c;
	border:none;
	
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:1.2rem;
	line-height:1.75em;
	font-weight:bold;
	margin:5px;
	-webkit-appearance: none;

}

.form-content article.castlist{
	width:50%;
	float:left;
}

.form-content article.castlist p.name{
	font-size:0.6rem;
	line-height:1.5em;
}

.form-content article.castlist div.spec{
	position:relative;
}

.form-content div.row div.ans ul.extra{
	display:block;
	font-size:0.8rem;
	line-height:1.75em;
	font-weight:normal;
	color:#666;
}

.form-content div.row div.ans ul.extra li{
	margin-bottom:10px;
}

.form-content div.row p.caption{
	display:inline-block;
	padding:0 10px;
	border-radius:5px;
	background-color:#c00;
	color:#fff;
	margin:10px 0;
}