/*	プログレスバー（ステップ）
-------------------------------------------------------- */
@keyframes progressbar {
	
	0% {
		height: 0;
	}
	
	100% {
		height: 100%;
	}

}

@keyframes changecolor {
	0% {
		background-color: #bbb;
	}

	60% {
		background-color: #bbb;
	}
	
	100% {
		background-color: #cc0000;
	}
}

.c-progress-bar {
	position: relative;
	line-height: 1.2;
}
	
.c-progress-bar__item {
	position: relative;
	padding-left: 2.4rem;
	font-size: 1.6rem;
	min-height: 12.0rem;
}

@media only screen and (max-width: 575px) {
	.c-progress-bar__item {
		min-height: 5.0rem;
	}
}
		
.c-progress-bar__item:not(:last-child) {
	padding-bottom: 1.6rem;
}
		
.c-progress-bar__item:not(:last-child):before,
.c-progress-bar__item:not(:last-child) > div:before {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 6px;
	width: 3px;
	height: 100%;
	background-color: #eee;
}

.c-progress-bar__item:not(:last-child) > div:before {
	height: 0;
}

.c-progress-bar__item:after {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-color: #bbb;
	border-radius: 50%;
}

.c-progress-bar__item.is-current > div:before {
	background-color: #cc0000;
	animation: progressbar 2s ease forwards;
}

.c-progress-bar__item.is-complete > div:before {
	height: 100%;
	background-color: #cc0000;
}

.c-progress-bar__item.is-complete:first-child:after,
.c-progress-bar__item.is-complete:after,
.c-progress-bar__item.is-current:after,
.c-progress-bar__item.is-now-first:after{
	background-color: #cc0000;
}

.c-progress-bar__item.is-now:after{
	animation: changecolor 3s ease forwards;
}

.c-progress-bar__item p {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.5;
}

.c-progress-bar__item strong {
	font-size: 1.142857em;
	font-weight: 700;
}