.section-p {
    padding: 80px 20px;
}

.text-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1.2;
    text-align: center;
}

.text-header .subhead {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
}

.text-header .caption {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #4b4b4b;
    white-space: pre-line;
}

.text-header .head {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--point-color);
}

.text-header .desc {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
}

.text-list {
    padding-top: 20px;
    line-height: 1.4;
}

.text-item {
    position: relative;
    padding: 10px 0 0 30px;
    font-size: 2rem;
}

.section-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.section-intro .text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-intro .img-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section-intro .img-content .img-item {
    background-color: #fbf9f6;
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.4;
}

.section-intro .img-content .img-item > b {
    font-size: 2.2rem;
    font-weight: 600;
}

/* section-intro 사이드 이미지 */
.section-intro--side-img .img-content {
    padding: 20px;
}

.section-intro--side-img .img-content > img {
    max-width: 40%;
}

.section-intro--side-img .img-content:last-child {
    text-align: right;
}

/* section-intro 원형 */
.section-intro--circle .circle-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro--circle .circle-item {
    aspect-ratio: 1 / 1;
    border: 1.2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 270px;
    background-color: #fff;
}

.section-intro--circle .circle-item .head {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.section-intro--circle .circle-item .head::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.section-intro--circle .circle-item .desc {
    padding-top: 25px;
    font-size: 1.5rem;
}

.section-effects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('../images/lasbia-sec2-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.section-effects.white-bg {
    background-image: none;
    background-color: #fff;
}

.section-effects .text-header .subhead {
    font-size: 2rem;
    color: #fff;
}

.section-effects .text-header .head {
    color: #fff;
}

.section-effects .text-header .desc {
    color: #fff;
}

.section-effects.white-bg .text-header .subhead {
    color: var(--primary-color);
}

.section-effects.white-bg .text-header .head {
    color: var(--point-color);
}

.section-effects.white-bg .text-header .desc {
    color: #111;
}

.section-effects .text-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    color: #111;
}

.section-effects .text-content .text-item {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 1.7rem;
    font-weight: 500;
    background-color: #fff;
}

.section-effects .text-content .text-item:nth-last-child(-n+2) {
    grid-column: span 2;
}

.section-effects .grid-1 {
    grid-template-columns: 1fr;
}

.section-effects .grid-1 .text-item:nth-last-child(-n+2) {
    grid-column: auto;
}

.section-effects .grid-1 .text-item {
    min-width: 260px;
}

/* circle contents 변형 */
.section-effects .circle-content {
    margin: 0 auto;
}

.section-effects .circle-content .circle-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #fff;
}

.section-effects .circle-content .arrow {
    padding: 10px;
    text-align: center;
}

.section-effects .circle-content .arrow > img {
    transform: rotate(90deg);
}

/* step 변형 */
.section-effects .step-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 18px;
}

.section-effects .step-content .text-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    color: #fff;
}

.section-effects .text-item img,
.section-effects .text-item svg {
    height: 52px;
}

.section-effects .step-number-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 32px;
    margin-bottom: 12px;
}

.section-effects .step-badge {
    width: 26px;
    height: 26px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-effects .step-title {
    font-size: 18px;
    font-weight: 700;
}

.section-effects .step-desc {
    min-height: 60px;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #fff;
    word-break: keep-all;
    text-align: center;
}

/* number 변형 */
.section-effects .number-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-effects .number-content .text-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: left;
}

.section-effects .number-content .text-item .num {
    flex-shrink: 0;
    width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 700;
}

.section-features {
    position: relative;
    background: url('../images/v-plasty-sec4-bg.jpg') no-repeat center / cover;
}

.section-features .img-content {
    padding: 50px 50px 50px 0;
}

.section-features .text-content {
    padding: 20px;
}

.section-features .text-header {
    text-align: left;
}

.section-features .text-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 20px;
    height: 20px;
    background-image: url('../images/lasbia-sec3-list.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.section-target {
    position: relative;
    overflow: hidden;
}

.section-target .img-content {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-target .img-content > img {
    height: 30%;
}

.section-target .text-content {
    position: relative;
    margin: 100px auto 50px;
    padding: 30px;
    max-width: 90%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-target .text-content .text-header {
    text-align: center;
}

.section-target .text-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 20px;
    height: 20px;
    background-image: url('../images/lasbia-sec4-list.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.section-target .text-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 20px;
    border-radius: 16px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.section-target .text-footer span:nth-child(2) {
    transform: rotate(90deg);
}

.section-before-after {
    background-image: url('../images/lasbia-sec5-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.section-before-after .text-header {
    padding-bottom: 20px;
}

.section-before-after .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-before-after .text-content .text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-before-after .text-content .text-wrap .text-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: static;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    min-width: 340px;
    min-height: 90px;
    text-align: center;
    background-color: #fff;
    white-space: pre-line;
}

.section-before-after .text-content .text-wrap .text-item > span {
    color: var(--primary-color);
    font-weight: 700;
}

.section-before-after .text-content .text-wrap .label {
    margin-top: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--point-color);
    text-align: center;
}

.section-before-after .text-content .arrow {
    padding: 10px;
    text-align: center;
}

.section-before-after .text-content .arrow > img {
    transform: rotate(90deg);
}

.section-point {
    background-image: url('../images/lasbia-sec9-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.section-point .text-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.section-point .text-content .text-item:nth-last-child(1) {
    grid-column: span 2;
}

.section-point.grid-4 .text-content .text-item:nth-last-child(1) {
    grid-column: unset;
}

.section-point .text-content .text-item {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    line-height: 1.4;
    font-size: 1.8rem;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.section-point .text-content .text-item .item-head {
    font-weight: 500;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
}

.section-point .text-content .text-item .item-desc {
    padding: 10px;
    font-size: 1.6rem;
}

.section-circle {
    background-image: url('../images/lasbia-sec8-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.section-circle .circle-content {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.section-circle .circle-content .circle-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 220px;
    height: 220px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 1.4;
}

.section-circle .circle-item .head {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.section-circle .circle-item .head::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
}

/* caption 있을 때만 변경 */
.section-circle.caption-type .circle-item .head::after {
    display: none;
}

.section-circle.caption-type .circle-item .caption {
    position: relative;
}

.section-circle.caption-type .circle-item .caption::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
}

.section-circle .circle-item .caption {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.section-circle .circle-item .desc {
    padding-top: 25px;
    font-size: 1.4rem;
}

.section-precautions {
    background-image: url('../images/lasbia-sec5-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.section-precautions .text-header {
    padding-bottom: 20px;
}

.section-precautions .text-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    counter-reset: item;
}

.section-precautions .text-content .text-item {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 10px 10px 50px;
    background-color: #fff;
    font-size: 1.4rem;
    min-height: 48px;
}

.section-precautions .text-content .item-number {
    display: flex;
    align-items: center;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-features .text-content .text-list {
        display: flex;
        flex-direction: column;
    }

    .section-intro--circle .circle-content {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }

    .section-intro--circle .circle-item .head {
        font-size: 0.875em;
    }

    .section-circle .circle-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .section-circle.caption-type .circle-item .caption::after {
        top: 30px;
    }

    .section-effects .grid-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .maxwidth {
        max-width: 1024px;
        margin: 0 auto;
    }

    .text-header .caption {
        white-space: normal;
    }

    .text-header .desc {
        white-space: pre-line;
    }

    .text-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .text-item {
        font-size: 1.6rem;
    }

    .section-intro .text-content .desc {
        white-space: pre-line;
    }

    .section-intro .img-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-intro .img-content.grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .section-intro--side-img {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 50px;
    }

    .section-intro--side-img .img-content > img {
        max-width: 100%;
    }

    .section-intro--circle {
        margin-top: 50px;
    }

    .section-intro--circle .circle-item .head {
        font-size: 1.6em;
    }

    .section-intro--circle .circle-item .head::after {
        top: 34px;
    }

    .section-intro--circle .circle-item .desc {
        font-size: 1.2em;
    }

    .section-effects .text-header .desc {
        white-space: pre-line;
    }

    .section-effects .text-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-effects .text-content .text-item:nth-last-child(-n+2) {
        grid-column: unset;
    }

    /* circle contents 변형 */
    .section-effects .circle-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-effects .circle-content .arrow > img {
        transform: none;
    }

    /* step 변형 */
    .section-effects .step-content {
        flex-direction: row;
        gap: 0;
    }

    .section-effects .step-content .text-item {
        border-right: 1px solid rgba(255, 255, 255, 0.4);
        padding-right: 24px;
        padding-left: 24px;
    }

    .section-effects .step-content .text-item:last-child {
        border-right: none;
    }

    .section-effects .step-number-title {
        white-space: pre-line;
    }

    .section-effects .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .section-effects .grid-1 {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-effects .grid-1 .text-item {
        min-width: 210px;
    }

    /* circle contents 변형 */
    .section-effects .number-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .section-features {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .section-target .text-content {
        max-width: 84%;
    }

    .section-target .img-content > img {
        height: auto;
    }

    .section-target .text-item::before {
        top: 10px;
    }

    .section-target .text-footer {
        flex-direction: row;
        border-radius: 50px;
    }

    .section-target .text-footer span:nth-child(2) {
        transform: none;
    }

    .section-before-after .text-content {
        flex-direction: row;
    }

    .section-before-after .text-content .arrow > img {
        transform: none;
    }

    .section-before-after .text-content .arrow {
        padding-bottom: 45px;
    }

    .section-point .text-content {
        grid-template-columns: repeat(5, 1fr);
    }

    .section-point .text-content .text-item:nth-last-child(1) {
        grid-column: unset;
    }

    .section-point.grid-4 .text-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-precautions .text-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .section-precautions .text-content .text-item {
        margin-right: 48px;
    }

    .section-circle .circle-item .head::after {
        top: 30px;
    }
}

@media (min-width: 1280px) {
    .maxwidth {
        max-width: 1280px;
    }

    .section-intro--circle .circle-item .head::after {
        top: 38px;
    }
}

@media (min-width: 1440px) {
    .maxwidth {
        max-width: 1440px;
    }

    .section-features {
        display: flex;
        align-items: center;
    }

    .section-target .text-content {
        max-width: 64%;
    }
}