/* プログレスインジケーター共通CSS */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 24px 0;
    gap: 0;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}
.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    transition: background 0.2s;
}
.progress-circle i {
    z-index: 10;
}
.progress-step.active .progress-circle {
    background: #41a8cc;
}
.progress-label {
    font-size: 1rem;
    color: #888;
    font-weight: normal;
    white-space: nowrap;
}
.progress-step.active .progress-label {
    color: #222;
    font-weight: bold;
}
.progress-bar {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #dddddd;
    z-index: 0;
    transform: translateX(0);
}
.progress-step:not(:last-child) .progress-bar {
    display: block;
}
.progress-step.active ~ .progress-step .progress-bar {
    background: #dddddd;
}
.progress-step.active .progress-bar {
    background: #41a8cc;
}
.progress-step:not(:last-child) .progress-bar {
    right: -50%;
    left: 50%;
    width: 100%;
}
.progress-label-mobile {
    display: none;
}
@media (min-width: 600px) {
    .progress-label {
        display: block;
    }
}
@media (max-width: 600px) {
    .progress-label {
        display: none;
    }
}