.col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0;
}

.calc-list {
    width: 50%;
    position: relative;
}

.calc-list::before {
    top: calc(50% - 3px);
}

.calc-list::after {
    top: calc(50% - -7px);
}

.calc-list::before,
.calc-list::after {
    content: "";
    position: absolute;
    right: -50px;
    width: 25px;
    height: 3px;
    background: #d862ba;
}

.calc-list .cont {
    letter-spacing: 0;
    line-height: 1.25;
    display: table;
    width: 100%;
    border: 2px solid #e3c8db;
    border-radius: 1px;
    box-sizing: border-box;
    margin-bottom: 28px;
    position: relative;
}

.calc-list .cont::before,
.calc-list .cont::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: calc(50% - 7.5px);
    width: 3px;
    height: 15px;
    background: #d862ba;
}

.calc-list .cont dt {
    display: table-cell;
    width: 75%;
    background: #e3c8db;
    padding: 7px 10px;
    vertical-align: middle;
    box-sizing: border-box;
}

.calc-list .cont dd {
    display: table-cell;
    width: 25%;
    text-align: center;
    padding: 4px 5px;
    vertical-align: middle;
    box-sizing: border-box;
    line-height: 1.166;
}

.calc-list .cont::after {
    transform: rotate(90deg);
}

.calc-list .cont:last-child::before,
.calc-list .cont:last-child::after {
    display: none;
}

.wrap-total {
    width: 50%;
    margin: auto 0 auto 116px;
    color: #b31e8d;
    position: relative;
}

.wrap-total .align-middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wrap-total .total {
    display: table;
    width: 100%;
    margin-bottom: 30px;
}

.wrap-total .total .stage-icon {
    display: table-cell;
    width: 112px;
    vertical-align: middle;
}

.wrap-total .total .score {
    display: table-cell;
    padding-left: 20px;
    vertical-align: middle;
    line-height: 1.2;
}

.wrap-total p {
    font-size: 25px;
}

.wrap-total p em {
    font-size: 37px;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {

    .col2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: stretch;
    }

    .calc-list {
        width: 100%;
        margin: 0;
        right: auto;
    }

    .calc-list::before,
    .calc-list::after {
        display: none;
    }

    .calc-list .cont {
        display: table;
        width: 100%;
        font-size: 14px;
        border: 2px solid #e3c8db;
        border-radius: 2px;
        box-sizing: border-box;
        margin-bottom: 28px;
        position: relative;
    }

    .calc-list .cont dt {
        display: table-cell;
        background: #e3c8db;
        width: auto;
        padding: 1px 10px;
        vertical-align: middle;
        box-sizing: border-box;
    }
    .calc-list .cont dd {
        display: table-cell;
        width: 48px;
        text-align: center;
        padding: 2px 6px;
        vertical-align: middle;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .calc-list .cont dd b em {
        font-size: 17px;
    }

    .calc-list .cont dt .txts {
        font-size: 12px;
    }

    .calc-list .cont::before, .calc-list .cont::after {
        content: "";
        position: absolute;
        bottom: -25px;
        left: calc(50% - 7.5px);
        width: 4px;
        height: 18px;
        background: #d862ba;
    }

    .calc-list .cont::after {
        transform: rotate(90deg);
    }
    
    .calc-list .cont:last-child::before,
    .calc-list .cont:last-child::after {
    display: inline;
    }

    .calc-list .cont:last-child::before {
        left: calc((50% - 3px) - 8px);
    }

    .calc-list .cont:last-child::after {
        transform: none;
        left: calc((50% - 3px) - 1px);
    }
    
    .wrap-total {
        display: table;
        margin: 0 auto 25px;
    }

    .wrap-total .align-middle {
        position: static;
        transform: none;
        text-align: center;
    }
    .wrap-total .total {
        margin-bottom: 0px;
    }

    .wrap-total .stage-icon {
        display: table-cell;
        vertical-align: bottom;
        padding: 0 10px;
    }

    .wrap-total .stage-icon img{
        min-width: 68px;
    }

    .wrap-total .total .score {
        display: table-cell;
        vertical-align: middle;
        font-weight: bold;
        color: #b31e8d;
        font-size: 14px;
        line-height: 0.6;
        text-align: left;
        padding-left:10px;
    }

    .wrap-total .score b {
        font-size: 30px;
        white-space: nowrap;
    }

    .wrap-total .score span {
        font-size: 14px;
    }
}