.step__items{
    display: flex;
    flex-direction: column;
    gap: 76px;
    max-width: 900px;
    margin-left: auto;
    margin-top: 50px;
}

.step__item{
    display: flex;
    flex-direction: column;
    border: 2px solid #1B1E49;
    border-radius: 10px;
    position: relative;
}

.step__item:nth-of-type(2){
    border-color: #E0432F;
}

.step__item:nth-of-type(3){
    border-color: #B81C22;
}

.step__item::before{
    position: absolute;
    content: "";
    background: url(../img/pc/interview/sec5_item_arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 44px;
    height: 27px;
    left: 50%;
    bottom: -26px;
    transform: translate(-50%,100%);
}

.step__item:nth-last-of-type(1)::before{
    display: none;
}

.step__title{
    font-weight: 700;
    font-size: 24px;
    line-height: 64px;
    letter-spacing: 0.01em;
    color: #fff;
    background: #1B1E49;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    padding-left: 40px;
}

.step__item:nth-of-type(2) .step__title{
    background: #E0432F;
}

.step__item:nth-of-type(3) .step__title{
    background: #B81C22;
}

.step__description{
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 200%;
    letter-spacing: 0.01em;
    color: #1B1E49;
    padding: 40px;

}

@media (max-width : 1400px) {
    .step__items{
        gap: calc((76 / 1400) * 100vw);
        max-width: calc((900 / 1400) * 100vw);
        margin-top: calc((50 / 1400) * 100vw);
    }
    .step__item{
        border: calc((2 / 1400) * 100vw) solid #1B1E49;
        border-radius: calc((10 / 1400) * 100vw);
    }
    .step__item::before{
        width: calc((44 / 1400) * 100vw);
        height: calc((27 / 1400) * 100vw);
        bottom: calc((-26 / 1400) * 100vw);
    }
    .step__title{
        font-size: calc((24 / 1400) * 100vw);
        line-height: calc((64 / 1400) * 100vw);
        border-top-left-radius: calc((9 / 1400) * 100vw);
        border-top-right-radius: calc((9 / 1400) * 100vw);
        padding-left: calc((40 / 1400) * 100vw);
    }
    .step__description{
        font-size: calc((18 / 1400) * 100vw);
        padding: calc((40 / 1400) * 100vw);
    }
}

@media (max-width : 768px) {
    .step__items{
        max-width: 100%;
        margin-top: 30px;
        gap: 60px;
    }

    .step__title{
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0.01em;
    padding: 10px 20px;
    }

    .step__description{
        font-weight: 400;
        font-size: 14px;
        line-height: 200%;
        letter-spacing: 0.01em;
        padding: 20px;

    }

    .step__item::before{
        width: 60px;
        height: 36px;
        bottom: -15px;
    }
}

.step__title02{
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 0.01em;
    background: #FFF1E7;
    color: #B81C22;
    padding: 20px 0;
}

.step__title--inner{
    max-width: calc(1310px);
    width: 100%;
    margin: 0px auto;
    padding: 0px 15px;
}

.step__title02 span{
    background: #B81C22;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    margin: 0 10px;
    padding: 0 5px;
}

@media screen and (max-width: 768px) {
    .step__title02{
        font-size: 20px;
        line-height: 140%;
    }
    
    .step__title--inner{
        padding: 0px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .step__title02 span{
        background: #B81C22;
        color: #fff;
        display: inline-block;
        border-radius: 10px;
        margin: 0;
        padding: 5px 12px;
        font-size: 24px;
        width: fit-content;
    }
}

.skill__icon.sp{
    display: none;
}

@media screen and (max-width: 768px) {
    .skill__icon.sp{
        display: flex;
    }
}