@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');

:root {
    --primary: #2F4B67;
    --secondary-: #AE9968;

    --light-: #C6C8CA;
    --white-: #fff;
    --eng: "minerva-modern", sans-serif;
    --font-na: 'Nanum Myeongjo', serif;
    --sub-page-tit: 56px;
    --sub-padding: 150px 0;
    --sub2-padding: 80px 0;
}

@media (max-width: 1200px) {
    :root {
        --sub-page-tit: 56px;
        --padding: 120px 20px;
    }
}

@media (max-width: 1024px) {
    :root {
        --sub-page-tit: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --sub-page-tit: 36px;
        --padding: 60px 20px;
        --sub-padding: 80px 0;
        --sub2-padding: 40px 0;
    }
}

/*  fullpages reset  */

.section .cmtit {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.section .cmtit strong {
    color: var(--secondary-);
    font-size: 20px;
    line-height: 1;
}

.section .cmtit h2 {
    font-size: 72px;
    color: #000;
    line-height: 1;
    margin-top: 24px;
}

#fullpage-0 {
    overflow: hidden;
}

.fp-viewing-0 #header .header_gnb .depth_1 > a > span,
.fp-viewing-1 #header .header_gnb .depth_1 > a > span,
.fp-viewing-3 #header .header_gnb .depth_1 > a > span {
    color: #111;
}

.fp-viewing-0 .mob_nav_btn span,
.fp-viewing-0 .mob_nav_btn span:before,
.fp-viewing-0 .mob_nav_btn span:after {
    background: var(--primary);
}

.fp-viewing-0 .mob_nav_btn span:before,
.fp-viewing-0 .mob_nav_btn span:after,
.fp-viewing-0 .mob_wrap .mob_nav_btn span {
    background: var(--primary);
}

.fp-viewing-1 .mob_nav_btn span,
.fp-viewing-1 .mob_nav_btn span:before,
.fp-viewing-1 .mob_nav_btn span:after {
    background: var(--primary);
}

.fp-viewing-1 .mob_nav_btn span:before,
.fp-viewing-1 .mob_nav_btn span:after,
.fp-viewing-1 .mob_wrap .mob_nav_btn span {
    background: var(--primary);
}

.fp-viewing-3 .mob_nav_btn span,
.fp-viewing-3 .mob_nav_btn span:before,
.fp-viewing-3 .mob_nav_btn span:after {
    background: var(--primary);
}

.fp-viewing-3 .mob_nav_btn span:before,
.fp-viewing-3 .mob_nav_btn span:after,
.fp-viewing-3 .mob_wrap .mob_nav_btn span {
    background: var(--primary);
}


.fp-viewing-2 #header .header_wrap .header_inner .logo a {
    background: url(<?php echo G5_THEME_URL ?>/images/logo-w.svg) no-repeat !important;
    background-size: 165px !important;
}

.fp-viewing-2 #header .header_gnb .depth_1 > a > span {
    color: #fff;
}


/* 공통 */
.main .cm_viewBtn a {
    display: flex;
    align-items: center;
    margin-top: 40px;
    font-family: var(--eng);
    font-weight: 500;
    font-size: 18px;
    transition: all .3s;
}

.main .cm_viewBtn .arr {
    display: inline-block;
    text-align: center;
    width: 36px;
    height: 36px;
    line-height: 43px;
    border-radius: 36px;
    background: #A88C34;
    margin-right: 8px;
}

.main .cm_viewBtn .arr .cm_viewBtn_arr {
    color: #fff;
    font-size: 20px;
    transition: all .3s;
}

.main .cm_viewBtn .arr .cm_viewBtn_arr {
    font-variation-settings:
        'FILL'0,
        /* '1' ë°°ê²½ìƒ‰ ì±„ì›Œì§ */
        'wght'400,
        /* stroke êµµê¸° */
        'GRAD'0,
        /* ë‘ê»˜*/
        'opsz'24
        /* ì˜µí‹°ì»¬ì‚¬ì´ì¦ˆ */
}

.main .cm_viewBtn a:hover span {
    transform: rotate(-45deg);
}

#mouse-scroll {
    position: absolute;
    bottom: 5%;
    left: calc((100% - 1460px) / 2);
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 11px;
}

#mouse-scroll .txt {
    margin-right: 4px;
}

#mouse-scroll .txt p {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

#mouse-scroll .down-arrow-1,
#mouse-scroll .down-arrow-2,
#mouse-scroll .down-arrow-3 {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite:;
}

#mouse-scroll .down-arrow-1 {
    margin-top: 6px;
}

#mouse-scroll .down-arrow-2 {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll .down-arrow-3 {
    -webkit-animation-delay: .3s;
    -moz-animation-dekay: .3s;
    -webkit-animation-direction: alternate;
}

#mouse-scroll span {
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin: 0 0 3px 5px;
}


@-webkit-keyframes animated-mouse {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}



.main .sec1 {
    position: relative;
    background: url(../images/sec3_bg2.jpg) no-repeat;
    background-size: cover !important;
}

.main .sec1 .symbol {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 385px;
    height: 479px;
    background: url(../images/symbol.svg) no-repeat;

    z-index: 1;
}

.main .sec1 .dflx {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.main .sec1 .dflx .left,
.main .sec1 .dflx .right {
    width: 50%;
}

.main .sec1 .dflx .left {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-right: 120px;
}

.main .sec1 .dflx .left {}

.main .sec1 .dflx .left .df {
    width: 100%;
}

.main .sec1 .dflx .left .df strong {}

.main .sec1 .dflx .left .df h2 {
    font-family: var(--font-na);
    font-size: 64px;
    line-height: 1.4;
    font-weight: 400;
    margin: 24px 0 10px;
}

.main .sec1 .dflx .left .df p {
    font-size: 28px;
    margin-bottom: 16px;
}


.main .sec1 .dflx .left .df h2 span {
    color: #A88C34;
}

.main .sec1 .dflx .left .df h3 {
    display: flex;
    font-size: 20px;
}

.main .sec1 .dflx .left .df h3 p {
    border-left: 1px solid #848484;
    padding-left: 8px;
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
}

.main .sec1 .dflx .left .df h3 p span {
    font-weight: 400;
}

.main .sec1 .dflx .right {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.main .sec1 .slider_wrap {
    position: relative;
}

.main .sec1 .slider_wrap .sim {
    background: url(../images/main/symbol.svg) no-repeat;
    position: absolute;
    bottom: -140px;
    right: 40px;
    z-index: 1;
    width: 580px;
    height: 580px;
}

.main .sec1 .slider_wrap .slider_nav .dflx_wrap {
    display: flex;
    flex-direction: column;
}

.main .sec1 .slider_wrap .slider_nav .dflx_wrap .bot {
    padding-left: 11px;
}


.main .sec2 {
    position: relative;
    background: #f9f9f9;
    overflow: hidden;
}

.main .sec2:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255, .9);
    z-index: 2;
}

.main .sec2 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: url(../images/fullpage1_bg.jpg) top center no-repeat;
    background-size: cover;
    height: 100vh;
    z-index: 1;
}

.main .sec2 .inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.main .sec2 .inner .cmtit {
    position: relative;
}

.main .sec2 .inner .cmtit h2 {
    color: #c5b492;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 32px;
}

.main .sec2 .inner .cmtit p {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
}

.main .sec2 .swp02 .swiper-container {
    overflow: hidden;
    padding: 10px 0;
}

.main .sec2 .swiper-slide .list-item {
    background: #fff;
    padding: 24px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px #0000000d;
}

.main .sec2 .swiper-slide .list-item .tit h2 {
    display: inline-block;
    font-size: 22px;
    margin-bottom: 24px;
    padding: 8px 10px;
    background: var(--primary);
    color: #fff;
}

.main .sec2 .swiper-slide .list-item .tit h2 span img {
    width: 24px;
}

.main .sec2 .swiper-slide .list-item h3 {
    font-size: 20px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 16px;
}

.main .sec2 .swiper-slide .list-item h4 {
    font-size: 17px;
    line-height: 30px;
    color: #acacac;
    font-weight: 400;
}

.main .sec2 .inner .cmtit .arrow_nav span {
    color: var(--primary);
    font-size: 36px;
    font-weight: 400;
}

.main .sec2 .inner .cmtit .arrow_nav .dflx .prev {
    margin-right: 12px;
}


.main .sec2 .arrow_nav {
    position: absolute;
    bottom: 0;
    right: 0;
}

.main .sec2 .arrow_nav .dflx {
    display: flex;
    flex-direction: row;
}

.main .sec2 .swiper-button-prev:after,
.main .sec2 .swiper-rtl .swiper-button-next:after {
    display: none;
}

.main .sec2 .swiper-button-next:after,
.main .sec2 .swiper-rtl .swiper-button-prev:after {
    display: none;
}

.main .sec2 .swiper-button-next,
.main .sec2 .swiper-button-prev {
    position: inherit;
    top: inherit;
    margin-top: 0;
    right: inherit;
    left: inherit;
}

.main .sec3 {
    position: relative;
    overflow: hidden;
}

.main .sec3 .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/fullpage-4-bg.png) top center no-repeat;
    background-size: cover !important;
    z-index: 1;
}

.main .sec3 .bot_txt p {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    font-size: calc(214 / 1920* 100vw);
    color: #0830476b;
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    z-index: 1;
}

.main .sec3 .inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.main .sec3 .inner .cmtit {
    position: relative;
}

.main .sec3 .inner .cmtit h2 {
    color: #c5b492;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 32px;
}

.main .sec3 .inner .cmtit p {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.main .sec3 .inner .cmtit .arrow_nav {
    position: absolute;
    bottom: 0;
    right: 0;
}

.main .sec3 .inner .cmtit .arrow_nav .dflx {
    display: flex;
}

.main .sec3 .inner .cmtit .arrow_nav .dflx .prev {
    margin-right: 12px;
}

.main .sec3 .inner .cmtit .arrow_nav span {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
}

.main .sec3 .inner .cmtit .arrow_nav span .fullpage-4 .inner .dflx {
    display: flex;
    justify-content: center;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.main .sec3 .inner .dflx ul {
    display: flex;
    flex-wrap: wrap;
}

.main .sec3 .inner .swiper-slide a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

.main .sec3 .inner .swiper-slide a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #2A3747;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.main .sec3 .inner .swiper-slide a:hover:after {
    opacity: 0.7;
    width: 100%;
}

.main .sec3 .inner .swiper-slide a .over:after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    position: absolute;
    display: block;
    background: linear-gradient(180deg, rgb(0, 0, 0, .9) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}



.main .sec3 .inner .swiper-slide a .over {
    height: 320px;
    padding: 32px;
    position: relative;
    z-index: 2;
}

.main .sec3 .inner .swiper-slide a .over .con {
    position: relative;
    height: 100%;
    z-index: 2;
}

.main .sec3 .inner .swiper-slide a .over h2 {
    font-size: 28px;
    line-height: 1;
    margin-top: 12px;
    color: #fff;
}

.main .sec3 .inner .swiper-slide a .over strong {
    font-size: 14px;
    color: #fff;
    opacity: .4;
    font-weight: 400;
}

.main .sec3 .inner .swiper-slide a .over span {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    font-size: 40px;
    color: #fff;
}

.main .sec3 .swpbg0 {
    height: 100%;
    background: url(../images/swp_bg0.png) top center no-repeat;
}

.main .sec3 .swpbg1 {
    height: 100%;
    background: url(../images/swp_bg1.png) top center no-repeat;
}

.main .sec3 .swpbg2 {
    height: 100%;
    background: url(../images/swp_bg2.png) top center no-repeat;
}

.main .sec3 .swpbg3 {
    height: 100%;
    background: url(../images/swp_bg3.png) top center no-repeat;
}

.main .sec3 .swpbg4 {
    height: 100%;
    background: url(../images/swp_bg4.png) top center no-repeat;
}

.main .sec3 .swpbg5 {
    height: 100%;
    background: url(../images/swp_bg5.png) top center no-repeat;
}

.main .sec3 .swpbg6 {
    height: 100%;
    background: url(../images/swp_bg6.png) top center no-repeat;
}

.main .sec3 .cmmbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background-size: cover !important;
}


.main .sec4 {
    overflow: hidden;
}


.main .sec4 .inner {
    max-width: 1440px;
    margin: 0 auto;
}

.main .sec4 .inner .dflx {
    display: flex;
}

.main .sec4 .inner .dflx .left,
.main .sec4 .inner .dflx .right {
    width: 50%;
}

.main .sec4 .inner .dflx .left {
    display: flex;
    align-items: center;
    height: 700px;
}

.main .sec4 .inner .dflx .left .tit {
    margin-bottom: 60px;
}

.main .sec4 .inner .dflx .left .tit h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.main .sec4 .inner .dflx .left .tit p {
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
}

.main .sec4 .inner .dflx .left .tit p span img {
    width: 24px;
}

.main .sec4 .inner .dflx .left .addr {
    margin-bottom: 40px;
}

.main .sec4 .inner .dflx .left .addr ul {
    display: flex;
}

.main .sec4 .inner .dflx .left .addr ul li {
    display: flex;
    align-items: center;
}

.main .sec4 .inner .dflx .left .addr ul li:first-child {
    margin-right: 12px;
}

.main .sec4 .inner .dflx .left .addr ul li span {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 35px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-right: 8px;
}

.main .sec4 .inner .dflx .left .addr ul li > p {
    font-size: 20px;
    line-height: 1;
    color: #888;
}

.main .sec4 .inner .dflx .left .addr .sp1 {
    background: #3AB449;
}

.main .sec4 .inner .dflx .left .addr .sp2 {
    background: #DE962B;
}

.main .sec4 .inner .dflx .left .tel {
    margin-bottom: 40px;
}

.main .sec4 .inner .dflx .left .tel h3 {
    font-size: 24px;
}

.main .sec4 .inner .dflx .left .tel h3 span {
    padding-right: 4px;
}

.main .sec4 .inner .dflx .left .tel h3 span img {
    width: 20px;
}

.main .sec4 .inner .dflx .left .map_btn {
    display: flex;
}

.main .sec4 .inner .dflx .left .map_btn a {
    display: flex;
    font-size: 20px;
    background: #F5F5F5;
    width: 200px;
    height: 60px;
    line-height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.main .sec4 .inner .dflx .left .map_btn a span {
    padding-right: 4px;
}

.main .sec4 .inner .dflx .left .map_btn a:first-child {
    margin-right: 16px;
}

.main .sec4:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    background: #F0F5F8;
    z-index: -1;
}

.main .sec4 .inner .dflx .right .map {
    width: 100%;
    height: 700px;
}

/* 마커 위에 떠 있는 텍스트 */
.main .sec4 .custom-marker .marker-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main .sec4 .custom-marker {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6a20;
    box-shadow: 0 0 0 rgba(255, 107, 0, 0.7);
    animation: pulse 2s infinite;
    z-index: 10;
    transform: translate(-50%, -100%);
    /* 마커 위치 중심 위로 정렬 */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.main .sec5 {
    background: #fff;
}

/* sub page */
/* 상단 텍스트 영역 */
.prac_wrap .en_title {
    font-size: 14px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
    font-family: var(--eng);
}

.prac_wrap .main_title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prac_wrap .sub_tit {
    font-size: 40px;
    font-weight: 500;
    color: #9D8466;
    /* 골드톤 포인트 */
    margin-bottom: 40px;
}

.prac_wrap .intro_text p {
    font-size: 22px;
    line-height: 1.8;
    color: #444;
    font-weight: 300;
}

/* 주요 서비스 영역 */
.prac_wrap .service_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.prac_wrap .service_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.prac_wrap .service_item {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 20px);
    padding: 32px;
    border-radius: 2px;
    border: 1px dashed #9D8466;
}

.prac_wrap .service_item .num {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 20px;
}

.prac_wrap .service_item .num p {
    font-size: 28px;
    font-style: italic;
    font-family: var(--eng);
    color: #9D8466;
    white-space: nowrap;
}

.prac_wrap .service_item .text_wrap strong {
    font-size: 17px;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

.prac_wrap .service_item .text_wrap p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width:1570px) {
    .main .sec4 {
        padding: 0 60px;
    }

    .main .sec2 {
        padding: 0 60px;
    }

    .main .sec3 .inner {
        padding-left: 60px;
    }
}

@media (max-width:1320px) {
    .main .sec1 .dflx {
        padding: 0 40px;
    }
}

@media (max-width:1280px) {

    .main .sec1 {
        padding: 100px 0 0;
    }

    .main .sec4,
    .main .sec3,
    .main .sec2 {
        padding: 100px 60px;
    }

    .prac_wrap .inr {
        padding: 0 20px;
    }

    .main .sec1 .dflx .left .df h2 {
        font-size: 56px;
    }

    .main .sec3 .inner {
        padding-left: 0;
    }
}

@media (max-width:1200px) {

    .main .sec1 .dflx .left {
        margin-right: 60px;
    }

    .main .sec1 .dflx .left .df h2 {
        font-size: 50px;
    }
}

@media (max-width:1024px) {

    .main .sec4 .inner .dflx {
        flex-direction: column;
    }

    .main .sec4 .inner .dflx .left,
    .main .sec4 .inner .dflx .right {
        width: 100%;
    }

    .main .sec4 .inner .dflx .left {
        margin-bottom: 40px;
        height: auto;
    }

    .main .sec4 .inner .dflx .left .tit h2 {
        font-size: 32px;
    }

    .main .sec4 .inner .dflx .right .map {
        height: 400px;
    }

    .main .sec3 .inner .cmtit p,
    .main .sec2 .inner .cmtit p {
        font-size: 28px;
    }

    .main .sec1 .dflx .left {
        margin-right: 0;
    }

    .prac_wrap .main_title,
    .prac_wrap .sub_tit {
        font-size: 32px;
    }

    .prac_wrap .intro_text p {
        font-size: 20px;
    }

    .prac_wrap .service_title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .main .sec1 .dflx .left .df h2 {
        font-size: 42px;
    }

    .main .sec1 .dflx .left .df p {
        font-size: 24px;
    }

    main .sec1 .dflx .left {
        flex: 1;
    }

    main .sec1 .dflx .right {
        width: 60%;
    }
}

@media (max-width:769px) {
    .sec1_mbr {
        display: none;
    }
}

@media (max-width:768px) {

    .main .sec2 .arrow_nav,
    .main .sec3 .inner .cmtit .arrow_nav {
        position: static;
        top: inherit;
        right: inherit;

        margin-top: 24px;
    }

    .main .sec4 .inner .dflx .left .tit p span img {
        width: 20px;
    }

    .main .sec4 .inner .dflx .left .tit h2 {
        font-size: 24px;
    }

    .main .sec4 .inner .dflx .left .tit p {
        font-size: 18px;
    }

    .main .sec4 .inner .dflx .left .addr ul li span {
        width: 24px;
        height: 24px;
        line-height: 24px;
        border-radius: 24px;
        font-size: 15px;
    }

    .main .sec4 .inner .dflx .left .addr ul li > p {
        font-size: 15px;
    }

    .main .sec4 .inner .dflx .left .tit {
        margin-bottom: 32px;
    }

    .section .cmtit {
        margin-bottom: 40px;
    }

    .main .sec3 .inner .cmtit p,
    .main .sec2 .inner .cmtit p {
        font-size: 22px;
    }

    .main .sec4,
    .main .sec3,
    .main .sec2 {
        padding: 60px 20px;
    }

    .main .sec2 .swiper-slide .list-item .tit h2 {
        font-size: 18px;
    }

    .sec1_mbr {
        display: block;
    }

    .main .sec1 .dflx {
        position: relative;
        height: 650px;
        overflow: hidden;
    }

    .main .sec1 .dflx .left {
        position: absolute;
        bottom: -180px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 100%;
    }

    .main .sec1 .dflx .left * {
        color: #fff;
    }

    .main .sec1 .dflx .left .df {
        text-align: center;
        padding: 20px 0 40px;
        background: rgb(0, 0, 0, .7);
    }

    .main .sec1 .dflx .left .df h3 {
        justify-content: center;
    }

    .main .sec1 .dflx .left,
    .main .sec1 .dflx .right {
        width: 100%;
    }

    .main .sec1 .dflx .right {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        height: 100%;
        padding-top: 0;
    }

    .main .sec1 .symbol {
        display: none;
    }

    .main .sec1 .dflx .left .df strong {
        display: none;
    }

    .main .sec1 .dflx .left .df h2 {
        font-size: 24px;
        color: #d1bf85;
    }

    .main .sec1 .dflx .left .df p {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .main .cm_viewBtn a {
        justify-content: center;
        margin-top: 20px;
    }

    .prac_wrap .inr {
        padding: 0 20px;
    }

    .prac_wrap .main_title,
    .prac_wrap .sub_tit {
        font-size: 28px;
        line-height: 1.4;
    }

    .prac_wrap .intro_text p {
        font-size: 18px;
        word-break: keep-all;
    }

    .prac_wrap .intro_text p br {
        display: none;
    }

    .prac_wrap .service_list {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .prac_wrap .service_item {
        width: 100%;
    }
    
        .main .sec4 .inner .dflx .right .map {
        height: 320px;
    }

}

@media (max-width:360px) {
    .main .sec1 .dflx .left .df h2 {
        font-size: 22px;
    }

    .main .sec1 .dflx .left .df h3 p,
    .main .sec1 .dflx .left .df h3 {
        font-size: 18px;
    }

    .main .sec1 .dflx .left {
        bottom: -185px;
    }

    .main .cm_viewBtn a {
        font-size: 15px;
    }

    .main .cm_viewBtn .arr {
        width: 32px;
        height: 32px;
    }
}



/*    footer    */
#footer {
    padding: 100px 0;
    background: #111;
}

#footer .inner {
    padding: 0 80px;
}

#footer .inner .ft_top,
#footer .inner .ft_mid,
#footer .inner .ft_addr {
    margin-bottom: 40px;
}

#footer .inner .ft_top .dflx {
    display: flex;
    justify-content: space-between;
}

#footer .inner .ft_top .dflx .nav {
    display: flex;
}

#footer .inner .ft_top .dflx .nav a {
    color: #999;
}

#footer .inner .ft_top .dflx .nav a:first-child {
    color: #fff;
}

#footer .inner .ft_top .dflx .nav a:not(:last-child) {
    margin-right: 16px;
}

#footer .inner .ft_top .dflx .cont {
    text-align: right;

}

#footer .inner .ft_top .dflx .cont h3 a,
#footer .inner .ft_top .dflx .cont h3 {
    color: #fff;
    font-size: 24px;
}

#footer .inner .ft_mid .dflx {
    display: flex;
    justify-content: space-between;
}

#footer .inner .ft_mid .dflx .left .ft_tit {}

#footer .inner .ft_mid .dflx .left .ft_tit h2 {
    font-size: 32px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 24px;
    font-family: var(--font-na);
}

#footer .inner .ft_mid .dflx .left .ft_tit a {
    display: inline-block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
}

#footer .inner .ft_mid .dflx .right ul {
    display: flex;
}

#footer .inner .ft_mid .dflx .right ul li {
    width: 20%;
}

#footer .inner .ft_mid .dflx .right ul li:not(:last-child) {
    margin-right: 50px;
}

#footer .inner .ft_mid .dflx .right ul li h3 {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 16px;
}

#footer .inner .ft_mid .dflx .right ul li a {
    color: #fff;
    opacity: .8;
    display: block;
    font-size: 15px;
}

#footer .inner .ft_mid .dflx .right ul li a:not(:last-child) {
    margin-bottom: 8px;
}

#footer .inner .ft_addr p {
    font-size: 13px;
    color: #999;
}

#footer .inner .ft_addr p:first-child {
    margin-bottom: 8px;
}

#footer .inner .ft_addr p span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-right: 10px;
    font-weight: 400;
}

#footer .inner .ft_bot .brand ul {
    display: flex;
}

#footer .inner .ft_bot .brand ul li {
    color: #fff;
}

#footer .inner .ft_bot .brand ul li:not(:last-child) {
    margin-right: 8px;

}

#footer .inner .ft_bot {
    position: relative;
}

#footer .inner .ft_bot .cp {
    color: #999;
    font-size: 14px;
}

.footer_sns .inner {
    background: #fff;
}

.footer_sns .inner .dflx ul {
    display: flex;
    justify-content: space-between;
    height: 300px;

}

.footer_sns .inner .dflx ul li {
    width: 33.333333%;
    display: inline-block;
    height: 100%;
    border-top: 1px solid #111;
}



.footer_sns .inner .dflx ul li:not(:last-child) {
    border-right: 1px solid #111;
}

.footer_sns .inner .dflx ul li a {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer_sns .inner .dflx ul li a:hover {
    background: #f1f1f1;
}

.footer_sns .inner .dflx ul li a .top {
    font-size: 24px;
    font-family: var(--eng-font);
}

.footer_sns .inner .dflx ul li a .bot .df {
    display: flex;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 40px;
    font-family: var(--eng-font);
}

@media (max-width:1200px) {
    #footer .inner .ft_mid .dflx {
        display: block;
    }

    #footer .inner .ft_mid .dflx .right {
        display: none;
    }
}

@media (max-width:1024px) {
    #footer .inner .ft_bot .cp {
        position: static;
        margin-top: 24px;
    }

    #footer .inner {
        padding: 0 40px;
    }
}

@media (max-width:830px) {
    #footer .inner .ft_top .dflx {
        display: block;
    }

    #footer .inner .ft_top .dflx .cont {
        margin-top: 32px;
        text-align: left;
    }
}

@media (max-width:768px) {
    .footer_sns .inner {
        background: #fff;
    }

    .footer_sns .inner .dflx ul {
        flex-direction: column;
        height: auto;
    }

    .footer_sns .inner .dflx ul li {
        width: 100%;
        border-top: none;
    }

    .footer_sns .inner .dflx ul li:first-child {
        border-top: 1px solid #111;
    }

    .footer_sns .inner .dflx ul li:not(:last-child) {
        border-bottom: 1px solid #111;
        border-right: none;
    }

    .footer_sns .inner .dflx ul li a {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }

    .footer_sns .inner .dflx ul li a .top {
        font-size: 18px;
    }

    .footer_sns .inner .dflx ul li a .bot .df {
        font-size: 22px;
    }

    #footer .inner {
        padding: 0 20px;
    }

    #footer .inner .ft_mid .dflx .left .ft_tit h2 {
        font-size: 20px;
    }

    #footer .inner .ft_top .dflx .cont h3 {
        font-size: 20px;
    }

    #footer .inner .ft_bot .brand ul {
        flex-wrap: wrap;
    }

    #footer .inner .ft_bot .brand ul li {
        line-height: 1.4;
    }

    #footer {
        padding: 80px 0;
    }

    #footer .inner .ft_top .dflx .nav a {
        font-size: 14px;
    }

    #footer .inner .ft_top .dflx .nav a:not(:last-child) {
        margin-right: 8px;
    }

    #footer .inner .ft_bot .cp {
        font-size: 13px;
    }
}
