@charset "UTF-8";
/*----------
	engineer/support
----------*/

.flow-content__inner-box {
    padding-top: 15px;
}
.flow-content__inner {
    padding-bottom: 20px;
    margin-bottom: 70px;
    display: block;
    position: relative;
}
.flow-content__inner::after {
    border: 18px solid transparent;
    border-left: 20px solid #E7EDED;
    width: 0;
    height: 0;
    position: absolute;
    content: ' ';
    bottom: -55px;
    left: 60px;
    transform: rotate(90deg);
}
.flow-content__inner:last-child::after {
    display: none;
}
.flow-content__image {
    width: 200px;
    margin: 0 auto 40px;
}
.flow-content__image img {
    width: 100%;
}
.flow-content__txt {
    flex: 1;
}
.flow-content__txt dl {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.flow-content__txt dt {
    margin-right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    font-size: 2.3rem;
    color: white;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D80C17;
}
.flow-content__txt dt:after {
	width: 12px;
	height: 12px;
    border-radius: 3px;
    background-color: #F18C00;
	position: absolute;
	bottom: -5px;
	right: -5px;
	content: "";
}
.flow-content__txt dd {
    flex: 1;
    font-size: 2.5rem;
    font-weight: bold;
}
.flow-content .c-button {
    margin: 0 auto;
    width: 295px;
}


@media (max-width: 767px) {
    .flow-content__inner::after {
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (min-width: 768px) {
    .flow-content__inner {
        margin-bottom: 60px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .flow-content__image {
        width: 14%;
        margin: 0 40px 0 0;
    }
}
















