.PgContact  ul {
    display: flex;
    justify-content: space-between;
}

.PgContact  ul li {
    width: 31%;
    border-radius: 5px;
    box-shadow: 1px 1px 3px 0 #aaa;
    padding: 16px;
    box-sizing: border-box;
    position: relative;
}

.PgContact  ul li h4 {
    text-align: center;
    padding: 0.5em 0;
    background-color: #012c40;
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

.PgContact  ul li p {
    margin: 0;
    font-size: 15px;
}

.PgContact  ul li>a {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    background-color: rgba(173, 0, 24, 0.8);
    padding: 4px 0;
    color: white;
    text-align: center;
    border-radius: 3px;
}

.PgContact  ul li>p.tel {
    font-size: 2rem;
    font-weight: bold;
    margin: 8px 0;
}

@media only screen and (max-width:768px) {
    .PgContact  ul {
        display: block;
    }

    .PgContact  ul li {
        width: 100%;
        margin-bottom: 32px;
    }

    .PgContact  ul li>a {
        position: static;
        display: block;
        margin-top: 16px;
        width: 100%;
    }
}