@charset "UTF-8";


#section_05 .content-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00738B;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 3rem;
}

#section_05 .eval-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 40px;
    list-style: none;
}

#section_05 .eval-card {
    background: #fff;
    border: 1px solid rgba(26, 26, 46, 0.06);
    padding: 36px 32px;
    position: relative;
    /* border-radius: 30px; */
}

#section_05 .eval-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 133px;
    background: url('../../../../images/Vmap/section_bg_004.webp') no-repeat center / contain;
    transform: translate(15%, -50%);
    pointer-events: none;
    z-index: 1;
}

#section_05 .eval-step-num {
    font-size: 4rem;
    font-weight: 500;
    color: #FFD600;
    opacity: 0.15;
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

#section_05 .eval-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00738B;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

#section_05 .eval-desc {
    font-size: 1rem;
    line-height: 1.8;
}

#section_05 .content-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00738B;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#section_05 .content-block-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #A9CD42;
    flex-shrink: 0;
}

#section_05 .highlight-box {
    background: linear-gradient(135deg, #50ABBD 0%, #00738B 100%);
    border-color: #00738B;
    color: #fff;
    padding: 36px 44px;
    margin-top: 20px;
    position: relative;
    border-radius: 30px;
}

#section_05 .highlight-box-inner {
    display: flex;
    gap: 3rem;
    justify-content: space-evenly;
}

#section_05 .small-no {
    font-size: 0.7rem;
    color: #FFD600;
    margin-bottom: 8px;
}

  @media (max-width: 1024px) {
    #section_05 .eval-steps { grid-template-columns: 1fr; }
  }

@media (max-width: 768px) {
  #section_05 .highlight-box-inner {
    flex-direction: column;
    gap: 1rem;
  }

}