@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=block");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
/* global.css 분리 */
/* @import url("/assets/css/core_2304.css"); */

/* 수원점 */
:root {
    /* font */
    --page-font-family: "notokr", sans-serif;
    --Montserrat: "Montserrat", sans-serif;
    /* nav */
    --navTopHeight: 60px;
    --navBrandHeight: 95px;
    --navMenuHeight: 60px;
    --navHeight: 95px;
    /* page-color */
    --oz-gold: #d4b59e;
    --oz-gold2: #faebd7;
    --oz-red: #ab2328;
    --oz-orange: #f08635;
    --page-point-color: var(--oz-gold);
    --page-point-color-light: #e1e8fa;
    --page-point-color-dark: #af7e58;
    --page-point-color-hover: var(--page-point-color-dark);
    /* grid */
    --grid-1fr: minmax(0, 1fr);
    --grid-2repeat: repeat(2, var(--grid-1fr));
    --grid-3repeat: repeat(3, var(--grid-1fr));
    --grid-4repeat: repeat(4, var(--grid-1fr));
    --grid-5repeat: repeat(5, var(--grid-1fr));
    --grid-6repeat: repeat(6, var(--grid-1fr));
    --grid-7repeat: repeat(7, var(--grid-1fr));
    --grid-8repeat: repeat(8, var(--grid-1fr));
    /* border-radius: ; */
    --radius-sm: 5px;
    --radius-base: 10px;
    --radius-md: 15px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gradLow: "GRAD"-25;
    --gradZero: "GRAD" 0;
    --gradHigh: "GRAD" 200;
    --opsz: "opsz" 48;
    /* fill icon */
    --gms100_Fill: "FILL" 1, "wght" 100, var(--opsz);
    --gms200_Fill: "FILL" 1, "wght" 200, var(--opsz);
    --gms300_Fill: "FILL" 1, "wght" 300, var(--opsz);
    --gms400_Fill: "FILL" 1, "wght" 400, var(--opsz);
    --gms500_Fill: "FILL" 1, "wght" 500, var(--opsz);
    --gms600_Fill: "FILL" 1, "wght" 600, var(--opsz);
    --gms700_Fill: "FILL" 1, "wght" 700, var(--opsz);
    /* outlined icon */
    --gms100_Out: "FILL" 0, "wght" 100, var(--opsz);
    --gms200_Out: "FILL" 0, "wght" 200, var(--opsz);
    --gms300_Out: "FILL" 0, "wght" 300, var(--opsz);
    --gms400_Out: "FILL" 0, "wght" 400, var(--opsz);
    --gms500_Out: "FILL" 0, "wght" 500, var(--opsz);
    --gms600_Out: "FILL" 0, "wght" 600, var(--opsz);
    --gms700_Out: "FILL" 0, "wght" 700, var(--opsz);
}

* {
    word-break: keep-all;
}
body#site {
    display: none;
    font-family: var(--page-font-family);
}

body#site > .container {
    width: 100%;
    padding: 0;
}

@media (max-width: 767px) {
    html,
    body#site {
        font-size: 16px;
    }
}

#force__wrapper {
    bottom: 30px !important;
}
#force__wrapper .force__btn {
    border-radius: 0 4px 4px 0 !important;
}

#force__wrapper #hpBranch {
    width: 115px;
    margin-top: 10px;
    margin-right: -1000px;
}

#force__wrapper #hpBranch span {
    opacity: 1;
    font-size: 15px;
    font-weight: 700;
}
.icon::before {
    font-family: var(--gms);
}

.icon {
    display: flex;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.icon.cir {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 50%;
    text-align: center;
    padding: 20px;
}

.icon.cir h2 {
    font-size: clamp(26px, 2cqw, 30px);
}

.icon.check-solid-ic {
    flex: none;
    background-image: url(/public/img/sub/icon/check-solid-ic.png);
    width: clamp(20px, 2cqw, 30px);
    aspect-ratio: 1;
}

.icon.check-solid-ic.wh {
    background-image: url(/public/img/sub/icon/check-solid-w-ic.png);
}

.icon.check-solid-ic.bk {
    background-image: url(/public/img/sub/icon/check-solid-k-ic.png);
}

.icon.check-solid-ic.orange {
    background-image: url(/public/img/sub/icon/check-solid-o-ic.png);
}

.icon.check-cir-ic {
    background-image: url(/public/img/sub/icon/check-cir-ic.png);
    width: clamp(65px, 5cqw, 85px);
    aspect-ratio: 1;
}

.icon.check-cir-ic.bold {
    background-image: url(/public/img/sub/icon/check-cir-bold-ic.png);
}

.icon.check-fill-ic {
    background-image: url(/public/img/sub/icon/check-fill-ic.png);
}

.icon.youtube {
    background-image: url(/public/img/sub/icon/youtube-ic.png);
}
.icon.tel-main-ic {
    background-image: url(/public/img/sub/icon/tel-main-ic.png);
}
.icon.kakao-ic {
    background-image: url(/public/img/sub/icon/kakao-ic.png);
}

.mont {
    font-family: var(--Montserrat) !important;
    letter-spacing: 0;
}

.oz-gold {
    color: var(--oz-gold);
}
.oz-gold2 {
    color: var(--oz-gold2);
}

.oz-orange {
    color: var(--oz-orange);
}

.oz-red {
    color: var(--oz-red);
}

.oz-black {
    color: #000;
}

.fw-300,
.thin300 {
    font-weight: 300 !important;
}
.fw-400,
.thin,
.thin400 {
    font-weight: 400 !important;
}
.fw-700,
.bold {
    font-weight: 700 !important;
}

.fw-500,
.normal {
    font-weight: 500 !important;
}

.fs-sm {
    font-size: clamp(16px, 2vw, 19px) !important;
}

.fs-md {
    font-size: clamp(19px, 2vw, 21px) !important;
}
.fs-b-md {
    font-size: clamp(21px, 2vw, 23px) !important;
}
.fs-lg {
    font-size: clamp(27px, 2vw, 30px) !important;
    font-weight: 400;
}

.ta-left {
    text-align: left !important;
}
.ta-center {
    text-align: center !important;
}
.ta-right {
    text-align: right !important;
}

.ls-0 {
    letter-spacing: 0 !important;
}

.gap-100 {
    gap: 100px !important;
}

.gap-95 {
    gap: 95px !important;
}

.gap-80 {
    gap: 80px !important;
}

.gap-55 {
    gap: 55px !important;
}

.gap-40 {
    gap: 40px !important;
}

.gap-25 {
    gap: 25px !important;
}
.gap-20 {
    gap: 20px !important;
}
.gap-10 {
    gap: 10px !important;
}
.gap-0 {
    gap: 0 !important;
}

.ac-c {
    align-content: center !important;
}

.ai-c {
    align-items: center !important;
}

.jc-c {
    justify-content: center !important;
}

.f-1 {
    flex: 1;
}
.inline-block,
.in-block {
    display: inline-block;
}
.inline-flex,
.in-flex {
    display: inline-flex;
}

.flex,
.flex-wrap,
.d-f {
    display: flex !important;
}

.grid,
.grid-wrap,
.d-g {
    display: grid !important;
}

.f-d-col {
    flex-direction: column !important;
}

.f-center {
    justify-content: center !important;
    align-items: center !important;
}

.g-s-center {
    justify-self: center !important;
}

.f-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.f-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

.bg-img {
    background-color: #bbb;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-lift {
    background-image: url(/public/img/sub/common/lift-bg.jpg);
}

.img-process {
    background-image: url(/public/img/sub/common/process-bg.jpg);
}

.img-care {
    background-image: url(/public/img/sub/common/care-bg.jpg);
}

.bg-orange {
    background-color: var(--oz-orange) !important;
}
.bg-black {
    background-color: #000;
}
.bg-gold {
    background-color: #e3d2be !important;
}
.bg-gold2 {
    background-color: #d4b59e !important ;
}
.bg-lightgold {
    background-color: #f8f4f1 !important ;
}
.bg-lightyellow {
    background-color: #f9f2e1 !important;
}
.bg-red {
    background-color: #ab2328 !important;
}
.bg-blue {
    background-color: #4964a2 !important;
}
.bg-juveblue {
    background-color: #0382cf !important;
}
.bg-ltgold {
    background-color: #fdfaf3 !important;
}
.bg-ltblue {
    background-color: #e9eaed !important;
}
.bg-navy {
    background-color: #0d1023 !important;
}
.bg-k {
    background-color: #000 !important;
}
.bg-k .mid-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.bg-k .mid-text span {
    line-height: 1;
    color: #fff;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 500;
    letter-spacing: 0.05rem;
}
.bg-lt80 {
    background-color: hsl(0, 0%, 80%) !important;
}
.bg-lt85 {
    background-color: hsl(0, 0%, 85%) !important;
}

.bg-lt97 {
    background-color: hsl(0, 0%, 97%) !important;
}
.bg-lt90 {
    background-color: hsl(0, 0%, 90%) !important;
}

.bg-lt95 {
    background-color: hsl(0, 0%, 95%) !important;
}

.bg-grey {
    background-color: hsl(60, 2%, 89%) !important;
}

.bg-w,
.bg-lt100 {
    background-color: #fff !important;
}

.bg-half {
    position: relative;
    padding-bottom: 150px;
}

.bg-half::before {
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 480px;
    display: block;
    background-color: #e4e4e3;
}

.bg-t {
    background-color: transparent !important;
}

.p-20 {
    padding: 20px 0 !important;
}

.p-40 {
    padding: 40px !important;
}

.p-60 {
    padding: clamp(40px, 5cqw, 60px) !important;
}
.p-100 {
    padding: 100px !important;
}
.p-b0 {
    padding-bottom: 0 !important;
}
.p-b55 {
    padding-bottom: 55px !important;
}
.p-b80 {
    padding-bottom: 80px !important;
}
.p-b90 {
    padding-bottom: 90px !important;
}
.p-b100 {
    padding-bottom: 100px !important;
}
.p-b150 {
    padding-bottom: 150px !important;
}
.p-b200 {
    padding-bottom: 200px !important;
}

.p-t0 {
    padding-top: 0 !important;
}
.p-t50 {
    padding-top: 50px !important;
}
.p-t80 {
    padding-top: 80px !important;
}
.p-t90 {
    padding-top: 90px !important;
}
.p-t100 {
    padding-top: 100px !important;
}
.p-t120 {
    padding-top: 120px !important;
}
.p-t140 {
    padding-top: 140px !important;
}
.p-r0 {
    padding-right: 0 !important;
}
.p-l0 {
    padding-left: 0 !important;
}
.p-0 {
    padding: 0 !important;
}
.p-tb20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.p-tb30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.p-tb40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
.p-tb50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.p-tb60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
.p-tb70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
.p-tb80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
.p-tb90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}
.p-tb100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
.p-tb110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}
.p-tb120 {
    padding: 120px 0 !important;
}
.p-tb150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}
.p-tb300 {
    padding: 300px 0 !important;
}
.p-lr20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.p-lr30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}
.p-lr60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}
.p-lr80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}
.p-lr90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}
.p-lr100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}
.p-lr150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
}

.m-t0 {
    margin-top: 0px !important;
}
.m-t10 {
    margin-top: 10px !important;
}
.m-t20 {
    margin-top: 20px !important;
}
.m-t30 {
    margin-top: 30px !important;
}
.m-t40 {
    margin-top: 40px !important;
}
.m-t50 {
    margin-top: 50px !important;
}
.m-t80 {
    margin-top: 80px !important;
}
.m-t100 {
    margin-top: clamp(70px, 8cqw, 100px) !important;
}
.m-0 {
    margin: 0 !important;
}
.m-30 {
    margin: 30px !important;
}
.m-60 {
    margin: 60px !important;
}
.m-100 {
    margin: 100px !important;
}
.w-100p {
    width: 100%;
}

.w-20 {
    width: 20px !important;
}

.w-25 {
    width: 25px !important;
}
.w-50 {
    width: 50px !important;
}
.w-80 {
    width: 80px !important;
}
.w-90 {
    width: 90px !important;
}

.w-100 {
    width: 100px !important;
}

@media (min-width: 1460px) {
    .w-300,
    .w-300.img-box > img {
        width: 300px;
    }

    .w-1140,
    .w-1140.img-box > img {
        width: 1140px;
    }
}

.h-90 {
    height: 90px !important;
}
.h-120 {
    height: 120px !important;
}
.h-130 {
    height: clamp(80px, 8cqw, 130px) !important;
}
.h-150 {
    height: 150px !important;
}

.h-300 {
    height: 300px !important;
}

:where(.flex-wrap, .grid-wrap) > .item > .info > h4 {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}

:where(.flex-wrap, .grid-wrap) > .item > .info > p {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
}

.center-wrap {
    margin-left: auto !important;
    margin-right: auto !important;
}

.bf-none::before {
    content: none !important;
}

.border {
    border: 1px solid #ccc !important;
}

.col {
    flex: 1;
}
.col.flex > * {
    flex: 1;
}
.col-2 {
    grid-template-columns: var(--grid-2repeat) !important;
}

.col-3 {
    grid-template-columns: var(--grid-3repeat) !important;
}

.col-4 {
    grid-template-columns: var(--grid-4repeat) !important;
}

.col-5 {
    grid-template-columns: var(--grid-5repeat) !important;
}

.col-6 {
    grid-template-columns: var(--grid-6repeat) !important;
}

.col-start-2 {
    grid-column: 2;
}

.col-start-3 {
    grid-column: 3;
}

:where(.container, .row) {
    position: relative;
}
@media (max-width: 1200px) {
    .p-md-60 {
        padding: 60px !important;
    }
    .p-md-90 {
        padding: 90px !important;
    }
    .p-md-100 {
        padding: 100px !important;
    }
}
@media (max-width: 992px) {
    .p-sm-0 {
        padding: 0 !important;
    }
    .p-sm-60 {
        padding: 60px !important;
    }
    .p-sm-90 {
        padding: 90px !important;
    }
}
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    .p-xs-0 {
        padding: 0px !important;
    }
    .p-xs-20 {
        padding: 20px !important;
    }
    .p-xs-30 {
        padding: 30px !important;
    }
    .p-xs-40 {
        padding: 40px !important;
    }
    .p-xs-50 {
        padding: 50px !important;
    }
}

@media (min-width: 360px), (max-width: 767px) {
    .flex-xs-row {
        flex-direction: row !important;
    }
    .flex-xs-column {
        flex-direction: column !important;
    }
    .order-xs-1 {
        order: 1;
    }
    .order-xs-2 {
        order: 2;
    }
    .order-xs-3 {
        order: 3;
    }
    .col-temp-xs-1 {
        grid-template-columns: var(--grid-1fr) !important;
    }
    .flex.col-temp-xs-1 > * {
        flex: inherit;
        width: 100%;
    }
    .col-temp-xs-2 {
        grid-template-columns: var(--grid-2repeat) !important;
    }
    .flex.col-temp-xs-2 > * {
        flex: 1 0 50%;
    }
    .col-temp-xs-3 {
        grid-template-columns: var(--grid-3repeat) !important;
    }
    .col-temp-xs-4 {
        grid-template-columns: var(--grid-4repeat) !important;
    }
    .col-temp-xs-5 {
        grid-template-columns: var(--grid-5repeat) !important;
    }
    .col-temp-xs-6 {
        grid-template-columns: var(--grid-6repeat) !important;
    }
    .col-row-xs-1 {
        grid-row: 1;
    }
    .gap-xs-85 {
        gap: 85px !important;
    }
    .gap-xs-75 {
        gap: 75px !important;
    }
    .gap-xs-55 {
        gap: 55px !important;
    }
    .gap-xs-50 {
        gap: 50px !important;
    }
    .gap-xs-45 {
        gap: 45px !important;
    }
    .gap-xs-40 {
        gap: 40px !important;
    }
    .gap-xs-30 {
        gap: 30px !important;
    }
    .gap-xs-20 {
        gap: 20px !important;
    }
    .gap-xs-0 {
        gap: 0 !important;
    }
    .m-xs-30 {
        margin: 30px !important;
    }
    .m-xs-t-0 {
        margin-top: 0 !important;
    }
}
@media (min-width: 992px) {
    .flex-sm-row {
        flex-direction: row !important;
    }
    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-sm-column {
        flex-direction: column !important;
    }
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
    .order-sm-3 {
        order: 3;
    }
    .col-temp-sm-1 {
        grid-template-columns: var(--grid-1fr) !important;
    }
    .col-temp-sm-2 {
        grid-template-columns: var(--grid-2repeat) !important;
    }
    .flex.col-temp-sm-2 > * {
        flex: 1 0 50%;
    }
    .col-temp-sm-3 {
        grid-template-columns: var(--grid-3repeat) !important;
    }
    .col-temp-sm-4 {
        grid-template-columns: var(--grid-4repeat) !important;
    }
    .col-temp-sm-5 {
        grid-template-columns: var(--grid-5repeat) !important;
    }
    .col-temp-sm-6 {
        grid-template-columns: var(--grid-6repeat) !important;
    }
    .col-row-xs-1 {
        grid-row: inherit;
    }
    .col-row-sm-1 {
        grid-row: 1;
    }
    .col-span-sm-2 {
        grid-column: span 2;
    }
    .gap-sm-85 {
        gap: 85px !important;
    }
    .gap-sm-75 {
        gap: 75px !important;
    }
    .gap-sm-55 {
        gap: 55px !important;
    }
    .gap-sm-50 {
        gap: 50px !important;
    }
    .gap-sm-45 {
        gap: 45px !important;
    }
    .gap-sm-40 {
        gap: 40px !important;
    }
    .gap-sm-30 {
        gap: 30px !important;
    }
    .gap-sm-20 {
        gap: 20px !important;
    }
    .m-sm-t-0 {
        margin-top: 0 !important;
    }
    .gap-sm-0 {
        gap: 0 !important;
    }
}

@media (min-width: 1200px) {
    .flex-md {
        display: flex !important;
    }
    .flex-md-row {
        flex-direction: row !important;
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse;
    }
    .flex-md-column {
        flex-direction: column;
    }
    .order-md-1 {
        order: 1;
    }
    .order-md-2 {
        order: 2;
    }
    .order-md-3 {
        order: 3;
    }
    .col-temp-md-1 {
        grid-template-columns: var(--grid-1fr) !important;
    }
    .col-temp-md-2 {
        grid-template-columns: var(--grid-2repeat) !important;
    }
    .flex.col-temp-md-2 > * {
        flex: 1 0 50%;
    }
    .col-temp-md-3 {
        grid-template-columns: var(--grid-3repeat) !important;
    }
    .col-temp-md-4 {
        grid-template-columns: var(--grid-4repeat) !important;
    }
    .col-temp-md-5 {
        grid-template-columns: var(--grid-5repeat) !important;
    }
    .col-temp-md-6 {
        grid-template-columns: var(--grid-6repeat) !important;
    }
    .col-temp-md-8 {
        grid-template-columns: var(--grid-8repeat) !important;
    }
    .col-row-sm-1 {
        grid-row: inherit;
    }
    .col-row-md-1 {
        grid-row: 1;
    }
    .col-column-md-2 {
        grid-column: 2;
    }
    .col-column-md-3 {
        grid-column: 3;
    }
    .gap-md-100 {
        gap: 100px !important;
    }
    .gap-md-70 {
        gap: 70px !important;
    }
    .gap-md-55 {
        gap: 55px !important;
    }
    .gap-md-50 {
        gap: 50px !important;
    }
    .gap-md-45 {
        gap: 45px !important;
    }
    .gap-md-40 {
        gap: 40px !important;
    }
    .gap-md-30 {
        gap: 30px !important;
    }
    .gap-md-20 {
        gap: 20px !important;
    }
    .gap-md-0 {
        gap: 0 !important;
    }
}

@media (min-width: 1460px) {
    .col-temp-lg-1 {
        grid-template-columns: var(--grid-1fr) !important;
    }
    .col-temp-lg-2 {
        grid-template-columns: var(--grid-2repeat) !important;
    }
    .col-temp-lg-3 {
        grid-template-columns: var(--grid-3repeat) !important;
    }
    .col-temp-lg-4 {
        grid-template-columns: var(--grid-4repeat) !important;
    }
    .col-temp-lg-5 {
        grid-template-columns: var(--grid-5repeat) !important;
    }
    .col-temp-lg-6 {
        grid-template-columns: var(--grid-6repeat) !important;
    }
    .gap-lg-55 {
        gap: 55px !important;
    }
    .gap-lg-50 {
        gap: 50px !important;
    }
    .gap-lg-45 {
        gap: 45px !important;
    }
    .gap-lg-40 {
        gap: 40px !important;
    }
    .gap-lg-30 {
        gap: 30px !important;
    }
    .gap-lg-20 {
        gap: 20px !important;
    }
    .gap-lg-0 {
        gap: 0;
    }
    .container {
        width: 1430px;
    }
    .community .container {
        width: 1200px;
    }
}

html .swiper {
    width: 100%;
}
html .swiper-slide {
    height: auto;
}

span.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    aspect-ratio: 1;
    font-variation-settings: var(--gms300_Out), var(--gradZero);
    user-select: none;
}

/* input 색상 초기화 */
input:is(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

img {
    flex-shrink: 0;
    image-orientation: from-image;
}

img.max1140 {
    max-width: 1140px;
}
img.circle {
    border-radius: 500px;
}
.img-box {
    overflow: hidden;
    position: relative;
}
@media (max-width: 767px) {
    .img-box.half-disapear-xs {
        aspect-ratio: 1;
    }
    .img-box.half-disapear-xs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .img-box.half-disapear-xs::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 30%;
        left: 0;
        bottom: 0;
        background: linear-gradient(to top, white, transparent);
        opacity: 1;
    }
    .scroll-box-xs {
        position: relative;
        touch-action: pan-x;
        overflow-x: auto;
    }
    .img-box.scroll-box-xs img {
        max-width: 700px;
        width: auto !important;
        height: auto !important;
    }
    .img-wrap.scroll-box-xs {
        display: flex !important;
    }
    .img-wrap.scroll-box-xs > .img-box {
        width: auto !important;
        height: auto !important;
    }
    .img-wrap.col-temp-xs-2.scroll-box-xs > .img-box {
        max-width: 350px;
        flex-shrink: 0;
    }
    .scroll-box-xs::before {
        z-index: 10;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        content: "\e9ec";
        font-family: var(--gms);
        font-variation-settings: var(--gms500_Fill);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90px;
        font-size: 44px;
        aspect-ratio: 1;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(20px);
        color: #fff;
        text-align: center;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
        animation: 0.5s scrollHide 0.25s ease-in forwards paused;
    }
    @keyframes scrollHide {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    .scroll-box-xs:is(:hover, :focus)::before {
        animation-play-state: running;
    }
}
* + .img-wrap {
    margin-top: 30px;
}

.img-wrap {
    gap: 20px;
}

.arrow {
    position: relative;
}

.arrow::before {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--gms);
    content: "\e5cc";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    width: 50px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-size: 40px;
    padding-left: 3px;
    line-height: 1;
}

[class*="radius"] {
    position: relative;
    overflow: hidden;
}

.radius-50 {
    aspect-ratio: 1;
    border-radius: 50%;
}

.radius-sm {
    border-radius: var(--radius-sm);
}

.radius-md {
    border-radius: var(--radius-md);
}

.radius-base {
    border-radius: var(--radius-base);
}

.radius-none {
    border-radius: 0 !important;
}

:is(ol, ul, li, dl) {
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1;
    list-style-type: none;
    list-style-position: inside;
}

:is(p, h1, h2, h3, h4, h5, h6, dt dd, th, td, li) {
    position: relative;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: -0.035em;
    color: #000;
}

.t-wh :is(p, h1, h2, h3, h4, h5, h6, dt dd, th, td, li) {
    color: #fff;
}

small {
    font-size: var(--font-size-1xs);
}

/* default */
p,
dd,
li,
li > a {
    font-size: 17px;
}

p b {
    font-weight: 600;
}

th,
td {
    font-size: 17px;
}

:is(a, a:hover) {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    font-size: 21px;
}

br {
    visibility: visible;
    opacity: 0;
}

@media (max-width: 767px) {
    br {
        display: none;
    }
}

.row::before,
.row::after,
.container::before,
.container::after {
    content: none;
    display: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row > * {
    float: inherit;
}

.grid {
    display: grid !important;
}

/* 구글맵 */
iframe[src^="https://www.google.com/"]
{
    background-color: #e5e3df;
    margin-bottom: -6px;
}

/* 유튜브 iframe */
.video-box {
    padding-top: clamp(25px, 5cqw, 100px);
    padding-left: clamp(25px, 5cqw, 60px);
    padding-right: clamp(25px, 5cqw, 60px);
    padding-bottom: clamp(25px, 5cqw, 100px);
    background-color: rgba(243, 243, 243, 1);
}
iframe[title^="YouTube"] {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
}

/* =================================== navbar =================================== */
#gnbauth {
    display: none;
}
#gnbauth i {
    display: none;
}

#navTop {
    background-color: var(--oz-gold);
    color: #fff;
}
#navTop .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navTopHeight);
}

#navTop :is(a, dt, dd, p) {
    color: inherit;
    font-size: clamp(15px, 1.5cqw, 17px);
    line-height: 1;
    color: #fff;
}
#navTop :is(a) {
    letter-spacing: 0.1em;
}
#navTop :is(dl, ul) {
    display: flex;
    align-items: center;
    line-height: 1;
}

#navTop .call {
    gap: 15px;
}

#navTop dt {
    font-weight: 400;
}

#navTop dd {
    font-weight: 700;
}

#navTop .user {
    gap: 30px;
}

#navBrand .subject {
    color: #000;
    font-size: clamp(15px, 1.5cqw, 17px);
}

#navBrand .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    height: var(--navBrandHeight);
    align-items: center;
}

.contact {
    justify-self: flex-end;
    display: grid;
    grid-template-columns: var(--grid-3repeat) min-content;
    gap: 5px;
}

.contact .sns a {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    line-height: 1;
}
#navBrand .contact .sns a {
    width: clamp(35px, 4cqw, 40px);
}

#footer .contact .sns a {
    width: 50px;
}

.contact .sns i {
    font-size: 18px;
    line-height: 1;
}

.contact .sns.instagram a {
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 35%, #dc2743 45%, #4c00ff 100%);
}

.contact .sns.instagram i {
    font-size: 20px;
}

.contact .sns.youtube a {
    background-color: #e12f2f;
}
.contact .sns.blog a {
    background-color: #2fb44a;
}

#navBrand .branch {
    margin-left: 15px;
}

#navBrand .branch a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 100%;
    padding: 0px 15px 1px;
    background-color: #000;
    border-radius: var(--radius-sm);
    color: #fff;
    line-height: 1;
    font-size: clamp(15px, 1.5cqw, 17px);
}

#navBrand .branch i {
    color: var(--oz-gold);
    font-size: 16px;
}

#navBrand .branch a:hover {
    background-color: var(--oz-gold);
    color: #000;
}

#navBrand .branch a:hover i {
    color: #000;
}

/* side-menu */
.side-wrap {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: space-between;
    background-color: #222329;
}
.side-wrap > :is(.call, .logo, .navbar-side-button) {
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.side-wrap .logo img {
    height: 25px;
}
.side-wrap .call span.material-symbols-outlined {
    font-size: 21px;
}
.side-wrap #bar span.material-symbols-outlined {
    font-size: 24px;
}
.side-wrap .call span.material-symbols-outlined,
.side-wrap #bar span.material-symbols-outlined {
    font-variation-settings: var(--gms500_Fill);
    line-height: 1;
    color: #fff;
}
#navbar-side-menu .menu-header {
    padding: 17px 17px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#navbar-side-menu .menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbar-side-menu .menu-top .logo {
    padding: 0;
}
#navbar-side-menu .menu-top .navbar-side-button span.material-symbols-outlined {
    font-size: 34px;
    margin-right: -4px;
    color: var(--oz-gold);
}
#navbar-side-menu .menu-user ul {
    display: flex;
    gap: 10px;
}
#navbar-side-menu .menu-user ul li {
    flex: 1;
    text-align: center;
}
#navbar-side-menu .menu-user ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 40px;
    border: 1px solid #b9b9b9;
    border-radius: 5px;
    color: #222;
    font-size: 13px;
    line-height: 1;
}
#navbar-side-menu .menu-sns ul {
    display: flex;
    justify-content: center;
}
#navbar-side-menu .menu-sns ul a {
    width: 40px;

    background: var(--oz-gold) !important;
}
#navbar-side-menu {
    z-index: 1005;
    transition: 0.6s;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateX(100%);
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    width: 85%;
    background: #fff;
}

#navbar-side-menu.open {
    transform: translateX(0%);
}
#navbar-side-menu .navbar-nav > .dropdown > a {
    justify-content: space-between;
    color: #999;
}

#navbar-side-menu .navbar-nav > .dropdown > a:hover {
    color: inherit;
    background-color: inherit;
}

#navbar-side-menu .navbar-nav > .dropdown > a::after {
    content: "\e5cc";
    font-family: var(--gms);
    font-size: 17px;
}
#navbar-side-menu .onColor > a:hover,
#navbar-side-menu .onColor > a {
    background-color: var(--oz-gold) !important;
    color: #fff !important;
}
#navbar-side-menu .dropdown-menu {
    min-width: inherit;
    z-index: -1;
}
#navbar-side-menu .onColor .dropdown-menu {
    display: block;
    z-index: 5;
}

#navbar-side-menu .menu-inner {
    background-color: #f4f4f4;
}

#navbar-side-menu .navbar-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    float: inherit !important;
    margin: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

#navbar-side-menu .navbar-nav::before,
#navbar-side-menu .navbar-nav::after {
    content: none;
}
#navbar-side-menu .navbar-nav > li {
    display: flex;
}

#navbar-side-menu .navbar-nav > li > a {
    position: relative;
    transition: 0.2s;
    padding: 0;
    line-height: 1;
    margin: 0;
    width: 50%;
    font-size: 22px;
    color: inherit;
    font-weight: 500;
    /* color: #fff; */
    display: inline-block;
}

#navbar-side-menu .navbar-nav > .open > a,
#navbar-side-menu .navbar-nav > .open > a:focus,
#navbar-side-menu .navbar-nav > .open > a:hover {
    background-color: transparent;
}

#navbar-side-menu .dropdown {
    position: static;
}
#navbar-side-menu .dropdown,
#navbar-side-menu .dropdown li {
    height: 50px;
    margin: 0;
}
#navbar-side-menu .navbar-nav > li > a {
    background-color: #fff;
}

#navbar-side-menu .navbar-nav > li + li > a,
#navbar-side-menu .dropdown-menu li + li > a {
    border-top: 1px solid #ddd;
}
#navbar-side-menu .navbar-nav > li > a,
#navbar-side-menu .dropdown-menu li a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: clamp(13px, 3.2cqw, 14px);
    padding: 0 15px;
    letter-spacing: -0.034em;
}

#navbar-side-menu .dropdown-menu {
    position: absolute;
    top: 0;
    right: 0;
    left: inherit;
    width: 50%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}
#navbar-side-menu .dropdown-menu > .container {
    padding: 0;
}
#navbar-side-menu .dropdown-menu li a {
    color: #222;
}

#navbar-side-menu .dropdown-menu a:hover {
    background: transparent;
}

#navbar-side-overlay {
    z-index: 1000;
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    /* background: rgba(0, 0, 0, 0.3); */
}

.navbar .caret {
    display: none;
}

:where(.navbar-header, .navbar > .container) {
    display: flex;
}

.navbar-inverse .navbar-header {
    display: none !important;
}

.navbar-inverse > .container {
    width: 100%;
    justify-content: space-between;
}

.navbar-inverse .navbar-right {
    margin-right: 0 !important;
}

.navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
.navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
    color: inherit;
    background-color: inherit;
}

/* 상단 메뉴 */
.navbar-inverse {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 0px 0px;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 0;
}

/* nav 로고 */
.navbar-brand {
    width: 300px;
    height: auto;
    margin: 0 !important;
    padding: 0;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-weight: 400;
    color: #222;
}

/* nav 서브메뉴 dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #000;
}

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #fff;
}

/* nav 대메뉴&서브메뉴 hover,focus 모바일 제외 */
/* nav 대메뉴 클릭&후버 시 */
.navbar-inverse .navbar-nav > li.onColor > a,
.navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
.navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
    background: none;
    color: #b28b6d;
}

/* nav 서브메뉴 dropdown-menu hover */
.navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
    background: var(--oz-gold);
    color: #fff;
}

/* desktop */
@media (min-width: 768px) {
    .nav-side {
        display: none;
    }

    :root {
        --dropHeight: clamp(190px, 18.5cqw, 282px);
        --dropDur: 0.35s;
        --dropDurText: 0.2s;
    }

    #site {
        padding-top: 0;
    }

    #navBrand {
        border-bottom: 1px solid #ededed;
    }

    /* pc nav 높이 */
    .navbar-inverse {
        position: sticky;
        top: calc((var(--navTopHeight) + var(--navBrandHeight)) * -1);
    }
    .navbar-inverse .navbar-header {
        display: none;
    }

    .navbar-inverse > .container {
        position: relative;
        top: 0;
        justify-content: center;
    }

    .navbar-inverse .navbar-right::before,
    .navbar-inverse .navbar-right::after {
        content: none;
    }

    .navbar-inverse .navbar-right {
        justify-content: space-between;
        margin: 0 -15px;
    }

    .navbar-inverse :is(.container, .navbar-collapse .navbar-right, .navbar-collapse .navbar-right > li, .navbar-collapse .navbar-right > li > a) {
        position: static;
        height: var(--navMenuHeight);
    }

    .navbar-inverse :is(.navbar-right, .navbar-right > li) {
        float: inherit !important;
    }

    .navbar-inverse :is(.navbar-right, .navbar-right > li > a) {
        display: flex;
    }

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li {
        position: static;
        flex-grow: 1;
    }

    .navbar-inverse .navbar-nav > li > a {
        transition: var(--dropDurText);
        justify-content: center;
        align-items: center;
        padding: 0px clamp(10px, 1.5cqw, 20px);
        font-size: clamp(15px, 1.5cqw, 17px);
    }

    .navbar-collapse.container {
        position: relative;
        overflow: hidden;
        height: var(--navMenuHeight) !important;
    }

    .navbar-collapse.container::after {
        transition: var(--dropDur);
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        height: 0px;
        background: rgba(255, 255, 255, 0.95);
    }

    .navbar-collapse.container:hover::after {
        height: var(--dropHeight);
    }

    /* nav 서브메뉴 dropdown-menu  */
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu > .container {
        display: grid;
        align-items: flex-start;
        grid-template-columns: minmax(0, auto) minmax(0, clamp(300px, 30cqw, 500px));
        gap: clamp(30px, 2cqw, 40px);
        height: 100%;
    }

    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu {
        opacity: 0;
        z-index: 1;
        transition: height var(--dropDur);
        display: flex;
        overflow: hidden;
        height: 0px;
        top: 100%;
        left: 0;
        right: 0;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        border: 0;
        padding: 0;
    }

    .navbar-inverse .navbar-collapse .navbar-nav li:is(.drop, :hover) .dropdown-menu {
        height: var(--dropHeight);
    }

    .navbar-inverse .navbar-collapse .navbar-nav li.on .dropdown-menu {
        z-index: 10;
        opacity: 1;
    }

    /* nav 서브메뉴 dropdown-menu 목록*/
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul {
        padding-top: 25px;
        display: grid;
        grid-template-columns: var(--grid-4repeat);
        text-align: left;
    }
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul a {
        transition: color var(--dropDurText);
        position: relative;
        display: inline-flex;
        width: 100%;
        height: clamp(35px, 4cqw, 45px);
        padding-left: 10px;
        line-height: 1;
        align-items: center;
        font-size: clamp(14px, 2cqw, 15px);
        color: #000;
    }
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul a::before {
        transition: background-color var(--dropDurText);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        content: "";
        display: block;
        width: 2px;
        height: 13px;
        background-color: #000;
    }
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul a:hover {
        color: #b28b6d;
    }
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul a:hover::before {
        background-color: var(--oz-gold);
    }
    .dropdown-menu .container::after {
        margin: 25px 0;
        content: "";
        display: block;
        aspect-ratio: 500/233;
        background-color: var(--oz-gold);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .navbar-collapse #gnb_55 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu01.jpg);
    }
    .navbar-collapse #gnb_56 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu02.jpg);
    }
    .navbar-collapse #gnb_57 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu03.jpg);
    }
    .navbar-collapse #gnb_58 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu04.jpg);
    }
    .navbar-collapse #gnb_59 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu05.jpg);
    }
    .navbar-collapse #gnb_60 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu06.jpg);
    }
    .navbar-collapse #gnb_61 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu07.jpg);
    }
    .navbar-collapse #gnb_62 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu08.jpg);
    }
    .navbar-collapse #gnb_63 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu09.jpg);
    }
    .navbar-collapse #gnb_64 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu10.jpg);
    }
    .navbar-collapse #gnb_116 .dropdown-menu .container::after {
        background-image: url(/public/img/main/menu11.jpg);
    }
    .navbar-collapse #gnbauth .dropdown-menu .container::after {
        background-size: auto;
        background-image: url(/public/img/logo/logo.png);
        background-color: var(--oz-gold);
    }
}

@media (min-width: 1200px) {
    /* :root {
        --dropHeight: 282px;
    } */
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul {
        grid-template-columns: var(--grid-5repeat);
    }
}

/* mobile */
@media (max-width: 991px) {
    #navTop .container,
    #navBrand .container,
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu > .container {
        width: 100%;
        padding: 0 20px;
    }
    .navbar-inverse .navbar-collapse .navbar-nav .dropdown-menu ul {
        grid-template-columns: var(--grid-3repeat);
    }
}

@media (max-width: 767px) {
    #site {
        padding-top: 55px;
        overflow: hidden;
    }
    .navbar-inverse {
        position: fixed;
    }
    #quick {
        display: none;
    }

    .nav-top,
    .nav-brand,
    .nav-center {
        display: none;
    }
    .nav-side {
        display: block;
    }
}

/* =================================== footer =================================== */
#site footer {
    margin-top: 0px;
    background-color: #fff;
    border-top: 1px solid #000;
}
.footer-top {
    border-bottom: 1px solid #ddd;
}
.footer-menu {
    display: flex;
    justify-content: center;
}
.footer-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    color: #444;
    font-size: 13px;
}
.footer-menu a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #000;
}
.footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 0 100px;
    text-align: center;
    gap: 30px;
}

/* default */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    line-height: 1.5;
    color: #666;
}

.footer-info li {
    font-size: clamp(14px, 1.5cqw, 16px);
    line-height: 1.3;
    padding: 0 12px;
    color: #888;
}
.footer-info li + li:not(.copyright) {
    border-left: 1px solid #ddd;
}
.footer-info li.clearfix {
    width: 100%;
}

.footer-info li.copyright {
    margin-top: 12px;
    color: #999;
    font-size: clamp(13px, 1.5cqw, 15px);
}

.footer-login {
    margin-left: auto;
    margin-top: auto;
}

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 9px 15px;
    background: transparent;
    color: #222;
    line-height: 1;
    border: 1px solid #333;
    font-size: 0.75rem;
}

.footer-login .login-btn span.material-symbols-outlined {
    font-size: 1.1rem;
    margin-right: 5px;
}

.footer-login .login-btn:hover {
    background-color: #333;
    color: #fff;
    font-weight: 500;
}

#quick {
    z-index: 5000;
    position: fixed;
    right: 30px;
    top: 26%;
}

/* mobile footer*/
@media (min-width: 768px) {
    .footer-top .container {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
    .footer-info li + li {
        border-left: 0 !important;
    }
    .footer-wrap {
        padding: 60px 0 80px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-login {
        margin-left: inherit;
    }
    .footer-menu {
        flex-wrap: wrap;
    }
    .footer-menu a {
        height: 40px;
    }
    #quick {
        display: none;
    }
}

/* =================================== mainCarousel =================================== */

/* 슬라이드 */
#mainCarousel .carousel-inner .item {
    /* height: 795px; */
    width: 100%;
    height: auto;
    min-height: 430px;
    aspect-ratio: 128/53;
}

/* caption */
.carousel-caption {
    top: 49%;
    bottom: inherit;
    padding: 0;
    text-shadow: none;
    display: none;
}

/* control */
.carousel-control {
    position: static;
    display: flex;
    align-items: center;
    opacity: 1;
    width: auto;
    height: 100%;
    aspect-ratio: 1;
}

.carousel-control:is(.right, .left) {
    opacity: 1;
    z-index: 100;
    background-color: #222329;
    justify-content: center;
}
.carousel-control.right {
    border-left: 1px solid #4e4f54;
}
.carousel-control.right span {
    margin-right: 0;
}
.carousel-control.left {
    border-right: 1px solid #4e4f54;
}
.carousel-control.left span {
    margin-left: 0;
}

.glyphicon[class*="glyphicon-chevron"]::before {
    display: flex;
    color: #d9d9d6;
    font-family: var(--gms);
    font-variation-settings: var(--gms100_Out);
    line-height: 1;
    font-size: clamp(30px, 2cqw, 36px);
    transform: translateY(3px);
}

.glyphicon.glyphicon-chevron-right::before {
    content: "\e5e1";
}

.glyphicon.glyphicon-chevron-left::before {
    content: "\e2ea";
}

.carousel-control :is([class*="glyphicon-chevron"], [class*="icon"]) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: var(--font-size-7xl);
}

/* indicators */
.indicators-wrap {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    height: clamp(70px, 7cqw, 90px);
    bottom: -45px;
}
.carousel-indicators {
    position: relative;
    box-sizing: border-box;
    top: inherit;
    right: inherit;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #222329;
}

.carousel-indicators li,
.carousel-indicators li.active {
    flex: 0 1 auto;
    text-indent: 0;
    border: 0;
    border-radius: 0 !important;
    padding: 0 20px !important;
    margin: 0 !important;
    width: auto;
    height: 100%;
    color: #d9d9d6;
    font-size: clamp(16px, 1.5cqw, 18px);
}

.carousel-indicators li.active {
    color: var(--oz-gold);
    background-color: transparent;
}

.indicators-caption {
    display: flex;
    height: 100%;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    #mainCarousel {
        display: none;
    }
}
@media (max-width: 992px) {
    .carousel-control:is(.right, .left) {
        display: none;
    }
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: auto;
    }
    .indicators-wrap {
        position: static;
        margin-top: -2px;
        /* bottom: -90px; */
    }
}
@media (min-width: 993px) {
    .carousel-indicators {
        width: 80%;
    }
}
@media (min-width: 1200px) {
    .carousel-indicators {
        width: 75%;
    }
}
@media (min-width: 1460px) {
    .carousel-indicators {
        width: 65%;
    }
    .carousel-indicators li,
    .carousel-indicators li.active {
        flex: inherit;
        width: 190px;
    }
}
@media (min-width: 1600px) {
    .carousel-indicators {
        width: 50%;
    }
}

.mobile-swiper .swiper-indicator {
    z-index: 100;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    height: 45px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: #222329;
}
.mobile-swiper .swiper-indicator [class*="swiper-button"] {
    z-index: 100;
}
.mobile-swiper .swiper-indicator .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #a0a0a0;
    opacity: 1;
}

.mobile-swiper .swiper-indicator .swiper-pagination-bullet-active {
    background-color: var(--oz-gold);
}

.mobile-swiper .swiper-button-next:after,
.mobile-swiper .swiper-button-prev:after {
    color: #fff;
    font-size: 1em;
}
/* =================================== mainpage common =================================== */
/* section */
#main_wrapper section {
    position: relative;
    padding: clamp(100px, 17cqw, 230px) 0 clamp(100px, 17cqw, 260px);
    overflow: hidden;
}

#main_wrapper section.main-year {
    display: flex;
    align-items: center;
    background-image: url(/public/img/main/year_bg.jpg);
}

.subpage section.sub-refer,
#main_wrapper section.main-refer {
    background-image: url(/public/img/main/refer_bg.jpg);
}

#main_wrapper section.main-youtube {
    background-color: #e5e5e5;
}
#main_wrapper section.main-blog {
    padding-bottom: clamp(80px, 17cqw, 150px);
}
#main_wrapper section.main-map {
    padding: clamp(80px, 17cqw, 180px) 0 clamp(100px, 17cqw, 230px);
    background-color: #e5e5e5;
}
#main_wrapper .se-title {
    margin-bottom: 50px;
}
#main_wrapper .se-title h2 {
    display: block;
    text-align: center;
    line-height: 1;
}
#main_wrapper .se-title h2 span {
    display: inline;
    line-height: 1;
}
#main_wrapper .se-title h2 span.thin {
    font-weight: 300 !important ;
}
#main_wrapper .se-title p {
    font-weight: 400;
}

.mainpage :where(span.view) {
    font-family: var(--Montserrat);
    font-weight: 500;
    display: block;
    border-top: 1px solid #000;
    padding-top: 10px;
    font-size: 16px;
}
.signature-wrap .item {
    min-width: 200px;
    aspect-ratio: 3.2/5;
}

.signature-wrap .item .info {
    transition: 0.3s;
    z-index: 5;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    width: 100%;
    padding: 0px clamp(30px, 3cqw, 45px) clamp(80px, 3cqw, 100px);
}
.signature-wrap .item h4 {
    position: relative;
    font-weight: 700;
    font-size: clamp(23px, 2cqw, 30px);
    color: inherit;
}
.signature-wrap .item h4::before {
    position: absolute;
    left: -10px;
    top: -15px;
    content: "";
    display: block;
    width: 9px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #faebd8;
}

.signature-wrap .item p {
    margin: 15px 0 40px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
    color: inherit;
}
.signature-wrap .item span.view {
    border-color: #fff;
}
/* 여드름 */
.signature-wrap .item.bg01 {
    background-image: url(/public/img/main/signature01.jpg);
}
/* 색소 */
.signature-wrap .item.bg02 {
    background-image: url(/public/img/main/signature02.jpg);
}
/* 백반증 */
.signature-wrap .item.bg03 {
    background-image: url(/public/img/main/signature03.jpg);
}
/* 리프팅 */
.signature-wrap .item.bg04 {
    background-image: url(/public/img/main/signature04.jpg);
}
@media (hover: hover) {
    .signature-wrap .item:hover .info {
        background-color: rgba(240, 240, 240, 0.6);
        color: #000;
    }
    .signature-wrap .item:hover span.view {
        border-color: #000;
    }
}

@media (min-width: 768px) {
    .signature-wrap .swiper {
        overflow: visible;
    }
}

@media (min-width: 1460px) {
    .signature-wrap .swiper-wrapper .swiper-slide-duplicate {
        display: none;
    }
}
@media (max-width: 767px) {
    /* #main_wrapper section.main-signature {
        padding: 100px 0;
    } */
    .signature-wrap {
        padding: 0 30px;
        width: 100%;
    }
    .signature-wrap .swiper {
        width: 100%;
        overflow: visible;
    }
}

.meter-wrap {
    color: #fff;
    display: grid;
    grid-template-columns: var(--grid-1fr);
    row-gap: 30px;
}
.meter-wrap .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    /* width: 300px; */
    height: 150px;
    padding-left: 40px;
    border-left: 1px solid #fff;
}

.meter-wrap .item::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 10px;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
}
.meter-wrap .meter {
    font-family: var(--Montserrat);
    font-size: clamp(40px, 4vw, 55px);
    font-weight: 300;
}
.meter-wrap .meter .odometer-value {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.meter-wrap .meter span.text {
    display: inline-block;
    margin-left: -12px;
    transform: translateY(2px);
}

.meter-wrap .item h4 {
    font-weight: 700;
    margin-top: 20px;
    font-size: clamp(17px, 2vw, 20px);
    color: #fff;
}

@media (min-width: 992px) {
    .meter-wrap {
        text-align: left;
        grid-template-columns: var(--grid-2repeat);
    }
}

@media (min-width: 1200px) {
    #main_wrapper section.main-year {
        height: 810px;
    }
    .meter-wrap {
        grid-template-columns: var(--grid-4repeat);
    }
    .meter-wrap .item {
        padding: 0;
        align-items: center;
        text-align: center;
        height: 220px;
    }
    .meter-wrap .item:first-child {
        border-left: 0;
    }
    .meter-wrap .item:first-child::before {
        content: none;
    }
}

@media (max-width: 767px) {
    #main_wrapper section.main-year > .container {
        width: 80%;
    }
}
.refer-wrap {
    display: flex;
    width: clamp(80%, 75vw, 100%);
    /* justify-content: space-between; */
    margin: 0 auto;
    gap: clamp(20px, 3cqw, 55px);
}

.refer-wrap img {
    width: 100%;
    height: 100%;
}

.refer-wrap .item {
    flex: 1;
    text-align: center;
    padding: 30px 30px 40px;
    background-color: #fff;
}

.refer-wrap .item h4 {
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: clamp(21px, 3cqw, 24px);
    font-weight: 700;
}
.refer-wrap .item p {
    font-size: clamp(15px, 3cqw, 17px);
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.05em;
}

@media (max-width: 767px) {
    .refer-wrap {
        flex-direction: column;
    }
}

.youtube-wrap .item {
    display: flex;
    flex-direction: column;
}
.youtube-wrap .img-box {
    aspect-ratio: 16/9;
}
.youtube-wrap .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.youtube-wrap .item .info {
    flex: 1;
    padding: 30px;
    background-color: #fff;
}
.youtube-wrap .item h4 {
    font-size: clamp(20px, 2cqw, 22px);
    min-height: 75px;
    font-weight: 700;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    line-height: 1.4;
}
.youtube-wrap .item p {
    line-height: 1.4;
    font-size: clamp(14px, 2cqw, 15px);
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 30px;
}
.youtube-wrap .more-btn {
    display: inline-flex;
    width: 105px;
    height: 35px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    background-color: #000;
}
.youtube-wrap .more-btn:hover {
    background-color: #d4b59e;
}

.youtube-wrap .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.youtube-wrap .swiper-pagination span {
    flex: 1;
    height: 4px;
    padding: 0;
    margin: 0 !important;
    border-radius: 0;
    background-color: #d2d2d2;
    opacity: 1;
}
.youtube-wrap span.swiper-pagination-bullet-active {
    height: 7px;
    border-radius: 50px;
    background-color: #000;
}
@media (min-width: 1460px) {
    .youtube-wrap.loopDisabled .swiper-pagination,
    .youtube-wrap.loopDisabled .swiper-wrapper .swiper-slide-duplicate {
        display: none;
    }
}

@media (max-width: 768px) {
    #main_wrapper section.main-youtube {
        padding: 120px 0;
    }
    .youtube-wrap .swiper {
        overflow: visible;
        padding: 0 20px;
    }
    .youtube-wrap .item h4 {
        min-height: auto;
    }
}
.blog-wrap {
    display: flex;
    justify-content: center;
}
.blog-wrap img {
    width: 100%;
    height: 100%;
}
.blog-wrap .item {
    transition: box-shaodw 0.3s;
}
@media (hover: hover) {
    .blog-wrap .item:hover {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }
}
.blog-wrap .info {
    display: flex;
    flex-direction: column;
    height: clamp(320px, 35cqw, 370px);
    padding: 50px 35px;
    background-color: #fff;
}
.blog-wrap .item h4 {
    font-size: clamp(21px, 2cqw, 24px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-wrap .item p {
    line-height: 1.4;
    font-size: clamp(16px, 2cqw, 17px);
    font-weight: 300;
}
.blog-wrap .item span.view {
    margin-top: auto;
    color: #000;
    font-weight: 700;
}
.blog-wrap {
    margin: 0 -30px;
}

.blog-wrap .swiper {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
@media (min-width: 1460px) {
    .blog-wrap .swiper-wrapper .swiper-slide-duplicate {
        display: none;
    }
}
@media (max-width: 768px) {
    .blog-wrap .swiper {
        overflow: visible;
        padding: 0 50px;
    }
    .blog-wrap .swiper-slide-active {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    }
    .blog-wrap .info {
        padding: 35px 30px;
        height: 250px;
    }
}
.mainmap-wrap {
    display: grid;
}
.mainmap-wrap :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    aspect-ratio: inherit;
    width: 100% !important;
    height: 100% !important;
}
.mainmap-wrap :is(.sns, .time) {
    background-color: rgba(246, 246, 246, 1);
}

.mainmap-wrap :is(h4, dt) {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #000;
}
.mainmap-wrap .sns h4 {
    font-size: clamp(18px, 2cqw, 21px);
    margin-bottom: 0;
    margin-top: clamp(10px, 2cqw, 20px);
}
.mainmap-wrap .sns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    text-align: center;
    padding: 20px;
}
.mainmap-wrap .sns + .sns {
    margin-top: clamp(25px, 2cqw, 40px);
}
.mainmap-wrap .sns .icon {
    width: clamp(50px, 1.5cqw, 75px);
}
.mainmap-wrap .time {
    padding: 45px 50px;
}
.mainmap-wrap .dl-time {
    font-family: "Montserrat", "notokr", sans-serif;
    gap: 20px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.mainmap-wrap .dl-time dt {
    font-size: clamp(21px, 2cqw, 24px);
}
.mainmap-wrap .dl-time dd {
    display: grid;
    align-items: flex-start;
    grid-template-columns: minmax(0, 70px) minmax(0, max-content) minmax(0, min-content);
}
.mainmap-wrap .dl-time dd b {
    grid-row: 2;
    grid-column: 2;
    font-size: clamp(13px, 2cqw, 14px);
    margin-top: 3px;
}
.mainmap-wrap .dl-time dd + dd {
    margin-top: 4px;
    line-height: 1.5;
}
.mainmap-wrap .dl-time span.day {
    font-weight: 700;
}

.mainmap-wrap .dl-time span.night {
    padding: 2px 7px;
    background-color: #000;
    font-size: 14px;
    border-radius: 5px;
    color: #fff;
    margin-left: 10px;
}
@media (min-width: 767px) {
    .mainmap-wrap {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    .mainmap-wrap .map {
        grid-column: span 1;
        min-height: 250px;
        /* aspect-ratio: 3/1; */
    }
}
@media (min-width: 992px) {
    .mainmap-wrap {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
        gap: 30px;
    }
}
@media (min-width: 1460px) {
    .mainmap-wrap {
        grid-template-columns: minmax(0, 4fr) minmax(0, 2fr);
        gap: 40px;
        height: 478px;
    }
    .mainmap-wrap .map {
        aspect-ratio: inherit;
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .mainmap-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .mainmap-wrap .map {
        aspect-ratio: 2/1;
    }
    .mainmap-wrap .share {
        display: grid;
        grid-template-columns: var(--grid-2repeat);
        gap: 20px;
    }
    .mainmap-wrap .sns {
        aspect-ratio: inherit;
    }
    .mainmap-wrap .sns + .sns {
        margin-top: 0;
    }
    .mainmap-wrap .time {
        padding: 30px;
    }
    .mainmap-wrap .dl-time {
        gap: 30px;
    }
    .mainmap-wrap .dl-time dd {
        display: flex;
        flex-direction: column;
    }
    .mainmap-wrap .dl-time dd + dd {
        margin-top: 15px;
    }
    .mainmap-wrap .dl-time span.night {
        margin-left: 0;
    }
}
/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: 350px;
    background: center / cover no-repeat url(/public/img/sub/sub-top01.jpg);
    /* backdrop-filter: brightness(50%); */
}

.subpage-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
}

.subpage-header .subpage-title {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-bottom: 55px; */
    height: 100%;
}

.subpage-header .subpage-title h2 {
    line-height: 1;
    margin-top: clamp(10px, 3cqw, 25px);
    text-align: center;
    font-size: clamp(42px, 7cqw, 52px);
    font-weight: 700;
    color: #fff;
}

.subpage-header .subpage-title h2 + p {
    margin-top: 25px;
    font-size: clamp(18px, 3cqw, 21px);
    color: #fff;
}
/* =================================== subpage =================================== */
/* ================ section ================  */
.subpage-content {
    position: relative;
    overflow: hidden;
}
.subpage-content section.top {
    display: flex;
    align-items: center;
    height: 840px;
    padding: 0;
}

.subpage-content section.payment,
.subpage-content section.board {
    padding: clamp(100px, 15vw, 120px) 0;
}

.subpage-content :where(section) {
    padding: clamp(130px, 15vw, 230px) 0;
}

@media (max-width: 767px) {
    .subpage-content section.top {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 50px;
        height: 600px;
    }
    .top-title h2::after {
        margin: 70px auto 25px;
    }
}
/* ================ 병원소개 ================  */
/* 오체안 */
#oz01 .ozehan {
    background-image: url(/public/img/sub/1ozehan/o01-s01-bg.jpg);
    background-size: 2560px 1050px;
    padding: 460px 0 390px;
}
#oz01 .ozehan .svg-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: clamp(0px, 7vw, 190px);
    margin-bottom: clamp(20px, 2vw, 30px);
}
#oz01 .ozehan .svg-title p {
    font-size: clamp(18px, 2vw, 21px);
    color: #fff;
}
#oz01 .ozehan svg {
    width: clamp(80px, 52vw, 700px);
    height: clamp(50px, 8vw, 100px);
    display: inline-block;
    margin-bottom: 20px;
}

#oz01 .light {
    background-image: url(/public/img/sub/1ozehan/o01-s02-bg.jpg);
    padding: 480px 0;
}
#oz01 .light span.thin {
    display: inline;
}
#oz01 .time {
    background-image: url(/public/img/sub/1ozehan/o01-s03-bg.jpg);
    padding: 450px 0;
}
#oz01 .health {
    background-image: url(/public/img/sub/1ozehan/o01-s04-bg.jpg);
    padding: 450px 0;
}
#oz01 .health .se-title {
    margin-left: clamp(0px, 45vw, 810px);
}
#oz01 .true-img {
    background-image: url(/public/img/sub/1ozehan/o01-s05-bg.jpg);
    height: 610px;
}
#oz01 .true-text {
    padding: 0 0 210px;
}
#oz01 .true-text .se-title::before {
    content: "";
    display: block;
    background-color: #000;
    width: 2px;
    height: 75px;
    margin: 0 auto 55px;
}
#oz01 .year {
    /* background-image: url(/public/img/sub/1ozehan/o01-s06-bg.jpg); */
    background-image: url(/public/img/main/year_bg.jpg);
    padding: 410px 0;
}
#oz01 .trust {
    background-image: url(/public/img/sub/1ozehan/o01-s07-bg.jpg);
    padding: 410px 0;
}
#oz01 .trust .se-title {
    text-align: left;
    margin-left: clamp(0px, 45vw, 820px);
}
#oz01 .trust .se-title p {
    margin-top: 50px;
    font-size: 21px;
}
#oz01 .trust .se-title span.en {
    font-size: 50px;
}
#oz01 .trust .se-title span.sm {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
}
@media (min-width: 768px) {
    #oz01 .ozehan {
        background-position-x: 45%;
    }
    #oz01 .health {
        background-position: right;
    }
}

@media (min-width: 992px) {
    #oz01 .ozehan {
        background-position-x: 50%;
    }

    #oz01 .health {
        background-position: center;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1460px) {
    #oz01 .trust .se-title {
        width: 465px;
    }
}
@media (max-width: 767px) {
    #oz01 section {
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 12/23;
        height: auto !important;
        padding: 100px 0 !important;
    }
    #oz01 section > .container {
        width: 100%;
    }
    #oz01 .se-title {
        text-align: center !important;
    }
    #oz01 .ozehan {
        background-image: url(/public/img/sub/1ozehan/o01-s01-bg-m.jpg);
        background-size: cover;
    }
    #oz01 .ozehan svg {
        margin-bottom: 30px;
    }
    #oz01 .ozehan .svg-title {
        justify-content: center;
        align-items: center;
        padding-right: 0;
        margin-top: 120px;
    }
    #oz01 .time {
        background-position-x: 69%;
    }
    #oz01 .true-img {
        background-image: url(/public/img/sub/1ozehan/o01-s05-bg-m.jpg);
        aspect-ratio: 1/1;
        height: inherit;
    }
    #oz01 .true-text {
        aspect-ratio: inherit;
        padding-top: 0 !important;
        padding-bottom: 150px !important;
    }
    #oz01 .trust {
        background-image: url(/public/img/sub/1ozehan/o01-s07-bg-m.jpg);
    }
    #oz01 .trust .se-title {
        margin-left: 0;
        margin-bottom: 100px;
    }
    #oz01 .trust .se-title h2 br {
        display: block;
    }
    #oz01 .trust .se-title p {
        margin-top: 25px;
        font-size: 16px;
    }

    #oz01 .health {
        background-position: right;
    }
    #oz01 .meter-wrap {
        margin-left: 50px;
    }
}
@media (max-width: 991px) {
    #oz01 .health .se-title {
        margin-left: 0;
    }
}
/* 오체안 */
.lifting-fit-what .se01 {
    background-image: url(/public/img/sub/1ozehan/o02-s01-bg.jpg);
}
.lifting-fit-what .se03 {
    background-image: url(/public/img/sub/1ozehan/o02-s03-bg.jpg);
}
/* .lifting-fit-what .se04 {
    background-image: url(/public/img/sub/1ozehan/o02-s04-bg.jpg);
} */
.lifting-fit-what .se05 {
    background-image: url(/public/img/sub/1ozehan/o02-s05-bg.jpg);
}
.lifting-fit-what .se06 {
    background-image: url(/public/img/sub/1ozehan/o02-s06-bg.jpg);
}
.lifting-fit-what .se07 {
    background-image: url(/public/img/sub/1ozehan/o02-s07-bg.jpg);
}

@media (max-width: 767px) {
    #oz02 .se03 {
        background-position-x: 20%;
    }
}
/* 의료진소개 */
#oz03 .se01 {
    background-image: url(/public/img/sub/1ozehan/o03-s01-bg.jpg);
}

/* 장비소개 */
#oz04 .se01 {
    background-image: url(/public/img/sub/1ozehan/o04-s01-bg.jpg);
}

/* 진료안내/오시는길 */
#oz05 .se01 {
    background-image: url(/public/img/sub/1ozehan/o05-s01-bg.jpg);
}

/* 지점안내 */
#oz06 .se01 {
    background-image: url(/public/img/sub/1ozehan/o06-s01-bg.jpg);
}

/* OZHEAN TV */
#oz07 .se01 {
    background-image: url(/public/img/sub/1ozehan/o07-s01-bg.jpg);
}
/* OZHEAN NEWS*/
#oz08 .se01 {
    background-image: url(/public/img/sub/1ozehan/o08-s01-bg.jpg);
}

/* ================ 웰에이징 ================  */
/* 리프팅 FIT */
.lifting-fit .se01 {
    background-image: url(/public/img/sub/2wellaging/w01-s01-bg.jpg);
}

.lifting-fit-what .se04,
.lifting-fit .se03 {
    background-image: url(/public/img/sub/2wellaging/w01-s03-bg.jpg);
}

@media (max-width: 767px) {
    .lifting-fit-what .se04,
    .lifting-fit .se03 {
        background-image: url(/public/img/sub/2wellaging/w01-s03-bg-m.jpg);
        text-align: center;
        background-position-x: center !important;
    }
    .lifting-fit .se03,
    .lifting-fit-what :is(.se04, .se05, .se06, .se07) {
        /* aspect-ratio: 12/19; */
        padding-top: 300px;
        padding-bottom: 120px;
    }

    .lifting-fit .se03 .container,
    .lifting-fit-what :is(.se04, .se05, .se06, .se07) .container {
        height: 100%;
        display: flex;
        align-items: flex-end;
    }

    .lifting-fit-what :is(.se04, .se05, .se06, .se07) {
        background-position-x: 65%;
    }

    :is(.lifting-fit-what, .lifting-fit) .se-title.lt {
        width: 100%;
        text-align: center;
    }
}
.lifting-fit .se07 {
    background-image: url(/public/img/sub/2wellaging/w01-s07-bg.jpg);
}

/* 3DEEP */
.threedeep .se01 {
    background-image: url(/public/img/sub/2wellaging/w02-s01-bg.jpg);
}
/* 인모드리프팅 */
.inmode .se01 {
    background-image: url(/public/img/sub/2wellaging/inmode-s01-bg.jpg);
}

/* 써마지FLX */
.thermage .se01 {
    background-image: url(/public/img/sub/2wellaging/thermage-s01-bg.jpg);
}

/* 울쎼라 */
.ulthera .se01 {
    background-image: url(/public/img/sub/2wellaging/gn-w03-s01-bg2.jpg);
    /* background-position-x: clamp(55%, 1vw, 70%); */
}

/* 올리지오 */
.oligio .se01 {
    background-image: url(/public/img/sub/2wellaging/w03-s01-bg.jpg);
    background-position-x: clamp(55%, 1vw, 70%);
}
/* 올리지오X */
.oligio_x .se01 {
    background-image: url(/public/img/sub/2wellaging/ox-s01-bg.jpg);
    /* background-position-x: clamp(55%, 1vw, 70%); */
}

/* 슈링크 */
.shulink .se01 {
    background-image: url(/public/img/sub/2wellaging/w04-s01-bg.jpg);
}

/* 스킨아우라 */
.skinaura .se01 {
    background-image: url(/public/img/sub/2wellaging/skinaura-s01-bg.jpg);
}
@media (max-width: 767px) {
    .skinaura .se01 {
        background-position-x: 75%;
    }
}

/*인트라셀 */
.intracell .se01 {
    background-image: url(/public/img/sub/2wellaging/intracell-s01-bg.jpg);
}

/*에어젯 */
.airjet .se01 {
    background-image: url(/public/img/sub/2wellaging/airjet-s01-bg.jpg);
}

/* ================ 색소질환 ================  */
/* 색소Fit */
.pigment-fit .se01 {
    background-image: url(/public/img/sub/3pigment/p01-s01-bg.jpg);
}
.pigment-fit .se03 {
    background-image: url(/public/img/sub/3pigment/p01-s03-bg.jpg);
}
.pigment-fit .se05 {
    background-image: url(/public/img/sub/3pigment/p01-s05-bg.jpg);
}
.pigment-fit .se08 {
    background-image: url(/public/img/sub/3pigment/p01-s08-bg.jpg);
}
.pigment-fit .se11 {
    background-image: url(/public/img/sub/3pigment/p01-s11-bg.jpg);
}
.pigment-fit .se12 {
    background-image: url(/public/img/sub/3pigment/p01-s12-bg.jpg);
}
/* 기미잡티 */
.freckles .se01 {
    background-image: url(/public/img/sub/3pigment/p02-s01-bg.jpg);
}
.freckles .se09 {
    background-image: url(/public/img/sub/3pigment/p02-s09-bg.jpg);
}

/* 검버섯 */
.blotch .se01 {
    background-image: url(/public/img/sub/3pigment/p03-s01-bg.jpg);
}

/* 오타모반 */
.ota .se01 {
    background-image: url(/public/img/sub/3pigment/p05-s01-bg.jpg);
    background-position-x: clamp(25%, 1vw, 50%);
}
.ota .se11 {
    background-image: url(/public/img/sub/3pigment/p05-s11-bg.jpg);
}
/* ================ 여드름모공 ================  */
/* 여드름Fit */
.acne-fit .se01 {
    background-image: url(/public/img/sub/4acne/a01-s01-bg.jpg);
    background-position-x: clamp(10%, 1vw, 50%);
}
.acne-fit .se03 {
    background-image: url(/public/img/sub/4acne/a01-s03-bg.jpg);
}

/* 여드름 치료 */
.acnecure .se01 {
    background-image: url(/public/img/sub/4acne/a02-s01-bg.jpg);
    background-position-x: clamp(70%, 1vw, 75%);
}

/* 여드름 흉터 자국 */
.acnescar .se01 {
    background-image: url(/public/img/sub/6scartreatment/s02-s01-bg.jpg);
}

/* 모공 치료 */
.porecure .se01 {
    background-image: url(/public/img/sub/4acne/a03-s01-bg.jpg);
}
/* ================ 홍조/주사/민감성피부 ================  */
/* 홍조 FIT */
.hotflush-fit .se01 {
    background-image: url(/public/img/sub/5hotflush/hotflush-fit-s01-bg.jpg);
}
.hotflush-fit .se03 {
    background-image: url(/public/img/sub/5hotflush/hotflush-fit-s03-bg.jpg);
}
/* 홍조치료 */
.rosacea .se01 {
    background-image: url(/public/img/sub/5hotflush/h01-s01-bg.jpg);
}

/* 하이퍼럭스 */
.hyperlux .se01 {
    background-image: url(/public/img/sub/5hotflush/hl-s01-bg.jpg);
}

/* ================ 스킨부스터 ================  */
.rejuran .se01 {
    background-image: url(/public/img/sub/5hotflush/h02-s01-bg-240322.jpg);
}

.dermo .se01 {
    background-image: url(/public/img/sub/6skinbooster/dermo-s01-bg.jpg);
}
.hyaluronic .se01 {
    background-image: url(/public/img/sub/6skinbooster/hyaluronic-se01-bg.jpg);
}
.waterinject .se01 {
    background-image: url(/public/img/sub/6skinbooster/waterinject-s01-bg.jpg);
}
/* 보톡스 */
.botox .se01 {
    background-image: url(/public/img/sub/2wellaging/botox-s01-bg.jpg);
    background-position-x: clamp(22%, 1vw, 50%);
}
/* ================ 피부질환 ================  */
/* 백반증/건선 */
.vitiligo .se01 {
    background-image: url(/public/img/sub/7skindisease/k01-s01-bg.jpg);
    background-position-x: clamp(25%, 1vw, 50%);
}
/* 손발톱무좀  */
.toenail .se01 {
    background-image: url(/public/img/sub/7skindisease/k02-s01-bg.jpg);
}
/* 사마귀/티눈 */
.wart .se01 {
    background-image: url(/public/img/sub/7skindisease/k03-s01-bg.jpg);
}
/* 습진/화상/두드러기 */
.hives .se01 {
    background-image: url(/public/img/sub/7skindisease/k04-s01-bg.jpg);
}
.hives .se12 {
    background-image: url(/public/img/sub/7skindisease/k04-s12-bg.jpg);
}
/* 아토피  */
.atopy .se01 {
    background-image: url(/public/img/sub/7skindisease/k05-s01-bg.jpg);
}
/* 대상포진 */
.shingles .se01 {
    background-image: url(/public/img/sub/7skindisease/k06-s01-bg.jpg);
}
/* ================ 메디컬스킨케어 ================  */
/* skincare program */
.skincare .se01 {
    background-image: url(/public/img/sub/9medical/skincare-s01-bg.jpg);
}
/* LDM */
.ldm .se01 {
    background-image: url(/public/img/sub/9medical/m01-s01-bg.jpg);
    background-position-x: clamp(68%, 1vw, 70%);
}
.ldm .se05 {
    background-image: url(/public/img/sub/9medical/m01-s05-bg.jpg);
    /* background-size: cover; */
}

/* 이온자임 */
.ionzyme .se01 {
    background-image: url(/public/img/sub/9medical/m03-s01-bg.jpg);
}
.ionzyme .se08 {
    background-image: url(/public/img/sub/9medical/m03-s08-bg.jpg);
    background-position-x: 15%;
}

/* 쥬베룩 */
.juvelook .se01 {
    background-image: url(/public/img/sub/6skinbooster/jb-s01-bg.jpg);
    /* background-position-x: clamp(55%, 1vw, 70%); */
}

.small {
    display: block;
    font-weight: 500;
    font-size: clamp(20px, 2vw, 24px);
    color: var(--oz-red);
}

.small:first-child {
    font-size: clamp(17px, 2.5vw, 20px);
    font-family: var(--Montserrat);
    letter-spacing: 0;
}

.top {
    background-color: var(--oz-gold);
}

.top-title {
    gap: 0;
}

.top-title {
    text-align: center;
}

.top-title h2 {
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.top-title h2::after {
    content: "";
    display: block;
    width: 25px;
    height: 5px;
    margin: 90px auto 30px;
    background-color: var(--oz-gold);
}
.top-title p {
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.35;
    font-weight: 300;
    color: #fff;
}
.top-title span {
    font-weight: 300;
    font-size: 60%;
}
/* square */
.bf-sq::before {
    content: "";
    display: block;
    width: 25px;
    height: 5px;
    background-color: var(--oz-gold);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.bf-sq2::before {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    background-color: var(--oz-gold2);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/* line */
.bf-li::before {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .bf-sq::before,
    .bf-li::before {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.bf-bold::before {
    content: "";
    display: block;
    width: 50px;
    height: 8px;
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.lt.bf-sq::before {
    margin-left: 4px;
}

.bg-back {
    position: relative;
    z-index: 5;
}
.bg-back::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 70px;
    left: -200px;
    right: -200px;
    bottom: 0;
    display: block;
}

.step-wrap.bg-back::before {
    background-color: #fdfaf3;
}

.se-title {
    text-align: center;
}

.se-title > * + * {
    margin-top: 20px;
}
.info h2,
.se-title :is(h2, h3) {
    line-height: 1.25;
    font-weight: 700;
}

.info h2,
.se-title h2 {
    font-size: clamp(28px, 3cqw, 40px);
    letter-spacing: -0.04em;
}

.se-title h2 small {
    display: block;
    font-size: clamp(17px, 3cqw, 21px);
    margin: 20px 0 40px;
}

.se-title span.point {
    color: var(--oz-gold);
}

.se-title h2 + .small.mont {
    margin-top: 40px;
    font-size: 19px;
}

.se-title h2 + img {
    margin-top: 50px;
}

.se-title h2 span.thin {
    display: block;
    font-weight: 500 !important;
    line-height: 1.5;
}

.se-title .small + h2 {
    margin-top: 45px;
    margin-bottom: 45px;
}

.se-title .small.num:first-child {
    font-size: 24px;
}

.se-title .small.num + h2 {
    margin-bottom: 20px;
}

.se-title h3 {
    font-size: clamp(28px, 3cqw, 36px);
}

.se-title p {
    line-height: 1.55;
    font-size: clamp(17px, 3cqw, 21px);
    font-weight: 300;
}

.se-title p b {
    font-weight: 500;
}
.se-title p b.oz-red {
    margin-bottom: -10px;
    display: block;
}

.se-title img + p {
    margin-top: 50px;
}

.se-title .small:first-child + p {
    font-size: clamp(19px, 2cqw, 26px);
    margin-top: clamp(30px, 3cqw, 45px);
    letter-spacing: -0.04em;
}

.se-title + :is(img, div) {
    margin-top: 50px;
}

.se-title.lt {
    text-align: left;
}

.se-title.lt p {
    margin-top: 40px;
}

.se-title.quote::before,
.se-title.quote::after {
    display: flex;
    width: 45px;
    margin-left: auto;
    margin-right: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 1;
}
.se-title.quote::before {
    content: "";
    background-image: url(/public/img/sub/icon/quote-front.png);
    margin-bottom: clamp(60px, 8cqw, 110px);
}
.se-title.quote::after {
    content: "";
    background-image: url(/public/img/sub/icon/quote-back.png);
    margin-top: clamp(60px, 8cqw, 110px);
}

/* faq */
.faq .se-title .small {
    font-size: clamp(20px, 2cqw, 24px);
    font-weight: 700;
    font-family: "notokr";
}

.faq .se-title .small + h2 {
    margin-top: 25px;
}

.mem-wrap {
    row-gap: clamp(50px, 15vw, 110px);
    margin-top: 70px !important;
}

.mem-wrap .item > .img-box {
    background-color: #eeeff4;
}

.mem-wrap .item {
    padding: 0 50px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    margin-left: -1px;
    background-color: #fff;
}
.mem-wrap .item > .info > h4 {
    font-size: clamp(26px, 4vw, 30px);
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 16px;
}
.mem-wrap .item > .info > p {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
}
.mem-wrap .more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 39px;
    font-size: clamp(14px, 2vw, 16px);
    background-color: #000;
    color: #d4b59e;
    border-radius: 50px;
    margin-top: 50px;
    font-family: "Montserrat";
}
.mem-wrap .more-btn::after {
    content: "\e5cc";
    font-family: var(--gms);
    margin-left: 5px;
    font-size: 16px;
}
.mem-wrap .modal.in {
    z-index: 6000;
    padding: 0 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.mem-wrap .modal-dialog {
    width: 100%;
}

.mem-wrap .modal-dialog .close {
    position: absolute;
    right: 30px;
    top: 30px;
    opacity: 1;
}
.mem-wrap .modal-dialog .container {
    padding: 0 clamp(15px, 5vw, 30px) !important;
}
.mem-wrap .modal-dialog .close::before {
    color: #2699fb;
}
.modal-dialog .detail-wrap {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 635px);
    align-items: center;
}
.modal-dialog .detail-wrap .info {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: clamp(0px, 5vw, 150px);
}
.modal-dialog .detail-wrap h4 {
    font-size: clamp(30px, 4vw, 45px);
    margin-bottom: 20px;
}
.modal-dialog .detail-wrap h4 small {
    font-size: clamp(17px, 2vw, 20px);
}
.modal-dialog .detail-wrap p.doc {
    font-size: clamp(22px, 3vw, 26px);
    color: #2699fb;
}
.modal-dialog .detail-wrap .carrer {
    gap: 20px;
    margin-top: 50px;
}
.modal-dialog .detail-wrap .carrer ul {
    gap: 5px;
}
.modal-dialog .detail-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (min-width: 768px) {
    .modal-dialog .detail-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}
@media (min-width: 1460px) {
    .modal-dialog .detail-wrap {
        grid-template-columns: minmax(0, auto) minmax(0, 635px);
    }
    .modal-dialog .detail-wrap .carrer {
        display: grid;
        grid-template-columns: var(--grid-2repeat);
    }
}
@media (max-width: 767px) {
    .mem-wrap {
        display: flex !important;
        flex-direction: column;
    }
    .mem-wrap .item {
        border: 0;
        padding: 0;
    }
    .mem-wrap .item .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .modal-dialog .detail-wrap {
        padding: 50px 0;
        display: flex;
        flex-direction: column-reverse;
    }
    .modal-dialog .detail-wrap .info {
        align-items: flex-start;
        padding-left: 0;
        margin-top: 50px;
        text-align: left;
        padding-top: 0;
    }
    .mem-wrap .modal.in {
        display: block !important;
    }
}

.eq-wrap {
    display: grid;
    gap: 0 20px;
}
.eq-wrap img {
    aspect-ratio: 17/12;
    background: #ccc;
    width: 100%;
    height: 100%;
}
.eq-wrap h4 {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    border-left: 3px solid #d4b59e;
    padding-left: 25px;
    min-height: 130px;
    margin-bottom: 20px;
}
.eq-wrap h4 small.tag {
    display: block;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 500;
    color: #d4b59e;
    margin-top: 15px;
    line-height: 1.35;
}
.eq-wrap p {
    padding-left: 25px;
    line-height: 1.55;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 300;
}
.eq-wrap .item {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
    .eq-wrap {
        grid-template-columns: var(--grid-3repeat) !important;
    }
}
@media (max-width: 767px) {
    .eq-wrap {
        grid-template-columns: var(--grid-2repeat) !important;
    }
    .eq-wrap h4 {
        line-height: 1.2;
        padding-top: 20px;
        padding-left: 0;
        border-left: 0;
        border-top: 3px solid var(--oz-gold);
    }
    .eq-wrap p {
        padding-left: 0;
    }
}
.branch-wrap {
    display: grid;
    grid-template-columns: var(--grid-2repeat);
    gap: 40px 20px;
}
.branch-wrap .item {
    position: relative;
    overflow: hidden;
}
.branch-wrap .item::after {
    transition: 0.35s;
    opacity: 0;
    position: absolute;
    right: 30px;
    bottom: 0px;
    content: "go";
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--Montserrat);
    font-size: clamp(18px, 2cqw, 22px);
    background-color: #000;
    color: #fff;
    font-weight: 200;
    border-radius: 50%;
    aspect-ratio: 1;
    line-height: 1;
    width: clamp(45px, 5cqw, 60px);
    padding-bottom: 2px;
}
@media (hover: hover) {
    .branch-wrap .item:hover::after {
        opacity: 1;
        bottom: 50px;
    }
}
.branch-wrap h4 {
    font-size: clamp(24px, 2cqw, 30px);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    border-left: 3px solid #d4b59e;
    padding-left: 25px;
    min-height: 90px;
    margin-bottom: 20px;
}
.branch-wrap h4 small.tag {
    display: block;
    font-size: clamp(17px, 2cqw, 21px);
    font-weight: 500;
    color: #d4b59e;
    margin-top: 15px;
}

@media (min-width: 992px) {
    .branch-wrap {
        grid-template-columns: var(--grid-3repeat);
    }
}
@media (max-width: 767px) {
    .branch-wrap {
        grid-template-columns: var(--grid-1fr);
    }
    .branch-wrap h4 {
        padding-right: 70px;
    }
    .branch-wrap .item::after {
        opacity: 1;
        right: 10px;
        bottom: 55px;
    }
}
.card-wrap img {
    width: 100%;
    height: 100%;
}

.card-wrap .item {
    position: relative;
    overflow: hidden;
    width: 100% !important;
}
@media (min-width: 768px) {
    .card-wrap .item {
        width: calc((100% - 30px * 1) / 2) !important;
    }
}

@media (min-width: 1200px) {
    .card-wrap .item {
        width: calc((100% - 40px * 2) / 3) !important;
    }
    .card-wrap .swiper-wrapper {
        justify-content: center;
    }
    .card-wrap .swiper-wrapper [class*="swiper-slide-duplicate"] {
        display: none;
    }
    .card-wrap .swiper-slide:is(:only-child, :last-child) {
        margin-right: 0 !important;
    }
}
@media (min-width: 1460px) {
    .card-wrap .item {
        width: calc((100% - 55px * 2) / 3) !important;
    }
}

@media (max-width: 767px) {
    .card-wrap .swiper {
        padding-right: 50px;
        overflow: visible;
    }
    .card-wrap .swiper .item:only-child {
        right: -25px;
    }
}
.card-wrap .item p {
    position: absolute;
    right: clamp(30px, 3cqw, 40px);
    left: clamp(30px, 3cqw, 40px);
    bottom: clamp(35px, 5cqw, 75px);
    font-size: clamp(21px, 3cqw, 25px);
    font-weight: 500;
    color: #fff;
    padding-left: 15px;
    line-height: 1.4;
}

.card-wrap .item p::before {
    position: absolute;
    left: 0;
    top: -15px;
    content: "";
    display: block;
    width: 9px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #fff;
}
.img-wrap .info.line h4 {
    font-size: clamp(22px, 2cqw, 26px);
    font-weight: 700;
    margin: 30px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #000;
}
.img-wrap .info.line p {
    font-size: clamp(15px, 2cqw, 17px);
    font-weight: 300;
    line-height: 1.4;
}

.img-wrap .info h4.round {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    font-size: clamp(17px, 1.5cqw, 19px);
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    background-color: #000;
    line-height: 1;
    margin: 0 auto;
}

.img-wrap img {
    width: 100%;
    height: 100%;
}

.img-wrap.neostrata img {
    width: 400px;
}

@media (min-width: 992px) {
    .img-wrap .swiper-center {
        justify-content: center;
    }
    .img-wrap .swiper-center .swiper-slide:is(:only-child, :last-child) {
        margin-right: 0 !important;
    }
}
@media (min-width: 1200px) {
    .img-wrap .swiper-wrapper {
        display: grid;
        gap: 30px;
        transform: inherit !important;
    }
    .img-wrap .swiper .swiper-slide {
        width: 100% !important;
    }
    .img-wrap .swiper-center .swiper-slide:nth-child(1) {
        grid-column: 2;
    }
}
@media (min-width: 1460px) {
    .img-wrap .swiper-wrapper {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .img-wrap.p-tb60 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .img-wrap .swiper {
        overflow: visible;
        padding-right: 70px;
    }
    .img-wrap.equip .swiper {
        padding-right: 0px;
        padding: 0 10cqw;
    }
    .img-wrap .info h4.round {
        width: 100%;
    }
}
:is(.li-dash, .li-cir) {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

:is(.li-dash, .li-cir) li {
    position: relative;
    padding-left: 15px;
    font-size: clamp(15px, 2cqw, 17px);
    font-weight: 300;
    line-height: 1.5;
}
.li-dash li::before,
.li-cir li::before {
    position: absolute;
    left: 0;
    top: 9px;
}
.li-dash li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 1;
}

.li-cir li::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 5px;
    background-color: #d4b59e;
}

.se-title + .adv-wrap {
    margin-top: 80px;
}

.adv-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

:is(.adv-wrap, .dual-wrap) p {
    font-size: clamp(17px, 1.5vw, 21px);
}

.adv-wrap .icon img {
    margin: 0 auto;
}

.adv-wrap :where(h4) {
    font-size: clamp(24px, 2.5cqw, 30px);
    font-weight: 300;
    margin-top: clamp(15px, 2.5cqw, 25px);
    line-height: 1.35;
    text-align: center;
    color: #000;
}

.adv-wrap :where(h4 + p) {
    font-weight: 300;
    margin-top: clamp(15px, 2.5cqw, 22px);
    line-height: 1.4;
    text-align: center;
    color: #7a7a7a;
}

.t-sm h4 {
    font-size: clamp(23px, 3cqw, 26px) !important;
}
.t-xs h4 {
    font-size: clamp(19px, 3cqw, 21px) !important;
}
.t-xs h4 b {
    font-weight: 500 !important;
}
.t-sm p {
    font-size: clamp(17px, 3cqw, 19px) !important;
}

.adv-wrap.box {
    display: grid;
    margin-top: 50px;
}

.adv-wrap.box .item {
    padding: clamp(25px, 3cqw, 40px) clamp(25px, 3cqw, 30px);
    border: 0 !important;
}

.adv-wrap.box :where(h4 + p) {
    margin-top: clamp(10px, 2.5cqw, 15px);
}

.adv-wrap.box :is(.bg-lt90, .bg-lt95) :where(h4 + p) {
    color: #000;
}

.adv-wrap.box .bg-blue :is(h4, p) {
    color: #fff;
}
.adv-wrap.box .bg-w :is(h4, p) {
    color: #000;
    line-height: 1.5em;
}

.adv-wrap.img {
    display: grid;
}

.adv-wrap.img .item {
    padding: 0;
    width: 100%;
    border: 0;
}

.adv-wrap.img img {
    border-radius: 500px;
    overflow: hidden;
}

.adv-wrap.img .icon {
    margin-top: 40px;
}

.adv-wrap.img .icon + p {
    margin-top: 10px;
}

.adv-wrap.img .item:last-child {
    border: 0;
}

.dual-wrap .icon + p,
.adv-wrap .icon + p {
    color: #000;
    text-align: center;
    font-weight: 500;
    margin-top: clamp(15px, 3cqw, 35px);
    line-height: 1.5;
}

.adv-wrap.d-f .icon + p {
    font-size: clamp(17px, 3cqw, 22px);
}

.adv-wrap .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 15px;
}

.adv-wrap .item:only-child {
    border: 0 !important;
    width: 100%;
}

.adv-wrap.box > .item {
    width: 100%;
}

.adv-wrap.box .icon.check-cir-ic {
    width: 60px;
}

@media (min-width: 768px), (max-width: 767px) {
    .adv-wrap:not(.box) {
        flex-direction: column;
        gap: 40px;
    }
    .adv-wrap .item {
        width: 100%;
        border-left: 0;
        border-right: 0;
    }
}
@media (min-width: 992px) {
    .adv-wrap:not(.box) {
        flex-direction: row;
        gap: 0;
    }
    .adv-wrap .item {
        width: calc(100% / 3);
        border-left: 1px solid #d9d9d6;
    }
    .adv-wrap .item.col-3 {
        width: calc(100% / 4);
    }
    .adv-wrap .item:last-child {
        border-right: 1px solid #d9d9d6;
    }
}

.arrow-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.arrow-wrap .img-box {
    margin: 0 90px 0 65px;
}
.arrow-wrap .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(160px, 40cqw, 260px);
    padding: 45px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #fff;
}

.arrow-wrap h4 {
    color: #000;
    text-align: center;
    font-size: clamp(18px, 3.5cqw, 24px);
    font-weight: 700;
    margin-top: 25px;
    line-height: 1.5;
}

@media (min-width: 768px), (max-width: 767px) {
    .arrow-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .arrow-wrap .arrow01 {
        display: none;
    }
    .arrow-wrap .arrow02 {
        display: block;
        margin: 0;
    }
}
@media (min-width: 992px) {
    .arrow-wrap {
        flex-direction: row;
    }
    .arrow-wrap .arrow01 {
        display: block;
    }
    .arrow-wrap .arrow02 {
        display: none;
    }
}
@media (min-width: 1200px) {
}
@media (min-width: 1460px) {
}

.check-wrap {
    display: grid;
    gap: clamp(15px, 2cqw, 50px);
}

.check-wrap .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 15px 25px;
    gap: 15px;
    background-color: #f3f3f3;
    border-radius: 500px;
    text-align: center;
}

.bg-lt95 .check-wrap .item {
    background-color: #e4e4e3;
}

.check-wrap .item p {
    color: #000;
    text-align: center;
    font-size: clamp(18px, 1.3cqw, 21px);
    font-weight: 500;
    margin-top: 0px;
    line-height: 1.5;
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
    .check-wrap {
        grid-template-columns: var(--grid-3repeat);
    }
    .check-wrap .item {
        aspect-ratio: 1;
    }
}
@media (min-width: 1200px) {
    .check-wrap {
        grid-template-columns: var(--grid-5repeat);
    }
    .check-wrap.flex-md {
        justify-content: center;
    }
    .check-wrap.flex-md .item {
        width: calc((100% - (clamp(15px, 2cqw, 50px) * 4)) / 5);
    }
}

.step-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}

.step-wrap .info {
    padding: 30px 10px;
}

.step-wrap span.step {
    font-family: var(--Montserrat);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 95px;
    height: 35px;
    background-color: #4964a2;
    font-size: clamp(15px, 1.5cqw, 18px);
    padding-top: 1px;
}

.step-wrap h4 {
    font-size: clamp(22px, 1.5cqw, 24px);
    font-weight: 500;
    margin: 25px 0 15px;
}

.step-wrap p {
    font-size: clamp(15px, 1.2cqw, 17px);
    font-weight: 300;
    line-height: 1.55;
}

@media (min-width: 768px), (max-width: 767px) {
    .step-wrap img {
        width: 100%;
        height: 100%;
    }
    .step-wrap {
        flex-wrap: wrap;
        padding: 0 10px;
        gap: 35px;
    }
    .step-wrap .item:last-child {
        margin-bottom: 40px;
    }
    .step-wrap .item {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .step-wrap .item {
        width: calc((100% - 35px) / 2);
    }
}
@media (min-width: 992px) {
    .step-wrap {
        gap: 30px;
    }
}
@media (min-width: 1200px) {
    .step-wrap {
        gap: 20px;
    }
    .step-wrap .item {
        width: calc((100% - 60px) / 4);
    }
}
@media (min-width: 1460px) {
}

.dual-wrap {
    display: grid;
    grid-template-columns: var(--grid-2repeat);
}
.dual-wrap .info > p {
    line-height: 1.5;
    font-weight: 300;
    margin-top: 40px;
}

.dual-wrap .adv-wrap.d-f p {
    margin-top: 20px;
}

.dual-wrap .info h4 {
    font-size: 30px;
}
.dual-wrap .info h4 + p {
    font-size: 19px;
}
.dual-wrap .info h5 {
    font-size: clamp(26px, 2vw, 30px);
    line-height: 1.3;
}

.dual-wrap .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dual-wrap .info h5 + img {
    margin-top: 30px;
}

.dual-wrap .info.p-100 {
    /* padding: 80px 110px 90px 100px !important; */
    padding-top: clamp(40px, 5cqw, 80px) !important;
    padding-bottom: clamp(40px, 5cqw, 90px) !important;
    padding-right: clamp(40px, 5cqw, 110px) !important;
    padding-left: clamp(40px, 5cqw, 100px) !important;
}

.dual-wrap.handfoot {
    width: clamp(800px, 80cqw, 1140px);
}
.dual-wrap.care .img-box {
    background-color: #fff;
    display: flex;
    align-items: center;
}
@media (min-width: 992px) {
    .dual-wrap.care {
        display: flex !important;
    }
    .dual-wrap.care > div {
        width: 50%;
        flex: 0 1 50%;
    }
    .dual-wrap.care:nth-child(odd) {
        flex-direction: row-reverse;
    }
}
@media (min-width: 1200px) {
    .dual-wrap.care > div {
        width: auto;
        flex: none;
    }

    .dual-wrap.care .img-box {
        flex: 1;
    }
}
@media (min-width: 1460px) {
    .dual-wrap.care {
        display: flex !important;
    }
}
@media (max-width: 767px) {
    .dual-wrap.flex {
        flex-direction: column;
    }
    .dual-wrap .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .dual-wrap .info :is(h2, h5) {
        text-align: center;
    }
    .dual-wrap .info > p {
        text-align: center;
    }
    .dual-wrap.product .img-box img {
        width: 70%;
    }
    .dual-wrap.care .info {
        padding: 30px !important;
        text-align: center;
    }
    .dual-wrap.rejuran {
        gap: 40px;
    }
    .dual-wrap.rejuran .info {
        padding: 0 30px !important;
    }
}

@media (max-width: 991px) {
    .dual-wrap.care {
        flex-direction: column;
    }
}

@media (max-width: 1199px) {
    .dual-wrap.handfoot {
        width: 100%;
        padding: clamp(50px, 7cqw, 100px);
    }
    .icon.cir {
        width: clamp(70%, 7cqw, 100%);
    }
}

.li-img {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 60px;
}

.li-img li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.li-box {
    display: grid;
}

.li-box li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    text-align: center;
    gap: 15px;
    font-weight: 500;
}
.li-img span.text,
.li-box span.text {
    font-size: clamp(17px, 2cqw, 21px);
    line-height: 1.35;
    color: inherit;
}

.li-img span.text {
    font-weight: 400;
}

.li-box li.bg-blue {
    color: #fff;
}
.li-box li.bg-blue .icon {
    filter: grayscale(1) brightness(10);
}

:where(.bg-lt90, .bg-lt95) .box-wrap {
    background-color: #fff;
}

.bg-lt100 .box-wrap {
    background-color: #f3f3f3;
}

.box-wrap {
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: clamp(35px, 3cqw, 60px) clamp(25px, 3cqw, 60px);
}

.box-wrap img {
    width: 100%;
    height: 100%;
}

.box-wrap .img-box:only-child {
    margin: 20px 0;
}

.box-wrap::before {
    z-index: 10;
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: clamp(100px, 20cqw, 250px);
    height: clamp(5px, 1cqw, 10px);
    background-color: #000;
}
.box-wrap .item:only-child {
    width: 100%;
}

.box-wrap .info {
    background-color: #d4b59e;
    padding: 45px 15px 50px;
    text-align: center;
    color: #000;
}

.box-wrap .item:only-child .info {
    padding: 25px;
}

.box-wrap .info h4 {
    font-size: clamp(20px, 2cqw, 26px);
    font-weight: 700;
    line-height: 1.35;
}

.box-wrap .info h4 + p {
    margin-top: 20px;
    font-size: clamp(17px, 2cqw, 19px);
    line-height: 1.55;
}

.box-wrap .info p {
    font-size: clamp(17px, 2cqw, 21px);
    font-weight: 300;
    line-height: 1.35;
}
.box-wrap .info p:only-child {
    font-weight: 400;
    line-height: 1.5;
}
.box-wrap .step {
    padding: clamp(0px, 2vw, 30px);
}
.box-wrap .step h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(26px, 3vw, 30px);
    font-weight: 700;
}
@media (min-width: 768px) {
    .box-wrap .info.text-left {
        text-align: left;
    }
}
.grid-wrap.pattern {
    margin: 0 clamp(10px, 3cqw, 50px);
}
.grid-wrap.pattern small {
    display: block;
}
.grid-wrap.pattern .col {
    display: flex;
}

.grid-wrap.pattern .col > * {
    flex: 0 1 50%;
}

.grid-wrap.unstress-benefit {
    gap: clamp(45px, 3cqw, 50px);
}

.grid-wrap.unstress-benefit .adv-wrap {
    margin-top: 0;
    gap: clamp(20px, 3cqw, 40px);
}
@media (min-width: 992px) {
    .grid-wrap.pattern .col:nth-child(even) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991px) {
    .grid-wrap.pattern {
        display: grid;
        grid-template-columns: var(--grid-2repeat);
        gap: 40px 20px;
    }
    .grid-wrap.pattern .img-box {
        flex: none;
    }
    .grid-wrap.pattern .info {
        flex: 1;
        justify-content: flex-start;
    }
    .grid-wrap.pattern .col {
        flex-direction: column;
    }
    .grid-wrap.pattern .bf-bold::before {
        height: 5px;
    }
}
@media (max-width: 767px) {
    .grid-wrap.pattern {
        grid-template-columns: var(--grid-1fr);
    }

    .grid-wrap.unstress-benefit .icon.cir {
        width: 90%;
    }
}

.dl-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dl-step div {
    display: grid;
    grid-template-columns: minmax(0, 230px) minmax(0, auto);
    gap: 10px;
}
.dl-step dt {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(22px, 2cqw, 25px);
    padding: clamp(10px, 2cqw, 25px) 0;
    font-weight: 700;
    color: #fff;
}

.dl-step div:nth-child(1) dt {
    background-color: rgba(235, 214, 199, 1);
}

.dl-step div:nth-child(2) dt {
    background-color: rgba(225, 194, 172, 1);
}

.dl-step div:nth-child(3) dt {
    background-color: rgba(212, 181, 158, 1);
}

.dl-step div:nth-child(4) dt {
    background-color: rgba(123, 77, 53, 1);
}

.dl-step dd {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: #fff;
    line-height: 1.5;
    font-size: clamp(16px, 3cqw, 19px);
    font-weight: 400;
    letter-spacing: -0.04em;
    padding: 15px 30px;
}
@media (min-width: 768px) {
    .dl-step div {
        height: auto;
    }
}
@media (min-width: 1200px) {
    .dl-step div {
        min-height: 70px;
    }
}
@media (min-width: 1460px) {
}
@media (max-width: 767px) {
    .dl-step div {
        display: flex;
        flex-direction: column;
    }
    .dl-step dd {
        text-align: center;
    }
}
.care-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.care-wrap .item {
    text-align: center;
}
.care-wrap .item img {
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    .care-wrap .item {
        width: calc((100% - 30px * 1) / 2) !important;
    }
}
@media (min-width: 1200px) {
    .care-wrap .item {
        width: calc((100% - 40px * 2) / 3) !important;
    }
    .care-wrap .item[class*="swiper-slide-duplicate"] {
        display: none;
    }
    .care-wrap .swiper-wrapper {
        justify-content: center;
    }
}
@media (min-width: 1460px) {
    .care-wrap .item {
        width: calc((100% - 40px * 3) / 4) !important;
    }
}
@media (max-width: 767px) {
    .care-wrap .swiper {
        padding-right: 70px;
        overflow: visible;
    }
}

.care-wrap .info {
    padding-top: 30px;
}

.care-wrap .info h4 {
    font-size: clamp(20px, 2cqw, 26px);
    font-weight: 700;
    line-height: 1.35;
}

.care-wrap .info p {
    margin-top: 17px;
    font-size: clamp(15px, 2cqw, 17px);
    font-weight: 300;
    line-height: 1.35;
}

.space-wrap {
    display: flex;
    justify-content: space-between;
}
.space-wrap .item {
    text-align: center;
}

.space-wrap .img-box {
    position: relative;
    overflow: hidden;
    /* border-radius: 50%; */
}
.space-wrap .img-box img {
    aspect-ratio: 1;
}
.space-wrap h4 {
    margin-top: clamp(25px, 2cqw, 40px);
    font-size: clamp(22px, 2cqw, 24px);
    font-weight: 700;
    line-height: 1.35;
}
.space-wrap p {
    margin-top: 30px;
    font-size: clamp(20px, 2cqw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.space-wrap h4 + p {
    margin-top: 20px;
    font-size: clamp(15px, 2cqw, 17px);
    font-weight: 400;
}

.space-wrap.t-lg h4 + p {
    font-size: clamp(16px, 2cqw, 19px);
    line-height: 1.5;
    margin-top: 10px;
}

.space-wrap.t-lg h4 {
    font-size: clamp(24px, 2cqw, 30px);
}

@media (max-width: 767px) {
    .space-wrap .img-box img {
        width: 60%;
    }
}

.cir-wrap {
    margin-top: 40px !important;
}

.cir-wrap .item {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
}
.cir-wrap .item p {
    text-align: center;
    font-size: clamp(17px, 2cqw, 20px);
    font-weight: 500;
    line-height: 1.5;
}

.icon.xmark::before {
    font-variation-settings: var(--gms500_Out);
    content: "\e5cd";
    font-size: clamp(30px, 4cqw, 48px);
    color: #000;
}

.cir-wrap .item.bg-red p {
    color: #fff;
}

.cir-wrap .item.bg-w p {
    color: #000;
}

@media (min-width: 768px), (max-width: 767px) {
    .cir-wrap {
        display: grid;
        grid-template-columns: var(--grid-2repeat);
        gap: 25px;
    }
    .cir-wrap .xmark {
        display: none;
    }
    .cir-wrap .item {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .cir-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    .cir-wrap.juvelook {
        display: grid;
    }
    .cir-wrap .xmark {
        display: block;
    }
    .cir-wrap .item {
        width: 240px;
    }
    .cir-wrap.juvelook .item {
        width: 100%;
    }
}
@media (min-width: 1200px) {
}
@media (min-width: 1460px) {
}
@media (max-width: 991px) {
    .cir-wrap.juvelook .item {
        aspect-ratio: inherit;
        border-radius: 50px;
        padding: 15px;
    }
    .cir-wrap.juvelook .item br {
        display: none;
    }
}
.num-wrap img {
    width: 100%;
    height: 100%;
}
.num-wrap .item {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 30px; */
}

.num-wrap .info {
    flex: 1;
    background-color: #f3f3f3;
    text-align: center;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}
:is(.bg-lt95, .bg-lt90, .bg-gold, .bg-gold2) .num-wrap .info {
    background-color: #fff;
}
.num-wrap .info:only-child {
    padding-left: 0;
    padding-right: 0;
}
.num-wrap .info:only-child p {
    margin-left: 15px;
    margin-right: 15px;
}
.num-wrap span.num {
    font-family: var(--Montserrat);
    position: relative;
    z-index: 10;
    margin: -27.5px auto 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 55px;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    font-size: clamp(17px, 1.5cqw, 19px);
}
.num-wrap span.step {
    font-family: var(--Montserrat);
    position: relative;
    z-index: 10;
    margin: -30px auto 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85px;
    height: 30px;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    font-size: clamp(15px, 1.5cqw, 17px);
}
.num-wrap span.num + h4 {
    margin-top: 25px;
}
.num-wrap h4 {
    margin: 40px 0 0px;
    font-size: clamp(21px, 2cqw, 26px);
    font-weight: 700;
    line-height: 1.35;
}
.num-wrap h4:only-child {
    margin: 30px 0 0px;
}
.num-wrap p {
    margin: 20px 0 0px;
    font-size: clamp(17px, 2cqw, 19px) !important;
    font-weight: 300;
    line-height: 1.5;
}

.num-wrap .info:only-child span.step {
    margin-top: 0;
}
.num-wrap .info:only-child h4 {
    margin-top: -30px;
    padding: 50px 15px 20px;
    background-color: #d4b59e;
}
.thermage .num-wrap .info:only-child h4 {
    min-height: clamp(130px, 3vw, 140px);
}
.num-wrap .info:only-child p {
    font-weight: 400;
    font-size: 19px;
}
@media (min-width: 1200px) {
    .num-wrap .swiper-wrapper {
        display: grid;
        gap: 30px;
        transform: inherit !important;
    }
    .num-wrap .swiper .swiper-slide {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .num-wrap .swiper {
        overflow: visible;
        padding: 0 20px;
    }
}
.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2cqw, 40px);
}
.faq-wrap :is(.qus, .ans) {
    padding: clamp(20px, 3cqw, 30px) clamp(20px, 3cqw, 60px);
}

.faq-wrap .qus {
    border-top: 1px solid #000;
}

.faq-wrap .ans {
    background-color: #f3f3f3;
}
.faq-wrap .qus::before {
    content: "Q";
}
.faq-wrap .ans::before {
    content: "A";
    color: var(--oz-red);
}
.faq-wrap :is(.qus, .ans) {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 2cqw, 30px);
}
.faq-wrap :is(.qus, .ans)::before {
    font-size: clamp(20px, 2cqw, 24px);
    font-weight: 700;
    line-height: 1.2;
}
.faq-wrap h4 {
    font-size: clamp(20px, 2cqw, 24px);
    font-weight: 700;
    line-height: 1.35;
}
.faq-wrap p {
    font-size: clamp(16px, 2cqw, 17px);
    font-weight: 300;
    line-height: 1.55;
}

/* swiper */
#swiperLift {
    position: relative;
    margin-top: 70px;
}
#swiperLift .swiper-slide {
    height: auto;
}
#swiperLift .item {
    position: relative;
    overflow: hidden;
    border-top-left-radius: clamp(15px, 2cqw, 30px);
    border-top-right-radius: clamp(15px, 2cqw, 30px);
    background-color: #e8e8e8;
    padding-bottom: clamp(30px, 2cqw, 45px);
    height: 100%;
}
#swiperLift .item img {
    width: 100%;
    height: 100%;
}
#swiperLift .item h5 {
    margin-top: 35px;
    font-size: clamp(24px, 2cqw, 30px);
    text-align: center;
    font-weight: 700;
    color: #000;
}
#swiperLift .item span.tag {
    display: block;
    text-align: center;
    font-size: clamp(16px, 2cqw, 20px);
    padding: 0 20px;
    margin-top: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.045em;
    color: #4964a2;
}
#swiperLift [class^="swiper-button"] {
    margin-top: 0;
    transform: translateY(-50%);
    height: inherit;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
}
#swiperLift [class^="swiper-button"]::after {
    font-family: var(--gms);
    font-variation-settings: var(--gms100_Out);
    font-weight: 100;
    font-size: 42px;
}
#swiperLift .swiper-button-prev::after {
    content: "\e2ea";
}
#swiperLift .swiper-button-next::after {
    content: "\e5e1";
}
#swiperLift .swiper-button-next {
    right: -120px;
    padding-left: 5px;
}
#swiperLift .swiper-button-prev {
    left: -120px;
    padding-right: 5px;
}

#swiperLift + .caption {
    background-color: rgba(0, 0, 0, 0.2);
}

#swiperLift + .caption p {
    font-weight: 500 !important;
    color: #fff;
}

@media (min-width: 1200px) {
    #swiperLift.loopDisabled .swiper-wrapper {
        justify-content: center;
        padding-left: 30px;
    }
    #swiperLift.loopDisabled .swiper-wrapper .swiper-slide-duplicate {
        display: none;
    }
}

@media (max-width: 767px) {
    #swiperLift .swiper {
        overflow: visible;
        padding: 0 30px;
    }
    #swiperLift .item h5 {
        text-align: center;
    }
}

[class*="wrap"] :is(.caption, .caption.check) {
    margin-top: 0;
    padding: 20px 30px;
}
.caption:first-child {
    margin-top: 0;
}
.caption {
    margin-top: 55px;
    padding: 25px;
    text-align: center;
    background-color: #f3f3f3;
}

.caption.check {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: clamp(25px, 3cqw, 50px);
}

.caption h4 {
    font-size: clamp(24px, 2cqw, 30px);
    font-weight: 700;
    line-height: 1.35;
}

.caption h4 + p {
    margin-top: 20px;
    line-height: 1.55;
}

.caption p {
    font-weight: 300;
    color: #000;
    font-size: clamp(16px, 2cqw, 21px);
    line-height: 1.4;
}

.caption.check p {
    font-weight: 400 !important;
    font-size: clamp(17px, 2cqw, 20px);
    line-height: 1.4;
    position: relative;
}

@media (max-width: 767px) {
    .caption.check {
        height: auto !important;
    }
}

.click-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: clamp(50px, 15cqw, 100px) auto 0;
    padding: 20px 30px 20px 50px;
    background-color: #000;
    color: #fff;
    border-radius: 500px;
    line-height: 1;
}

.click-btn .text > p {
    color: #fff;
    font-size: clamp(17px, 2cqw, 24px);
    line-height: 1.5;
    font-weight: 700;
}

.click-btn .click {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    color: var(--oz-gold);
    line-height: 1.5;
    font-weight: 500;
}

.click-btn .click p {
    font-weight: 400;
    color: inherit;
    font-size: inherit;
}

.click-btn .click span.material-symbols-outlined {
    font-size: 28px;
}

@media (min-width: 768px), (max-width: 767px) {
    .click-btn {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 992px) {
    .click-btn {
        width: 600px;
        height: 76px;
    }
}

.pare-wrap .item {
    position: relative;
    text-align: center;
    padding: 30px 0;
}

.pare-wrap .item.point {
    box-shadow: inset 0px 0px 0px 10px #d4b59e;
}

.pare-wrap h4 {
    font-size: var(--font-size-1lg);
    font-weight: 500;
    line-height: 1.35;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #e4e4e3;
    font-size: 21px;
}

.pare-wrap .item.point h4 {
    background-color: #d4b59e;
}

.pare-wrap p {
    color: #000;
    text-align: center;
    font-size: clamp(17px, 2cqw, 19px);
    font-weight: 300;
    margin: 40px clamp(20px, 2cqw, 25px);
    line-height: 1.5;
}

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

.map-wrap .dl-map > div {
    position: relative;
    padding: clamp(30px, 5vw, 60px) 0 clamp(30px, 5vw, 60px) clamp(50px, 5vw, 70px);
    border-top: 1px solid #e0e0dd;
}

.map-wrap .dl-map .icon {
    position: absolute;
    left: 0;
    top: clamp(35px, 5vw, 60px);
    width: clamp(30px, 5vw, 50px);
}
.map-wrap .dl-map dt {
    font-size: clamp(26px, 2vw, 30px);
    font-weight: 700;
    margin-bottom: clamp(10px, 3vw, 15px);
    color: #000;
}

.map-wrap .dl-map dd {
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 300;
}
.map-wrap .dl-map dd + dd {
    margin-top: 8px;
}
.map-wrap .dl-map .tel dd {
    font-family: "Lato", sans-serif;
    font-size: clamp(30px, 5cqw, 45px);
    letter-spacing: -0.035em;
    color: #000;
}
.map-wrap .dl-map .time dd {
    display: grid;
    gap: 0 15px;
    grid-template-columns: minmax(0, 80px) minmax(0, auto);
}
.map-wrap .dl-map .time dd b.sm {
    grid-column: 2;
    font-size: 14px;
}
.map-wrap .dl-map .link {
    padding: 0;
}

.map-wrap .link-btn + .link-btn {
    margin-top: 15px;
}
.map-wrap .link-btn a {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.map-wrap .link-btn :is(p,span) {
    color: #fff;
    font-size: clamp(17px, 2cqw, 22px);
    font-weight: 500;
        position: relative;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: -0.035em;
}
.map-wrap .link-btn img {
    width: 35px;
}
.map-wrap .kakaoFind a {
    background-color: rgba(48, 111, 183, 1);
}
.map-wrap .naverFind a {
    background-color: rgba(100, 185, 87, 1);
}
.map-wrap .location {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 0;
    gap: 20px;
}
.map-wrap .location .map.image p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 62px;
    padding-bottom: 2px;
    background-color: #000;
    color: #fff;
    font-size: clamp(17px, 2cqw, 20px);
    font-weight: 500;
    line-height: 1;
}
.map.kakao {
    height: 100%;
}
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    aspect-ratio: 5/3;
    width: 100% !important;
    height: 100% !important;
}

@media (min-width: 992px) {
    .map-wrap {
        display: grid;
        grid-template-columns: minmax(0, 520px) minmax(0, 820px);
        gap: 50px;
        justify-content: space-between;
    }
}

@media (min-width: 1460px) {
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        /* 수원 */
        aspect-ratio: 16/7.2;
        height: auto !important;
    }
}
@media (max-width: 767px) {
    .map-wrap {
        display: flex;
        flex-direction: column;
    }
}

.payment-wrap + .payment-wrap {
    margin-top: 100px;
}
.payment-wrap {
    gap: 0;
}
.payment-wrap h4 {
    font-size: clamp(22px, 4cqw, 30px);
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}
.payment-wrap h4::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: clamp(22px, 4cqw, 29px);
    background: #222;
    left: 0;
    top: 1px;
}
/* .payment-wrap table tbody tr > td:nth-child(2) {
    text-align: left;
    font-weight: 500;
} */
.table-style :is(tbody, thead) tr :is(th, td) {
    text-align: center;
    padding: 10px 13px;
    vertical-align: middle;
    border: 1px solid #ccc;
    font-size: clamp(13px, 2cqw, 15px);
}

.table-style > thead > tr > th {
    border-bottom: 0;
    font-weight: 500;
    background-color: #333;
    border-color: #666 !important;
    color: #fff;
    font-size: clamp(14px, 2cqw, 16px);
}
.table-style > tbody > tr > td:last-child {
    white-space: nowrap;
}
.privacy-content {
    background-color: #f7f7f7;
    padding: clamp(50px, 10cqw, 100px) 0;
}
.privacy-wrap {
    background-color: #fff;
}
.privacy-wrap .nav-tabs {
    display: flex;
    border: 0;
    overflow-y: hidden;
    overflow-x: auto;
}
.privacy-wrap .nav-tabs > li {
    flex: 1;
    float: inherit;
}
.privacy-wrap .nav-tabs > li:not(.active) + li:not(.active) > a {
    border-left: 1px solid #ccc;
}

.privacy-wrap .nav-tabs > li > a {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(14px, 1.5cqw, 17px);
    border-radius: 0;
    height: 55px;
    background-color: #ededed;
    color: #444;
}
.privacy-wrap .nav-tabs > li.active > a {
    border-top: 2px solid var(--oz-gold);
    border-left: 0;
    border-right: 0;
    color: #000;
    font-weight: 700;
    background-color: #fff;
}
.privacy-wrap .nav-tabs > li:not(.active) > a:hover {
    text-decoration: underline;
}
.privacy-wrap .info {
    white-space: pre-line;
    font-size: clamp(14px, 1.5cqw, 16px);
    line-height: 1.55;
}
.privacy-wrap .tab-content {
    padding: clamp(30px, 8cqw, 60px);
}
.privacy-wrap h2 {
    line-height: 1.2;
    font-size: clamp(22px, 3cqw, 30px);
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #000;
    border-bottom: 2px solid var(--oz-gold);
}

/* =================================== board, bbs =================================== */
:is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: none;
}
.search_wrap .write_btn_wrap {
    margin-top: 0;
}
#bbsArea {
    gap: 0;
}

#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}

/* 카테고리 / 분류 */
.category_wrap ul {
    display: flex;
    gap: 0 20px;
}

.category_wrap li {
    margin: 0 !important;
}

.category_wrap li a {
    color: #888;
    font-weight: 500;
    padding-bottom: 0;
    border-bottom: 0;
}

.category_wrap li a:hover {
    color: #111;
}

.category_wrap li.on :where(a, a:hover, a:focus) {
    color: #000;
    font-weight: 600;
}

/* 블로그 동영상 상품 */
:is(.table_video, .table_blog2) {
    --col: 3;
}
:is(.table_video, .table_blog2, .table_pd) {
    display: grid;
    grid-template-columns: repeat(var(--col), var(--grid-1fr));
    margin-left: 0;
    margin-right: 0;
    gap: clamp(40px, 2cqw, 70px) clamp(15px, 2cqw, 30px);
}

/* 등록된 [상품/게시글]이 없습니다 문구 */
:is(.table_video, .table_blog2, .table_pd) dd:not([class]) {
    width: 100%;
    grid-column: span var(--col);
}

:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner {
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
}

@media (hover: hover) {
    :where(.table_video, .table_blog2, .table_pd) .inner:hover {
        border-color: #ddd;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    }
    :where(.table_video, .table_blog, .table_blog2, .table_pd) .inner:hover a {
        color: #b28b6d;
    }
    :where(.table_video, .table_blog, .table_blog2, .table_pd) .inner :where(.bottom .title a, .title a) :where(:hover, :focus) {
        color: #b28b6d;
    }
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a .thumb {
    width: 100%;
    height: auto;
    background-size: cover;
    content-visibility: auto;
}
:where(.table_blog2, .table_pd) .inner .top a .thumb {
    aspect-ratio: 5/3;
}
:where(.table_video) .inner .top a .thumb {
    aspect-ratio: 16/9;
}
:is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}

:is(.table_video, .table_blog2) dd .inner .bottom {
    padding: clamp(15px, 2cqw, 20px);
}

:is(.table_video, .table_blog, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0;
}

:is(.table_video, .table_blog, .table_blog2) dd :is(.inner .bottom) .title a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    font-size: clamp(16px, 2cqw, 18px);
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
}

:is(.table_video, .table_blog2, .table_blog) dd :is(.inner .bottom, .right) .info span {
    padding: 0;
    font-size: clamp(13px, 2cqw, 15px);
}

/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: 18px;
}

/* 검색 */
#bbsArea .board_wrapper + :is(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}

#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 30px;
}

#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0 !important;
}

/* 게시판 reset */
.board_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0;
}

.board_wrapper .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.board_wrapper .text-center :is(.btn.btn-lg, .btn + .btn) {
    min-width: 200px;
}

.board_wrapper .text-center .btn + .btn {
    margin: 0;
}

.btn.btn-primary:is(:hover, :focus) {
    background-color: var(--page-point-color-hover);
    border-color: var(--page-point-color-hover);
}

.board_wrapper .table.board_write_table .files_upload_wrap .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    aspect-ratio: 1;
    height: 40px;
}

.board_wrapper .table.board_write_table .files_upload_wrap {
    display: grid;
    grid-template-columns: auto max-content;
}

.board_wrapper .table.board_write_table .files {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: min-content;
    align-items: flex-start;
    gap: 15px 15px;
}

.board_wrapper .table.board_write_table .files .fileInput {
    position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 5px;
}

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    position: absolute;
    right: 0px;
    aspect-ratio: 1;
    width: auto;
    padding: 9px 12px;
    margin: 0;
}

.board_wrapper .table.board_write_table .files .fileInput .file_remove {
    position: absolute;
    right: 50px;
    width: auto;
    padding: 9px 12px;
    margin: 0;
}

.board_wrapper .table.board_write_table .files .refresh {
    display: inline-block;
    color: #999;
    line-height: 40px;
    margin-left: 7px;
    margin-right: 7px;
}

.board_wrapper .table.board_write_table .files .tempChk {
    font-size: 12px;
    color: #666;
}

.board_wrapper .table.board_write_table .files + .sumChk {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 17px;
}

.form-control[type="file"] {
    width: auto;
}

/* 작성 custom */
.board_wrapper .table.board_write_table :is(thead, tbody) tr :is(th, td) {
    border: 0;
}
.board_wrapper .table.board_write_table :is(thead, tbody) tr :is(th) {
    padding-top: 10px !important;
    font-size: clamp(15px, 3vw, 17px) !important;
}
.board_wrapper .table.board_write_table :is(thead, tbody) tr :is(td) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: clamp(14px, 3vw, 16px) !important;
}
.board_wrapper .table.board_write_table :is(.checkbox, .radio) {
    margin: 3px 0 0;
}
@media (max-width: 767px) {
    .table.board_write_table tr {
        display: flex;
        flex-direction: column;
    }

    .table.board_write_table .cke_top {
        display: none !important;
    }
    .board_wrapper .table.board_write_table {
        display: block;
        padding: 20px 20px 5px !important;
        background-color: #f7f7f7;
        border-radius: 7px;
    }
    .board_wrapper .table.board_write_table tbody {
        display: block;
        width: 100%;
    }
    .board_wrapper .table.board_write_table :is(thead, tbody) tr :is(th, td) {
        padding: 0 !important;
    }
    .board_wrapper .table.board_write_table :is(thead, tbody) tr :is(th) {
        margin-bottom: 10px;
    }
    .board_wrapper .table.board_write_table :is(thead, tbody) tr :is(td) {
        margin-bottom: 20px;
    }
    .board_wrapper .table.board_write_table .files_upload_wrap {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .board_wrapper .table.board_write_table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .board_wrapper .table.board_write_table .files .fileInput input {
        width: 100%;
    }

    .board_wrapper .table.board_write_table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }

    .board_wrapper .table.board_write_table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 0px;
    }
    .board_wrapper .table.board_write_table :is(.checkbox, .radio) {
        margin: 0;
    }
}

/* member */
.member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    transition: all ease 0.3s;
}

.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: #5dae57;
}

.table_blog dd::after,
.table_blog dd .right .info {
    display: none;
}

.table_blog dd {
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
    padding: 25px 25px;
}

.table_blog dd a {
    font-weight: 500;
}

.table_blog dd .right {
    width: auto;
    flex-grow: 1;
    padding-top: 10px;
}

.table_blog dd .right .text p {
    padding: 0;
    font-size: clamp(15px, 4vw, 16px);
}

@media (max-width: 767px) {
    .table_blog dd {
        flex-wrap: wrap;
    }
    .table_blog dd .right .text p {
        word-break: break-all;
    }
}

.table_blog dd .left a .thumb {
    aspect-ratio: 5/3;
    width: 250px;
    height: auto;
}

.table_blog dd :where(.left, .right) {
    width: auto;
    height: auto;
}

.table_blog dd .left a .thumb {
    aspect-ratio: 5/3;
    width: 250px;
    height: auto;
}

.table_blog dd :where(.left, .right) {
    width: auto;
    height: auto;
}

.table.table_default {
    margin-bottom: 0;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: 17px;
    color: #333;
}

.table.table_default tr :is(th, td) {
    font-size: 17px;
    border-bottom: 1px solid #ddd;
}

.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
}

.table_default {
    border-top: 1px solid #333;
}

.table.table_default tr td {
    color: #777;
}

.table.table_default tr td:only-child {
    display: table-cell;
}

.text-muted {
    margin-top: 8px !important;
    font-size: 15px;
}

/* wrapper */
.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr th {
    background-color: transparent;
    font-weight: 700;
    font-size: 16px;
    padding: 20px 20px;
}

.board_data_view {
    border-top: 1px solid #333;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 50px 0;
}

:is(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}

:is(.checkbox label, .radio label) {
    letter-spacing: -0.06em;
}

.custom_checkbox + span a {
    font-weight: 500;
}

.privacy_body {
    font-size: 17px;
    line-height: 1.6em;
    padding: 0 100px;
}

/* =================================== popup =================================== */
#swiperPopup:not(.show) {
    display: none !important;
}
#swiperPopup.show {
    border: 0 !important;
    position: fixed;
    left: 0;
    top: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.8);
}
#swiperPopup .swiper {
    max-width: 1180px;
    background-color: #000;
}
#swiperPopup .swiper-slide:not(.show) {
    display: none;
}
#swiperPopup .swiper-slide.show {
    pointer-events: none;
    user-select: none;
    border: 0 !important;
    position: static !important;
    transform: none !important;
    left: 0;
    top: 0;
    margin-bottom: 0;
    min-width: auto;
    box-shadow: none;
    aspect-ratio: 1182/655;
    background-color: #000;
    border-radius: 0;
}
#swiperPopup .main_popup_contents {
    padding: 0;
    width: 100%;
    background-color: #000;
}
#swiperPopup .main_popup_contents p {
    position: static;
}
#swiperPopup .main_popup_contents img {
    /* position: absolute; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: cover;
    object-position: center;
}
#swiperPopup .swiper-slide .main_popup_optional {
    display: none;
}
#swiperPopup .swiper_popup_optional {
    display: flex;
    height: 45px;
    padding: 10px;
    gap: 5px;
    background-color: #000;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
}
#swiperPopup .swiper_popup_optional label {
    height: 100%;
    margin: 0;
    padding: 0;
}
#swiperPopup .swiper_popup_optional button {
    display: inline-flex;
    gap: 3px;
    height: 100%;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    border: 0;
    background: #393939;
    color: inherit;
    font-size: clamp(11px, 1.5cqw, 13px);
    font-weight: 400;
    opacity: 1 !important;
    text-shadow: none;
    overflow: hidden;
}
#swiperPopup .swiper_popup_optional span.material-symbols-outlined {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    font-size: 15px;
}
#swiperPopup .swiper_popup_optional span.text {
    display: inline-block;
    line-height: 0.8;
    translate: 0 1px;
}
#swiperPopup .swiper-pagination {
    overflow-y: hidden;
    overflow-x: auto;
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    width: auto;
    margin-right: -1px;
    height: clamp(32px, 5cqw, 45px);
}

#swiperPopup .swiper-pagination .tab_bullet {
    transition: 0.3s;
    flex: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 0;
    background-color: #fff;
    margin: 0;
    color: #000 !important;
    opacity: 1;
    padding: 0 20px;
}

#swiperPopup .swiper-pagination .tab_bullet p {
    color: inherit;
    font-size: clamp(11px, 1.5cqw, 16px);
    white-space: nowrap;
}

#swiperPopup .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--oz-orange);
    color: #fff !important;
}
@media (hover: hover) {
    #swiperPopup .swiper-pagination .tab_bullet:hover {
        background-color: var(--oz-orange);
        color: #fff !important;
    }
}
@media (max-width: 767px) {
    #swiperPopup .swiper-pagination .tab_bullet {
        width: 100%;
        flex: inherit;
    }
}
#swiperPopup .popupTitle {
    display: none;
}
#swiperPopup .popupTitle p {
    display: none;
}
#swiperPopup .popupTitle + p {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 2509 */
@media (min-width: 768px) {
    #swiperPopup .swiper-slide.show img.mo {
        display: none;
    }
}
@media (max-width: 767.98px) {
    #swiperPopup .swiper {
        max-width: 350px !important;
    }
    #swiperPopup .swiper_popup_optional span.material-symbols-outlined {
        transform: translateY(0.025em);
    }
    #swiperPopup .swiper,
    #swiperPopup .swiper_popup_optional {
        background-color: transparent;
        padding: 0;
    }
    #swiperPopup .swiper-slide.show img.pc {
        display: none;
    }
    #swiperPopup .swiper-slide.show {
        aspect-ratio: 0.7058823529;
        pointer-events: unset;
    }
    #swiperPopup .swiper-slide.show img {
        align-self: center;
        object-fit: contain;
    }
    #swiperPopup .swiper-slide.show img.mo {
        object-fit: cover;
        object-position: center;
    }
    #swiperPopup .main_popup_contents {
        height: 100%;
    }
    #swiperPopup .swiper-pagination {
        gap: 10px;
        height: unset;
        justify-content: center;
        margin-top: 15px;
    }
    #swiperPopup .swiper-pagination p {
        display: none;
    }
    #swiperPopup .swiper-pagination .tab_bullet {
        border-radius: 9999px;
        aspect-ratio: 1;
        width: 12px;
        height: auto;
        padding: 0;
    }
    #swiperPopup .swiper_popup_optional button{
        background-color: transparent;
    }
}

/* * login */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    border-radius: var(--radius-base);
}

:is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #f7f7f7;
}

:is(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--navHeight));
}

@media (max-height: 761px) {
    :is(#find_idpw, .login_wrapper) {
        height: auto;
    }
}

:is(#find_idpw, .login_wrapper) .container {
    width: 100%;
}

.join_wrapper .member_wrapper {
    width: auto;
}

:is(#find_idpw, .join_wrapper, .login_wrapper) .member_wrapper {
    padding: 50px 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: inherit;
    background: #fff;
}

:is(#find_idpw, .login_wrapper) .member_wrapper {
    width: 400px;
    margin: 0 auto;
}

.member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}

.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}

.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}

.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    transform: translateY(1px);
    font-variation-settings: var(--gms400_Out);
    font-size: 1.25rem;
    color: #000;
}

.member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}

.member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}

.member_wrapper :is(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
}

.member_wrapper :is(#login_form, #login_form input) {
    font-size: 14px;
}

.member_wrapper #login_form input {
    border: 0;
    padding-left: 0;
}

.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: 15px;
}

.member_wrapper h1 {
    font-size: 32px;
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.member_wrapper .btn {
    font-size: clamp(13px, 5cqw, 14px);
}
.member_wrapper .table tbody tr :is(th, td) {
    font-size: clamp(13px, 5cqw, 14px);
}
.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}

.member_wrapper .join_agree_box + .checkbox {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 0.75em 1.25em;
    gap: 5px;
    background-color: #f7f7f7;
    font-size: clamp(12px, 5vw, 15px);
}
.member_wrapper .join_agree_box + .checkbox label {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
}
.member_wrapper .join_agree_box + .checkbox input {
    position: static;
    margin: 0;
    margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
    color: #1c54e4;
    font-weight: 500;
}

.member_wrapper .join_agree_box + .checkbox > a:hover {
    text-decoration: underline;
}

.member_wrapper .join_agree h4 {
    font-size: clamp(16px, 2cqw, 18px);
}

.member_wrapper .join_agree .join_agree_box {
    font-size: clamp(14px, 2cqw, 15px);
}
.member_wrapper .join_agree .checkbox {
    font-size: clamp(12px, 2cqw, 15px);
}

.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}

.member_wrapper .login_extra ul li > a {
    font-size: 14px;
}

.member_wrapper .login_extra ul li + li {
    margin-left: 0;
}

.member_wrapper .login_extra ul li + li::before {
    content: none;
}

.member_wrapper .login_extra {
    margin-top: 30px;
}
.member_wrapper #join_form .table tbody tr th {
    font-size: 15px;
    font-weight: 500;
}
.board_data_view .header_wrap .title {
    margin: 0;
    font-size: clamp(21px, 2cqw, 25px);
    line-height: 1.3;
    font-weight: 500;
}
.board_data_view .header_wrap .info span {
    font-size: 14px;
    color: #999;
}
/* =================================== mobile =================================== */
/* subpage */
@media (max-width: 767px) {
    .subpage-header {
        height: 250px;
    }
}

/* bbs, etc */
@media (max-width: 767px) {
    .privacy_body {
        padding: 0 30px;
    }

    .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }

    .table_default .subject {
        width: 100%;
    }

    .member_wrapper #join_form .table :is(.input-group.input-group-big, .form-control.form-control-big),
    .board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, tbody tr td .btn, tbody tr td .form-control, .input-group.input-group-big, .form-control.form-control-big) {
        width: 100%;
    }

    :is(.table_video, .table_blog2) {
        grid-template-columns: var(--grid-1fr);
    }
    .table_blog dd:hover {
        background-color: transparent !important;
    }
    .table_blog dd .left {
        padding: 0;
    }
    .table_blog dd .right {
        padding-top: 0;
    }
    .table_blog dd .left,
    .table_blog dd .left a,
    .table_blog dd .left span {
        width: 100% !important;
    }
    .search_wrap {
        margin-bottom: 0 !important;
    }

    .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }

    .board_data_view .download_wrap tr > * {
        width: 100%;
    }

    .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }

    .board_data_view .download_wrap tr li a {
        word-break: break-all;
    }

    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }

    :is(.member_wrapper, .board_wrapper) div.text-center {
        margin-top: 0;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    :is(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: clamp(14px, 2cqw, 16px);
    }

    :is(.member_wrapper, .board_wrapper) .text-center :is(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }

    .table.board_write_table tbody tr th span:nth-of-type(2) {
        margin-left: 10px;
    }

    .table.board_write_table tbody tr th span:only-child {
        margin: 0;
    }

    .table.table_responsive tbody tr th {
        padding: 15px !important;
        margin-left: 0 !important;
    }

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        display: block;
        margin-top: 0;
        position: relative;
        padding: 120px 0;
        min-height: 100svh;
        height: auto;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) .member_wrapper {
        padding: 70px 25px 70px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) .container {
        width: 100%;
        padding: 0 15px;
    }

    .member_wrapper {
        width: 100% !important;
        margin: 0 !important;
    }

    .member_wrapper .form-group div:last-child {
        width: 100%;
    }

    .member_wrapper {
        padding-top: 50px;
    }
    .member_wrapper h1 {
        line-height: 1.4;
    }
    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .member_wrapper .login_extra ul li + li::before {
        content: none;
    }

    .member_wrapper .table,
    .member_wrapper .table :where(tbody, tbody tr) {
        display: block !important;
        width: 100% !important;
    }

    .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2cqw, 17px);
    }

    .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }

    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }

    .member_wrapper .table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .member_wrapper .table .files .fileInput input {
        width: auto;
    }

    .member_wrapper .table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }

    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    .member_wrapper #join_form th {
        padding: 10px 20px !important;
    }
    .member_wrapper #join_form td {
        display: flex !important;
        padding-left: 0;
        padding-right: 0;
        gap: 5px;
    }
    .member_wrapper #join_form td input:not(#mb_mailing) {
        width: 100% !important;
    }
    .member_wrapper #join_form tr:last-child td {
        display: block !important;
    }
}

/* bbs-reset */
:is(.form-wrap, form) #list_btn {
    display: none;
}

.board_data_view .contents_wrap {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 1.6;
}
.board_data_view .contents_inner {
    font-size: 14px;
}
.board_data_view .contents_wrap p {
    font-size: inherit;
    line-height: 1.6;
    margin: 1em 0;
}

.board_data_view .contents_wrap :is(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}

.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}

.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}

/* =================================== 수원점 start=================================== */
/* 웰에이징 / 써마지FLX TREATMENT TIP*/
.we02-s07-wrap {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: -100px;
}

.we02-s07-wrap .img-box {
    flex: 1;
}

.we02-s07-wrap .info {
    width: 40%;
    border: 1px solid #6e707a;
    padding-top: 60px;
    padding-left: clamp(30px, 5vw, 75px);
    padding-right: clamp(30px, 5vw, 75px);
    padding-bottom: 40px;
}
.we02-s07-wrap .info.border-none {
    border: 0 !important;
    padding: 0;
}
.we02-s07-wrap .info h4 {
    font-size: clamp(30px, 4cqw, 45px);
}
.we02-s07-wrap .info p {
    font-size: clamp(18px, 4cqw, 24px);
    margin: 20px 0 50px;
}
@media (max-width: 767px) {
    .we02-s07-wrap {
        margin-left: 0;
        flex-direction: column;
    }
    .we02-s07-wrap .info {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .pi01-s12-wrap {
        padding-left: 20px;
    }
}
.blog-btn {
    display: flex;
    width: 290px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
    background-color: #fff;
    line-height: 1;
    padding: 10px 20px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-weight: 500;
}
.blog-btn::after {
    content: "\e5df";
    font-family: var(--gms);
    font-size: 24px;
    font-weight: 700;
}
.blog-btn:hover {
    color: #000;
}

/* new */
/* 인모드리프팅 */
.inmode-wrap {
    --inmode-red: #fb6252;
}
.inmode-wrap.adv .img-box {
    z-index: 1;
}
.inmode-wrap.adv .info {
    position: relative;
    z-index: 2;
    margin-top: -350px;
    gap: clamp(40px, 5vw, 80px);
}
.inmode-wrap.adv .col {
    padding: clamp(30px, 5vw, 50px);
    text-align: center;
}
.inmode-wrap.adv .header {
    padding-bottom: 40px;
    border-bottom: 3px solid #222;
}
.inmode-wrap.adv .header h4 {
    font-size: clamp(21px, 2cqw, 26px);
    font-weight: 700;
    line-height: 1.35;
}
.inmode-wrap.adv p {
    font-size: clamp(16px, 2cqw, 18px) !important;
    font-weight: 300;
    line-height: 1.5;
}
.inmode-wrap.adv p.adv {
    border: 1px solid var(--inmode-red);
    color: var(--inmode-red);
    margin-top: 20px;
    padding: 15px;
    border-radius: 0.5em;
}
@media (max-width: 768px) {
    .inmode-wrap.adv .info {
        margin-top: -100px;
    }
}
@media (min-width: 1198px) {
    .inmode-wrap.tech {
        width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}
.inmode-wrap.tech .item {
    overflow: hidden;
    border: 2px solid #dfcab9;
    border-radius: 0.5em;
}
.inmode-wrap.tech .info {
    background-color: #f8f4f1;
    padding: 25px;
}
.inmode-wrap.tech .info p {
    margin-top: 0;
}
.inmode-wrap.core .info.red {
    background-color: var(--inmode-red);
}
.inmode-wrap.core + .inmode.caption {
    text-align: left;
    margin-top: 200px;
    display: flex;
    align-items: center;
    padding-right: 350px !important;
}
.inmode-wrap.core + .inmode.caption img {
    position: absolute;
    width: 350px;
    height: auto;
    right: 30px;
}
@media (max-width: 767px) {
    .inmode-wrap.core + .inmode.caption {
        margin-top: 40px;
        flex-direction: column;
        justify-content: inherit;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 30px !important;
    }
    .inmode-wrap.core + .inmode.caption img {
        position: static;
    }
}
.num-wrap.intracell .info {
    padding: 30px;
    background-color: #f0e7e2;
}
.num-wrap.intracell .info h4 {
    margin-top: 0;
}
.num-wrap.intracell .info p {
    margin-top: 10px;
}
.num-wrap.intracell .item {
    overflow: hidden;
    border-radius: 0.5em;
}
@media (min-width: 768px) {
    .img-wrap.equip.hotflush {
        width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

.space-wrap.process .arrow:first-child:before {
    content: none;
}
@media (min-width: 992px) {
    .space-wrap.process .arrow::before {
        top: 38%;
        left: -27px;
    }
}
@media (max-width: 991px) {
    .space-wrap.process .arrow::before {
        content: "\e313";
        top: -45px;
        left: 50%;
        width: 35px;
        font-size: 24px;
        padding-right: 3px;
    }
}
/* =================================== 수원점 end=================================== */
/* no_content */
.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
}

.maintenance span.material-symbols-outlined {
    display: inline-block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

/* 23-10-18 */
/* 과천, 부천, 수원점 로그인 숨김/제한 */
html:not(.logined) #navbar-side-menu .menu-user,
html:not(.logined) #navTop .user {
    display: none;
}

/* 240624 */
/* 양주 쥬베룩 */
.we08-s06-wrap .box {
    background-color: var(--oz-gold);
    padding: clamp(40px, 5vw, 70px) clamp(80px, 6vw, 180px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    gap: 20px;
}
.we08-s06-wrap .box h4 {
    font-size: clamp(26px, 2vw, 32px);
    margin-bottom: 25px;
}
.we08-s06-wrap .box li {
    font-size: clamp(17px, 2vw, 22px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(40px, 3vw, 45px);
}
.we08-s06-wrap .box ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.we08-s06-wrap .center {
    flex: 0 1 25%;
}
.we08-s06-wrap .center li {
    display: flex;
}
.we08-s06-wrap .center li span {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.we08-s06-wrap .center li span.text {
    flex: 0 1 55%;
    height: 100%;
    background-color: #fff;
    border-radius: 1000px;
    font-weight: 500;
}
.we08-s06-wrap .center li span.line {
    height: 1px;
    background-color: #eee;
}
.we08-s06-wrap .center li span.line::after {
    content: "";
    display: block;
    width: 9px;
    border-radius: 1000px;
    aspect-ratio: 1;
    background-color: #fff;
    box-sizing: border-box;
    /* border: 5px solid rgba(255,255,255,0.15); */
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4);
    margin-inline: -3px;
}
.we08-s06-wrap .center li span.line:first-child {
    justify-content: flex-start;
}
.we08-s06-wrap .center li span.line:last-child {
    justify-content: flex-end;
}
/* `lg` applies to medium devices (tablets, less than 992px) */
@media (width <= 991.98px) {
    .we08-s06-wrap .center {
        flex-basis: 30%;
    }
}
@media (max-width: 767px) {
    .we08-s06-wrap.scroll-box-xs > :is(img, div) {
        width: auto;
        height: auto;
        min-width: 750px;
    }
}

/* 20240911 */
/* 울쎼라 */
.caption.ulthera {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: clamp(20px, 5cqw, 50px);
}

@media (max-width: 767px) {
    .caption.ulthera {
        flex-direction: column;
        text-align: center;
    }
}
/* 올리지오X 20240830 */
.ox-compare-wrap {
    position: relative;
    margin-inline: auto;
    width: fit-content;
}
.ox-compare-wrap .info {
    display: grid;
    /* grid-template-columns: minmax(0, 400px) minmax(0, 140px) minmax(0, 400px); */
    grid-template-columns: minmax(0, 3fr) minmax(0, auto) minmax(0, 3fr);
    width: clamp(600px, 50vw, 900px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .ox-compare-wrap {
        margin-bottom: 100px;
        margin-inline: 80px;
    }
    .ox-compare-wrap .info {
        width: 550px;
    }
}
.ox-compare-wrap ul {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 95px));
    border-block: 7px solid #000;
}
.ox-compare-wrap ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-size: inherit;
    font-weight: 700;
    gap: 5px;
}

.ox-compare-wrap ul li + li {
    border-top: 1px solid #ccc;
}
.ox-compare-wrap .left ul {
    border: 7px solid #afabab;
    background-color: #f9fafa;
}
.ox-compare-wrap .center {
    background-color: #000;
}
.ox-compare-wrap .center li {
    color: #fff;
    font-weight: 400;
}
.ox-compare-wrap .right ul {
    border: 7px solid #e3d2be;
    background-color: #fdfaf3;
}
.ox-compare-wrap > img {
    position: absolute;
    bottom: -40%;
    scale: 0.7;
    /* background-color: #ccc; */
}

.ox-compare-wrap > img:first-child {
    left: -100px;
}

.ox-compare-wrap > img:last-child {
    right: -100px;
}

.ox-up-wrap {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 100px;
}
.ox-up-wrap .info {
    text-align: center;
}
.ox-up-wrap > img {
    aspect-ratio: 3.5/5;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ox-up-wrap span {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
}
.ox-up-wrap h3 {
    font-size: 36px;
    font-weight: 700;
}

.ox-up-wrap .box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
}
.ox-up-wrap .box img {
    margin-top: 55px;
}
.ox-up-wrap .box .item {
    flex: 1;
    gap: 20px;
}
.ox-up-wrap .item h5 {
    /* height: 200px; */
    aspect-ratio: 5/3;
    border: 5px solid #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: clamp(26px, 3vw, 32px);
    text-align: center;
    padding: 30px;
}
.ox-up-wrap .item:last-child h5 {
    border-color: #1dc8d3;
    color: #1dc8d3;
}

.ox-up-wrap .item h5 b {
    font-size: 120%;
    margin-bottom: 10px;
}
.ox-up-wrap .item p {
    margin-top: 30px;
    line-height: 1.5;
}
.ox-up-wrap.mg-right {
    margin-right: 30px;
}
@media (max-width: 1200px) {
    .ox-up-wrap.mg-right {
        margin-right: 0px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .ox-up-wrap {
        display: flex;
        flex-direction: column;
    }
    .ox-up-wrap .box {
        flex-direction: column;
        gap: 40px;
    }
    .ox-up-wrap .box img {
        margin-top: 0;
        margin-inline: auto;
        rotate: 90deg;
    }
    .ox-up-wrap .item h5 {
        aspect-ratio: 5/2;
        width: 250px;
        margin-inline: auto;
    }
    .ox-up-wrap > img {
        scale: 0.8;
    }
    .ox-up-wrap.mg-right .box .item {
        width: 100%;
    }
}
.ox-process-wrap {
    display: flex;
    align-items: center;
}

.ox-process-wrap .col {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    flex: 1;
}

.ox-process-wrap big {
    display: inline-block;
    margin-right: 10px;
}
.ox-process-wrap p {
    line-height: 1.5;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .ox-process-wrap {
        flex-direction: column;
        gap: 50px !important;
    }
    .ox-process-wrap > img {
        rotate: 90deg;
    }
}

.ox-only-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.ox-only-wrap .col {
    flex: 0 1 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
    .ox-only-wrap {
        flex-direction: column;
        gap: 50px !important;
    }
    .ox-only-wrap img {
        width: 300px;
    }
}
