/* header start */
header{
    position: fixed;
    width:100%;
    height:100px;
    min-width:1400px;
    z-index: 999;
    top:0;
    left:0;
    transition: all .3s ease-in-out;
}
header.on{
    position: fixed;
    width:100%;
    min-width:1440px;
    top:0;
    left:0;
    background-color: #fff;
    border-bottom:1px solid #ccc;
}
header .logo h1{
    position: absolute;
    width:127px;
    height:60px;
    top:20px;
    left:0;
    transition:all .3s ease-in-out;
    background: url(../img/logo_w.png) 50% 50% no-repeat;
    background-size: 127px;
    z-index: 9999;
}
header .logo h1.on{
    background: url(../img/logo.png) 50% 50% no-repeat;
    background-size: 127px;
}
header .logo h1 a{
    display: block;
    width:127px;
    height:60px;
}


.pos{position: relative;}
.bar{
    width:0;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    bottom: 0;
}
nav{
    width:100%;
    max-width:1400px;
    min-width:1400px;
    margin:0 auto;
    z-index: 999;
    position: relative;
}
.gnb{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:60px;
}
.gnb > li{text-align: center;}
.gnb > li > .gnb_wrap > a{
    color:#fff;
    font-size:20px;
    font-weight: 600;
    height:100px;
    line-height: 100px;
    position: relative;
}
.gnb > li > .gnb_wrap > a.on{color:#333;}
.gnb > li > .gnb_wrap > a::after{content:'';
    display:block;
    width:0;
    height:2px;
    position: absolute;
    bottom:-10px;
    left:50%;
    background-color: #fd7bd6;
    transform: translateX(-50%);
    transition: all .3s ease-in-out;
}

.menu_bg{
    position: absolute;
    left: 0;
    top: 99px;
    width: 100%;
    height: 220px;
    display: none;
    z-index: 9;
    background-color: #fff;
    border-top:1px solid #ccc;
    border-bottom:3px solid #333;
}

.gnb > li > .gnb_wrap{position: relative;}
.sub_menu{
    font-size:0;
    display:none;
    position: absolute;
    z-index:99;
    left:50%;
    transform: translateX(-50%);
    width:100%;
    width:150px;
    background-color: #fff;
    border-bottom:3px solid #333;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.sub_menu li{transition: all .2s ease-in-out;}
.sub_menu a{
    font-size:16px;
    font-weight: 400;
    color: #464243 !important;
    line-height: 36px;
    display: block;
    position: relative;
    transition: all .2s ease-in-out;
    overflow: hidden;
}
.sub_menu a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 200%;
    border-radius: 50%;
    transform: translate3d(-50%,-50%,0) scale3d(0,0,0);
    transition: opacity .4s cubic-bezier(.19,1,.22,1),transform .75s cubic-bezier(.19,1,.22,1);
    /* background-color: #bf0b2c; */
    background-color: #333;
    opacity: 0;
    z-index: -1;
    transition: all .2s ease-in-out;
}
.sub_menu a:hover::before{
    opacity: 1;
    transition-duration: .85s;
    transition: all .2s ease-in-out;
    transform: translate3d(-50%,-50%,0) scale3d(1,1,1);
}
.sub_menu a:hover{color: #fff !important; transition: all .2s ease-in-out;}

.naver{
    position: absolute;
    top:25px;
    right:0;
}
.naver a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 20px;
    gap:20px;
    border:1px solid #fff;
    border-radius: 200px;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.naver a::before{
    content: '';
    position: absolute;
    inset: 0;
    width:0;
    height:100%;
    background-color: #06bd34;
    transition: all .3s ease-in-out;
    z-index: -1;
}
.naver a.on{border-color: #333;}
.naver a img{width:20px; transition: all .3s ease-in-out;}
.naver a .naver_w.on{display: none;}
.naver a .naver_b{display: none;}
.naver a .naver_b.on{display: block;}
.naver a p{
    font-size:18px;
    color:#fff;
    transition: all .3s ease-in-out;
}
.naver a p.on{color:#333;}

header:hover{background-color: #fff; transition: all .3s ease-in-out;}
header:hover .logo h1{background: url(../img/logo.png) 50% 50% no-repeat; background-size:127px; transition:all .3s ease-in-out;}
header:hover .gnb li a{color:#333;  transition:all .3s ease-in-out;}
header:hover .naver a{border-color: #333;}
header:hover .naver a p{color:#333}
header:hover .naver a .naver_w{display: none;}
header:hover .naver a .naver_b{display: block;}

header:hover .naver a:hover{border-color: #06bd34;}
header:hover .naver a:hover .naver_w{display: block;}
header:hover .naver a:hover .naver_b{display: none;}
header:hover .naver a:hover p{color:#fff;}
header:hover .naver a:hover::before{width:100%;}


/* header menu active */
header.active1 .gnb > li:nth-child(1) .gnb_wrap > a,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a,
header.active7 .gnb > li:nth-child(7) .gnb_wrap > a{color: #fd7bd6;}

header.active1 .gnb > li:nth-child(1) .gnb_wrap > a::after,
header.active2 .gnb > li:nth-child(2) .gnb_wrap > a::after,
header.active3 .gnb > li:nth-child(3) .gnb_wrap > a::after,
header.active4 .gnb > li:nth-child(4) .gnb_wrap > a::after,
header.active5 .gnb > li:nth-child(5) .gnb_wrap > a::after,
header.active6 .gnb > li:nth-child(6) .gnb_wrap > a::after,
header.active7 .gnb > li:nth-child(7) .gnb_wrap > a::after{width:100%;}
/* header end */


/* visual start */
.visual {
    width: 100%;
    min-width: 1400px;
    height: 100vh;
    min-height: 780px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #111;
    user-select: none;
}

.visual_swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
}
.visual_swiper:active {
    cursor: grabbing;
}
.visual_slide_wrap {
    width: 100%;
    height: 100%;
}
.visual_slide {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
}


.visual_img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
    will-change: clip-path;
}
.visual_img img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
    will-change: transform;
}

.visual_dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.32) 0%,
            rgba(0, 0, 0, 0.08) 50%,
            rgba(0, 0, 0, 0.18) 100%
        );
    pointer-events: none;
}


.visual_txt {
    visibility: hidden;
    width: 1400px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    color: #fff;
    opacity: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.visual_sub {
    margin-bottom: 26px;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.32em;
}

.visual_title {
    font-family: "Montserrat", sans-serif;
    font-size: 92px;
    font-weight: 300;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.visual_title span {
    display: block;
    width: max-content;
    overflow: hidden;
}

.visual_more {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 48px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.18em;
}

.visual_more i {
    display: block;
    width: 60px;
    height: 1px;
    position: relative;
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.75);
}

.visual_more i::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: -3px;
    right: 0;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}



.visual_initials {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
    opacity: clamp(0, calc((100vw - 1500px) / 420), 1);
}

.visual_initial {
    position: absolute;
    top: 50%;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 200px;
    font-weight: 800;
    line-height: 0.72;
    letter-spacing: -0.1em;
    opacity: 1;
    transform: translateY(-50%);
    will-change: transform, opacity;
}

.visual_initial_m {left: -8px;}
.visual_initial_h {right: 12px;}



.visual_bottom {
    display: flex;
    align-items: center;
    width: 1400px;
    position: absolute;
    bottom: 45px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

.visual_paging {
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
}

.visual_current,
.visual_total {
    min-width: 18px;
}

.visual_progress {
    width: 120px;
    height: 1px;
    position: relative;
    margin: 0 16px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.35);
}

.visual_progress span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.visual_label {
    margin-left: 35px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


.visual_btns {
    display: flex;
    gap: 12px;
    margin-left: auto;
    pointer-events: auto;
}

.visual_btns button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background-color: transparent;
    transition:
        border-color 0.35s ease,
        background-color 0.35s ease;
}

.visual_btns button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #fff;
    transform: scale(0);
    transition: transform 0.35s ease;
}

.visual_btns button:hover::before {
    transform: scale(1);
}

.visual_btns button > span {
    display: block;
    width: 17px;
    height: 1px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    transition: background-color 0.35s ease;
}

.visual_btns button > span::after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: -3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: border-color 0.35s ease;
}

.visual_prev > span::after {
    left: 0;
    transform: rotate(-135deg);
}

.visual_next > span::after {
    right: 0;
    transform: rotate(45deg);
}

.visual_btns button:hover > span {
    background-color: #111;
}

.visual_btns button:hover > span::after {
    border-color: #111;
}


.visual_scroll {
    display: flex;
    align-items: center;
    position: absolute;
    right: 30px;
    bottom: 13%;
    z-index: 10;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.25em;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    pointer-events: none;
}

.visual_scroll i {
    display: block;
    width: 68px;
    height: 1px;
    position: relative;
    margin-left: 15px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.35);
}

.visual_scroll i::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: #fff;
    animation: visualScroll 1.8s ease-in-out infinite;
}

@keyframes visualScroll {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

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


.visual_opening {
    position: absolute;
    inset: 0;
    z-index: 30;
    overflow: hidden;
    background-color: #111;
    pointer-events: none;
}

.visual_opening span {
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #111;
    will-change: transform;
}

.visual_opening_left {
    left: 0;
}

.visual_opening_right {
    right: 0;
}


.visual_swiper .swiper-wrapper {height: 100%;}
.visual_swiper .swiper-slide {height: 100%;}
.visual_swiper .swiper-slide-shadow-left,
.visual_swiper .swiper-slide-shadow-right { display: none;}





.visual_slide_text {
    background-color: #fd7bd6;
}

.visual_slide_text .visual_txt {
    width: 100%;
    max-width: none;
    top: 50%;
    left: 50%;
    z-index: 6;
    transform: translate(-50%, -54%);
    text-align: center;
}

.visual_txt_center {
    text-align: center;
}

.visual_slide_text .visual_title {
    width: 100%;
    text-align: center;
}

.visual_slide_text .visual_title span {
    width: 100%;
}

.visual_title_big {
    font-family: "Montserrat", sans-serif;
    font-size: 118px;
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.07em;
    color: #000;
    text-align: center;
}

.visual_title_big span {
    display: block;
    overflow: hidden;
    padding:20px 0;
}
.visual_title_big span em{font-size: 200px;}
.visual_title_big span:nth-of-type(1){transform: translateX(-130px);}
.visual_title_big span:nth-of-type(2){transform: translateX(0px);}
.visual_title_big span:nth-of-type(3){transform: translateX(90px);}


/* bottom position adjust */
.visual_bottom {bottom: 92px;}
.visual_marquee {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 12;
    overflow: hidden;
    padding: 20px 0 22px;
    background-color: #fd7bd6;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.visual_marquee_track {
    display: flex;
    width: max-content;
    animation: visualMarquee 26s linear infinite;
    will-change: transform;
}

.visual_marquee_group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.visual_marquee_item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 54px;
    color: #000;
    white-space: nowrap;
}

.visual_marquee_item strong {
    display: block;
    margin-right: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    font-style: normal;
}

.visual_marquee_item em {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    font-style: normal;
}

@keyframes visualMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* visual end */





/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
section .image_show_wrap2{animation-duration: 1.4s;}

section .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
section .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
/* image_show_wrap 공통 */


/* image 확대 공통 */
.clip-animation {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    animation: clipExpand 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) forwards;
}
    @keyframes clipExpand {
    from {
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
/* image 확대 공통 */

/********************************************************************************** section **********************************************************************************/
/* section2 */
.styled_section {
    width: 100%;
    min-width: 1400px;
    padding: 130px 0 150px;
    overflow: hidden;
    background-color: #f5f2ef;
}

.styled_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 95px;
}

.styled_title_wrap {
    flex-shrink: 0;
}

.styled_kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    color: #9a6c55;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.styled_kicker span {
    font-size: 16px;
}

.styled_title {
    color: #111;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.styled_title span {
    display: block;
}

.styled_info {
    width: 500px;
    padding-top: 88px;
    text-align: right;
}

.styled_desc {
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    word-break: keep-all;
}

.styled_navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 48px;
}

.styled_arrow {
    display: block;
    width: 46px;
    height: 30px;
    position: relative;
    border: 0;
    background-color: transparent;
}

.styled_arrow span {
    display: block;
    width: 37px;
    height: 2px;
    position: absolute;
    top: 50%;
    background-color: #111;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.styled_arrow span::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: -5px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
}

.styled_prev span {
    right: 0;
}

.styled_prev span::after {
    left: 0;
    transform: rotate(-135deg);
}

.styled_next span {
    left: 0;
}

.styled_next span::after {
    right: 0;
    transform: rotate(45deg);
}

.styled_arrow:hover span {
    width: 46px;
}

.styled_arrow.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
}


.styled_swiper {
    width: 100%;
    overflow: visible;
}

.styled_swiper .swiper-wrapper {
    align-items: flex-start;
}

.styled_item {
    width: 470px;
    flex-shrink: 0;
}

.styled_item > a {
    display: block;
}


.styled_img {
    width: 470px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #ddd7d1;
}
.styled_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.styled_placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cbc4bd;
}

.styled_placeholder::before,
.styled_placeholder::after {
    content: "";
    width: 140%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.1);
}

.styled_placeholder::before {
    transform: translate(-50%, -50%) rotate(46.8deg);
}

.styled_placeholder::after {
    transform: translate(-50%, -50%) rotate(-46.8deg);
}

.styled_placeholder > span {
    position: relative;
    z-index: 1;
    color: #777;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    background-color: #ddd7d1;
}


/* 실제 이미지 적용 */
.styled_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.styled_item:hover .styled_img img {
    transform: scale(1.045);
}


/* text */
.styled_txt {
    padding-top: 23px;
}

.styled_txt h3 {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.styled_category {
    margin-right: 7px;
    color: #9a6c55;
    font-size: 21px;
    font-weight: 600;
}

.styled_detail {
    margin-top: 9px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.styled_detail span {
    margin-right: 9px;
    color: #9a6c55;
    font-size: 15px;
    font-weight: 600;
}
/* section2 */



/* section3 */
.designer_section {
    width: 100%;
    min-width: 1400px;
    height: calc(100vh - 100px);
    min-height: 680px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.designer_stage {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

/* panel */
.designer_panel {
    width: 34%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    overflow: hidden;
    will-change: clip-path;
}

.designer_panel_left {
    left: 0;
    clip-path: inset(0% 0% 100% 0%);
}

.designer_panel_right {
    right: 0;
    background-color: #111;
    clip-path: inset(100% 0% 0% 0%);
}

/* left background */
.designer_left_bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(255, 245, 253, 0.95) 0%,
            rgba(255, 245, 253, 0) 40%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(253, 123, 214, 0.45) 0%,
            rgba(253, 123, 214, 0) 48%
        ),
        linear-gradient(
            135deg,
            #fde3f5 0%,
            #fd7bd6 48%,
            #fff1fb 100%
        );
}

.designer_left_bg::before {
    content: "";
    position: absolute;
    inset: -20%;
    opacity: 0.45;
    background:
        repeating-radial-gradient(
            ellipse at 0% 100%,
            transparent 0,
            transparent 34px,
            rgba(255, 255, 255, 0.75) 36px,
            transparent 40px
        );
    transform: rotate(-8deg);
}

/* photo */
.designer_photo {
    width: 32%;
    height: 58%;
    position: absolute;
    top: 72%;
    left: 34%;
    z-index: 3;
    overflow: hidden;
    background-color: #ddd7d1;
    will-change: top, height;
}

.designer_photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.14);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.designer_photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.designer_photo:hover img {
    transform: scale(1.04);
}

.designer_photo:hover::after {
    opacity: 1;
}

/* content */
.designer_content {
    position: absolute;
    z-index: 4;
}

/* left content */
.designer_content_left {
    width: 480px;
    top: 100px;
    right: 50px;
}

/* right content */
.designer_content_right {
    width: 470px;
    left: 55px;
    bottom: 100px;
    color: #fff;
}

/* left text */
.designer_left_title {
    color: #111;
    font-size: 68px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.055em;
    opacity: 0;
    transform: translateY(60px);
}

.designer_left_title span {
    display: block;
}

.designer_left_desc {
    margin-top: 38px;
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(40px);
}

/* right text */
.designer_right_title {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    line-height: 0.98;
    opacity: 0;
    transform: translateY(60px);
}

.designer_right_title span {
    display: block;
}

.designer_right_desc {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(40px);
}

/* link */
.designer_link {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 70px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(35px);
}

.designer_link span {
    position: relative;
}

.designer_link span::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: currentColor;
    transition: width 0.35s ease;
}

.designer_link i {
    display: block;
    width: 32px;
    height: 1px;
    position: relative;
    margin-left: 14px;
    background-color: currentColor;
    transition:
        width 0.35s ease,
        margin-left 0.35s ease;
}

.designer_link i::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: -4px;
    right: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.designer_link:hover span::after {
    width: 100%;
}

.designer_link:hover i {
    width: 48px;
    margin-left: 20px;
}

.designer_link_white {
    color: #fff;
}
/* section3 */



/* section4 */
.styling_section {
    width: 100%;
    /* header 100px 제외한 화면 꽉 차는 높이 */
    height: calc(100vh - 100px); 
    min-height: 680px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.styling_stage {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 왼쪽 영역 */
.styling_left {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    will-change: transform;
}

.styling_left::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.12);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.styling_left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.styling_left:hover img {
    transform: scale(1.035);
}

.styling_left:hover::after {
    opacity: 1;
}

/* 오른쪽 영역 */
.styling_right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
    will-change: transform;
}

/* 오른쪽 텍스처 배경 */
.styling_right_bg {
    position: absolute;
    inset: 0;
    /* 실제 이미지 경로로 수정해주세요 */
    background: url('../img/section4/section4_bg.jpg') no-repeat center/cover;
}

/* 오른쪽 텍스트 컨텐츠 */
.styling_content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 480px;
    z-index: 3;
}

/* 텍스트 요소들 (초기 숨김) */
.styling_title {
    color: #111;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.05em;
    opacity: 0;
    transform: translateY(40px);
}

.styling_title span { 
    display: block; 
}

.styling_desc {
    margin-top: 30px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.styling_link {
    display: flex; /* inline-flex 대신 flex와 max-content로 통일 */
    align-items: center;
    width: max-content;
    margin-top: 50px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none;
}

/* 텍스트 밑줄 애니메이션 준비 */
.styling_link span {
    position: relative;
}

.styling_link span::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: currentColor;
    transition: width 0.35s ease;
}

/* 화살표 뼈대 */
.styling_link i {
    display: block;
    width: 32px;
    height: 1px;
    position: relative;
    margin-left: 14px;
    background-color: currentColor;
    transition: width 0.35s ease, margin-left 0.35s ease;
}

/* 화살표 머리 모양 */
.styling_link i::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: -4px;
    right: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

/* 마우스 오버 시(Hover) 액션 */
.styling_link:hover span::after {
    width: 100%; /* 밑줄 꽉 채우기 */
}

.styling_link:hover i {
    width: 48px; /* 화살표 길어지기 */
    margin-left: 20px; /* 화살표 사이 간격 넓어지기 */
}
/* section4 */





/* section5 */
.mui_wedding_section {
    width: 100%;
    min-width: 1400px;
    height: calc(100vh - 100px);
    min-height: 680px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.mui_wedding_stage {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* left */
.mui_wedding_left {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    will-change: transform;
}

.mui_wedding_left_bg {
    position: absolute;
    inset: 0;
    background: url("../img/section5/section5_bg.jpg") no-repeat center / cover;
    background-color: #f7f9fa;
}

/* content */
.mui_wedding_content {
    width: 480px;
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 3;
    transform: translateY(-50%);
}

/* right */
.mui_wedding_right {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    will-change: transform;
}

.mui_wedding_right::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.mui_wedding_right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.mui_wedding_right:hover img {
    transform: scale(1.035);
}

.mui_wedding_right:hover::after {
    opacity: 1;
}

/* title */
.mui_wedding_title {
    color: #111;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.mui_wedding_title span {
    display: block;
}

/* description */
.mui_wedding_desc {
    margin-top: 30px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

/* link */
.mui_wedding_link {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 50px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.mui_wedding_link span {
    position: relative;
}

.mui_wedding_link span::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: currentColor;
    transition: width 0.35s ease;
}

.mui_wedding_link i {
    display: block;
    width: 32px;
    height: 1px;
    position: relative;
    margin-left: 14px;
    background-color: currentColor;
    transition: width 0.35s ease, margin-left 0.35s ease;
}

.mui_wedding_link i::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: -4px;
    right: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.mui_wedding_link:hover span::after {
    width: 100%;
}

.mui_wedding_link:hover i {
    width: 48px;
    margin-left: 20px;
}
/* section5 */




/* section6 */
.promotion_section {
    width: 100%;
    min-width: 1400px;
    height: calc(100vh - 100px);
    min-height: 680px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.promotion_stage {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* panel */
.promotion_panel {
    display: block;
    width: 33.3333%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    will-change: transform;
}

.promotion_panel_left {
    z-index: 3;
}

.promotion_panel_center {
    z-index: 2;
}

.promotion_panel_right {
    z-index: 1;
    background-color: #111;
}

/* image */
.promotion_img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.promotion_img img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.07);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.promotion_panel_left:hover .promotion_img img,
.promotion_panel_center:hover .promotion_img img {
    transform: scale(1.02);
}

/* dim */
.promotion_dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.14) 46%,
            rgba(0, 0, 0, 0) 70%
        );
    transition: background-color 0.5s ease;
}

.promotion_panel_left:hover .promotion_dim,
.promotion_panel_center:hover .promotion_dim {
    background-color: rgba(0, 0, 0, 0.08);
}

/* card content */
.promotion_card_content {
    width: calc(100% - 120px);
    position: absolute;
    left: 60px;
    bottom: 65px;
    z-index: 2;
    color: #fff;
}

.promotion_card_title {
    margin: 0;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

/* title line */
.promotion_text_line {
    display: block;
    width: max-content;
    overflow: hidden;
}

.promotion_card_title .promotion_text_line {
    height: 1.06em;
}

.promotion_title .promotion_text_line {
    height: 1.05em;
}

.promotion_text_line em {
    display: block;
    font-style: normal;
    line-height: inherit;
    opacity: 1;
    visibility: visible;
    will-change: transform;
}

/* right content */
.promotion_info {
    width: calc(100% - 140px);
    position: absolute;
    top: 95px;
    left: 70px;
    z-index: 2;
    color: #fff;
}

.promotion_title {
    margin: 0;
    color: #fff;
    font-size: 66px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.055em;
}

.promotion_desc {
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(35px);
}

/* link */
.promotion_link {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 48px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(25px);
}

.promotion_card_content .promotion_link {
    margin-top: 36px;
}

.promotion_link span {
    position: relative;
}

.promotion_link span::after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: currentColor;
    transition: width 0.35s ease;
}

.promotion_link i {
    display: block;
    width: 32px;
    height: 1px;
    position: relative;
    margin-left: 14px;
    background-color: currentColor;
    transition:
        width 0.35s ease,
        margin-left 0.35s ease;
}

.promotion_link i::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: -4px;
    right: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.promotion_link:hover span::after {
    width: 100%;
}

.promotion_link:hover i {
    width: 48px;
    margin-left: 20px;
}

.promotion_link_white {
    color: #fff;
}

/* marquee */
.promotion_marquee {
    width: 100%;
    min-width: 1400px;
    position: relative;
    overflow: hidden;
    padding: 23px 0 25px;
    background-color: #fd7bd6;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.promotion_marquee_track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: promotionMarquee 28s linear infinite;
}

.promotion_marquee_group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.promotion_marquee_item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 70px;
    color: #111;
    white-space: nowrap;
}

.promotion_marquee_item strong {
    margin-right: 21px;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
}

.promotion_marquee_item span {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.035em;
}

.promotion_marquee:hover .promotion_marquee_track {
    animation-play-state: paused;
}

@keyframes promotionMarquee {
    0% {
        transform: translateX(0);
    }

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




/* section7 */
.youtube{
    padding:120px 0;
    background: url(../img/section7/section7-bg.jpg) no-repeat 50% fixed;
    background-size: cover;
    position: relative;
}
.youtube::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.youtube h2{
    font-size: 64px;
    color:#fff;
    text-align: center;
    font-weight: 800;
    transition: all 1s ease-in-out;
    opacity: 0;
    transform: translateY(100px);
}
.youtube.active h2{
    opacity: 1;
    transform: translateY(0);
}
.youtube .video_wrap{margin-top:60px;}
.youtube .video{
    position: relative;
    width:100%;
    height:0;
    padding-top:56%;
    overflow: hidden;
    border-radius: 30px;
    border:5px solid #fd7bd6;
}
.youtube .video iframe{
    position: absolute;
    inset: 0;
    width:100%;
    height:100%;
}
/* section7 */





/* section8 */
.number_section {
    width: 100%;
    min-width: 1400px;
    min-height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-color: #fff;
}

.number_inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    width: 1400px;
    min-height: 720px;
    position: relative;
    margin: 0 auto;
}

/* left */
.number_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.number_label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fd7bd6;
    font-size: 14px;
    font-weight: 700;
}

.number_label span {
    font-size: 16px;
}

.number_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 65px;
    row-gap: 85px;
    padding-bottom: 15px;
}

.number_item {
    position: relative;
}

.number_count {
    display: block;
    color: #fd7bd6;
    font-size: 66px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
}

.number_item h3 {
    margin-top: 24px;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.number_item p {
    margin-top: 7px;
    color: #777;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    word-break: keep-all;
}

/* right */
.number_right {
    position: relative;
}

.number_title_wrap {
    position: relative;
}

.number_title {
    margin: 0;
    color: #111;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.number_title_line {
    display: block;
    width: max-content;
    overflow: hidden;
}

.number_title_line em {
    display: block;
    font-style: normal;
    will-change: transform;
}

.number_desc {
    margin-top: 32px;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    word-break: keep-all;
}


.number_img {
    width: 100%;
    aspect-ratio: 2.1 / 1;
    position: absolute;
    right: 0;
    bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f4f4f4;
}
.number_vertical_swiper {
    width: 100%;
    height: 100%;
}

.number_vertical_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* section8 */



/* footer */
.footer{
    padding:30px 0;
    background-color: #000;
}
.footer .tit_wrap{
    display: flex;
    align-items: top;
    justify-content: space-between;
    border-bottom:1px solid #ccc;
    padding-bottom:30px;
}
.footer .tit_wrap h2{
    font-size: 48px;
    color:#fd7bd6;
    font-weight: 800;
}

.footer .tit_wrap .tit p{
    font-size: 16px;
    color:#fff;
    text-align: right;
    line-height: 2;
}

.footer .txt{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top:30px;
}
.footer .txt span{
    display: block;
    font-size:14px;
    color:#ccc;
}
.footer .txt .sns{
    display: flex;
    align-items: center;
    gap:10px;
}
.footer .txt .sns a{
    display: block;
    width:40px;
    height:40px;
    transition: all .3s ease-in-out;
}
.footer .txt .sns .f_insta{background: url(../img/footer/insta.png) no-repeat 50% 50%; background-size: cover;}
.footer .txt .sns .f_youtobe{background: url(../img/footer/youtube.png) no-repeat 50% 50%; background-size: cover;}
.footer .txt .sns .f_blog{background: url(../img/footer/naver.png) no-repeat 50% 50%; background-size: cover;}

.footer .txt .sns .f_insta:hover{background: url(../img/footer/insta_h.png) no-repeat 50% 50%; background-size: cover; transform: translateY(-3px);}
.footer .txt .sns .f_youtobe:hover{background: url(../img/footer/youtube_h.png) no-repeat 50% 50%; background-size: cover; transform: translateY(-3px);}
.footer .txt .sns .f_blog:hover{background: url(../img/footer/naver_h.png) no-repeat 50% 50%; background-size: cover; transform: translateY(-3px);}


/********************************************************************************** section **********************************************************************************/


 /* top_btn */
.topbtn{
    position: fixed;
    bottom:60px;
    right:60px;
    z-index:9999;
    width:50px;
    height:50px;
    border-radius: 40px;
    background-color:  #fd7bd6;
    transition: all 0.5s ease;
    opacity: 0;
}
.topbtn.on{opacity: 1;}

.topbtn img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:30px;
}

.topbtn:hover{
    transition: all 0.5s ease;
    background-color: #151515;
}
/* top_btn */


/* muiyoutube */
.muiyoutube{
    position: fixed;
    bottom:130px;
    right:60px;
    z-index:9999;
    width:50px;
    height:50px;
    border-radius: 40px;
    background-color:  #fff;
    transition: all 0.5s ease;
    opacity: 0;
}
.muiyoutube.on{opacity: 1;}
.muiyoutube img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:100%;
}

.muiyoutube:hover{
    transition: all 0.5s ease;
    transform: scale(1.05);
}



/* muiyoutube */