.lp_about_section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: var(--sec-between) 20px;

}

.lp_about_inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp_about_bgBand {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200%;
    height: 250px;
    background: #F0F9FF;
    transform: translate(-50%, -50%) rotate(-8deg);
    z-index: 0;
}

.lp_about_imageWrap {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    width: 250px;
    height: 600px;
}

.lp_about_image {
    display: block;
    height: auto;
    object-fit: contain;
}

.lp_about_content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 420px;
}

.lp_about_title {
    margin: 0;
    color: var(--ink);
    font-size: var(--sec-ttl);
    font-weight: 700;
    line-height: 1.4;
}

.lp_about_line {
    width: 56px;
    height: 6px;
    margin: 15px 0;
    background: var(--brand);
}

.lp_about_text {
    margin: 0;
    color: var(--ink);
    font-size: var(--normal-txt);
    font-weight: 500;
    line-height: 1.9;
}

@media (min-width: 768px) {
    .lp_about_section {
        /* padding: 72px 24px; */
    }

    .lp_about_inner {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 56px;
        min-height: 360px;
    }

    .lp_about_bgBand {
        height: 200px;
        transform: translate(-50%, -50%) rotate(-8deg);
    }

    .lp_about_imageWrap {
        margin-bottom: 0;
    }

    .lp_about_image {
        width: 500px;
    }

    .lp_about_content {
        max-width: 430px;
    }

    .lp_about_title {
        font-size: var(--sec-ttl);
    }

    .lp_about_text {
        font-size: var(--normal-txt);
        line-height: 1.95;
    }
}

@media (max-width: 767px) {
    .lp_about_bgBand {
        height: 200px;
        transform: translate(-50%, -50%) rotate(-10deg);
    }

    .lp_about_title {
        font-size: var(--sec-ttl);
    }

    .lp_about_line {
        width: 52px;
        margin: 10px 0 12px;
    }

    .lp_about_text {
        font-size: var(--normal-txt);
        line-height: 1.8;
    }
}