.line {fill: none;
       stroke: #14a0c0;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-width: 10px;
                fill-rule: evenodd;
}.line{stroke-dasharray:887 889;stroke-dashoffset:888;animation:line_draw 666ms linear 0ms forwards;}@keyframes line_draw{100%{stroke-dashoffset:0;}}@keyframes line_fade{0%{stroke-opacity:1;}92.3076923076923%{stroke-opacity:1;}100%{stroke-opacity:0;}}
#formWrap {
	margin:0 auto 10%;
	color:#555;
	line-height:120%;
	font-size:1rem;
}
#formWrap .wrap_p{
  margin: 0 10%;
}
#formWrap .wrap_p p{
margin: 2rem 0;
font-size: 1.1rem;
line-height: 1.4rem;
font-weight: bold;
text-align: left;
}
#formWrap .wrap_p p:nth-child(2){

  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: normal;
}
table.formTable{
	width:100%;
	margin:0 auto 3rem;
	border-collapse:collapse;
	border:1px solid #333;
}
table.formTable td,table.formTable th{
	padding:1.5rem;
  vertical-align: middle;
}
table.formTable td p.ex{
  font-size: .8rem;
  color: gray;
  padding-top: .5rem;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	text-align:left;
  font-weight: bold;
}
table.formTable th span{
  background: orange;
  margin-left: .5rem;
  padding: .2rem .5rem;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: .9rem;
}
#formWrap td.check input{
  height: 1rem;
  width: 1rem;
}
#formWrap input{
  min-height: 1.5rem;
  width: 90%;
  border: none;
  border-bottom: 1px solid #333;
}
#formWrap textarea{
  width: 90%;
  height: calc( 1.3em * 10 );
  line-height: 1.3;
}
#formWrap input:focus {
  outline: none;
}
#formWrap input p{
  display: block;
}
#formWrap input.btn{
  border: solid rgb(25,119,136) 2px;
  background: rgb(25,119,136);
  padding: .5rem 0;
  margin: 1rem auto;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: ease .3s;
  font-weight: bold;
  width: 35%;
}
#formWrap input.btn:nth-child(2){
  background: #fff;
  color: rgb(25,119,136);
}
#formWrap input.btn:hover{
  opacity: .8;
  transform: translateY(2px);
  transition: ease .3s;
}
@media screen and (max-width:572px) {
#formWrap {
	width:100;
	margin:0 auto;
  background: rgba(255,255,255,.9);
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
#formWrap input.btn{
  padding: .5rem 0;
  width: 80%;
}

#formWrap input.btn:nth-child(2){
  margin-bottom: 3rem;
}
}
.container {
  width: 100%;
  margin: 4rem 0;
}

.progressbar {
  counter-reset: step;
  font-size: 1rem;
}
.progressbar li {
  list-style: none;
  display: inline-block;
  width: 30.33%;
  position: relative;
  text-align: center;
}
.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 50px;
  height: 50px;
  line-height : 50px;
  border: 1px solid #197788;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
  font-size: 1.3rem;
  z-index: 1;
}
.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #197788;
  top: 25px;
  left: -50%;
  z-index : -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: #197788;
}
.progressbar li.active:before {
  border-color: #197788;
}

.progressbar li.active:before {
  background-color: #197788;
  color: #fff;
}
.progressbar li.active + li:after {
  background-color: #197788;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
