@charset "UTF-8";

.txt-box{
	position: relative;
    margin: 0.8em 0.3em;
    padding: 0.5em 0.8em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.txt-box > p {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.txt-box > dl {
    margin: 2em 0.5em;
}

dd {
    margin-left: 0;
}

.flow > li {
    position: relative;
}
.flow > li:not(:last-child) {
    margin-bottom: 40px;
}
/*.flow > li:not(:first-child)::before {
    content: "";
    height: 60px;
    display: block;
    border-left: 4px dotted #e5e5e5;
    position: absolute;
    top: -40px;
    left: -webkit-calc(10% + 30px - 2px);
    left: calc(10% + 30px - 2px);
    z-index: 10;
}*/
.flow > li dl {
    width: 100%;
    padding: 20px 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid rgb(107,144,219);
    border-radius: 10px;
    position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
    border-width: 22px;
    border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child) dl::after {
    border-width: 20px;
    border-top-color: #fff;
}
.flow > li dl dt {
    font-size: 20px;
    font-weight: 600;
    margin-right: 2vw;
    text-align: center;
}
.flow > li dl dt span{
    color: rgb(107,144,219);
    margin-right: 3pt;
}
.flow > li dl dt .icon {
    font-size: 12px;
    color: #fff;
    background: rgb(107,144,219);
    background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
    background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
    padding: 5px 10px;
    margin-bottom: 10px;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 100;
}

/* 767px以下 */
@media (max-width: 767px) {

    .txt-box > dl {
        margin: 2em 0.5em 0.3em;
    }
    
    .flow > li dl {
        padding: 10px 10px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
    .flow > li dl dt {
        text-align: left;
    }
    
}

/* 768px～*/
@media (min-width: 768px) {
    .flow > li dl {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .flow > li dl dt {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    }
    
}

/* 768px～991px 750px */
@media (min-width: 768px) and (max-width: 991px) {
    

}



/* 992px～1199px 970px */
@media (min-width: 992px) and (max-width: 1199px) {


}



/* 1200px以上 1170px*/
@media (min-width: 1200px) {

}
