@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap');
:root {
    --engfont1: "minerva-modern", sans-serif;
      --noto: 'Noto Serif KR', serif;
}

/* 공통 ***************************************************/

.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .cont {
    display: none !important;
}

@media (min-width:769px) {
    main {
        display: block;
    }

    .mob-container {
        display: none;
    }
}

@media (max-width:768px) {
    main {
        display: none;
    }

    .mob-container {
        display: block;
    }

    .mob-container .intro-bg {
        height: 350px;
        background-image: url(../images/mob-intro-bg.jpg);
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .mob-container .info-wrap .stit {
        padding: 24px 20px;
    }

    .mob-container .info-wrap .stit p.sub-title {
        text-transform: uppercase;
        font-size: 13px;
        line-height: 1;
        color: #888;
    }

    .mob-container .info-wrap .stit p.sub-title span {
        color: #d6be9d;
    }

    .mob-container .info-wrap .stit h2 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1;
        margin: 8px 0 12px;
        position: relative;
        padding-left: 12px;
    }

    .mob-container .info-wrap .stit h2:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 8px;
        height: 1.5px;
        background: #111;
    }

    .mob-container .info-wrap .stit .desc > p {
        font-weight: 300;
        color: #555;
        line-height: 1.6;
        font-size: 13px;
    }

    .mob-container .info-wrap .stit .desc ul {
        margin-bottom: 16px;
    }

    .mob-container .info-wrap .stit .desc ul li {
        display: flex;
    }

    .mob-container .info-wrap .stit .desc ul li > div:first-child {
        width: 60px;
    }

    .mob-container .info-wrap .stit .desc ul li > div {
        font-size: 13px;
        color: #888;
    }

    .mob-container .info-wrap .menu-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        background: #e8e9ea;
        padding: 8px;
    }

    .mob-container .info-wrap .menu-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        padding: 16px 20px;
        border-radius: 10px;
        text-decoration: none;
        color: #222;
        font-size: 14px;
        font-weight: 500;
        transition: background 0.2s;
    }

    .mob-container .info-wrap .menu-item:hover {
        background: #f2f2f2;
    }

    .mob-container .info-wrap .arrow-icon {
        flex-shrink: 0;
    }

    .mob-container .info-wrap .info-sec2 .stit h2 {
        margin: 0px 0px 12px;
    }

    .mob-container .info-wrap .info-sec2 .map_wrap {
        height: 300px;
        width: 100%;
    }

    .mob-container .info-wrap .info-sec2 .btns {
        background: #f2f2f2;
        padding: 8px;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        padding: 18px 20px;
        text-decoration: none;
        color: #333;
        font-size: 17px;
        font-weight: 500;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
        transition: background 0.2s ease;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid a:hover {
        background: #f5f5f5;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid a span {
        font-size: 14px;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid svg {
        flex-shrink: 0;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid a:nth-child(2) {
        background: #2276c0;
        color: #fff;
    }

    .mob-container .info-wrap .info-sec2 .btn-grid a:nth-child(2) svg {
        stroke: #fff;
    }
}

/* 헤더 ***************************************************/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 21;
    height: 100px;
    transition: background .3s;
    -webkit-transition: background .3s;
}

#header:before {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    content: '';
    opacity: 0;
    transition: opacity .3s, height .3s;
    -webkit-transition: opacity .3s, height .3s;
}

#header.on {
    background: #fff;
}


#header .header-wrap {
    position: relative;
    margin: 0 50px;
}

#header .logo {
    position: absolute;
    z-index: 8;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

#header .logo > a {
    position: relative;
    display: inline-block;
    width: 172px;
    height: 23px;
    vertical-align: middle;
}

#header.on .logo > a:before {
    background: url(../images/logo-c.svg) no-repeat 0 0;
}

#header.active .logo > a:before {
    background: url(../images/logo-c.svg) no-repeat 0 0;
}

#header .logo > a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/logo-c.svg) no-repeat 0 0;
}

/*
    #header .nav-wrap>nav {
        position: absolute;
        height: 4rem;
        top: 50%;
        text-align: center;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
*/

#header #gnb-pc {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    height: 100px;
    line-height: 100px;
    max-width: 900px;
}

#header #gnb-pc .gnb-li {
    width: 158px;
    height: 100px;
    color: #000;
}

#header #gnb-pc .gnb-li > a {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-weight: 500;
}

#header.on #gnb-pc .gnb-li > a > span {
    color: #111;
}

#header.active #gnb-pc .gnb-li > a > span {
    color: #111;
}

#header #gnb-pc .gnb-li > a > span {
    position: relative;
    display: block;
    font-size: 20px;
    color: #111;
    font-family: var(--engfont1);
    font-weight: 600;
}

#header .res_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

#header .res_btn a {
    display: inline-block;
    color: #111;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--engfont1);
    font-weight: 600;
}

#header #gnb-pc .gnb-li > a > span:before {
    position: absolute;
    z-index: 1;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--main-);
    content: '';
    opacity: 0;
    transition: width .3s, opacity .3s;
    -webkit-transition: width .3s, opacity .3s;
}

#header.active #gnb-pc .gnb-li > a:hover > span:before,
#header.active #gnb-pc .gnb-li > a:focus > span:before,
#header.active #gnb-pc .gnb-li.active > a > span:before {
    width: 100%;
    opacity: 1;
}

#header #gnb-pc .gnb-li > a:hover > span,
#header #gnb-pc .gnb-li > a:focus > span,
#header #gnb-pc .gnb-li.active > a > span {
    color: var(--main-);
}

#header #gnb-pc .dph2 {
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    opacity: 0;
    width: 100%;
    height: 0;
    border-left: 1px solid #ddd;
    transition: opacity .3s, height .3s;
    -webkit-transition: opacity .3s, height .3s;
}

#header #gnb-pc .gnb-li:last-of-type .dph2 {
    border-right: 1px solid #ddd;
}

#header #gnb-pc .dph2:hover {
    transition: all .3s;
    background: #f1f1f1;
}

#header #gnb-pc .sub-dph2 {
    color: #767676;
    text-align: center;
    line-height: 2.5;
    font-weight: 300;
    font-size: 16px;
    transition: color .3s;
    -webkit-transition: color .3s;
}

#header #gnb-pc .sub-dph2 > a > span {
    position: relative;
    display: inline-block;
}

#header #gnb-pc .sub-dph2 > a > span:before {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #555;
    content: '';
    -webkit-transition: width .3s;
    transition: width .3s;
}

#header #gnb-pc .sub-dph2:hover,
#header #gnb-pc .sub-dph2:focus,
#header #gnb-pc .sub-dph2.active {
    color: #555;
}

#header #gnb-pc .sub-dph2:hover > a > span:before,
#header #gnb-pc .sub-dph2:focus > a > span:before,
#header #gnb-pc .sub-dph2.active > a > span:before {
    width: 100%;
}

#header.active {
    background: #fff;
}

#header.active:before {
    opacity: 1;
    height: 282px;
}

#header.active:after {
    opacity: 1;
    height: 282px;
}

#header.onscr .header-wrap {
    border-bottom: 1px solid #eee;
}

#header.active #gnb-pc .gnb-li > a {
    color: #000;
}

#header.active #gnb-pc .dph2 {
    padding-top: 32px;
    opacity: 1;
    height: 279px;
}

#header.active #gnb-pc .gnb-li.active .dph2 {
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.mob-header {
    position: relative;
}

.mob-header .dimmed {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    transition: opacity 0.3s ease;
}

.mob-header .dimmed.show {
    display: block;
}

/* ✅ 햄버거는 z-index 올림 */
.mob-header .mobBtn {
    position: relative;
    z-index: 1001;
}

/* 햄버거 */
#header .mobBtn {
    position: relative;
    width: 24px;
    height: 18px;
    overflow: hidden;
}

#header .mobBtn span,
#header .mobBtn::before,
#header .mobBtn::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    transition: 0.3s ease;
}

#header .mobBtn span {
    top: 8px;
}

#header .mobBtn::before {
    top: 0;
}

#header .mobBtn::after {
    bottom: 0;
}

#header.on .mobBtn span,
#header.on .mobBtn::before,
#header.on .mobBtn::after {
    background: #111;
}

/* 메뉴 레이어 */
.mob-header .mob-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    z-index: 51;
    padding: 20px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mob-header .mob-nav.open {
    right: 0;
}

/* 닫기 버튼 */
.mob-header .nav-close {
    background: none;
    border: none;
    cursor: pointer;
}

/* nav-top */
.mob-header .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mob-header .nav-top img {
    width: 130px;
}

/* 메뉴 항목 */
.mob-header .nav-list {
    margin-top: 20px;
}

.mob-header .nav-item {
    border-bottom: 1px solid #eee;
}

.mob-header .nav-link {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}

/* 공통 화살표 스타일 */
.mob-header .nav-link .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* ▼ 아래 방향 기본 화살표 */
.mob-header .nav-item:not(.no-sub) .arrow {
    transform: rotate(0deg);
    /* ▼ */
}

.mob-header .nav-item.open .arrow {
    transform: rotate(180deg);
    /* ▲ */
}

/* 👉 오른쪽 방향 화살표는 회전 없음 */
.mob-header .nav-item.no-sub .arrow.right {
    transform: rotate(0deg);
    /* → */
}

.mob-header .sub-menu {
    display: none;
    padding: 10px 0 14px 12px;
    background: #f9f9f9;
}

.mob-header .nav-item.open .sub-menu {
    display: block;
}

.mob-header .sub-menu li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

/* 카피라이트 */
.mob-header .copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

.mob-header .cs-wrap {
    margin-top: 40px;
}

.mob-header .cs-wrap .info h2 {
    font-size: 14px;
    margin-bottom: 20px;
}

.mob-header .cs-wrap .info ul li {
    display: flex;
}

.mob-header .cs-wrap .info ul li:not(:last-child) {
    margin-bottom: 8px;
}

.mob-header .cs-wrap .info ul li .hd {
    width: 80px;
    color: #888;
    font-size: 12px;
}

.mob-header .cs-wrap .info ul li .ds {
    flex: 1;
    color: #888;
    text-align: right;
    font-size: 12px;
}

@media (min-width:769px) {
    .mobBtn {
        display: none;
    }

    .res_btn .pc-res {
        display: block !important;
    }

    .mob-res {
        display: none !important;
    }

    .mob-res-Btn {
        display: inherit;
    }
}

@media (max-width:768px) {

    #header,
    #header.on {
        background: #111;
    }

    #header.on .logo > a:before {
        background: url(../images/logo-w.svg) no-repeat 0 0;
    }

    #header.on .mobBtn span,
    #header.on .mobBtn::before,
    #header.on .mobBtn::after {
        background: #fff;
    }

    .mob-res-Btn {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .mob-res-Btn .df {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    #header .header-wrap,
    #header {
        height: 60px;
    }

    .res_btn .pc-res {
        display: none !important;
    }

    #header .logo > a:before {
    background: url(../images/logo-w.svg) no-repeat 0 0;
}
    
    #header .nav-wrap {
        display: none;
    }

    #header .header-wrap {
        margin: 0 20px;
    }

    #header .logo > a {
        width: 130px;
        height: 18px;
    }

    #header .logo > a:before {
        background-size: 130px !important;
    }

    .mobBtn {
        display: block;
        cursor: pointer;
    }

    #header .res_btn {
        position: inherit;
        top: inherit;
        transform: none;
        right: inherit;
    }

    .res_btn .mob-res {
        display: block;
    }

    .res_btn .mob-res .df {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



/* 서브  ***************************************************/

.sub-container .sub-cont {
    padding: 120px 0;
}

.sub-container .sub-inner {
    position: relative;
    height: 460px;
    background: #eee;
    max-width: 1800px;
    margin: 100px auto 0;
}

.sub-container .sub-inner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0, .3);
    z-index: 2;
}

.sub-container .sub-inner .sub-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: calc(100% - 60px);
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}


.sub-container .sub-inner .sub-title h2 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--engfont1);
}

.sub-container .sub-inner .sub-title p {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
}

.sub-container .sub-inner .subbg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-position: 50% 50%;
}

.sub-container .sub-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    z-index: 10;
    background: rgba(17, 17, 17, 0.1);
}

.sub-container .sub-nav .sub-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sub-container .sub-nav .menu-item {
    position: relative;
}

.sub-container .sub-nav .menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 160px;
    height: 70px;
    line-height: 70px;
    padding-right: 26px;
    border-right: 1px solid #fff;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
}

.sub-container .sub-nav .menu-item.on > a .arrow {
    transform: rotate(180deg);
}

.sub-container .sub-nav .menu-item > a:hover {
    color: #fff;
}

.sub-container .sub-nav .sub-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    flex-direction: column;
    z-index: 10;
}

.sub-container .sub-nav .sub-menu .dropdown li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}

.sub-container .sub-nav .sub-menu .dropdown li a:hover {
    background: #f5f5f5;
    color: #000;
}

.sub-container .sub-nav .sub-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.sub-container .sub-nav .sub-depth {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 70px;
}

.sub-container .sub-nav .sub-depth .sub-depth-btn {
    display: none;
}

.sub-container .sub-nav .sub-depth .mb-dropdown li {
    display: inline-block;
    height: 70px;
    padding: 0 20px;
}

.sub-container .sub-nav .sub-depth .mb-dropdown li a {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: block;
    height: 70px;
    line-height: 70px;
    opacity: .6;
}

.sub-container .sub-nav .sub-depth .mb-dropdown li a.on {
    opacity: 1;
}

.sub-container .sub-nav .sub-depth .mb-dropdown li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 0;
    height: 2px;
    background: #e8a91a;
    transition: width 0.3s ease;
}

.sub-container .sub-nav .sub-depth .mb-dropdown li a:hover::after {
    width: 100%;
}

.sub-container .sub-nav .sub-depth .mb-dropdown li a.on::after {
    width: 100%;
}

.sub-container .sub-nav .dropdown {
    display: none;
}

.sub-container .sub-nav .dropdown.on,
.sub-container .sub-nav .mb-dropdown.on {
    display: flex;
}

@media (max-width:768px) {
    .sub-container .sub-cont {
        padding: 60px 0;
    }

    .sub-container .sub-inner {
        margin: 60px auto 0;
        height: 400px;
    }

    .sub-container .sub-nav .sub-nav-inner {
        gap: 0;
    }

    .sub-container .sub-nav .menu-item {
        display: inline-block;
        width: 100%;
    }

    .sub-container .sub-nav .menu-item > a {
        border-right: none;
        width: 100%;
        padding-right: 0;
        padding-left: 20px;
        gap: 15px;
        font-size: 17px;
    }

    .sub-container .sub-nav .menu-item > a .arrow {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        /* 모바일에선 회전 대신 위치 고정 */
    }

    .sub-container .sub-nav .menu-item.on > a .arrow {
        transform: translateY(-50%) rotate(180deg);
    }

    .sub-container .sub-nav .sub-menu .dropdown {
        width: 100%;
    }

    .sub-container .sub-nav .sub-menu {
        border-right: 1px solid #eee;
        display: block;
    }

    .sub-container .sub-nav .sub-depth {
        display: flex;
        justify-content: center;
    }

    .sub-container .sub-nav .sub-menu,
    .sub-container .sub-nav .sub-depth {
        width: 50%;
    }

    .sub-container .sub-inner .sub-title .df {
        padding-left: 40px;
    }

    .sub-container .sub-inner .sub-title h2 {
        font-size: 34px;
    }

    .sub-container .sub-inner .sub-title p {
        font-size: 16px;
    }

    .sub-container .sub-nav .sub-depth .mb-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        width: 100%;
        border: 1px solid #ddd;
        border-top: none;
        display: none;
        flex-direction: column;
        z-index: 10;
    }

    .sub-container .sub-nav .sub-depth .sub-depth-btn {
        display: block;
    }

    .sub-container .sub-nav .sub-depth .mb-dropdown.on {
        display: flex;
    }

    .sub-container .sub-nav .sub-depth .mb-dropdown li {
        display: inherit;
        height: auto;
        padding: 0;
    }

    .sub-container .sub-nav .sub-depth .mb-dropdown li a {
        display: block;
        padding: 10px 14px;
        font-size: 14px;
        color: #555;
        text-decoration: none;
        white-space: nowrap;
        height: inherit;
        line-height: inherit;
    }

    .sub-container .sub-nav .sub-depth .mb-dropdown li a::after {
        display: none;
    }
}



/* 푸터 ***********************************************/
.quick_nav {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 50;
    overflow: hidden;
    border-radius: 50px;
    background: #1e434a;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all .3s;
}

.quick_nav.on {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.quick_nav ul {
    display: flex;
    flex-direction: column;
}

.quick_nav ul li {
    display: inline-block;
    position: relative;

}

.quick_nav ul li:not(:last-child):after {
    content: "";
    position: absolute;
    display: block;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.quick_nav ul li a {
    display: block;
    padding: 20px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.quick_nav ul li a > strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-size: 13px;
}

.quick_nav ul li a > p {
    color: #fff;
    font-weight: 500;
}

.quick_nav ul li a .nav {
    text-align: center;
}

.quick_nav ul li a .nav p {
    margin-top: 8px;
    font-size: 13px;
    color: #fff;
}

.quick_nav ul li a .nav span img {
    width: 32px;
}

.quick_nav ul li a .top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #40747e;
}

.quick_nav ul li a .top img {
    width: 20px;
}

#footer {
    padding: 100px 0;
    background: #F2EEE8;
}

#footer .inner {
    padding: 0 80px;
}

#footer .inner .ft_top,
#footer .inner .ft_addr {
    margin-bottom: 40px;
}

#footer .inner .ft_top .dflx {
    display: flex;
    justify-content: space-between;
}

#footer .inner .ft_top .dflx .nav ul {
    display: flex;
}

#footer .inner .ft_top .dflx .nav ul li a {
    color: #999;
}

#footer .inner .ft_top .dflx .nav ul li:first-child a {
    color: #333;
    font-weight: 600;
}

#footer .inner .ft_top .dflx .nav ul li: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: #333;
    font-size: 24px;
}

#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 .dflx {
    display: flex;
    justify-content: space-between;
}

#footer .inner .ft_bot .dflx .right ul {
    display: flex;
    gap: 4px;
}

#footer .inner .ft_bot .dflx .right ul li a {
    font-family: var(--playfont);
    font-weight: 700;
    color: #888;
    display: inline-block;
    padding: 4px 8px;
    background: #f6f6f6;
    border-radius: 4px;
    font-size: 12.5px;
}

#footer .inner .ft_bot .dflx .right ul li:last-child a {
    color: #888;
}

#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: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) {
    .quick_nav {
        display: none;
    }

    .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_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;
    }

    #footer .inner .ft_bot .dflx {
        flex-direction: column;
        gap: 20px;
    }
}
