@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: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-title {
    color: #fff;
    line-height: 150%;
    font-size: 90%;
    -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: 120px;
    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: center;
    column-gap: 40px;
}

.strategy-box01 {
    width: 65%;
}

.strategy-box02 {
    width: 35%;
    margin-top: 40px;
}

/*アウトプット*/
.output-top{
    height: 200px;
}

.output-below{
    height: 140px;
}


@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-box02 {
        width: 100%;
        margin-top: 0;
    }

    /*アウトプット*/
    .output-top{
        height: auto;
    }
    .output-below{
        height: auto;
    }
    

}