@charset "utf-8";
/* 概要 */
.overview-box{
    display: flex;
    justify-content: flex-end;
    column-gap: 40px;
    padding: 10px;
    margin-top: 20px;
    width: 100%;
    border: 2px solid #0350a3;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.overview-box__image{
    width: 55%;
    top: 16px;
    left: 20px;
    position: absolute;
    z-index: 1;
}

.overview-box__right{
    width: 40%;
}

.overview-box__right dt{
    color: #fff;
    font-weight: bold;
    text-align: center;
    background-color: #3573b5;
    padding: 10px;
}

/* ご相談内容 */
.check-title{
    font-size: 120%;
    text-decoration: underline;
}

/* フェーズ */
.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;
}


/* テーブル */
table {
    /* border-collapse: collapse; */
    width: 100%;
}

table thead th {
    background-color: #656565;
    color: #fff;
    padding: 10px;
}

table thead th:nth-of-type(1) {
    background-color: transparent;
    color: #fff;
}

table tbody th,
table tbody td {
    padding: 10px;
    border: solid 1px #656565;
}

table .tbody-th {
    width: 20%;
    color: #fff;
    background: #3573b5;
}

table tbody tr td:nth-of-type(1) {
    width: 20%;
}

table tbody tr td:nth-of-type(2) {
    width: 10%;
}

table tbody tr td:nth-of-type(3) {
    width: 50%;
}

@media screen and (max-width: 769px) {
    /* 概要 */
    .overview-box{
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
        border: none;
        margin-top:0;
    }
    
    .overview-box__image{
        width: 100%;
        top: unset;
        left: unset;
        position: relative;
        z-index: 1;
    }
    
    .overview-box__right{
        width: 100%;
    }

    /* フェーズ */
    .phase-section {
        width: 100%;
    }

    .phase-title__first {
        font-size: 100%;
        height: auto;
    }

    .phase-title {
        font-size: 100%;
        height: auto;
    }

    /* テーブル */
    table thead th {
        padding: 5px;
        font-size: 85%;
    }
    table tbody th,
    table tbody td {
        padding: 10px;
        border: solid 1px #656565;
    }

    table .tbody-th {
        width: 25%;
        color: #fff;
        background: #3573b5;
        font-size: 85%;
    }

    table tbody tr td:nth-of-type(1) {
        width: 25%;
        font-size: 90%;
    }

    table tbody tr td:nth-of-type(2) {
        width: 20%;
        font-size: 80%;
        padding: 4px;
        text-align: center;
    }

    table tbody tr td:nth-of-type(3) {
        width: 30%;
        font-size: 90%;
    }

}