@charset "UTF-8";


#section_03 .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_03 .content-block-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #7F8B46;
    flex-shrink: 0;
}


#section_03 .about-text {
    font-size: 1rem;
    position: relative;
}

#section_03 .about-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 116px;
    background: url('../../../../images/Vmap/section_bg_002.webp') no-repeat center / contain;
    transform: translate(10%, -88%);
    pointer-events: none;
}

#section_03 .aside-box {
    background: #00738B;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 30px;
}

@media screen and (max-width: 768px) {
    #section_03 .about-text::before {
        content: none;
    }

    #section_03 .aside-box {
        overflow: visible;
    }

    #section_03 .aside-box::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 180px;
        height: 83px;
        background: url('../../../../images/Vmap/section_bg_002.webp') no-repeat center / contain;
        transform: translate(0%, -55%);
        pointer-events: none;
    }
}