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

.step_bar {
    z-index: 1;
    position: absolute;
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    width: 100%;
    top: 62px;
    right: calc(50% - 300px);
}
.step_bar_item {
    position: relative;
    list-style-type: none;
    text-align: center;
    width: 100%;
    color: #999999;
    font-weight: bold;
}

/* ステップバーの横線 */
.step_bar_item:after {
    position: absolute;
    z-index: -1;
    top: 11px;
    left: -50%;
    width: 100%;
    height: 4px;
    content: '';
    background-color: #005bac;
}
.step_bar_item:first-child:after {
    content: none;
}

/* ステップバーのチェック */
.step_bar_item div:before {
    display: block;
    width: 19px;
    height: 19px;
    margin: 0 auto;
    content: '';
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #005bac;
}
.step_bar_item .active:before{
    background-color: #ffde00;
}
.step_bar_item .complete:before{
    background-color: #005bac;
}
.step_bar_item .complete:after{
    position: absolute;
    content: '';
    background-color: transparent;
    background-image: url(../../img/icon//check_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: calc(50% - 8px);
    width: 25px;
    height: 19px;
    z-index: 1;
}

/* ステップバーのテキスト */
.step_bar_item .step_name{
    color: #000;
    position: absolute;
    width: 100%;
    top: -30px;
    right: calc(50% - 100px);
    margin: 0;
}
.step_bar_item .step_number{
    font-size: 14px;
    color: #005bac;
    margin: 0;
}
.step_bar_item .step_number span{
    font-size: 20px;
}

@media screen and (max-width:1200px){
    .step_bar_block{
        height: 70px;
        background: #ececec;
        border-top: 1px solid #dfdfdf;
    }
    .step_bar {
        position: relative;
        margin: auto;
        right: 0;
        top: 57px;
    }
}
@media screen and (max-width:767px){
    .step_bar {
        max-width: 100%;
        top: 37px;
    }
    .step_bar_block{
        height: 50px;
    }
    .step_bar_item .step_name{
        font-size: 10px;
        line-height: 1em;
        top: -12px;
        right: 0;
    }
    .step_bar_item .step_number{
        font-size: 10px;
        line-height: 1em;
        position: absolute;
        width: 100%;
        top: -30px;
        right: 0;
        margin: 0;
    }
    .step_bar_item .step_number span{
        font-size: 14px;
        line-height: 1em;
    }
}
