/***ステップバーデザイン１***/
.step-wrap1 {
    counter-reset:count;
    margin: 2em 0;
    position: relative;
}
.step-content1 {
    padding: 0 0 1.3em 2em;
    margin: 0;
    position: relative;
}
.step-content1::before {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    background: #6ab5a5;
    border: solid 3px #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    box-shadow: 0 0 0 2px #6ab5a5;
}
.step-content1::after {
    content: "";
    display: block;
    height: calc(100% - 35px);
    border-left: dotted 5px #768888;
    position: absolute;
    top: 30px;
    left: 10px;
}
.step-title1 {
    font-weight: bold;
    font-size: 120%;
}
.step-label1 {
    color: #768888;
    font-weight: bold;
}
.step-label1::after {
    counter-increment:count;
    content:counter(count);
    position: relative;
    left: .3em;
}
.step-body1 {
    margin-top: .5em;
    padding: 0 0 1em;
    border-bottom: dotted 2px #ddd;
}
.step-wrap1 > :last-of-type::after {
    display: none;
}
/***ステップバーデザイン１***/

/***ボックス***/
.box_about {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5989cf;
    background: #c6e4ff;
    border-bottom: solid 6px #aac5de;
    border-radius: 9px;
}
.box_about p {
    font-size: 1.4rem;
    margin: 0; 
    padding: 0;
}
