@charset "utf-8";

/* フェーズ */
.phase-title__first {
    color: #fff;
    line-height: 150%;
    font-size: 100%;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    background-color: #0350a3;
    position: relative;

    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-title {
    color: #fff;
    line-height: 150%;
    font-size: 95%;
    -webkit-clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 3% 50%);
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 3% 50%);
    background-color: #0350a3;
    position: relative;

    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-section {
    display: flex;
    flex-direction: column;
}

.phase-section dd {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 営業スタイル */
.strategy-flex {
    display: flex;
    align-items: stretch;
    column-gap: 20px;
}

.strategy-box01 {
    width: 40%;
}

.strategy-box01 dt {
    font-size: 120%;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #5fbbf0;
}

.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: 5%;
    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: #969696;

}

@media screen and (max-width: 769px) {

    /* フェーズ */
    .phase-section {
        width: 100%;
    }

    .phase-title__first {
        font-size: 100%;
        height: auto;
    }

    .phase-title {
        font-size: 100%;
        height: auto;
    }

    /* 営業スタイル */
    .strategy-flex {
        row-gap: 20px;
        flex-direction: column;
    }

    .strategy-box01 {
        width: 100%;
    }

    .strategy-box01 img {
        width: 50%;
        margin: 0 auto;
    }

    .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%);

    }

}