@charset "utf-8";
/* 活用事例 */
.case-top__wrapper {
    display: flex;
    flex-direction: column;
}

.case-top__wrapper dt {
    background-color: #3573b5;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.case-top__wrapper dd {
    padding: 10px 20px;
    border: solid 1px #656565;
    background-color: #fff;
}

.case-top__box {
    display: flex;
    column-gap: 10px;
}

.case-top__box01 {
    text-align: center;
    background-color: #D5DFF0;
    padding: 10px;
}

.case-top__box02 {
    color: #fff;
    text-align: center;
    font-weight: bold;
    background-color: #2C69A9;
    padding: 10px;
}

.case-arrow {
    display: inline-block;
    margin-inline: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-top: 20px solid #555555;
    border-bottom: 0;
}

/* 活用事例テーブル */
.case-table {
    border-collapse: collapse;
    width: 100%;
}

.case-table thead th {
    background-color: #3573b5;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
}

.case-table tbody th,
.case-table tbody td {
    padding: 10px;
    border: solid 1px #656565;
    background-color: #fff;
}

.case-table .tbody-th {
    width: 15%;
    background: #fff;
    position: relative;
    background: #eee;
}

.case-table tbody tr td:nth-of-type(1) {
    text-align: center;
    width: 20%;
}

.case-table tbody tr td:nth-of-type(2) {
    width: 55%;
}

/* 流れ */
.flow-box {
    border: 1px solid #656565;
    padding: 10px;
}

.flow-box.--01 {
    height: 300px;
}

.flow-box.--02 {
    height: 145px;
}

.flow-box+.flow-box {
    margin-top: 10px;
}

/* フェーズ */
.phase-title__first {
    color: #fff;
    line-height: 150%;
    font-size: 100%;
    font-weight: bold;
    -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;
    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;
}

@media screen and (max-width: 769px) {
    /* 活用事例 */
    .case-top__box {
        flex-direction: column;
        row-gap: 20px;
    }

    .case-arrow {
        border-right: 20px solid transparent;
        border-left: 20px solid transparent;
        border-top: 10px solid #555555;
    }

    .case-table {
        width: 100%;
        font-size: 90%;
    }

    .case-table .tbody-th {
    width: 20%;
    }
    
    .case-table tbody tr td:nth-of-type(1) {
        padding:5px;
        width: 25%;
    }

    .case-table tbody tr td:nth-of-type(2) {
        width: 55%;
        padding:5px;
    }

    /* 流れ */
    .flow-box.--01 {
        height: auto;
    }

    .flow-box.--02 {
        height: auto;
    }

    .flow-box+.flow-box {
        margin-top: 5px;
    }

    /* フェーズ */
    .phase-title__first {
        font-size: 100%;
        height: auto;
    }

    .phase-title {
        font-size: 100%;
        height: auto;
    }

}