/* CSS Document */
/********************
.process
********************/
.process{
    text-align: center;
    counter-reset: number;
}
.process .sectiontitle-line{
    text-align: center;
    line-height: 1.5;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    display: inline-block;
    padding: 0 1em;
    margin-bottom: 3em;
}
.process .sectiontitle-line span{
    color: #15c021;
}
.process .process_item {
    text-align: left;
    margin-bottom: 2em;
    padding: 20px;
    background: #f7f7f7;
    width: 100%;
}
.process .process_item .viewmore_wrap{
    text-align: right;
    line-height: 1.3;
    margin-top: 1em;
}
.process .process_item .viewmore{
    border-bottom: 1px solid #000;
    display: inline-block;
}
.process .process_item .title_wrap span{
    font-weight: normal;
    display: block;
    color: #15c021;
}
.process .process_item .number{
    line-height: 1;
    font-style: oblique;
    margin-right: 1em;
}
.process .process_item .number::after{
    counter-increment: number;
    content:"#" counter(number, decimal-leading-zero);
    display: block;
    font-size: 300%;
}
.process .process_item h3{
    font-size: 2rem;
}
.process .process_item .flex{
    align-items: flex-end;
    margin-bottom: 1em;
}
.process .process_item .flex{
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.process .process_caption p:not(:last-of-type){
    margin-bottom: 1em;
}
@media screen and (min-width:768px){
    .process .process_list{
        /*-ms-grid-columns: auto;
        grid-template-columns: auto;
        grid-column-gap: auto;
        grid-row-gap: 2em;*/
    }
    .process .process_list{
        position: relative;
        padding-bottom: 50px;
        align-items: stretch;
    }
    .process .process_list::before{
        content: "";
        position: absolute;
        left: 50%;
        top: 0px;
        margin-left: -1px;
        border-left: 2px dashed #111;
        height: 100%;
    }
    .process .process_list::after{
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0 10px;
        border-color: #111 transparent transparent transparent;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }
    .process .process_list .process_item{
        width: 48%;
        padding: 20px;
    }
    .process .process_list .process_item:not(:last-child){
        margin-bottom: -100px;
    }
    .process .process_list .process_item{
    }
    .process .process_list .process_item:nth-child(2n){
        margin-left: auto;
    }
}
