@charset "utf-8";

/* 営業スタイル */
.strategy-flex {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.strategy-box02 {
    width: 60%;
}

.strategy-box02 dt {
    font-size: 120%;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #0350a3;
}

/* 矢印 */
.suggestion-arrow__right {
    width: 2%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.suggestion-arrow__right-content {
    height: 80px;
    width: 100%;
    -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    background:#b30000;;

}

/* flow */
.flow-step{
    color: #fff;
    font-weight: bold;
    background-color: #595959;
    padding: 10px;
    margin-bottom: 10px;
}
.flow-head{
    padding: 10px;
    background-color: #0350a3;
    color: #fff;
    height: 158px;
}
.flow-bottom{
    margin-top: 10px;
}

@media screen and (max-width: 769px) {

    /* 営業スタイル */
    .strategy-flex {
        row-gap: 20px;
        flex-direction: column;
    }

    .strategy-box02 {
        width: 100%;
    }

    /* 矢印 */
    .suggestion-arrow__right {
        width: 100%;
        margin-block: 10px;
    }

    .suggestion-arrow__right-content {
        height: 5vw;
        width: 30%;
        -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);

    }
    .flow-head{
        height: auto;
    }
    

}