@charset "UTF-8";

.title-em {
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 88.8px;
    display: flex;
    align-items: center;
    z-index: 2;
    box-sizing: border-box;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero__headline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__subtitle {
    color: var(--text-dark);
    color: #171717;
    font-size: 24px;
    font-weight: 300;
    line-height: 130%;
    /* 31.2px */
    letter-spacing: -0.48px;
}

.hero__title {
    color: #262626;
    font-size: 50px;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.hero__description {
    color: #262626;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
    text-transform: capitalize;
}

.hero__title strong {
    font-weight: 700;
}

.hero__title-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 섹션 공통:  2단 레이아웃 */
.section-split {
    width: 100%;
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.section-split__inner {
    max-width: 1404px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 71px;
    box-sizing: border-box;
    text-align: left;
    padding-inline: 22px;
}

.section-split__image {
    /* flex: 0 0 560px; */
}

.section-split__image img {
    width: 100%;
    height: auto;
    border-radius: 50px;
}

.section-split__content {
    flex: 1;
}

.section-split_col__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-split__headline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-split__headline_sm {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-split__label {
    color: #171717;
    font-family: "Nanum Myeongjo", "NanumMyeongjoOTF", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    /* 31.2px */
    text-transform: capitalize;
    margin-bottom: 0;
}

.section-split__title {
    color: #262626;
    font-family: Pretendard;
    font-size: 50px;
    font-weight: 300;
    line-height: 130%;
    /* 65px */
    letter-spacing: -1px;
    text-transform: capitalize;
}

.section-split__divider {
    display: block;
    margin-block: 40px;
    width: 50px;
    height: 1px;
    background-color: #b4b4b4;
}

.section-split__title strong {
    color: var(--primary);
    font-weight: 700;
}

.section-split__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    align-items: stretch;
}

.section-split__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.section-split__item-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-split__item-num {
    width: 22px;
    height: 22px;
    border-radius: 1000px;
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    /* 20.8px */
    letter-spacing: -0.32px;
    text-transform: capitalize;
}

.section-split__item-header h4 {
    font-family: Pretendard;
    font-size: 22px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.44px;
    text-transform: capitalize;
    margin: 0;
}

.section-split__item-content {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.section-split__item-content p {
    color: #171717;
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    text-transform: capitalize;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.hero__bg-cross {
    position: absolute;
    inset: 0;
    /* z-index: -1; */
    pointer-events: none;
}

.hero__bg-cross-v {
    position: absolute;
    left: 40%;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    display: block;
}

.hero__bg-cross-h {
    position: absolute;
    bottom: 27%;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    display: block;
}

.hero__bg-logo {
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    width: 300px;
}

.hero__bg-logo img {
    width: 100%;
    height: auto;
}

.section-split__body_col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-split__body_row {
    display: flex;
    justify-content: center;
}

.section-split__desc {
    color: #262626;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

.section-split__title-quote {
    color: #262626;
    font-size: 22px;
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.44px;
}

.section-split__content_col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-split__body_row-card-content-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-split__subtitle {
    color: #262626;
    font-size: 22px;
    font-weight: 300;
    line-height: 150%;
}

/* **************** 주의사항 **************** */
.after-care .section-split__body_col-item {
    display: flex;
    flex-direction: column;
    gap: 8px;

    border-radius: 20px;
    border: 1px solid #f2f2f2;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    padding-block: 20px;
}

.after-care .section-split__body_col-item-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
}

.after-care .section-split__body_col-item-text {
    color: #262626;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

/* **************** 스와이퍼 **************** */

.section-card-swiper {
    overflow: hidden;
}

.section-card-swiper .swiper-wrapper {
    align-items: stretch;
}

.section-card-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.section-card-swiper .card-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.section-card-swiper .card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1/1;
}

.section-card-swiper .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-card-swiper .card-txt {
    padding: 32px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-card-swiper .card-txt .title {
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.4px;
}

.section-card-swiper .card-txt .desc {
    margin: 0;
    color: #171717;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}

.section-card-swiper.fat_reposition-type-swiper .card-txt .desc {
    font-size: 16px;
}

.section-card-swiper .swiper-pagination {
    margin-top: 24px;
    position: relative;
}

.section-card-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: background 0.2s;
}

.section-card-swiper .swiper-pagination-bullet-active {
    background: #8e5b48;
}

/* 상세 - 체크 아이콘, 버튼 */
.hero__item-button {
    padding: 12px 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 1000px;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.hero__item-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.hero__item-button:hover::after {
    opacity: 1;
}

.hero__item-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(to right, #8e5b48, #1f0d06);
    transition: opacity 0.3s ease-in-out;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero__item-button:hover::before {
    opacity: 0;
}

.hero__item-button-text {
    color: #8e5b48;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: -0.48px;
    transition:
        color 0.3s ease-in-out,
        -webkit-text-fill-color 0.3s ease-in-out;
}

.hero__item-button:hover .hero__item-button-text {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero__item-button-icon {
    transition: filter 0.3s ease-in-out;
}

.hero__item-button:hover .hero__item-button-icon {
    filter: brightness(0) invert(1);
}

/* ******************** 눈성형 ******************** */
.eye .hero {
    background-image: url("/img/eye/eye_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
}

.eye .hero__inner {
    flex: 1;
    align-items: stretch;
    gap: 93px;
}

.eye .eye_hero__image {
    width: 50%;
    max-width: 952px;
    flex-shrink: 0;
    align-self: flex-end;
}

.eye .hero__content {
    align-self: center;
    flex-shrink: 0;
}

.eye .eye_hero__image .hero__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: contain;
    object-position: bottom;
}

.eye .hero__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    row-gap: 36px;
    column-gap: 62px;
}

.eye .hero__list .hero__item-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 130%;
}

.eye .hero__list .hero__item-subtext {
    font-size: 22px;
    font-weight: 400;
    line-height: 130%;
}

.eye .double-eyelid,
.eye .opening-solution,
.eye .anti-aging-eye-care,
.eye .fat_reposition {
    position: relative;
    padding-block: 231px;
}

.eye .eye-after-care {
    background: #fcfbfb;
}

.eye .anti-aging-eye-care-results {
    position: relative;
    background: linear-gradient(180deg, #8e5b48 31.41%, #613d2f 110.9%) no-repeat;
}

.eye .double-eyelid .section-split__inner {
    gap: 125px;
}

.eye .opening-solution .section-split__inner {
    gap: 148px;
}

.eye .anti-aging-eye-care .section-split__inner {
    gap: 115px;
}

.eye .fat_reposition .section-split__inner {
    gap: 190px;
}

.eye .double-eyelid .hero__bg-cross-v {
    left: auto;
    right: 18%;
}

.eye .opening-solution .hero__bg-cross-v {
    left: 58%;
}

.eye .anti-aging-eye-care .hero__bg-cross-v {
    left: auto;
    right: 42%;
}

.eye .fat_reposition .hero__bg-cross-v {
    left: 56%;
}

.eye .anti-aging-eye-care .hero__bg-cross-h {
    bottom: 18%;
}

.eye .double-eyelid .hero__bg-logo {
    width: 253px;
    right: 55%;
    top: 33%;
}

.eye .double-eyelid .section-split_col__content,
.eye .opening-solution .section-split_col__content,
.eye .anti-aging-eye-care .section-split_col__content,
.eye .fat_reposition .section-split_col__content {
    flex-shrink: 0;
}

.eye .opening-solution .hero__bg-logo,
.eye .fat_reposition .hero__bg-logo {
    width: 285px;
    right: 12%;
    top: 30%;
}

.eye .anti-aging-eye-care .hero__bg-logo {
    width: 285px;
    right: 41%;
    top: 34%;
}

.eye .anti-aging-eye-care-results .hero__bg-logo {
    width: 320px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.eye .why-double-eyelid .section-split__body_row,
.eye .opening-solution-type .section-split__body_row {
    gap: 12px;
}

.eye .fat_reposition-type .section-split__body_row {
    gap: 16px;
}

.eye .section-split.why-double-eyelid,
.eye .section-split.opening-solution-type,
.eye .section-split.fat_reposition-type {
    background-color: #fcfbfb;
    padding-block: 120px;
}

.why-double-eyelid .section-split__inner,
.opening-solution-type .section-split__inner,
.fat_reposition-type .section-split__inner {
    display: block;
    margin: 0 auto;
}

.eye .eye-after-care .section-split__content_col {
    gap: 0;
}

.anti-aging-eye-care-results .section-split__body_card_container {
    display: flex;
    align-items: stretch;
    z-index: 1;
}

.anti-aging-eye-care-results .card_item.left {
    z-index: 1;
    transform: translateY(-24px) rotate(-4deg);
}

.anti-aging-eye-care-results .card_item.right {
    margin-left: -30px;
    z-index: 2;
    transform: translateY(24px) rotate(2deg);
}

/* 왼쪽  */
.anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.left:hover) .card_item.left {
    transform: translateY(-48px) rotate(0deg);
    z-index: 10;
}

.anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.left:hover) .card_item.right {
    transform: translateY(48px) rotate(2deg);
    z-index: 1;
}

/* 오른쪽 */
.anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.right:hover) .card_item.right {
    transform: translateY(-48px) rotate(0deg);
    z-index: 10;
}

.anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.right:hover) .card_item.left {
    transform: translateY(48px) rotate(-4deg);
    z-index: 1;
}

.anti-aging-eye-care-results .card_item:hover {
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.12);
}

.anti-aging-eye-care-results .card_item {
    position: relative;
    flex: 0 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #8e5b48;
    box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background-color: #fff;
    transition:
        transform 0.6s ease,
        box-shadow 0.4s ease;
}

.anti-aging-eye-care-results .card_image img {
    width: 100%;
}

.anti-aging-eye-care-results .card_content {
    padding: 20px 32px;
}

.anti-aging-eye-care-results .card_content_title {
    text-align: center;
    font-size: 20px;
    line-height: 140%;
}

.anti-aging-eye-care-results .section-split__divider {
    width: 50px;
    height: 1px;
    background: #b4b4b4;
    margin-block: 16px;
}

.anti-aging-eye-care-results .card_content_desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.anti-aging-eye-care-results .card_content_desc_item {
    color: #262626;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.anti-aging-eye-care-results .left {
    transform: rotate(-4deg);
}

.anti-aging-eye-care-results .right {
    transform: rotate(2deg);
}

.anti-aging-eye-care-results .section-split__content_col {
    gap: 80px;
    margin: 0 auto;
}

/* ******************** 주름리프팅 ******************** */

.lifting .hero .hero__content,
.lifting .nasolabial .hero__content,
.lifting .v-line .hero__content,
.lifting .face-lift .hero__content,
.lifting .endotine .hero__content {
    flex-shrink: 0;
}

.lifting .hero {
    background-image: url("/img/lifting/lifting_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
}

.lifting .hero__inner {
    flex: 1;
    align-items: stretch;
    gap: 93px;
}

.lifting .lifting_hero__image {
    width: 50%;
    max-width: 952px;
    /* flex-shrink: 0; */
    align-self: flex-end;
}

.lifting .hero__content {
    align-self: center;
}

.lifting .lifting_hero__image .hero__img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: contain;
    object-position: bottom;
}

.lifting .hero__list {
    display: flex;
    gap: 24px;
}

.lifting .hero__list .hero__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.lifting .hero__list .hero__item-text {
    color: #242424;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: -0.48px;
}

.hero__title-sub {
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.lifting .hero__title-sub span {
    font-family: "Nanum Myeongjo", serif;
}

.lifting .nasolabial,
.lifting .v-line,
.lifting .face-lift,
.lifting .endotine {
    background-image: url("/img/lifting/lifting_bg.webp");
}

.lifting .nasolabial .lifting_hero__image {
    width: auto;
}

.lifting .nasolabial .hero__list {
    gap: 12px;
}

.lifting .nasolabial .hero__inner {
    gap: 78px;
}

.lifting .face-lift .hero__list,
.lifting .endotine .hero__list {
    gap: 12px;
}

.lifting .lifting-after-care .section-split__content_col,
.lifting .faq .section-split__content_col {
    gap: 0;
}

.lifting-after-care {
    background: #fcfbfb;
}

/* 가장 많이 받는 질문 */
.lifting .faq-list {
    overflow: hidden;
    border-top: 2px solid #171717;
}

.lifting .faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.lifting .faq-item:last-child {
    border-bottom: none;
}

.lifting .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    padding: 32px;
    text-align: left;
    background: #fff;
    border: transparent;
    border-bottom: 1px solid #f2f2f2;
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;

    transition: background 0.2s ease;
}

.lifting .faq-question-text {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;

    color: #171717;
    font-size: 22px;
    font-weight: 400;
    line-height: 150%;
}

.lifting .faq-item.is-open .faq-question-text {
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.lifting .faq-toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    position: relative;
    transition: transform 0.25s ease;
}

.lifting .faq-toggle-icon::before,
.lifting .faq-toggle-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #171717;
    transition: all 0.25s ease;
    transform-origin: center center;
}

.lifting .faq-toggle-icon::before {
    width: 21px;
    height: 2px;
    margin-left: -10.5px;
    margin-top: -1px;
}

.lifting .faq-toggle-icon::after {
    width: 2px;
    height: 21px;
    margin-left: -1px;
    margin-top: -10.5px;
}

.lifting .faq-item.is-open .faq-toggle-icon::after {
    opacity: 0;
    transform: rotate(-90deg);
}

.lifting .faq-answer-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s ease;
}

.lifting .faq-item.is-open .faq-answer-wrap {
    max-height: 500px;
}

.lifting .faq-answer-wrap[hidden] {
    display: block;
    max-height: 0;
}

.lifting .faq-answer {
    margin: 0;
    padding: 32px;
    color: #242424;
    font-weight: 300;
    line-height: 150%;
    background: #fcfbfb;
    font-size: 22px;

    display: flex;
    gap: 8px;
}

.lifting .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    font-size: clamp(12px, 1.2vw, 18px);
    position: absolute;
    /* 위치 고정 */
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.lifting .tag-text {
    padding: 0.55em 0.9em;
    background: #fff;
    width: fit-content;
    border-radius: 999px;
    color: #262626;
    text-align: center;
    font-weight: 500;
    line-height: 130%;
    /* 자간도 비율로 조정 */
    letter-spacing: -0.02em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.v-line .lifting_hero__image {
    position: relative;
}

.v-line .hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.v-iline_hero__img-icon {
    position: absolute;
    width: 32%;
    z-index: 5;
}

.v-line .tag {
    position: absolute;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.v-line .tag img[class^="tag-icon-img"] {
    width: 7.11em;
    height: auto;
    display: block;
}

.v-line .tag .tag-icon-img1 {
    margin-top: 1.1em;
}

.v-line .tag .tag-icon-img2 {
    margin-bottom: 1.1em;
}

.v-line .tag .tag-icon-img3 {
    margin-top: 1.1em;
}

.lifting .tag:nth-of-type(3) .tag-text {
    margin-left: -2.2em;
}

.v-line .tag:nth-of-type(1) {
    top: 47%;
    left: 20%;
}

.v-line .tag:nth-of-type(2) {
    top: 58%;
    left: 25%;
}

.v-line .tag:nth-of-type(3) {
    top: 55.4%;
    right: -14%;
}

/* V라인 턱선 아이콘 */
.v-line .v-iline_hero__img-icon {
    bottom: 42%;
    right: 31%;
}

/* ******************** 재건수술 ******************** */

.recon .lipoma .hero__content {
    flex-shrink: 0;
}

.recon .hero {
    width: 100%;
    background-image: url("/img/reconstruction/hero_bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.recon .hero .hero__inner {
    justify-content: center;
    text-align: center;
}

.recon .laceration {
    background-image: url("/img/reconstruction/recon_bg.webp");
}

.recon .hero__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.recon .hero__list .hero__row {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.recon .hero .hero__title {
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -1px;
}

.recon .hero .hero__description {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 150%;
}

.recon .hero__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.recon .hero__item-text {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: -0.48px;
}

/* 열상 봉합  */
.recon .laceration {
    position: relative;
    min-height: 920px;
}

.recon .laceration .hero__inner {
    min-height: 920px;
    align-items: center;
}

.recon .laceration .hero__list {
    display: flex;
    flex-direction: row;
}

.recon .laceration .hero__image {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.recon .laceration .hero__image .hero__img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.recon .abrasion {
    position: relative;
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("/img/reconstruction/recon_bg.webp") no-repeat center / cover;
    z-index: -1;
}

.recon .abrasion .wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 123px;

    padding-inline: 20px;
}

.recon .abrasion .left {
    font-size: 2.5rem;
    font-weight: 800;
    position: sticky;
    line-height: 1.2;
}

.recon .abrasion {
    position: relative;
    /* min-height: 200vh; */
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    /* 카드 수에 따라 늘려도 됨 */
}

.recon .abrasion .right {
    position: relative;
    width: 533px;
    height: 400px;
}

.recon .abrasion .card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    border-radius: 40px;
}

/* .recon .abrasion .right .card:nth-child(n + 2) {
    margin-top: 320px;
} */

/* .recon .abrasion .right {
    display: block;
    position: relative;
}

.recon .abrasion .card {

    position: relative;
    top: 0;

    width: 533px;
    height: 400px;
    padding: 24px 43px;
    background-color: white;
    border-radius: 50px;
    box-sizing: border-box;
    border: 1px solid #EEE;
} */

.recon .abrasion .card h3 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    color: #fff;
    position: absolute;
    top: 7%;
    left: 8%;
}

.recon .abrasion .card1 {
    background-image: url("/img/reconstruction/abrasion_card1.webp");
    background-size: cover;
    background-position: center;
}

.recon .abrasion .card2 {
    background-image: url("/img/reconstruction/abrasion_card2.webp");
    background-size: cover;
    background-position: center;
    /* margin-top: 400px; */
}

.recon .abrasion .card3 {
    background-image: url("/img/reconstruction/abrasion_card3.webp");
    background-size: cover;
    background-position: center;
    /* margin-top: 400px; */
}

.recon .hero__item-card-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.recon .tumor .section-split__headline,
.recon .tumor .section-split__desc {
    text-align: center;
}

.recon .tumor .hero__subtitle {
    font-family: "Nanum Myeongjo", serif;
}

.recon .tumor .section-split__desc {
    text-align: center;
}

.recon .tumor .section-split__headline-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.recon .tumor .section-split__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    margin-bottom: 52px;
}

.recon .tumor .section-split__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-block: 20px;
}

.recon .tumor .section-split__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 150px;
    background: #d9d9d9;
}

.recon .tumor .section-split__item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.recon .tumor .section-split__item-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.44px;
}

/* 지방종*/
.recon .lipoma {
    display: flex;
    align-items: stretch;
    background-image: url("/img/reconstruction/recon_bg.webp");
}

.recon .lipoma .hero__inner {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 109px;
    padding-block: 100px;
}

.recon .lipoma .hero__list {
    display: flex;
    flex-direction: row;
}

.recon .lipoma .hero__image {}

.recon .lipoma .hero__image .hero__img {}

/* ******************** 병원소개 ******************** */

.about {
    padding-top: 88.8px;
    position: relative;
}

.scroll-connector-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

.scroll-connector-line__svg {
    display: block;
    width: 100%;
    height: 100%;
}

.scroll-connector-line__path {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 4px;
    stroke-dasharray: 8 8;
    vector-effect: non-scaling-stroke;
}

/*  */
.about .mission {
    position: relative;
    background:
        linear-gradient(180deg,
            rgba(142, 91, 72, 0.8) 0%,
            rgba(70, 42, 31, 0.8) 100%),
        radial-gradient(105.53% 82.37% at 51.12% 99.86%, #462a1f 0%, #8e5b48 100%);
}

.about .mission__diagonal-line,
.about .brand__diagonal-line {
    display: none;
}

.about .inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    padding: 100px 20px 210px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about .mission .content {
    display: flex;
    align-items: center;
    gap: 120px;
}

.about .mission .headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.about .mission .headline .title {
    font-size: 50px;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: -1px;
}

.about .mission .headline .description {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 130%;
    letter-spacing: -0.44px;
}

.about .mission .content.mission__content {
    position: relative;
}

.about .mission__vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: -210px;
    width: 4px;
    transform: translateX(-50%);
    pointer-events: none;
    background: url("/img/about/vertical_line.svg") center / 4px 100% no-repeat;
}

.about .mission .content {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.about .mission .content-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    position: relative;
}

.about .mission .brand-line {
    position: absolute;
    right: -148px;
    bottom: -90px;
}

.about .mission .brand-line img {
    animation: brand-line-spin 40s linear infinite;
}

@keyframes brand-line-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about .mission .content-item-image {
    position: relative;
    max-width: 100%;
    box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}

.about .mission .content-item-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.about .mission .content-item-text {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 150%;
    flex-shrink: 0;
}

.about-mission-brand-line__svg {
    display: block;
    width: 100%;
    height: 100%;
}

.about-mission-brand-line__path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 2px;
    vector-effect: non-scaling-stroke;
}

/*  */
.about .brand {
    position: relative;
    background-image: url("/img/about/about_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    --brand-gradient-opacity: 1;
}

.about .brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #462a1f 0%, rgba(176, 105, 78, 0) 100%);
    opacity: var(--brand-gradient-opacity);
    pointer-events: none;
    z-index: 0;
}

.about .brand__vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: calc(50% - 80px);
    width: 4px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
    background: url("/img/about/vertical_brand.svg") center / 4px 100% no-repeat;
}

.about .brand__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .brand__logo {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.about .brand__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px 20px;
    z-index: 2;
    opacity: 0;
}

.about .brand__content .headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about .brand__content .brand-content-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about .brand__content .headline .title {
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    line-height: 140%;
}

.about .brand__content .headline .sub-title {
    color: #fff;
    font-family: "Nanum Myeongjo", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.55px;
}

.about .brand__content .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about .brand__content .content .description {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
}

.about .brand__content .content .description-sub {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
}

.about .brand__content .section-split__divider {
    background-color: rgba(255, 255, 255, 0.6);
}

.about .brand .why-banpo-logo {
    position: absolute;
    bottom: -3%;
    right: 9%;
    z-index: 3;
    opacity: 0.4;
}

.about .brand .why-banpo-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.about .brand .logo-img {
    z-index: 1;
}

.scroll-line {
    clip-path: inset(0 0 100% 0);
    transition: stroke 0.3s;
}

.about .why-us {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 120px;
    background:
        linear-gradient(180deg,
            rgba(142, 91, 72, 0.4) 31.41%,
            rgba(31, 13, 6, 0.4) 110.9%),
        no-repeat, #000;
    background-blend-mode: soft-light, normal, normal;
}

.about .why-us .headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about .why-us .headline .title {
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    line-height: 140%;
}

.about .why-us .headline .sub-title {
    color: #fff;
    font-family: "Nanum Myeongjo", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.55px;
}

.about .why-us .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about .why-us .content .description {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 140%;
}

.about .why-us .content .description-sub {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 140%;
}

.about .profile {
    padding-block: 85.5px;
}

.about .profile .spacing-sm {
    margin-left: 12px;
}

.about .profile .inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about .profile .top {
    background: #f8f1e9;
    display: flex;
    gap: 103px;
    height: 240px;
    padding-inline: 114px;
    overflow: hidden;
    justify-content: center;
}

.about .profile .top .right {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about .profile .top .left {
    display: flex;
    align-items: flex-end;
}

.about .profile .top .left .logo_top {
    mix-blend-mode: soft-light;
    position: absolute;
    top: 0;
    z-index: 0;
    /* display: none; */
}

.about .profile .top .left .profile_top {
    position: relative;
    z-index: 1;
    min-width: fit-content;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.about .profile .top .left img {
    min-width: fit-content;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.about .profile .top .left .logo_wrapper {
    position: relative;
}

/*  */
.about .profile .top .left .logo_wrapper.only-pc {
    align-self: stretch;
    height: 100%;
}

.about .profile .info {
    display: flex;
    align-items: end;
    gap: 12px;
}

.about .profile .info .name {
    color: #171717;
    font-size: 60px;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -2.4px;
}

.about .profile .info .position {
    color: #262626;
    font-size: 30px;
    font-weight: 300;
    line-height: 110%;
    letter-spacing: -1.2px;
}

.about .profile .top .divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
    flex-shrink: 0;
}

.about .profile .top .description {
    color: #171717;
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.6px;
}

.about .profile .list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about .profile .list .item {
    display: flex;
    gap: 120px;
}

.about .profile .list .item-content {
    display: flex;
    gap: 60px;
}

.about .profile .list .item-header {
    display: flex;
    width: 158px;
    min-width: 158px;
    flex-shrink: 0;
}

.about .profile .list .item-header .title {
    color: #171717;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.6px;
}

.about .profile .list .item-content .description {
    color: #262626;
    font-size: 22px;
    font-weight: 300;
    line-height: 150%;
}

.about .profile .content .divider {
    width: 100%;
    height: 1px;
    background: #b4b4b4;
}

.about .commitment {
    padding-block: 110px;
    background: linear-gradient(180deg, #fff 0%, #f8f1e9 100%);
}

.about .commitment .inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.about .commitment .left {
    /* padding: 85px 128px; */
    /* width: 30%; */
    /* background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%); */
}

.about .commitment .left img {
    /* mix-blend-mode: soft-light; */
}

.about .commitment .right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.about .commitment .right .top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about .commitment .right .top .description {
    color: #171717;
    font-size: 24px;
    font-weight: 300;
    line-height: 150%;
}

.about .commitment .right .bottom p {
    color: #262626;
    font-family: "Nanum Myeongjo", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 140%;
}

.about .commitment {
    position: relative;
    overflow: hidden;
}

.about .commitment .moving-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    overflow: hidden;
}

.about .commitment .moving-text p {
    font-family: "Nanum Myeongjo", serif;
    font-size: 200px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -5px;
    white-space: nowrap;
    color: #fff;
}

.about .commitment .moving-text__inner {
    display: inline-flex;
    align-items: flex-end;
    height: 280px;
    animation: moving-text-scroll 40s linear infinite;
}

.about .commitment .moving-text__inner p {
    flex-shrink: 0;
    padding-right: 0.4em;
}

.scroll-connector-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    /* 콘텐츠 뒤로 배치 */
    pointer-events: none;
}

@keyframes moving-text-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 1920px) {
    /* .recon .lipoma .hero__image .hero__img {
        height: 100%;
        width: auto;
        max-width: none;
        object-fit: cover;
        object-position: left center;
    } */
}

.recon .hero__title-sub span {
    font-family: "Nanum Myeongjo", serif;
}

.recon .cyst .title-point {
    color: #8e5b48;
}

.recon .cyst .section-split__body_card_container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.recon .cyst .section-split__desc {
    text-align: center;
}

.recon .cyst .card_title_container {
    background: #1f0d06;
    padding: 16px 32px;
    width: 100%;
}

.recon .cyst .right .card_title_container {
    background: #8e5b48;
}

.recon .cyst .card_item {
    flex: 0 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 1px solid #8e5b48;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    transition: all ease 0.2s;
}

.recon .cyst .card_image img {
    width: 100%;
}

.recon .cyst .card_content {
    padding: 20px 32px;
}

.recon .cyst .card_content_title {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    color: #fff;
}

.recon .cyst .card_content_title.sub {
    font-family: "Nanum Myeongjo", serif;
}

.recon .cyst .section-split__divider {
    width: 50px;
    height: 1px;
    background: #b4b4b4;
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 16px;
}

.recon .cyst .card_content_desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recon .cyst .card_content_desc_item {
    color: #262626;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.recon .cyst .section-split__content_col {
    gap: 50px;
    margin: 0 auto;
}

.recon .recon-after-care {
    background: #fcfbfb;
}

.recon .recon-after-care .section-split__content_col {
    gap: 0;
}

/* ******************** 상담/예약 ******************** */

.reservation {
    padding-top: 188.8px;
}

.reservation .section-split_col__content {
    gap: 50px;
}

.reservation .section-split {
    padding-top: 0;
}

.reservation .section-split__inner {
    margin: 0 auto;
}

.reservation .reservation_calender_container {
    width: 100%;
}

#reserve_time {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#reserve_time.time_list_show {
    opacity: 1;
}

/* ******************** 전후사진 ******************** */

.before-after .sub-top {
    padding-top: 88.8px;
    background-image: url("/img/before-after/top_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 320px;
}

.before-after .sub-top__title {
    color: #171717;
    text-align: center;
    font-family: "Nanum Myeongjo", "NanumMyeongjoOTF", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 130%;
}

.before-after__container {
    max-width: 1400px;
    padding-inline: 20px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 90px;
    box-sizing: border-box;
}

.before-after .tabs {
    width: 100%;
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.before-after .tabs:not(.is-dragging) {
    cursor: grab;
}

.before-after .tabs.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.before-after .tabs::-webkit-scrollbar {
    display: none;
}

.before-after .tabs li {
    flex: 1;
}

.before-after .tab {
    width: 100%;
    padding: 20px;
    background: #fff;
    cursor: pointer;
    color: #171717;
    border: transparent;
    border-bottom: 2px solid transparent;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 125%;
    letter-spacing: -0.44px;
    transition: all ease 0.2s;
    box-sizing: border-box;
}

.before-after .tab:hover {
    color: #8e5b48;
}

.before-after .tab.is-active {
    font-weight: 700;
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom-color: #171717;
}

.before-after .panels {
    padding-top: 40px;
    padding-inline: 0px;
}

.before-after .panel {
    display: none;
}

.before-after .panel.is-active {
    display: block;
}

.before-after .panel-img-wrap {
    display: flex;
    justify-self: center;
    align-items: center;
    width: 100%;
    max-height: 680px;
    aspect-ratio: 2 / 1;
    height: auto;
    position: relative;
}

.before-after .panel-img-nav-btn {
    display: none;
}

.before-after .panel-img {
    width: 50%;
    aspect-ratio: 1 / 1;
    max-height: 680px;
    height: auto;
    overflow: hidden;
    background-color: #d9d9d9;
}

.before-after .panel-img .panel-img-main,
.before-after .panel-img-list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after .panel-img .panel-img-main {
    max-height: 680px;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: opacity;
}

.before-after .panel-img .panel-img-main.is-visible {
    opacity: 1;
}

.before-after .panel-img-wrap .panel-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after .blur-img {
    position: relative;
}

.before-after .blur-img-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: transparent;
}

.before-after .blur-img-overlay::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -1;
    background-image:
        linear-gradient(180deg,
            rgba(142, 91, 72, 0.8) 31.41%,
            rgba(31, 13, 6, 0.8) 110.9%),
        url(/img/before-after/blur_img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: blur(20px);
}

.before-after .blur-img-icon {
    width: 42px;
    height: 42px;
    display: block;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.before-after .blur-img-text {
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    position: relative;
    z-index: 2;
}

.before-after .panel-img-list-item-img.blur-img .blur-img-overlay {
    gap: 8px;
}

.before-after .panel-img-list-item-img.blur-img .blur-img-icon {
    width: 28px;
    height: 28px;
}

.before-after .panel-img-list-item-img.blur-img .blur-img-text {
    font-size: 12px;
}

.before-after .panel-img-list-item .blur-img-overlay {
    background: linear-gradient(180deg,
            rgba(142, 91, 72, 0.8) 31.41%,
            rgba(31, 13, 6, 0.8) 110.9%);
    backdrop-filter: blur(30px);
    color: #fff;
}

.before-after .panel-img-list-item-img.blur-img .blur-img-text {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
}

.before-after .panel-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.before-after .panel-desc-wrap {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #f2f2f2;
    background: #fcfbfb;
    box-sizing: border-box;
}

.before-after .panel-desc-text {
    color: #262626;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}

.before-after .panel-img-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.before-after .panel-img-list-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    width: 100%;
}

.before-after .panel-img-list-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.before-after .img-notice {
    border: 1px solid #f2f2f2;
    background: #e1e1e1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.before-after .img-notice .notice-title {
    color: #171717;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 130%;
}

.before-after .img-notice .notice-description {
    color: #262626;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 130%;
}

.before-after .panel-img-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-width: 0;
    cursor: pointer;
}

.panel-img-list-item-img {
    background-color: #d9d9d9;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 210px;
    height: auto;
    overflow: hidden;
}

.before-after .panel-img-list-item-img img {
    max-height: 210px;
}

.before-after .panel-pagination {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.before-after .panel-pagination-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.before-after .panel-pagination-button {
    border: none;
    background-color: transparent;
}

.before-after .pagination-num-button {
    padding: 6.5px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #8e5b48;
    color: #8e5b48;
    background-color: #fff;
    font-size: 16px;
    line-height: 1;
}

.before-after .pagination-num-button.active {
    color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(180deg,
            #8e5b48 31.41%,
            #1f0d06 110.9%) !important;
}

.before-after .pagination-num-button.disabled {
    background-color: #e1e1e1;
    border: 1px solid #e1e1e1;
    color: #fff;
}

.before-after .blur-img {}

/* ******************** 진료시간 ******************** */

.hos_info {
    padding-top: 87px;
}

.hos_info .top {
    width: 100%;
    padding: 108px 0;
    background-image: url("/img/info/top_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hos_info .top .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hos_info .top .title {
    color: #171717;
    text-align: center;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.6px;
}

.hos_info .top .description {
    color: #262626;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

.hos_info section.content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px 100px;
}

.hos_info .inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hos_info .content__info {
    width: 100%;
}

.hos_info .content__info .info_map {
    width: 100%;
    height: 400px;
    background: #d9d9d9;
}

.hos_info .content .info-box {
    display: flex;
    width: 100%;
}

.hos_info .content .info-box .info-box__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.hos_info .content .info-box .title {
    font-size: 30px;
    font-weight: 600;
    line-height: 140%;
}

.hos_info .content .info-box .time {
    display: flex;
}

.hos_info .content .info-box .time .time-day {
    width: 7em;
    min-width: 7em;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
}

.hos_info .content .info-box .time .time-time {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 140%;
}

.hos_info .content .info-box .phone {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 140%;
}

.hos_info .time-box {
    background: #8e5b48;
    color: #fff;
}

.hos_info .phone-box {
    background: #1f0d06;
    color: #fff;
}

.hos_info .info-box__item.reservation-box {
    background: #f8f8f8;
}

.hos_info .reservation-box .button-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding-inline: 80px;
}

.hos_info .reservation-box .button-box button {
    border: none;
    border-radius: 8px;
    padding: 10.5px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;

    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.hos_info .reservation-box .button-box .reservation-button {
    background: #8e5b48;
    color: #fff;
}

.hos_info .reservation-box .button-box .kakao-button {
    background: #fae100;
    color: #371c1d;
}

.hos_info .address_box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hos_info .address_box .divider {
    width: 100%;
    height: 1px;
    background: #b4b4b4;
}

.hos_info .address_box .address__item .content {
    display: flex;
}

.hos_info .address_box .address__item {
    display: flex;
    gap: 120px;
}

.hos_info .address_box .address__item .address {
    color: #171717;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.6px;
}

.hos_info .address_box .address__item .address-content {
    color: #262626;
    font-size: 26px;
    font-weight: 500;
    line-height: 150%;
}

.hos_info .traffic_box {
    display: flex;
    gap: 90px;
}

.hos_info .traffic_box .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hos_info .traffic_box .left .semi-bold {
    font-weight: 600 !important;
}

.hos_info .traffic_box .left .traffic-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hos_info .traffic_box .content-item {
    padding: 12px 24px;
    border-radius: 200px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: -0.48px;
    width: fit-content;
    display: flex;
    gap: 8px;
    white-space: nowrap;
    background: linear-gradient(180deg, #8e5b48 31.41%, #1f0d06 110.9%);
}

.hos_info .traffic_box .content .description {
    color: #171717;
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
}

.hos_info .traffic_box .content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hos_info .bus-content {
    flex-direction: column;
    align-items: flex-start !important;
}

.hos_info .right .traffic-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hos_info .left .traffic-item .description {
    color: #262626;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}

.hos_info .traffic_box .bus-content .description {
    color: #262626;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}

.hos_info .traffic_box .bus-item {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hos_info .traffic_box .bus-item-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    padding: 6px 20px;
    white-space: nowrap;
    border-radius: 50px;
}

.hos_info .traffic_box .bus-item-description {
    color: #262626;
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
}

.hos_info .traffic_box .red {
    background: #da353b;
}

.hos_info .traffic_box .green {
    background: #15a90d;
}

.hos_info .traffic_box .blue {
    background: #007bff;
}

.hos_info .traffic_box .bus-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 1919px) {
    .recon .laceration .hero__image .hero__img {
        max-width: min(50vw, 100%);
        max-height: 80vh;
    }

    /* .recon .lipoma .hero__image .hero__img {
        max-width: min(50vw, 100%);
        height: 100%;
        object-fit: cover;
        object-position: left center;
    } */
}

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

    .about .mission__vertical-line,
    .about .brand__vertical-line {
        display: none;
    }

    .about .mission .headline .title {
        text-align: center;
    }

    .about .mission__diagonal-line {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 600px;
        pointer-events: none;
        z-index: 0;
    }

    .about .mission__diagonal-line--1 {
        background: url("/img/about/vertical_line1.svg") left top / 100% 100% no-repeat;
    }

    .about .mission__diagonal-line--2 {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1400px;
        top: 34%;
        bottom: 210px;
        pointer-events: none;
        z-index: 1;
        background: url("/img/about/vertical_line2.svg") left top / 100% 100% no-repeat;
    }

    .about .brand__content .content .description-sub {
        text-align: center;
    }

    /*  */
    .hero {
        min-height: auto;
        padding: 118px 0 0;
    }

    .hero__inner {
        flex-direction: column;
        padding: 0 20px;
        min-height: auto;
    }

    .hero__headline {
        text-align: center;
    }

    .eye .hero__list {
        width: fit-content;
        margin: 0 auto;
        text-align: center;
    }

    .eye .hero__inner {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .eye .eye_hero__image {
        width: 100%;
        max-width: 500px;
        align-self: center;
    }

    .hero__content {
        width: 100%;
    }

    .section-split__inner {
        flex-direction: column;
        gap: 40px;
    }

    .section-split__image {
        flex: 0 0 auto;
        max-width: 100%;
    }

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

    .hero__headline {
        gap: 12px;
    }

    .section-split__divider {
        width: 25px;
        margin-inline: auto;
        margin-block: 20px;
    }

    .hero__bg-logo {
        display: none;
    }

    .hero__bg-cross {
        display: none;
    }

    .section-split__headline {
        text-align: center;
    }

    .section-split__desc {
        text-align: center;
    }

    .section-split__inner,
    .eye .double-eyelid .section-split__inner,
    .eye .opening-solution .section-split__inner,
    .eye .anti-aging-eye-care .section-split__inner,
    .eye .fat_reposition .section-split__inner {
        gap: 40px;
    }

    .eye .double-eyelid .section-split__inner {
        flex-direction: column-reverse;
    }

    .section-split__title-quote {
        text-align: center;
        font-size: 18px;
    }

    .section-split_col__content {
        gap: 20px;
    }

    .section-split__body_row-card-content {
        padding: 25px;
    }

    .eye .anti-aging-eye-care .section-split__inner {
        flex-direction: column-reverse;
    }

    .anti-aging-eye-care-results .section-split__body_card_container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .anti-aging-eye-care-results .card_item.left,
    .anti-aging-eye-care-results .card_item.right {
        transform: none;
        margin: 0;
    }

    .anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.right:hover) .card_item.left,
    .anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.right:hover) .card_item.right,
    .anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.left:hover) .card_item.right,
    .anti-aging-eye-care-results .section-split__body_card_container:has(.card_item.left:hover) .card_item.left {
        transform: none;
        z-index: 1;
    }

    /* *************** 주름 리프팅 *************** */

    .lifting .hero .hero__inner,
    .lifting .v-line .hero__inner,
    .lifting .endotine .hero__inner {
        flex-direction: column-reverse;
    }

    .lifting .lifting_hero__image {
        margin: 0 auto;
    }

    .lifting .hero__list {
        justify-content: center;
    }

    .lifting .nasolabial .hero__inner,
    .lifting .v-line .hero__inner,
    .lifting .face-lift .hero__inner,
    .lifting .endotine .hero__inner {
        padding-top: 100px;
    }

    .lifting .lifting_hero__image {
        width: auto;
        max-width: 500px;
    }

    .lifting .hero__content {
        gap: 20px;
    }

    .lifting .hero__inner,
    .lifting .nasolabial .hero__inner {
        gap: 40px;
    }

    .v-line .tag:nth-of-type(3) {
        top: 55.9%;
        right: -8%;
    }

    /* *************** 전후사진 *************** */

    .before-after__container {
        padding-inline: 0;
    }

    .before-after .panels {
        padding-inline: 22px;
    }

    /* *************** 재건수술 *************** */

    .recon .hero {
        padding: 170px 0 120px;
    }

    .recon .tumor .model-container {
        position: relative;
        width: 330px;
        height: 400px;
        border-radius: 50px;
        background: linear-gradient(180deg, #c3aea6 0%, #c2a295 100%);
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .recon .tumor .model-container .tumor__model {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: bottom;
    }

    .recon .tumor .model-container .section-split__item-num {
        position: absolute;
        color: #fff;
    }

    .recon .tumor .model-container .section-split__item-num:nth-child(1) {
        bottom: 26%;
        left: 47%;
    }

    .recon .tumor .model-container .section-split__item-num:nth-child(2) {
        bottom: 15%;
        left: 28%;
    }

    .recon .tumor .model-container .section-split__item-num:nth-child(3) {
        bottom: 8%;
        right: 29%;
    }

    .recon .laceration {
        min-height: auto;
        padding-block: 100px;
    }

    .recon .laceration .hero__list {
        justify-content: center;
    }

    .recon .laceration .hero__image .hero__img {
        max-width: 80%;
    }

    .recon .abrasion .wrapper {
        padding-block: 3rem 0;
        flex-direction: column;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .recon .abrasion .left {
        /* margin-top: 0;
        margin-bottom: 160px;
        transform: none; */
        position: static;
        margin-top: 0;
        transform: none;
        top: 150px;
    }

    .recon .abrasion .card h3 {
        font-size: 16px;
    }

    .recon .abrasion .right {
        width: 100%;
        box-sizing: border-box;
    }

    .recon .abrasion .card {
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: 25px;
        left: auto;
        right: auto;
        margin: 0 auto;
    }

    .recon .tumor .section-split__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .recon .tumor .section-split__item:not(:last-child)::after {
        display: none;
    }

    .recon .lipoma {
        flex-flow: column-reverse;
    }

    .recon .lipoma .hero__content {
        align-items: center;
    }

    /* ************** 병원소개 **************** */

    .about {
        padding-top: 60px;
    }

    .about .mission .content-item {
        flex-flow: column-reverse;
        align-items: flex-start;
    }

    .about .mission .content-item.second {
        flex-flow: column;
    }

    .about .mission .brand-line {
        right: -80px;
        top: 171px;
        bottom: auto;
    }

    .about .mission .content-item-image img,
    .about .mission .content-item-image {
        width: 100%;
    }

    .about .profile .top {
        flex-direction: column;
        flex-flow: column-reverse;
        height: auto;
        padding: 40px 20px 0;
    }

    .about .profile .top .left img {
        /* margin: auto; */
        /* width: 174px; */
        /* bottom: 0; */
        /*  */
    }

    .about .profile .top .left .logo_wrapper {
        position: relative;
        width: 274px;
        height: 240px;
        overflow: hidden;
        margin: auto;
    }

    .about .profile .top .left .profile_top {
        position: absolute;
        z-index: 1;
    }

    .about .profile .top .left .logo_top {
        position: absolute;
        z-index: 0;
        top: 20px;
        right: 46px;
    }

    .about .profile .top .right {
        flex-direction: column;
    }

    .about .profile .top .divider {
        width: 50px;
        height: 2px;
    }

    .about .profile .list .item {
        flex-direction: column;
        gap: 12px;
    }

    .about .profile .list .item-content {
        flex-direction: column;
        gap: 0;
    }

    .about .commitment .inner {
        flex-direction: column;
        box-sizing: border-box;
        align-items: flex-start;
    }

    .about .commitment .left {
        width: 100%;
        box-sizing: border-box;
    }

    .about .commitment .left img {
        margin: 0 auto;
    }

    .about .brand .why-banpo-logo {
        width: 197px;
        top: auto;
        right: -20px;
        bottom: -50px;
    }

    /* *************** 진료시간 *************** */

    .hos_info {
        padding-top: 60px;
    }

    .hos_info .content .info-box {
        flex-direction: column;
    }

    .hos_info .address_box .address__item {
        flex-direction: column;
        gap: 12px;
    }

    .hos_info .traffic_box {
        flex-direction: column;
        gap: 20px;
    }

    .hos_info .traffic_box .bus-item {
        gap: 16px;
    }
}

@media (max-width: 768px) and (min-width: 490px) {
    .recon .laceration .hero__image .hero__img {
        max-width: 60%;
    }
}

@media (max-width: 490px) {
    .recon .laceration .hero__image .hero__img {
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .hero__subtitle {
        font-size: 16px;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__description {
        font-size: 16px;
    }

    .hero__item-text,
    .eye .hero__list .hero__item-text {
        font-size: 18px;
    }

    .hero__item-subtext,
    .eye .hero__list .hero__item-subtext {
        font-size: 18px;
    }

    .eye .hero__list {
        row-gap: 24px;
        column-gap: 26px;
    }

    .eye .eye_hero__image {
        max-width: 254px;
    }

    .eye .hero__inner {
        gap: 42px;
    }

    .section-split__inner {
        gap: 32px;
    }

    .section-split__label {
        font-size: 16px;
        font-weight: 400;
    }

    .section-split__title {
        font-size: 30px;
    }

    .section-split__desc {
        font-size: 16px;
    }

    .section-split__item-num {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .section-split__item-content p {
        font-size: 16px;
    }

    .eye .double-eyelid,
    .eye .opening-solution,
    .eye .anti-aging-eye-care,
    .eye .fat_reposition {
        padding-block: 100px;
    }

    .section-split {
        padding-block: 100px;
    }

    .section-split__content_col,
    .anti-aging-eye-care-results .section-split__content_col {
        gap: 32px;
    }

    .section-split__body_row-card-content {
        gap: 9px;
    }

    .section-split__body_row-card-content-title {
        font-size: 18px;
    }

    .section-split__body_row-card-content-desc {
        font-size: 16px;
    }

    .section-split__subtitle {
        font-size: 18px;
    }

    /* 스와이퍼 */
    .section-card-swiper .card-txt {
        padding-block: 25px;
    }

    .section-card-swiper .card-txt .title {
        font-size: 18px;
    }

    .section-card-swiper .card-txt .desc {
        font-size: 16px;
    }

    .anti-aging-eye-care-results .card_content_title {
        font-size: 18px;
    }

    .anti-aging-eye-care-results .card_content_desc_item {
        font-size: 16px;
    }

    .after-care .section-split__body_col-item-title {
        font-size: 18px;
    }

    .after-care .section-split__body_col-item-text {
        font-size: 16px;
    }

    .after-care .section-split__body_col-item {
        padding: 20px 16px;
    }

    /* **************** 주름 리프팅 **************** */
    .lifting .nasolabial .hero__inner,
    .lifting .v-line .hero__inner {
        padding-top: 58px;
    }

    .lifting .hero__list {
        gap: 12px;
    }

    .lifting .nasolabial .hero__list,
    .lifting .face-lift .hero__list,
    .lifting .endotine .hero__list {
        flex-direction: column;
    }

    .lifting .hero__list .hero__item-text {
        font-size: 14px;
    }

    .lifting .hero__title-sub {
        font-size: 34px;
    }

    .lifting .lifting_hero__image,
    .lifting .nasolabial .lifting_hero__image {
        width: 300px;
    }

    .v-line .tag img[class^="tag-icon-img"] {
        width: 4em;
    }

    .v-line .tag:nth-of-type(1) {
        top: 46%;
        left: 16%;
    }

    .v-line .tag:nth-of-type(2) {
        top: 58.5%;
        left: 21%;
    }

    .v-line .tag:nth-of-type(3) {
        top: 55.1%;
        right: -25%;
    }

    .lifting .faq-question {
        padding: 16px;
        gap: 8px;
    }

    .lifting .faq-answer {
        padding: 16px;
    }

    .lifting .faq-item.is-open .faq-question-text,
    .lifting .faq-question-text,
    .lifting .faq-answer {
        font-size: 18px;
        align-items: flex-start;
    }

    .lifting .faq-toggle-icon::before {
        width: 18px;
        height: 2px;
        margin-left: -9px;
        margin-top: -1px;
    }

    .lifting .faq-toggle-icon::after {
        width: 2px;
        height: 18px;
        margin-left: -1px;
        margin-top: -9px;
    }

    /* **************** 전후사진 **************** */

    .before-after .blur-img-icon {
        width: 18px;
        height: 18px;
    }

    .before-after .blur-img-text {
        font-size: 14px;
    }

    .before-after .panel-img-list-item-img.blur-img .blur-img-icon {
        width: 24px;
        height: 24px;
    }

    /* **************** 재건수술 **************** */

    .recon .hero {
        background-image: url(/img/reconstruction/hero_bg_mobile.webp);
    }

    .recon .hero .hero__title {
        font-size: 30px;
    }

    .recon .hero .hero__description {
        font-size: 18px;
    }

    .recon .hero .hero__headline {
        gap: 20px;
    }

    .recon .hero__list .hero__row {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .recon .hero__list .hero__row .hero__item {
        flex: 0 0 calc((100% - 80px) / 3);
        justify-content: center;
        align-items: center;
    }

    .recon .hero__list .hero__row .hero__item:nth-child(4) {
        margin-right: 40px;
    }

    .recon .laceration {
        min-height: auto;
        padding-block: 100px;
    }

    .recon .laceration .hero__list {
        flex-direction: column;
        gap: 12px;
    }

    .recon .hero__title-sub {
        font-size: 34px;
    }

    .recon .hero__content {
        gap: 20px;
    }

    .recon .laceration .hero__inner {
        height: 750px;
        min-height: auto;
    }

    .recon .abrasion .card {
        height: 200px;
    }

    .recon .tumor .section-split__headline {
        gap: 6px;
    }

    .recon .tumor .section-split__headline-container {
        gap: 20px;
    }

    .recon .tumor .section-split__item {
        gap: 8px;
    }

    .recon .tumor .section-split__item-content {
        gap: 12px;
    }

    .recon .tumor .section-split__item-title {
        font-size: 18px;
    }

    .recon .tumor .section-split__item {
        padding: 0;
    }

    .recon .tumor .section-split__list {
        gap: 30px;
        margin-bottom: 40px;
    }

    .recon .lipoma .hero__list {
        flex-direction: column;
        gap: 12px;
    }

    .recon .cyst .section-split__body_card_container {
        flex-direction: column;
        align-items: center;
    }

    .recon .cyst .card_content_desc_item {
        font-size: 16px;
    }

    .recon .cyst .section-split__body_card_container {
        gap: 16px;
    }

    .recon .lipoma .hero__inner {
        gap: 40px;
    }

    /* **************** 상담, 예약 **************** */
    .reservation {
        padding-top: 60px;
    }

    .reservation .section-split {
        padding-top: 58px;
    }

    /* 전후사진 */
    .before-after .sub-top {
        background-image: url("/img/before-after/top_bg_mobile.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 60px;
        height: 200px;
    }

    .before-after .sub-top__title {
        font-size: 34px;
    }

    .before-after .tab {
        padding: 16px 6px;
        font-size: 16px;
        white-space: nowrap;
    }

    .before-after .panels {
        padding-top: 20px;
    }

    .before-after__container {
        padding-inline: 0;
        padding-bottom: 58px;
    }

    .before-after .panel-img-wrap {
        aspect-ratio: 2 / 1;
        height: auto;
    }

    .before-after .panel-img-wrap .panel-img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    /*  */
    .before-after .panel-content {
        gap: 12px;
    }

    .before-after .panel-desc-wrap {
        padding: 8px 20px;
    }

    .before-after .panel-desc-text {
        font-size: 16px;
    }

    .panel-img-list-item-img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .before-after .panel-img-list-items,
    .before-after .panel-img-list-item {
        gap: 6px;
    }

    .before-after .panel-img-list-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after .panel-img-list {
        gap: 30px;
    }

    .before-after .img-notice .notice-description {
        font-size: 14px;
    }

    /* **************** 병원소개 **************** */

    .about .inner {
        padding-top: 50px;
        padding-bottom: 100px;
        gap: 40px;
    }

    .about .mission__diagonal-line--2 {
        bottom: 100px;
    }

    .about .mission .headline .title {
        font-size: 30px;
        text-align: center;
    }

    .about .mission .headline .description {
        font-size: 18px;
        text-align: center;
    }

    .about .mission .content-item-image {
        border-radius: 20px;
    }

    .about .mission .brand-line {
        right: -50px;
        top: 90px;
    }

    .about .mission .brand-line img {
        width: 134px;
    }

    .about .mission .content-item {
        gap: 20px;
    }

    .about .mission .content-item-text {
        font-size: 16px;
    }

    .about .mission .content {
        gap: 51px;
    }

    .about .brand .logo-img,
    .brand-content-logo-img {
        width: 288px;
    }

    .about .brand__content .headline .sub-title {
        font-size: 16px;
    }

    .about .brand__content .headline .title {
        font-size: 40px;
        text-align: center;
    }

    .about .brand__content .headline {
        gap: 25px;
    }

    .about .brand__content .brand-content-text {
        gap: 6px;
    }

    .about .brand__content {
        gap: 0;
    }

    .about .brand__content .content .description {
        font-size: 16px;
    }

    .about .brand__content .content {
        gap: 6px;
    }

    .about .brand__content .content .description-sub {
        text-align: center;
        font-size: 20px;
    }

    .about .profile {
        padding-block: 50px;
    }

    .about .profile .top {
        gap: 50px;
    }

    .about .profile .info .name {
        font-size: 40px;
    }

    .about .profile .info .position {
        font-size: 22px;
    }

    .about .profile .info {
        gap: 6px;
    }

    .about .profile .top .right {
        gap: 20.5px;
    }

    .about .profile .top .divider {
        width: 40px;
    }

    .about .profile .top .description {
        font-size: 22px;
        text-align: center;
    }

    .about .profile .list .item-header .title {
        font-size: 22px;
    }

    .about .profile .list .item-content .description {
        font-size: 18px;
    }

    .about .profile .list {
        gap: 20px;
    }

    .about .commitment {
        padding-block: 50px;
    }

    .about .commitment .left img {
        width: 100%;
    }

    .about .commitment .left {
        /* padding: 44.3px; */
    }

    .about .commitment .inner {
        gap: 20px;
    }

    .about .commitment .right .top .description {
        font-size: 20px;
    }

    .about .commitment .right .top {
        gap: 6px;
    }

    .about .commitment .right .bottom p {
        font-size: 24px;
    }

    .about .commitment .moving-text__inner p {
        font-size: 80px;
    }

    .about .commitment .moving-text__inner {
        height: 200px;
    }

    .about .commitment .right {
        gap: 20px;
    }

    .about .profile .mobile-spacing-sm {
        margin-left: 12px;
    }

    /* **************** 진료시간 **************** */
    .hos_info .top {
        padding-block: 65px;
        background-image: url(/img/info/top_bg_mobile.webp);
    }

    .hos_info .top .title {
        color: #171717;
        text-align: center;
        font-size: 22px;
        font-weight: 400;
        line-height: 130%;
        letter-spacing: -0.44px;
    }

    .hos_info .top .description {
        color: #262626;
        text-align: center;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;
    }

    .hos_info section.content {
        box-sizing: border-box;
        padding-bottom: 44px;
    }

    .hos_info .content__info .info_map {
        height: 240px;
    }

    .hos_info .content .info-box .title {
        font-size: 22px;
    }

    .hos_info .content .info-box .time .time-day {
        font-size: 18px;
        width: 6em;
        min-width: 6em;
    }

    .hos_info .content .info-box .time .time-time {
        font-size: 18px;
    }

    .hos_info .content .info-box .info-box__item {
        gap: 8px;
    }

    .hos_info .content .info-box .phone {
        font-size: 30px;
    }

    .hos_info .reservation-box .button-box {
        padding: 0;
        gap: 8px;
    }

    .hos_info .inner {
        gap: 40px;
    }

    .hos_info .address_box .address__item .address {
        font-size: 22px;
    }

    .hos_info .address_box .address__item .content {
        align-items: center;
    }

    .hos_info .address_box .address__item .address-content {
        font-size: 20px;
    }

    .hos_info .address_box {
        gap: 20px;
    }

    .hos_info .traffic_box .content-item {
        padding: 10px 16px;
        gap: 4px;
    }

    .hos_info .left .traffic-item .description,
    .hos_info .traffic_box .bus-content .description {
        font-size: 16px;
    }

    .hos_info .traffic_box .bus-item-title {
        padding: 6px 16px;
        white-space: nowrap;
    }

    .hos_info .traffic_box .bus-item-description {
        font-size: 16px;
    }

    .hos_info .traffic_box .bus-item {
        gap: 8px;
    }
}

/*  */
@media screen and (max-width: 1024px) {
    .section-card .section-split__inner {
        padding-inline: 16px;
    }

    .before-after .tabs {
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-inline: 23px;
        box-sizing: border-box;
    }

    .before-after .tabs li {
        flex: 0 0 auto;
    }

    .before-after .tab {
        white-space: nowrap;
    }

    .before-after .panel-img-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        padding: 0;
        border: none;
        background: transparent;
        border-radius: 50%;
        cursor: pointer;
    }

    .before-after .panel-img-nav-btn:disabled {}

    .before-after .panel-img-nav-prev {
        left: 8px;
    }

    .before-after .panel-img-nav-next {
        right: 8px;
    }
}

@media screen and (min-width: 1025px) {
    .section-card-swiper .swiper-pagination {
        display: none;
    }
}