@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import url('https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.0/css/swiper.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');

:root {
    --primary: #cbc3bc;

}

.inner-1440 {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .header-inner .logo a:after {
    background-image: url(/images/logo-w.svg) !important;
}

.header .gnb>li>a {
    color: #fff;
}

.header .gnb .arrow {
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
}

.header .mobBtn span,
.header .mobBtn::before,
.header .mobBtn::after {
    background: #fff;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h3 {
    font-size: 1.2rem;
    font-family: var(--eng);
    color: #cbc3bc;
}

.section-head p.sub {
    margin: 16px 0 20px;
    font-size: 2.2rem;
    font-weight: 600;
}

.section-head p.desc {
    font-size: 1rem;
    line-height: 1.4;
    color: #555;
}

.sec3 {
    position: relative;
}

.sec2 {
    position: relative;
    padding: 120px 0;
    background: #fff;
}

.sec2 .inner-1440 {
    position: relative;
    z-index: 2;
}

.sec2 .sec-title {
    text-align: center;
    margin-bottom: 48px;
}

.sec2 .sec-title p {
    font-size: 18px;
    color: #666;
    margin: 0 0 12px;
    line-height: 1.5;
}

.sec2 .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

/* 한 줄 flex — 카드 폭은 flex-grow 비율만 사용 (width % 제거) */
.sec2 .sec2-wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 480px;
    width: 100%;
    overflow: hidden;
    gap: 40px;
}

.sec2 .sec2-item {
    position: relative;
    overflow: hidden;
    flex: 1 1 0%;
    min-width: 0;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    transition: flex-grow 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        flex-shrink 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        flex-basis 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec2 .sec2-item.item1 {
    background-image: url(/images/sec2-bg1.jpg);
}

.sec2 .sec2-item.item2 {
    background-image: url(/images/sec2-bg2.jpg);
}

.sec2 .sec2-item.item3 {
    background-image: url(/images/sec2-bg3.jpg);
}

.sec2 .sec2-item.item4 {
    background-image: url(/images/sec2-bg4.jpg);
}

.sec2 .sec2-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 35%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
}

/* sec2 카드 hover — JS에서 .active / .shrink (동일 비율로 확장) */
.sec2 .sec2-item.active {
    flex: 1.6 1 0%;
}

.sec2 .sec2-item.shrink {
    flex: 0.8 1 0%;
}

/* 카드 하단 기준 동일 — h3/p는 transform만으로 이동 */
.sec2 .sec2-item .overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    box-sizing: border-box;
    color: #fff;
}

.sec2 .sec2-item .overlay h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.sec2 .sec2-item.active .overlay h3 {
    transform: translateY(0);
}

.sec2 .sec2-item .overlay p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, max-height 0.6s ease;
}

.sec2 .sec2-item.active .overlay p {
    opacity: 1;
    max-height: 16rem;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .sec2 .sec2-wrap {
        flex-direction: column;
        min-height: 0;
    }

    .sec2 .sec2-item,
    .sec2 .sec2-item.active,
    .sec2 .sec2-item.shrink {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-height: 280px;
    }
}

/* sec2: 모바일(≤768) — hover·active/shrink 무력화, 텍스트 전부 노출, flex 애니메이션 없음 */
@media (max-width: 768px) {
    .sec2 .sec2-wrap {
        flex-direction: column;
    }

    .sec2 .sec2-item {
        width: 100% !important;
        flex: none !important;
        transition: none !important;
    }

    .sec2 .sec2-item.active,
    .sec2 .sec2-item.shrink {
        flex: none !important;
        width: 100% !important;
    }

    .sec2 .sec2-item .overlay h3 {
        transform: translateY(0) !important;
        transition: none !important;
    }

    .sec2 .sec2-item .overlay p {
        opacity: 1 !important;
        transform: translateY(0) !important;
        max-height: none !important;
        overflow: visible !important;
        transition: none !important;
    }
}

.cta {
    position: relative;
    padding: 19px 22px;
    transition: all 0.2s ease;
    margin-top: 40px;
    display: inline-block;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: rgb(222 222 222 / 50%);
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
}

.cta svg {
    position: relative;
    top: -.5px;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: #111;
}

.cta:hover svg {
    transform: translateX(0);
    stroke: #fff;
}

.cta:active {
    transform: scale(0.96);
}

.cta:hover span {
    color: #fff;
}

.sec-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.swp_slide2 {
    position: relative;
    height: 100%;
}

#visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.swp_slide2 .swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.swp_slide2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
}

/* fraction 구분자 스타일 */
.swp_slide2 .fraction-line {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #fff;
    margin: 0 8px;
    vertical-align: middle;
    transform: translateY(-2px);
}

.swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_bg {
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: transform 12s;
    z-index: -1;
}

.swp_slide2>.swiper-container>.swiper-wrapper>.swiper-slide.swiper-slide-active>.swp_bg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


.swp_slide2 .swp_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0, .4) 0%, rgba(255, 255, 255, 0) 100%);
}

.swp_slide2 .swp_txt {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    height: 100%;
    position: relative;
    top: 66%;
    transform: translateY(-50%);
    margin: 0 auto;
    max-width: 1660px;
    z-index: 10;
    color: #fff;
}

/*  anim_txt  */
.swp_slide2 .swiper-slide .anim p:nth-child(1) {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.swp_slide2 .swiper-slide .anim p:nth-child(2) {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.swp_slide2 .swiper-slide-active .anim p {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
.swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--eng);
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
.swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--eng);
    color: #dbc1ab;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
.swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
    font-size: 20px;
    font-weight: 400;

}

.swp_slide2 .swiper-slide-active .anim p .anim_txt {
    display: block;
    animation: textanimation 1s backwards;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt {
    animation-delay: 200ms;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt {
    animation-delay: 400ms;
}

.swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt {
    animation-delay: 600ms;
}

@keyframes textanimation {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* #section1 비주얼: .swp_txt 내 타이포만 rem + 구간별 font-size·line-height (위치·정렬·transform 비변경) */
#section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
#section1 .swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
    font-size: 1.5rem;
    line-height: 1.2;
}

#section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
#section1 .swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
    font-size: 4.375rem;
    line-height: 1.12;
}

#section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
#section1 .swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
    font-size: 1.25rem;
    line-height: 1.5;
}

@media (max-width: 1440px) {

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
        font-size: 1.375rem;
        line-height: 1.22;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
        font-size: 3.75rem;
        line-height: 1.12;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
        font-size: 1.125rem;
        line-height: 1.48;
    }
}

@media (max-width: 1024px) {

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
        font-size: 1.25rem;
        line-height: 1.25;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
        font-size: 3.25rem;
        line-height: 1.12;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
        font-size: 1.0625rem;
        line-height: 1.48;
    }
}

@media (max-width: 768px) {

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
        font-size: 1.125rem;
        line-height: 1.28;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
        font-size: 2.75rem;
        line-height: 1.14;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
        font-size: 1rem;
        line-height: 1.5;
    }

    #section1 .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_bg {
        background-size: cover;
        background-position: center 42%;
    }
}

@media (max-width: 500px) {

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
        font-size: 1rem;
        line-height: 1.3;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
        font-size: 2.125rem;
        line-height: 1.15;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
        font-size: 0.9375rem;
        line-height: 1.48;
    }

    #section1 .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_bg {
        background-size: cover;
        background-position: center 36%;
    }
}

@media (max-width: 320px) {

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(1) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(1) .anim_txt {
        font-size: 0.9375rem;
        line-height: 1.3;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(2) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(2) .anim_txt {
        font-size: 1.75rem;
        line-height: 1.18;
    }

    #section1 .swp_slide2 .swiper-slide-active .anim p:nth-child(3) .anim_txt,
    #section1 .swp_slide2 .swiper-slide .anim p:nth-child(3) .anim_txt {
        font-size: 0.875rem;
        line-height: 1.45;
    }

    #section1 .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_bg {
        background-size: cover;
        background-position: center 32%;
    }
}

.swp_slide2 button.auto {
    margin-top: -4px;
}

.swp_slide2 button.auto.swiper-button-play {
    display: none;
}

.swp_slide2 .swiper-progress-bar {
    position: relative;
    z-index: 10;
    width: 360px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.swp_slide2 .swiper-progress-bar .stick {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
}


.swp_slide2 button {
    background: inherit;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    cursor: pointer;
    outline: none;
}

.swp_slide2 .swp-navi {
    position: absolute;
    left: 50%;
    bottom: 10%;
    z-index: 1;
    margin: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    max-width: 1660px;
    width: 100%;
}

.swp_slide2 .navi-item {
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
}

.swp_slide2 .navi-item:last-child {
    margin-right: 0;
}

.swp_slide2 .swiper-pagination {
    position: inherit !important;
    color: #fff;
    letter-spacing: 1px;
}

.swp_slide2 .swiper-button-next,
.swp_slide2 .swiper-button-prev {
    position: inherit !important;
    background-image: none !important;
    height: auto !important;
    margin-top: -2px !important;
    width: auto;
}

.swp_slide2 .swiper-button-prev:after,
.swp_slide2 .swiper-rtl .swiper-button-next:after {
    display: none !important;
}

.swp_slide2 .swiper-button-next:after,
.swp_slide2 .swiper-rtl .swiper-button-prev:after {
    display: none !important;
}

.swp_slide2 .navi-prev i,
.swp_slide2 .navi-next i {
    color: #fff;
    font-size: 14px;

}



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


    .swp_slide2 .swiper-slide .swp_txt {
        padding-left: 30px;
    }
}

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

    .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_txt h2 {
        font-size: 40px;
    }

    .swp_slide2 .swiper-container .swiper-wrapper .swiper-slide .swp_txt p {
        width: 80%;
        word-break: keep-all;
        line-height: 1.4;
    }
}

@keyframes scroll {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(100%, 0, 0);
    }
}

.scr_wrap {
    position: absolute;
    right: 100px;
    bottom: 50px;
    z-index: 10;
}

.scr_wrap .scroll {
    display: flex;
    align-items: center;
    margin: 100px auto;
    width: 97px;
    height: 30px;
    transform: rotate(90deg);
    color: #fff;
}

.scr_wrap .scroll i {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
    width: 80px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.scr_wrap .scroll i:before {
    display: block;
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translate3d(0, 0, 0);
    animation-name: scroll;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
}



.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont {
    display: none !important;
}

.sec4 {
    padding: 9.375rem 0;
    background: linear-gradient(180deg, #efece5 0%, #ffffff 100%);
    overflow-x: hidden;
    box-sizing: border-box;
}

.sec4 .inner {
    max-width: min(100%, 90rem);
    margin: 0 auto;
    box-sizing: border-box;
}

.sec4 .inner .sec-title {
    text-align: left;
}

.sec4 .inner .dflx {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 37.5rem;
    min-width: 0;
    gap: 0;
    box-sizing: border-box;
}

.sec4 .left,
.sec4 .right {
    width: 50%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.sec4 .inner .dflx .left {
    width: 50%;
    max-width: 100%;
    padding-right: 3.75rem;
}

.sec4 .inner .dflx .left h3 {
    font-size: 3rem;
    font-family: var(--eng);
    margin-bottom: 1.875rem;
}

.sec4 em {
    font-style: normal;
}

.sec4 .inner .dflx .left .info-group {
    margin-bottom: 2.5rem;
}

.sec4 .inner .dflx .left .info-group h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sec4 .inner .dflx .left .time li {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

.sec4 .inner .dflx .left .time .label {
    margin-left: 1.25rem;
    color: #888;
}

.sec4 .inner .dflx .left .tel {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    font-family: var(--eng);
}

.sec4 .inner .dflx .left .addr {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

.sec4 .right .map {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.sec4 .map .root_daum_roughmap {
    max-width: 100% !important;
    box-sizing: border-box;
}

.sec4 .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sec4 .btn-wrap a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ffde00;
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-sizing: border-box;
    max-width: 100%;
}

.sec4 .btn-wrap a:nth-child(1) {
    background: #ffde00;
}

.sec4 .btn-wrap a:nth-child(2) {
    background: #17B75E;
    color: #fff;
}

.sec4 .btn-wrap a span {
    display: inline-block;
    transform: translateY(-2px);
}

.sec4 .btn-wrap a span img {
    width: 18px;
    max-width: 100%;
    height: auto;
}

.sec4 .btn-wrap a:nth-child(1) span img {
    width: 24px;
}

.sec4 .btn-wrap a:nth-child(1) span {
    transform: translateY(0);
}

/* ===== .sec4 반응형 (1440 / 1024 / 768 / 500 / 320) ===== */
@media (max-width: 1440px) {
    .sec4 .inner {
        padding: 0 1.375rem;
    }

    .sec4 {
        padding: 6.5rem 0;
    }

    .sec4 .inner .dflx .left {
        padding-right: 2.5rem;
    }

    .sec4 .inner .dflx .left h3 {
        margin-bottom: 1.5rem;
    }

    .sec4 .inner .dflx .left .info-group {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1024px) {
    .sec4 {
        padding: 5rem 0;
    }

    .sec4 .inner {
        padding: 0 1.25rem;
    }

    .sec4 .inner .dflx {
        height: auto;
        min-height: 0;
        gap: 2rem;
        align-items: stretch;
    }

    .sec4 .left,
    .sec4 .right,
    .sec4 .inner .dflx .left {
        width: 50%;
    }

    .sec4 .inner .dflx .left {
        padding-right: 1.5rem;
    }

    .sec4 .inner .dflx .left h3 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .sec4 .inner .dflx .left .info-group {
        margin-bottom: 1.5rem;
    }

    .sec4 .inner .dflx .left .time li,
    .sec4 .inner .dflx .left .addr {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .sec4 .map .root_daum_roughmap {
        max-height: 28rem;
    }
}

@media (max-width: 768px) {
    .sec4 {
        padding: 3.75rem 0;
    }

    .sec4 .inner {
        padding: 0 1.25rem;
    }

    .sec4 .inner .dflx {
        flex-direction: column;
        height: auto;
        gap: 1.75rem;
    }

    .sec4 .left,
    .sec4 .right,
    .sec4 .inner .dflx .left {
        width: 100%;
        max-width: 100%;
    }

    .sec4 .inner .dflx .left {
        padding-right: 0;
    }

    .sec4 .inner .dflx .left h3 {
        font-size: 2.125rem;
        margin-bottom: 1rem;
    }

    .sec4 .right .map {
        min-height: 15rem;
        max-height: min(22rem, 55vw);
        overflow: hidden;
    }

    .sec4 .map .root_daum_roughmap {
        max-width: 100% !important;
    }

    .sec4 .btn-wrap {
        gap: 0.625rem;
    }
}

@media (max-width: 500px) {
    .sec4 {
        padding: 2.75rem 0;
    }

    .sec4 .inner {
        padding: 0 1rem;
    }

    .sec4 .inner .dflx {
        gap: 1.25rem;
    }

    .sec4 .inner .dflx .left h3 {
        font-size: 1.75rem;
        margin-bottom: 0.875rem;
    }

    .sec4 .inner .dflx .left .info-group h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .sec4 .inner .dflx .left .time li {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .sec4 .inner .dflx .left .tel {
        font-size: 1.625rem;
    }

    .sec4 .inner .dflx .left .addr {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .sec4 .inner .dflx .left .info-group {
        margin-bottom: 1.25rem;
    }

    .sec4 .btn-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .sec4 .btn-wrap a {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .sec4 .right .map {
        min-height: 12rem;
        max-height: 18rem;
    }
}

@media (max-width: 320px) {
    .sec4 .inner {
        padding: 0 0.75rem;
    }

    .sec4 {
        padding: 2.25rem 0;
    }

    .sec4 .inner .dflx {
        gap: 1rem;
    }

    .sec4 .inner .dflx .left h3 {
        font-size: 1.5rem;
    }

    .sec4 .inner .dflx .left .tel {
        font-size: 1.4rem;
    }

    .sec4 .inner .dflx .left .time li,
    .sec4 .inner .dflx .left .addr {
        font-size: 0.8125rem;
    }

    .sec4 .btn-wrap a {
        font-size: 0.8125rem;
        padding: 0.625rem 0.75rem;
    }

    .sec4 .right .map {
        min-height: 11rem;
        max-height: 16rem;
    }
}

.marquee_wrap {
    margin-top: 60px;
}

.marquee_wrap .overh {
    overflow-x: hidden;
}

.marquee_wrap .rolling_inner {
    white-space: nowrap;
    font-family: var(--eng);
    font-weight: 700;
    font-style: normal;
}

.marquee_wrap .rolling_inner .rolling_txt_wrap {
    font-size: 9.5vw;
    display: inline-block;
    color: #F3F3F3;
}

@media (max-width: 768px) {
    .marquee_wrap .rolling_inner .rolling_txt_wrap {
        font-size: 14vw;
    }
}

.circle-text {
    width: 350px;
    height: 350px;
    position: absolute;
    top: 130px;
    right: -140px;
    margin: 0 auto;
}

.circle-text svg {
    width: 100%;
    height: 100%;
}

.circle-text .circle-label {
    fill: #e0e0e0;
    font-size: 28px;
    letter-spacing: 5px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--eng);
}

.rotating {
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

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


/* ===== 섹션 기본 ===== */
.sec1 {
    padding: 7.5rem 0;
    box-sizing: border-box;
}

.sec1 .inner-1440 {
    box-sizing: border-box;
}

/* ===== 그리드 ===== */
.sec1 .dept-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sec1 .dept-card {
    position: relative;
    overflow: hidden;
}

.sec1 .dept-card a {
    display: block;
    position: relative;
    height: 30rem;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    cursor: default;
    box-sizing: border-box;
}

.sec1 .dept-card a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #8f7556 0%, rgba(142, 121, 96, 0) 100%);
}

/* ===== 카드 배경 ===== */
.sec1 .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: .6s ease;
    filter: brightness(.75);
}

/*
.sec1 .card-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .55) 100%);
}
*/

/* ===== 카드 본문 ===== */
.sec1 .card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    height: 100%;
    color: #fff;
    padding: 3.125rem 1rem;
    box-sizing: border-box;
    width: 100%;
}

.sec1 .dept-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sec1 .dept-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .9);
}

/* ===== Hover ===== */
.sec1 .dept-card:hover .card-bg {
    transform: scale(1.05);
    filter: brightness(.85);
}


/* ===== .sec1 반응형 (1440 / 1024 / 768 / 500 / 320) ===== */
@media (max-width: 1440px) {
    .sec1 .inner-1440 {
        padding: 0 1.375rem;
    }

    .sec1 {
        padding: 6.25rem 0;
    }

    .sec1 .section-head {
        margin-bottom: 3rem;
    }

    .sec1 .section-head p.sub {
        margin: 0.875rem 0 1.125rem;
    }

    .sec1 .dept-grid {
        gap: 1.25rem;
    }

    .sec1 .dept-card a {
        height: 27.5rem;
    }

    .sec1 .card-body {
        padding: 2.75rem 1rem;
    }
}

@media (max-width: 1024px) {
    .sec1 {
        padding: 5rem 0;
    }

    .sec1 .inner-1440 {
        padding: 0 1.25rem;
    }

    .sec1 .section-head {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .sec1 .section-head p.sub {
        margin: 0.75rem 0 1rem;
    }

    .sec1 .section-head p.desc {
        line-height: 1.45;
    }

    .sec1 .dept-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.125rem;
    }

    .sec1 .dept-card a {
        height: 25rem;
    }

    .sec1 .card-body {
        padding: 2.25rem 1rem;
    }
}

@media (max-width: 768px) {
    .sec1 {
        padding: 3.75rem 0;
    }

    .sec1 .inner-1440 {
        padding: 0 1.25rem;
    }

    .sec1 .section-head {
        margin-bottom: 2rem;
    }

    .sec1 .section-head p.sub {
        margin: 0.625rem 0 0.875rem;
    }

    .sec1 .dept-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sec1 .dept-card a {
        height: 320px;
        width: 100%;
        min-height: 17.5rem;
        aspect-ratio: 4 / 3;
        max-width: 100%;
    }

    .sec1 .card-body {
        padding: 2rem 1.25rem;
        align-items: center;
        justify-content: flex-end;
    }

    .sec1 .dept-name,
    .sec1 .dept-desc {
        max-width: 100%;
    }

    .sec1 .section-head p.desc {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

@media (max-width: 500px) {
    .sec1 {
        padding: 3rem 0;
    }

    .sec1 .inner-1440 {
        padding: 0 1rem;
    }

    .sec1 .section-head {
        margin-bottom: 1.75rem;
    }

    .sec1 .section-head h3 {
        font-size: 1.05rem;
    }

    .sec1 .section-head p.sub {
        font-size: 1.65rem;
        margin: 0.5rem 0 0.75rem;
        line-height: 1.25;
    }

    .sec1 .section-head p.desc {
        font-size: 0.9375rem;
        line-height: 1.45;
    }

    .sec1 .dept-grid {
        gap: 0.875rem;
    }

    .sec1 .dept-card a {
        min-height: 15rem;
        aspect-ratio: 3 / 4;
        border-radius: 10px;
    }

    .sec1 .dept-name {
        font-size: 1.45rem;
        margin-bottom: 0.75rem;
    }

    .sec1 .dept-desc {
        font-size: 0.9375rem;
        line-height: 1.55;
    }

    .sec1 .card-body {
        padding: 1.75rem 1rem;
    }
}

@media (max-width: 320px) {
    .sec1 .inner-1440 {
        padding: 0 1rem;
    }

    .sec1 {
        padding: 2.5rem 0;
    }

    .sec1 .section-head {
        margin-bottom: 1.5rem;
    }

    .sec1 .section-head h3 {
        font-size: 1rem;
    }

    .sec1 .section-head p.sub {
        font-size: 1.4rem;
        margin: 0.375rem 0 0.625rem;
        line-height: 1.2;
    }

    .sec1 .section-head p.desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .sec1 .dept-grid {
        gap: 0.75rem;
    }

    .sec1 .dept-card a {
        min-height: 13.5rem;
        aspect-ratio: 3 / 4;
        border-radius: 8px;
    }

    .sec1 .dept-name {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .sec1 .dept-desc {
        font-size: 0.875rem;
        line-height: 1.5;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .sec1 .card-body {
        padding: 1.5rem 0.75rem;
    }
}


/* =======================
   .sec3 스타일
   ======================= */
.sec3 {
    position: relative;
    padding: 6.25rem 0;
    background: #faf8f6;
    overflow: hidden;
}

.sec3 .inner-1440 {
    box-sizing: border-box;
}

.sec3 .profile-wrap {
    display: flex;
    align-items: center;
    gap: 3.75rem;
}

/* 이미지 */
.sec3 .profile-img {
    flex: 1;
    min-width: 0;
}

.sec3 .profile-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    vertical-align: middle;
}

/* 텍스트 */
.sec3 .profile-text {
    flex: 1;
    min-width: 0;
}

.sec3 .profile-text .name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    color: #111;
}

.sec3 .profile-text .quote {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    margin: 0 0 1.5rem;
}

.sec3 .profile-text .desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0 0 2rem;
}

/* 버튼 */
.sec3 .btn-more {
    display: inline-block;
    padding: 0.75rem 1.625rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: all .25s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.sec3 .btn-more:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* .sec3 반응형 (1440 / 1024 / 768 / 500 / 320) */
@media (max-width: 1440px) {
    .sec3 {
        padding: 5.5rem 0;
    }

    .sec3 .inner-1440 {
        padding: 0 1.375rem;
    }

    .sec3 .profile-wrap {
        gap: 2.75rem;
    }

    .sec3 .profile-text .desc {
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 1024px) {
    .sec3 {
        padding: 5rem 0;
    }

    .sec3 .inner-1440 {
        padding: 0 1.25rem;
    }

    .sec3 .profile-wrap {
        gap: 2rem;
        align-items: center;
    }

    .sec3 .profile-text .name {
        margin-bottom: 1rem;
    }

    .sec3 .profile-text .quote {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .sec3 {
        padding: 3.75rem 0;
    }

    .sec3 .inner-1440 {
        padding: 0 1.25rem;
    }

    .sec3 .profile-wrap {
        flex-direction: column;
        gap: 1.75rem;
        text-align: center;
        align-items: center;
    }

    .sec3 .profile-img {
        flex: none;
        align-self: stretch;
    }

    .sec3 .profile-text {
        flex: none;
        align-self: stretch;
        padding-top: 0;
    }

    .sec3 .profile-text .quote,
    .sec3 .profile-text .desc {
        margin-left: auto;
        margin-right: auto;
    }

    .sec3 .btn-more {
        display: block;
        padding: 0.875rem 1.25rem;
        margin-left: auto;
        margin-right: auto;
    }

    .sec3 .circle-text {
        width: 220px;
        height: 220px;
        top: 4rem;
        right: -5rem;
    }
}

@media (max-width: 500px) {
    .sec3 {
        padding: 3rem 0;
    }

    .sec3 .inner-1440 {
        padding: 0 1rem;
    }

    .sec3 .profile-wrap {
        gap: 1.5rem;
    }

    .sec3 .profile-text .name {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .sec3 .profile-text .quote {
        font-size: 1.1rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .sec3 .profile-text .desc {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .sec3 .profile-text .quote,
    .sec3 .profile-text .desc {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .sec3 .btn-more {
        font-size: 0.875rem;
        padding: 0.8125rem 1rem;
    }

    .sec3 .circle-text {
        width: 180px;
        height: 180px;
        top: 3rem;
        right: -4rem;
    }
}

@media (max-width: 320px) {
    .sec3 {
        padding: 2.5rem 0;
    }

    .sec3 .inner-1440 {
        padding: 0 0.75rem;
    }

    .sec3 .profile-wrap {
        gap: 1.25rem;
    }

    .sec3 .profile-text .name {
        font-size: 1.35rem;
    }

    .sec3 .profile-text .quote {
        font-size: 1rem;
        line-height: 1.5;
    }

    .sec3 .profile-text .desc {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .sec3 .btn-more {
        font-size: 0.8125rem;
        padding: 0.75rem 0.875rem;
    }

    .sec3 .circle-text {
        width: 140px;
        height: 140px;
        top: 2.5rem;
        right: -3rem;
    }
}

@media (max-width:1786px) {
    .swp_slide2 .swp-navi,
    .swp_slide2 .swp_txt {
        padding-left: 60px;
    }
}

/* ===== sec5 ===== */
.sec5 {
    padding: 8.75rem 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.sec5 .inner-1440 {
    box-sizing: border-box;
}

/* 레이아웃 */
.sec5 .sec5-wrap {
    display: flex;
    gap: 3.75rem;
    align-items: center;
    min-width: 0;
}

/* 좌측 */
.sec5 .sec5-left {
    width: 40%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 텍스트 */
.sec5 .txt-box .en {
    font-size: 0.875rem;
    letter-spacing: 0.125rem;
    color: #888;
    margin-bottom: 0.625rem;
}

.sec5 .txt-box h2 {
    font-size: 2.625rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.sec5 .txt-box .desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* 탭 */
.sec5 .tab-list {
    margin-top: 3.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sec5 .tab-item {
    font-size: 1rem;
    color: #888;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sec5 .tab-item.active {
    color: #000;
    font-weight: 600;
    border-color: #000;
}

/* 우측: 탭별 콘텐츠 전환 */
.sec5 .sec5-right {
    width: 60%;
    max-width: 100%;
    min-width: 0;
    position: relative;
}

.sec5 .tab-content {
    display: none;
    position: relative;
    max-width: 100%;
    min-width: 0;
}

.sec5 .tab-content.active {
    display: block;
}

/* 탭별 Swiper (Swiper 4: .swiper-container) */
.sec5 .tab-content .swiper-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
}

.sec5 .tab-content .swiper-wrapper {
    min-width: 0;
}

.sec5 .tab-content .swiper-slide {
    height: auto;
    min-width: 0;
    box-sizing: border-box;
}

.sec5 .tab-content .swiper-container img {
    width: 100%;
    max-width: 100%;
    height: 31.25rem;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.sec5 .tab-content .sec5-control {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: calc(100% - 2.5rem);
    flex-wrap: wrap;
    box-sizing: border-box;
}

.sec5 .tab-content .sec5-control .page {
    font-size: 1rem;
    color: #000;
}

.sec5 .tab-content .sec5-control .nav {
    display: flex;
    gap: 0.625rem;
}

.sec5 .tab-content .sec5-control button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
}

.sec5 .tab-content .sec5-control button:hover {
    background: #000;
    color: #fff;
}

/* ===== .sec5 반응형 (1440 / 1024 / 768 / 500 / 320) ===== */
@media (max-width: 1440px) {
    .sec5 .inner-1440 {
        padding: 0 1.375rem;
    }

    .sec5 {
        padding: 6.5rem 0;
    }

    .sec5 .sec5-wrap {
        gap: 2.75rem;
    }
}

@media (max-width: 1024px) {
    .sec5 {
        padding: 5.5rem 0;
    }

    .sec5 .inner-1440 {
        padding: 0 1.25rem;
    }

    .sec5 .sec5-wrap {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }

    .sec5 .sec5-left,
    .sec5 .sec5-right {
        width: 100%;
    }

    .sec5 .txt-box h2 {
        font-size: 2rem;
    }

    .sec5 .txt-box h2,
    .sec5 .txt-box .desc {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .sec5 .tab-content .swiper-container img {
        height: auto;
        aspect-ratio: 16 / 10;
        max-height: 28rem;
    }
}

@media (max-width: 768px) {
    .sec5 {
        padding: 4rem 0;
    }

    .sec5 .inner-1440 {
        padding: 0 1.25rem;
    }

    .sec5 .sec5-wrap {
        gap: 1.75rem;
    }

    .sec5 .tab-list {
        margin-top: 2rem;
        gap: 1rem;
    }

    .sec5 .tab-content .swiper-container {
        border-radius: 14px;
    }

    .sec5 .tab-content .swiper-container img {
        aspect-ratio: 4 / 3;
        max-height: none;
    }

    .sec5 .tab-content .sec5-control {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
        max-width: calc(100% - 2rem);
    }

    .sec5 .tab-content .sec5-control .page {
        font-size: 0.9375rem;
    }

    .sec5 .tab-content .sec5-control button {
        width: 2.375rem;
        height: 2.375rem;
    }
}

@media (max-width: 500px) {
    .sec5 {
        padding: 2.75rem 0;
    }

    .sec5 .inner-1440 {
        padding: 0 1rem;
    }

    .sec5 .sec5-wrap {
        gap: 1.25rem;
    }

    .sec5 .txt-box .en {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.08rem;
    }

    .sec5 .txt-box h2 {
        font-size: 1.625rem;
        margin-bottom: 0.75rem;
        line-height: 1.28;
    }

    .sec5 .txt-box .desc {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .sec5 .tab-list {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .sec5 .tab-item {
        font-size: 0.875rem;
        padding-bottom: 0.5rem;
    }

    .sec5 .tab-content .sec5-control {
        bottom: 0.75rem;
        right: 0.75rem;
        gap: 0.5rem;
        max-width: calc(100% - 1.5rem);
    }

    .sec5 .tab-content .sec5-control .page {
        font-size: 0.875rem;
    }

    .sec5 .tab-content .sec5-control button {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (max-width: 320px) {
    .sec5 .inner-1440 {
        padding: 0 0.75rem;
    }

    .sec5 {
        padding: 2.25rem 0;
    }

    .sec5 .sec5-wrap {
        gap: 1rem;
    }

    .sec5 .txt-box h2 {
        font-size: 1.4rem;
    }

    .sec5 .txt-box .desc {
        font-size: 0.8125rem;
    }

    .sec5 .tab-list {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .sec5 .tab-item {
        font-size: 0.8125rem;
    }

    .sec5 .tab-content .swiper-container {
        border-radius: 10px;
    }

    .sec5 .tab-content .sec5-control {
        bottom: 0.5rem;
        right: 0.5rem;
        gap: 0.375rem;
        max-width: calc(100% - 1rem);
    }

    .sec5 .tab-content .sec5-control .page {
        font-size: 0.8125rem;
    }

    .sec5 .tab-content .sec5-control button {
        width: 2.125rem;
        height: 2.125rem;
    }
}

/* ===== quick menu ===== */
.quick-menu {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 공통 아이템 */
.quick-menu .quick-item,
.quick-menu .quick-top {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #a67c52;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* TOP 버튼만 블랙 */
.quick-menu .quick-top {
    background: #000;
}

/* 아이콘 */
.quick-menu .ico {
    margin-bottom: 6px;
}

.quick-menu .ico img {
    width: 24px;
    height: 24px;
    display: block;
}

/* 텍스트 */
.quick-menu .txt {
    font-size: 12px;
    font-weight: 500;
}

/* hover */
.quick-menu .quick-item:hover,
.quick-menu .quick-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 기존 img 제거 */
.quick-menu .quick-top .ico img {
    display: none;
}

/* 컨테이너 */
.quick-menu .quick-top .ico {
    position: relative;
    width: 18px;
    height: 24px;
    margin-bottom: 6px;
}

/* 화살표 (정확한 ∧ 모양) */
.quick-menu .quick-top .ico::before,
.quick-menu .quick-top .ico::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 12px;
    height: 2px;
    background: #fff;
}

/* 왼쪽 */
.quick-menu .quick-top .ico::before {
    left: 1px;
    transform: rotate(-45deg);
    transform-origin: left center;
}

/* 오른쪽 */
.quick-menu .quick-top .ico::after {
    right: 1px;
    transform: rotate(45deg);
    transform-origin: right center;
}

/* ===== 반응형 ===== */
@media (max-width: 768px) {
    .quick-menu {
        right: 10px;
        bottom: 20px;
    }

    .quick-menu .quick-item,
    .quick-menu .quick-top {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .quick-menu .txt {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    #section1 .scr_wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    .swp_slide2 .swiper-progress-bar {
        width: 140px;
    }

    .swp_slide2 .swp-navi {
        padding-left: 40px;
    }
}
