@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;700&display=swap');
.tablecont {
    font-family: sans-serif;
    margin: 70px 0;
}

.tablecont .title {
    width: 55%;
    padding: 7px 0;
    border: 2px solid #cd000e;
    font-family: 'Lora', serif;
    color: black;
    font-size: 4vw;
    margin: 10% 12%;
    justify-content: center;
    align-items: center;
    position: relative;
    display: flex;
    border-radius: 20px;
    font-weight: 500;
}

.title .icon {
    background-repeat: no-repeat;
    background-position: center;
    width: 30%;
    border: 2px solid #cd000e;
    position: absolute;
    border-radius: 50px;
    background-color: white;
    left: -20%;
}

.icon.gold {
    background-image: url(../img/keyword/goldicon.png);
    background-size: 75%;
}

.icon.watch {
    background-image: url(../img/keyword/watch.png);
    background-size: 100%;
}

.icon.location {
    background-image: url(../img/keyword/location.png);
    background-size: 140%;
}

.icon.handbag {
    background-image: url(../img/keyword/handbag.png);
    background-size: 120%;
}

.icon.diamond {
    background-image: url(../img/keyword/diamond.png);
    background-size: 95%;
}

.icon.platinum {
    background-image: url(../img/keyword/platinum.png);
    background-size: 120%;
}

.icon::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.tablefirstrow th {
    background: #cd000e;
    font-size: 4.5vw;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
    border: 1px solid #e6e1d9;
    padding: 2px;
}

.tablefirstrow th:nth-of-type(2) {
    width: 25vw;
}

.tablefirstrow th:first-child {
    width: 6vw;
}

.tablecont tbody tr td {
    border: 1px solid #e6e1d9;
    padding: 1vw;
    font-size: 4vw;
}

.tablecont tr td:first-child {
    background: #cd000e;
    font-size: 4vw;
    border: 1px solid #e6e1d9;
    color: #ffffff;
}

.tablecont tr td:first-child,
td:nth-of-type(2) {
    text-align: center;
}

.tablecont tr:nth-child(2n+2) {
    background: #ff919117
}