@charset "UTF-8";
/* CSS Document */

.form-ttl{
	font-weight: 700;
	font-size: 1.5rem;
}

.form-area{
	width: 680px;
	background-color: #fff;
	margin: 5rem auto 0;
	padding: 5rem;
}


/*ステップ*/
.step{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0;
  overflow:hidden;
}
.step li{
  display:table-cell;
  position:relative;
  background: #eef4f4;
  padding: 0 .35em 0 1.5em;
  color: #b4b4b4;
	width: 40px;
  text-align: center;
	font-weight: 700;
}
.step li:last-child{
  padding-right: 1em;
}
.step li:last-child:before,
.step li:last-child:after{
  display:none;
}
.step li:before,
.step li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before{
  top:-47%;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 1.8em 0 1.8em 1em;
  z-index: 10;
}
.step li:after{
  top:-47%;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #eef4f4;
  border-width: 1.8em 0 1.8em 1em;
  z-index: 10;
}
.step li.current{
  background: #44bbaa;
  color: #fff;
}
.step li.current:after{
  border-color: transparent transparent transparent #44bbaa;
}
@media (max-width:575.98px){
	h2{
		font-size: 1.25rem;
	}
	.form-area{
		width: 92%;
		padding: 3.5rem 1rem;
	}
	.step li{
		font-size: 0.75rem;
	}
}
