/***ステップバーデザイン4***/
.step-wrap {
    counter-reset: count;
    margin: 2em 2em;
    position: relative;
}

.step-content {
    padding: 1em 0 1.3em 2.5em;
    position: relative;
}

.step-content::before {
    content: "";
    display: block;
    width: 55px;
    height: 55px;
    background: #ffc0c0;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -3px;
}

.step-content::after {
    content: "";
    display: block;
    height: calc(100% - 55px);
    border-left: solid 2px #ffc0c0;
    position: absolute;
    top: 55px;
    left: 10px;
}

.step-label {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    top: 6px;
    left: 9px;
}

.step-label::after {
    counter-increment: count;
    content: counter(count);
    position: absolute;
    font-size: 30px;
    top: 15px;
    left: 7px;
}

.step-title {
    font-weight: bold;
    font-size: 120%;
    margin-left: 1.5em;
    color: #666060;
}

.step-body {
    margin-top: 1em;
    padding: 0 0 1em;
    border-bottom: dotted 2px #ffc0c0;
    color: #666060;
}

.step-wrap> :last-of-type::after {
    display: none;
}

/***ステップバーデザイン４***/

/***ステップバーデザイン3***/
.step-wrap01 {
    counter-reset: count;
    margin: 2em 5%;
    position: relative;
}

.step-content01 {
    padding: 1.3em 0 .3em 1em;
    margin: 0 0 1em 1em;
    position: relative;
    border-top: solid 2px #ffc0c0;
}

.step-content01::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -10px;
    border-style: solid;
    border-width: 17px 8px 0 8px;
    border-color: #ffc0c0 transparent transparent transparent;
}

.step-content01::after {
    content: "";
    display: block;
    height: calc(100% - 36px);
    border-left: dashed 2px #ffc0c0;
    position: absolute;
    top: 16px;
    left: -4px;
}

.step-label01 {
    padding: 3px 20px 3px 15px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: -18px;
    left: -20px;
    background: #ffc0c0;
    border-radius: 20px;
    z-index: 1;
}

.step-label01::after {
    counter-increment: count;
    content: counter(count);
    position: relative;
    left: .3em;
}

.step-title01 {
    font-weight: bold;
    font-size: 120%;
    color: #666060;
}

.step-body01 {
    margin-top: .5em;
    padding: 0 0 1em;
    color: #666060;
}

.step-wrap01> :last-child {
    box-shadow: 5px 7px 0 -5px #ffc0c0;
}

.step-wrap01> :last-child::before,
.step-wrap3> :last-of-type::after {
    display: none;
}

/***ステップバーデザイン3***/