.kv__area-insertion {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.kv__area-insertion--bg {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    background: #212435;
    height: calc(tan(60deg)* 16vw / 2);
    width: 32vw;
    clip-path: polygon(0% 0, 0% 100%, 100% 0%);
    display:none;
}

@media screen and (min-width: 1025px) {
    .kv__area-insertion--bg {
        height: calc(tan(60deg)* 180px / 2);
        width: 320px;
    }
}

.kv__area-insertion--text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4vw;
    color: #ffffff;
        padding: 1.5% 1%;
    width: 30vw;
    font-weight: bold;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    z-index: 999;
    text-align:center;
    background: #b10e0e;
    margin: 10px;
        line-height: 1;
}

@media screen and (min-width: 1025px) {
    .kv__area-insertion--text {
    padding: 15px 10px;
        font-size: 45px;
    max-width: 300px;
    width: 100%;
    }
}


#key-visual {
    position: relative;
}

@media screen and (min-width: 1025px) {
    #key-visual {
        background: none;
        background-color: #f1f1f1;
        position: relative;
    }
}


#first-catch {
    /* max-width: 1200px; */
    margin: 0 auto;
    position: relative;
}

.first-catch-bg {
    margin: -24px auto;
    position: absolute;
    top: 0;
    right: 0;
    background: #b4a978;
    height: 52px;
    width: 252px;
    border-bottom-left-radius: 24px; /* ここで左下を角丸に */
}

@media screen and (min-width: 1025px) {
    .first-catch-bg {
        margin: 0 auto;
    }
}

.first-catch-txt {
    position: absolute;
    top: 0;
    right: 0;
    width: 252px;
    font-size: 24px;
    color: #ffffff;
    padding: 8px 24px;
    font-weight: bold;
    font-style: italic;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    z-index: 999;
    text-align: center;
    margin: -24px auto;
}

@media screen and (min-width: 1025px) {
    .first-catch-txt {
        margin: 0 auto;
    }
}


.ranking-box{
    overflow:hidden;
    border-radius: 16px;
}


#item_1_client{
 margin:24px 0 0 0;   
}
@media screen and (min-width: 1025px) {
#item_1_client{
 margin:0 0 0 0;   
}
}
    
.table-title-class {
    position: relative;
    background: #df0e0e;
    color: #fff;
    font-size: 24px;
    border-radius: 12px;
    padding: 10px;
    max-width: 360px;
    margin: 24px auto;
    text-align: center;
}

.table-title-class::after {
    content: '';
    position: absolute;
    bottom: -40px; /* 矢印の位置を調整 */
    left: 50%;
    transform: translateX(-50%);
    border-width: 24px;
    border-style: solid;
    border-color: #df0e0e transparent transparent transparent; /* 上に向かって三角形を描く */
}