.doctor {
    --blue: #0076E5;
    --blue-navy: #0B45B4;
    --blue-tint: #E1EBFE;
    --border: #E4E4E5;
    --text: #383B42;
    --muted: #6B7280;
    background-color: #f4f5f7;
    padding: 80px 0 85px;
}

.section__desc {
    font-family: Hiragino Sans;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #383B42;
    text-align: center;
    margin: 20px 0 0;
}

.doctor__flow {
    display: flex;
    align-items: flex-end;
    gap: 73px;
    width: fit-content;
    max-width: 100%;
    margin: 40px auto 0;
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

@media (max-width: 1080px) {
    .doctor {
        padding-left: 20px;
        padding-right: 20px;
    }

    .doctor__flow {
        width: calc(100% + 20px);
        max-width: calc(100% + 20px);
        margin-left: 0;
        margin-right: -20px;
        padding-right: 20px;
    }
}

.doctor__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doctor__automation {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 45px;
    color: #fff;
    background: #0076E5;
    padding: 6px 0 9px;
}

.doctor__automation-image {
    display: block;
    width: 88px;
    height: auto;
}

.doctor__automation-label {
    font-family: Koburina Gothic StdN;
    font-weight: 600;
    font-size: 16px;
    line-height: calc(21 / 16);
    letter-spacing: 0;
    color: #fff;
}

.doctor__step-list {
    counter-reset: step;
    display: flex;
    gap: 24px;
    border: 1px solid #D0D5DD;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 40px;
}

.doctor__step {
    counter-increment: step;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.doctor__step-badge {
    order: 0;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    padding: 4px 18px;
    border-radius: 30px;
    background: #EAF1FB;
    color: var(--blue);
}

.doctor__step-badge::before {
    content: "STEP";
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 17.6px;
    letter-spacing: -0.01em;
}

.doctor__step-badge::after {
    content: counter(step, decimal-leading-zero);
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 17.6px;
    letter-spacing: -0.01em;
}

.doctor__step-image {
    order: 1;
    width: 173px;
    height: auto;
}

.doctor__step-title {
    order: 2;
    font-family: Koburina Gothic StdN;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #017EE5;
}

.doctor__step-desc {
    order: 3;
    font-family: Hiragino Sans;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #383B42;
    text-align: left;
}

.doctor__result {
    position: relative;
    flex: 0 0 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
}

.doctor__result::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 40px;
    background-image: url(../img/front-page/arrow-light-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.doctor__result-main {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(270.02deg, #0076E5 0.07%, #0096E7 89.05%);
}

.doctor__result-title {
    font-family: Koburina Gothic StdN;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFEB79;
    margin: 46px 0 0;
}

.doctor__result-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 78%;
    height: auto;
}

.doctor__result-desc {
    font-family: Koburina Gothic StdN;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    color: #0076E5;
}

.doctor__cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 56px;
    border-radius: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.doctor__cta-text {
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W6", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.18px;
    color: #fff;
    white-space: nowrap;
}

.doctor__cta-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.doctor__cta--orange {
    margin: 40px auto 0;
    background: linear-gradient(90deg, #ff9e30 0%, #ff7503 100%);
}

@media (hover: hover) and (pointer: fine) {
    .doctor__cta:hover {
        opacity: 0.9;
    }
}

@media (max-width: 960px) {
    .doctor__cta-text {
        font-size: 16px;
        letter-spacing: 0.16px;
    }
}