/*****************/
/* プログレスバー */
/*****************/
h1 {
    text-align: center;
    color: black;
}

.p-progress-bar {
    display: table;
    width: 100%;
    margin: 2% 0 4%;
}
.p-progress-bar > div {
    display: table-cell;
}
.p-progress-bar__backbutton {
    width: 110px;
}
.p-back-button {
    width: 50px;
    height: 50px;
    background-color: #34ac98;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: table;
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 50px;
}
.p-back-button:hover{
    cursor:pointer;  
    /* 変化後の色 */ 
    background: #f83b66; 
    /* 回転させる */ 
    -moz-transform: rotate(-360deg); 
    -webkit-transform: rotate(-360deg); 
    transform: rotate(-360deg);
}

.p-progress-bar__step {
    width: 220px;
    color: white;
    background-color: #555;
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
}
.p-progress-bar__step--active {
    background-color: #e75b4c;
}
.p-progress-bar__arrow {
    width: 50px;
    background-color: white;
}
.p-progress-bar__dumy {
    width: 110px;
}

