
.c_flow_step {
    max-width: 920px;
    margin: 0 auto;
    counter-reset: tmnt03_st;
    margin-bottom: 50px;
}

.c_flow_step > li {
    box-shadow: 0px 3px 0px #0A2771;
    padding: 30px;
    text-align: left;
    position: relative;
    display: flex;
    align-items: flex-start;
    counter-increment: tmnt03_st;
}

.c_flow_step > li:not(:last-child) {
    margin-bottom: 25px;
}

.c_flow_step > li:not(:last-child):after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: solid 8px;
    border-color: #A30119 #A30119 transparent transparent;
    bottom: -15px;
    left: 50%;
    margin-left: -8px;
    transform: rotate(135deg);
}

.c_flow_step > li > .t {
    width: 290px;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 400;
    padding-left: 50px;
    position: relative;
}

.c_flow_step > li > .t:before {
    content: '0' counter(tmnt03_st);
    font-family: optima, minerva-modern, sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 2rem;
    color: #A30119;
    font-style: italic;
    position: absolute;
    left: 0px;
    line-height: 1;
    top: -6px;
}

.c_flow_step > li > p, .c_flow_step > li > .p {
    width: calc(100% - 310px);
    max-width: 550px;
    line-height: 2;
}

@media (max-width: 992px) {
    .c_flow_step > li{
        flex-direction: column;
        padding: 15px;
    }
    .c_flow_step > li > p, .c_flow_step > li > .p{
        width: auto;
        padding-top: 10px;
        padding-left: 50px;
    }
}