@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;

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

.phase-title {
    color: #fff;
    line-height: 150%;
    font-size: 100%;
    -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;

    min-height: 80px;
    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;
}

/* case  */
.case-box {
    border: 1px solid #0350a3;
    padding: 10px;
}

.case-box__flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

}

.case-box__flex li {
    width: 50%;
    padding-left: 1em;
    list-style-type: none;
}

.case-box__flex li::before {
    content: "";
    background-color: #787f87;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: -3px;
    margin-right: 10px;
}

/* テーブル */
table {
    border-collapse: collapse;
    width: 100%;
}

table thead th {
    background-color: #DAE8F5;
    padding: 10px;
    border: solid 2px #656565;
}

table tbody th,
table tbody td {
    padding: 10px;
    border: solid 2px #656565;
    text-align: center;
}

table .tbody-th {
    width: 15%;
    background: #DAE8F5;
}

table tbody tr td {
    width: calc(85% / 3);
}

/* 相談 */
.soudan-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.soudan-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 48%;
    padding: 10px;
}

.soudan-box dt {
    text-align: center;
    font-size: 110%;
    font-weight: bold;
    border: 2px solid #0350a3;
    border-radius: 50px;
    padding: 10px;
}

@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;
    }

    /* case  */
    .case-box__flex li {
        width: 100%;
    }

    /* テーブル */
    table thead th {
        padding: 5px;
        font-size: 85%;
    }

    table tbody th,
    table tbody td {
        padding: 10px;
    }

    table .tbody-th {
        width: 20%;
        font-size: 80%;
        padding: 2px;
    }
    table tbody tr td {
        width: calc(80% / 3);
        font-size: 85%;
        padding: 5px;
        text-align: left;
    }

    /* 相談 */
    .soudan-flex {
        flex-direction: column;
    }

    .soudan-box {
        width: 100%;
    }
}