@charset "UTF-8";

#section_02 .section_02-content-flex {
    display: flex;
    gap: 2rem;
}

#section_02 .section_02-content-flex .left-content {
    width: calc(70% - 2rem);
    flex-shrink: 0;
}

#section_02 .section_02-content-flex .right-content {
    width: 30%;
    flex-shrink: 0;
}

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


#section_02 .about-text {
    font-size: 1rem;
}

#section_02 .about-text p+p {
    margin-top: 20px;
}

#section_02 .aside-box {
    background: #00738B;
    padding: 36px 32px;
    position: relative;
    overflow: visible;
    border-radius: 30px;
}

#section_02 .aside-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 20px;
    width: 283px;
    height: 254px;
    background: url('../../../../images/Vmap/section_bg_001.webp') no-repeat center / contain;
    transform: translate(10%, -65%);
    z-index: 1;
    pointer-events: none;
}

/* #section_02 .aside-box::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(200, 146, 42, 0.2);
    border-radius: 50%;
    z-index: 1;
} */

#section_02 .aside-box > * {
    position: relative;
    z-index: 2;
}

#section_02 .aside-box-label {
    font-size: 0.8rem;
    color: #FFD600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
    /* opacity removed for contrast */
}

/* #section_02 .aside-box-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
} */

#section_02 .aside-box .aside-content {
    margin-top: 15px;
    padding-top: 24px;
    border-top: 1px solid rgba(200, 146, 42, 0.2);
    color: #fff;
}

#section_02 .aside-box .aside-content:nth-child(1) {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

#section_02 .aside-box .aside-content p {
    color: #fff;
    margin-bottom: 0;
    word-break: break-all;
}

#section_02 .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 20px;
}

#section_02 .category-card {
    background: #fff;
    border: 1px solid rgba(26, 26, 46, 0.08);
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
    height: 155px;
    border-radius: 0 30px 30px 0;
}

#section_02 .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #FFD600;
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: bottom;
}

#section_02 .category-card:hover {
    box-shadow: 0 8px 32px rgba(26, 45, 90, 0.1);
    transform: translateY(-2px);
}

#section_02 .category-card:hover::before {
    transform: scaleY(1);
}

#section_02 .category-num {
    font-size: 0.8rem;
    color:#FFD600;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

#section_02 .category-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #00738B;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 992px) {

   #section_02 .aside-box::after {

        width: 150px;
        height: 135px;
   }
}

@media screen and (max-width: 768px) {

    #section_02 .section_02-content-flex {
        flex-direction: column;
    }

    #section_02 .section_02-content-flex .left-content {
        width: 100%;
    }

    #section_02 .section_02-content-flex .right-content {
        width: 100%;
        overflow: hidden;
    }

    #section_02 .aside-box {
        overflow: hidden;
    }

    #section_02 .aside-box::after {
        content: none;
    }

}