h3.blueBgSquare{
    position: relative;
    font-size: 120%;
    margin-bottom: 20px;
}

h3.blueBgSquare span{
    padding-left: 20px;
}

p.ImgOnlyStyle{
    margin-bottom: 20px;
}

h3.blueBgSquare span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #0085CE;
}

tr td:nth-child(1){
    padding-left: 4%;
}

tr td:nth-child(2){
    text-align: center;
}


tr td:nth-child(3){
    padding-left: 4%;
}

tr.deepColour th{
    background-color: #505050;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

tr.deepColour th:first-child{
    width: 20%;
}

tr.deepColour th:first-child(2){
    width: 15%;
}

tr.deepColour th:last-child{
    width: 65%;
}

tr.lightGray td{
    background-color: #ECECEC;
}

tr.darkGray td{
    background-color: #CFCFCF;
}

.activity{
    background: #fff;
    border: 1px solid #245d5e;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px !important;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 20px;
}

.activity dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #245d5e;
}

.activity dl dt{
    color: #245d5e !important;
    font-size: 18px;
    padding-left: 0 !important;
    margin-bottom: 0;
    background: transparent !important;
    font-weight: bold;
}

.activity dl dd{
    font-size: 45px;
    color: #245d5e;
    font-weight: bold;
}

.activity div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #245d5e;
}

.activity div span {
    margin-top: 5px;
    font-weight: bold;
    font-size: 90%;
}

.activity div img{
    min-width: 70px;
    min-height: 70px;
}


.imgSp{
    display: none;
}

@media screen and (max-width: 994px) {
    tr td:nth-child(1),
    tr td:nth-child(3){
        padding-left: 15px;
    }

    .activity{
        padding: 20px !important;
    }

    .activity dl dd{
        font-size: 40px;
    }

}

@media screen and (max-width: 767px) {
    .imgSp{
        display: block;
    }

    .imgPc{
        display: none;
    }

    tr.deepColour th:nth-child(2){
        width: 20%;
    }

    tr.deepColour th:last-child{
        width: 60%;
    }
    
    .activity div span{
        font-size: 90%;
    }
    .activity dl dd {
        font-size: 35px;
    }
}

@media screen and (max-width: 579px){
    tr td:nth-child(1),
    tr td:nth-child(3){
        padding-left: 10px;
    }

    .activity{
        flex-direction: column;
        gap: 10px;
    }
    
    .activity dl dt{
        font-size: 14px;
    }

    .activity dl dd {
        font-size: 30px;
    }
    
    .activity div span {
        margin-top: 5px;
    }


}