.content-step {
    display: flex;
    align-items: flex-start;
    height: 78px;
}

.step-item {
    display: flex;
    width: 64px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
}

.step-item-icon {
    width: 40px;
    height: 40px;
    background-color: #A4A4A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.step-item.active .step-item-icon {
    background-color: #1769F4;
}

.step-item.passed .step-item-icon {
    background-color: #3B4043;
}

.step-item-number {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.688px; /* 179.302% */
}

.step-item-title {
    color: #9F9F9F;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    position: absolute;
    bottom: -40px;
    min-width: 100px;
}

.step-item.active .step-item-title {
    color: #1769F4;
}

.step-item.passed .step-item-title {
    color: #2D3133;
}

.step-spacer {
    display: flex;
    width: 120px;
    padding: 20px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.step-spacer svg {
    width: 120px;
    height: 2px;
}

.content-step-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: -16px;
    display: none;
}

.step-item-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(#1769F4 calc(var(--progress, 0) * 1turn), transparent 0turn);
    --progress: 0.33;
}

.step-item-mobile::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.step-item-title-mobile {
    color: #2D3133;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}

.step-item-mobile-icon {
    width: 100%;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: absolute;
    z-index: 2;
    top: 10px;
}

.step-item-mobile-current {
    color: #1769F4;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    width: 9px;
    height: 20px;
    transform: rotate(-45deg);
}

.step-item-mobile-spacer {
    width: 1px;
    height: 28px;
    background-color: #9F9F9F;
    margin-left: 5px;
}

.step-item-mobile-total {
    color: #9F9F9F;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 200% */
    margin-left: 5px;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .content-step {
        display: none;
    }

    .content-step-mobile {
        display: flex;
    }
} 