@charset "utf-8";

#container {
    margin-top: 123px !important;
}

#sub-container {
    margin-top: 123px !important;
    margin-bottom: 5em !important;
}

@media screen and (max-width: 1380px) {
    #container {
        margin-top: 80px !important;
    }

    #sub-container {
        margin-top: 80px !important;
    }
}

@media screen and (max-width: 768px) {
    #container {
        margin-top: 60px !important;
    }

    #sub-container {
        margin-top: 60px !important;
    }
}


/* //// 헤더 //// */
header {
    width: 100%;
    height: 123px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #E6E6E6;
    box-sizing: border-box;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
}

header .hd_top {
    width: 100%;
    height: 43px;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

header .inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 80px;
}

header .inner .wrap {
    height: 100%;
}

header .mob_lnb {
    display: none;
}

@media screen and (max-width: 1380px) {
    header {
        height: 80px;
    }

    header .hd_top {
        display: none;
    }

    header .inner {
        height: 100%;
    }

    header .inner .wrap .lnb {
        display: none;
    }

    header .logo {
        width: 170px;
    }
}

@media only screen and (max-width: 768px) {
    header {
        height: 60px;
    }

}

/* 헤더 - pc - 헤더 top - 회원전용서비스 */
header .hd_top .wrap {
    height: 100%;
}

.hd_top_left {
    display: flex;
    align-items: center;
    height: 100%;
}

.hd_top_left>div {
    width: 128px;
    color: #FFF;
    font-weight: 700;
    height: 100%;
    padding-right: 27px;
    border-radius: 0 0 20px 0;
    position: relative;
}

.hd_top_left>div:before {
    content: '';
    position: absolute;
    width: 700px;
    height: 100%;
    background: linear-gradient(90deg, #2AC9A4 48.53%, #2063D0 90%);
    border-radius: 20px 0 20px 20px;
    right: 0;
    top: 0;
}

.hd_top_left>div span {
    display: block;
    position: absolute;
    left: 0;
    top: 49%;
    transform: translateY(-49%);
}

.mbs_service {
    padding: 0 27px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.mbs_link {
    position: relative;
}

.mbs_link:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 2px;
    background: #bbb;
    right: -16px;
    top: 8px;
}

.mbs_link:last-child:after {
    display: none;
}

.mbs_link:hover {
    color: #797979;
}

/* 헤더 top - 로그인/회원가입 */
.hd_top_right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hd_top_right a {
    position: relative;
}

.hd_top_right a:first-child:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    border-radius: 2px;
    background: #dadada;
    right: -16px;
    top: 2px;
}

/* 헤더 - pc - 메뉴 */
.lnb {
    height: 80px;
    padding: 0 10px;
}

div.menu_bg {
    position: absolute;
    left: 0;
    top: 123px;
    width: 100vw;
    background: #fff;
    z-index: -1;
    height: 0;
    /* transition: height 0.3s ease; */
}

nav.menu {
    width: 100%;
    height: 80px;
    transition: 0.2s all;
}

nav.menu>.menu_wrap {
    height: 100%;
}

nav.menu ul.menus {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

nav.menu ul.menus .depth1 {
    height: 100%;
}

nav.menu ul.menus .depth1>a {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0 20px;
}

nav.menu ul.menus .depth1.over>a {
    color: #126BDA;
}

/* 서브페이지에서 현재 메뉴 색상 변경 */
.active-menu > a {
    color: #126BDA !important;
}

nav.menu ul.menus .depth1>a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 4px;
    background: #126BDA;
    left: 0;
    bottom: 0;
    transition: 0.2s all;
}

nav.menu ul.menus .depth1.over>a::after {
    width: 100%;
    left: 0;
}

nav.menu ul.menus .depth1:nth-child(1)>a {
    width: 176px;
}
nav.menu ul.menus .depth1:nth-child(2)>a {
    width: 218px;
}
nav.menu ul.menus .depth1:nth-child(3)>a {
    width: 150px;
}
nav.menu ul.menus .depth1:nth-child(4)>a {
    width: 199px;
}
nav.menu ul.menus .depth1:nth-child(5)>a {
    width: 115px;
}

/* depth2 영역 */
nav.menu ul.menus .depth1 .depth2 {
    display: none;
    width: 100%;
    overflow: hidden;
    z-index: 9999;
    border-right: 1px solid #f1f1f1;
    padding: 15px 0px;
    box-sizing: border-box;
}

nav.menu ul.menus .depth1:nth-child(1) .depth2 {
    border-left: 1px solid #f1f1f1;
}

nav.menu ul.menus .depth1.over .depth2 {
    top: 100%;
    background: #F7F7F7;
}

nav.menu ul.menus .depth1.over .depth2 .depth2_list .depth2_item.over>a {
    color: #1666FA;
}

nav.menu ul.menus .depth1 .depth2 .depth2_list {
    height: 100%;
}

nav.menu ul.menus .depth1 .depth2 .depth2_list .depth2_item>a {
    color: #222;
    font-size: 1.05rem;
    display: block;
    font-weight: 400;
    text-align: left;
    padding: 15px 15px 8px 15px;
    box-sizing: border-box;
}

/* depth3 영역 */
nav.menu ul.menus .depth1 .depth2 .depth3 {
    width: 100%;
}

nav.menu ul.menus .depth1 .depth2 .depth3 .depth3_list .depth3_item>a {
    display: block;
    padding: 4px 15px 4px 25px;
    color: #707070;
    position: relative;
    font-size: 15px;
}

nav.menu ul.menus .depth1 .depth2 .depth3 .depth3_list .depth3_item>a:before {
    content: '';
    width: 3px;
    height: 3px;
    background: #cccccc;
    position: absolute;
    left: 16px;
    top: 12px;
}

nav.menu ul.menus .depth1 .depth2 .depth3 .depth3_list .depth3_item.over>a {
    color: #222;
}

/* 헤더 - pc - 우측 버튼 세트 */
header .right.pc {
    display: flex;
    align-items: center;
    gap: 1em;
}

/* // 헤더 - 모바일 */
.mob_lnb {
    display: none;
    text-align: right;
    padding-right: 25px;
}

.mob_lnb .mob_menu {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: -1;
}

.mob_lnb .mob_menu::before {
    position: fixed;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .0);
    transition: all 0.5s;
}

.mob_lnb .mob_menu.open {
    visibility: visible;
    z-index: 9999;
}

.mob_lnb .mob_menu.open::before {
    background: rgba(0, 0, 0, .7);
}

.mob_lnb .mob_menu .menu_top {
    width: 100%;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

/* 헤더 - 모바일 - 닫기 버튼 */
.mob_lnb .mob_menu .menu_top .mob_close {
    display: none;
    position: absolute;
    right: 16px;
    height: 100%;
    align-items: center;
    gap: 1em;
}

.mob_lnb .mob_menu.open .menu_top .mob_close {
    display: flex;
}

.mob_lnb .mob_menu .menu_top .mob_close a {
    font-size: 1.2em;
}

.mob_lnb .mob_menu .menu_top .closeMobPop {
    font-size: 1.8em;
    margin: 0;
    margin-bottom: 3px;
}

.mob_menu .mob_searchBox_wrap {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 0.8em;
    box-sizing: border-box;
}

/* 헤더 - 모바일 - 검색창 */
.mob_searchBox_wrap .mob_searchBox {
    width: calc((100% - 1em) - 220px);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
}

.mob_searchBox_wrap .mob_searchBox .mob_searchBox_inner {
    width: 100%;
    background: #fff;
    border: 1px solid #126BDA;
    border-radius: 50px;
    padding: 5px;
    align-items: center;
    margin-right: 0.8rem;
}

.mob_searchBox_wrap .mob_searchBox .mob_searchBox_inner form {
    width: 98%;
    justify-content: center;
}

.mob_searchBox_wrap .mob_searchBox .mob_searchBox_inner input {
    height: 24px;
    display: block;
    width: 98%;
    outline: 0;
    border: 0;
    font-size: 0.875em;
    padding: 0 2%;
}

.mob_searchBox_wrap .mob_searchBox .mob_searchBox_inner button {
    display: block;
    width: 120px;
    height: 48px;
    margin: -48px -2px 0 0;
    padding-right: 30px;
    background: url("../images/main/icon_search.png") no-repeat 75px 19px #126BDA;
    border-radius: 50px;
    font-size: 0.875em;
    color: #fff;
}

.mob_searchBox_btn button {
    width: auto;
    height: 42px;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    font-size: 1.3em;
    margin-right: 8px;
    /* transition: all 0.3s ease; */
}

.mob_searchBox_wrap .mob_searchBox_btn_close a {
    font-size: 1.3em;
    color: #6b6b6b;
}

.mob_searchBox_wrap .mob_search_btn_close {
    position: absolute;
    right: 50%;
    top: 20px;
    z-index: 1;
    transform: translateX(500px);
    -webkit-transform: translateX(500px);
}

@media screen and (max-width: 1380px) {
    /* 검색기능 대신 로고 삽입 */
    .mob_lnb .mob_menu .menu_top {
        height: 80px;
    }

    .mob_searchBox_wrap .mob_searchBox .logo {
        padding: 5px;
    }

    .mob_searchBox_wrap .mob_searchBox .logo a {
        display: flex;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .mob_lnb .mob_menu .menu_top {
        height: 60px;
    }
}

@media screen and (max-width: 1080px) {
    .mob_searchBox_wrap .mob_searchBox {
        width: calc((100% - 1em) - 195px);
    }
}

@media screen and (max-width: 480px) {
    .mob_menu .mob_searchBox_wrap {
        padding: 0.5em 0.8em;
    }
    
    .mob_searchBox_wrap .mob_searchBox {
        width: calc((100% - 1em) - 130px);
    }

    .mob_searchBox_wrap .mob_searchBox .mob_searchBox_inner {
        padding: 0 5px;
    }
}

/* 헤더 - 모바일 - 로그인/회원가입 */
.mob_login_wrap {
    padding-right: 50px;
    height: 100%;
}

.mob_login_wrap .mob_login_btn_wr,
.mob_login_wrap .mob_login_btn_wr_after {
    display: none;
}

.mob_login_wrap .mob_login_btn_wr.on,
.mob_login_wrap .mob_login_btn_wr_after.on {
    display: block;
}

.mob_login_wrap button {
    font-size: 1.2rem;
    font-weight: 500;
}

.mob_login_btn_wr ul,
.mob_login_btn_wr_after ul {
    gap: 10px;
}

.mob_login_btn_wr ul li {
    position: relative;
}

.mob_login_btn_wr .mob_login_btn,
.mob_login_btn_wr_after .myPage {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #126BDA;
}

.mob_login_btn_wr .mob_join_btn button,
.mob_logout_btn button {
    padding: 0.2em 1em;
    border-radius: 50px;
    height: 36px;
    color: #126BDA;
    background: #E3F1FD;
}

@media screen and (max-width: 480px) {
    .mob_login_wrap {
        padding-right: 40px;
    }

    .mob_login_btn_wr ul,
    .mob_login_btn_wr_after ul {
        gap: 5px;
    }

    .mob_login_btn_wr .mob_login_btn,
    .mob_login_btn_wr_after .myPage {
        width: 25px;
        height: 25px;
    }

    .mob_login_btn_wr .mob_login_btn img,
    .mob_login_btn_wr_after .myPage img {
        transform: scale(0.8);
    }

    .mob_login_btn_wr .mob_join_btn button,
    .mob_logout_btn button {
        height: 30px;
        font-size: 1rem;
    }
}


/* 헤더 - 모바일 - 메뉴 */
.mob_lnb .mob_menu .menu_inner {
    position: fixed;
    height: 100%;
    background: #FFF;
    width: 0;
    right: 0;
    top: 0;
    z-index: 10000;
    display: block;
    transition: 0.2s all;
    padding: 0;
}

.mob_lnb .mob_menu.open .menu_inner {
    width: 70%;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap {
    position: relative;
    width: 100%;
    height: calc(100% - 4em);
}

.mob_lnb .mob_menu .menu_inner .menu_wrap::before {
    position: absolute;
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    border-radius: 0 40px 0 0;
    background: linear-gradient(0deg, #2AC9A4 0%, #126BDA 100%);
    z-index: -1;
    /* border-right: 1px solid #ddd; */
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
    width: 40%;
    text-align: left;
    font-size: 1.3em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1:first-child {
    border-radius: 0 40px 0 0;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1>a {
    color: #fff;
    padding: 1.5em 0.8em;
    display: block;
    width: 100%;
    height: 100%;
    font-weight: 500;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over {
    border-bottom: 3px solid rgba(255, 255, 255, 1);
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over>a {
    font-weight: 700;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 .depth2,
.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 .depth3 {
    display: none;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 {
    display: block;
    position: absolute;
    width: 60%;
    height: 100%;
    left: 40%;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_list {
    margin-bottom: 7rem;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item {
    width: 100%;
    text-align: left;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item>a {
    display: block;
    width: 92%;
    height: 100%;
    padding: 1.5em 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1em;
    font-family: 'Pretendard';
    font-weight: 600;
    color: #3a3a3a;
    margin: 0 auto;
    position: relative;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item.hasChild > a::after {
    position: absolute;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: 'xeicon';
    content: "\e941";
    border: 1px solid #126BDA;
    border-radius: 20px;
    width: 25px;
    height: 25px;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    color: #126BDA;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    transition: all 0.2s;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item.hasChild.active > a::after {
    content: "\e944";
    color: #FFF;
    background: #126BDA;
    border: 1px solid #126BDA;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item.active>a {
    color: #126BDA;
    border-bottom: 1px solid #126BDA;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item .depth3 {
    border-bottom: 1px solid #ddd;
    padding: 0.5em 1.5em;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item .depth3 li {
    padding: 0.2em;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item .depth3 a {
    font-size: 0.85em;
    font-family: 'Pretendard';
    color: #272727;
}

.mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item .depth3 a:hover {
    color: #000;
}

@media screen and (max-width: 480px) {
    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item.hasChild > a::after {
        width: 20px;
        height: 20px;
        font-size: 13px;
        line-height: 20px;
    }
}


/* 헤더 - 모바일 - 플로팅 메뉴 */
.mob_lnb .innerFloating {
    width: 40%;
    text-align: center;
    margin-top: 20px;
}

.mob_lnb .innerFloating ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mob_lnb .innerFloating ul li {
    box-sizing: border-box;
    width: 100%;
}

.mob_lnb .innerFloating ul li a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
}

.mob_lnb .innerFloating ul li div {
    color: #fff;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.mob_lnb .innerFloating ul li div.imgWr {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    background: #E0F5FE;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mob_lnb .innerFloating ul li div.imgWr img {
    transform: scale(0.7);
}

.mob_lnb .innerFloating ul li:nth-child(2n) div.imgWr {
    background: #DAF6EC;
}

.mob_lnb .innerFloating ul li div.imgWr img {
    transition: all 0.3s;
}

.mob_lnb .innerFloating ul li:hover img {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .mob_lnb .innerFloating ul {
        gap: 5px;
    }

    .mob_lnb .innerFloating ul li div {
        font-size: 0.9rem;
    }
    
    .mob_lnb .innerFloating ul li div.imgWr {
        width: 25px;
        height: 25px;
    }
    
    .mob_lnb .innerFloating ul li div.imgWr img {
        transform: scale(0.6);
    }
}


@media screen and (max-width: 1380px) {
    header .mob_lnb {
        display: flex;
    }

    header .inner .right.pc {
        display: none;
    }

    header .inner .right.mob {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .mob_lnb .mob_menu.open .menu_inner {
        width: 100%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        font-size: 1.1em;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        width: 30%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap::before {
        width: 30%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 {
        width: 70%;
        left: 30%;
    }

    .mob_lnb .mob_menu .menu_inner .login_info_btn_wrap {
        width: 30%;
    }

    .mob_lnb .innerFloating {
        width: 30%;
    }
}

@media screen and (max-width: 600px) {
    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        width: 40%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap::before {
        width: 40%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 {
        width: 60%;
        left: 40%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item.hasChild::after {
        transform: scale(0.7);
    }

    .mob_lnb .mob_menu .menu_inner .login_info_btn_wrap {
        width: 40%;
    }

    .mob_lnb .innerFloating {
        width: 40%;
    }
}

@media screen and (max-width: 360px) {
    .mob_searchBox_wrap .mob_searchBox .mob_searchBox_inner {
        /* width: 80%; */
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        width: 45%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap::before {
        width: 45%;
    }

    .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 {
        width: 55%;
        left: 45%;
    }

    .mob_lnb .mob_menu .menu_inner .login_info_btn_wrap {
        width: 45%;
    }

    .mob_lnb .innerFloating {
        width: 45%;
    }
}

@media screen and (max-width: 300px) {
    .mob_lnb .mob_menu .menu_top .link a {
        display: inline-block;
        margin-right: 0.3em;
    }
}

/* 헤더 - 모바일 - 로그인/로그아웃, 개인정보 */
.mob_lnb .mob_menu .menu_inner .login_info_btn_wrap {
    left: 0;
    box-sizing: border-box;
    justify-content: center;
    width: 30%;
    padding: 20px 0;
}

.mob_lnb .mob_menu .menu_inner .login_info_btn_wrap>div {
    display: none;
}

.mob_lnb .mob_menu .menu_inner .login_info_btn_wrap>div.on {
    display: block;
}

.mob_lnb .mob_menu .menu_inner .login_info_btn_wrap button {
    color: #fff;
    padding: 5px 15px;
    border: 1px solid #fff;
    border-radius: 30px;
    height: 28px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob_lnb .mob_menu .menu_inner .login_info_btn_wrap button:hover {
    background: #fff;
    color: #000;
}

.mob_lnb .mob_menu .menu_inner .login_after_info_btn ul {
    gap: 0 1em;
}

.mob_lnb .mob_menu .menu_inner .login_after_info_btn .myPage a {
    height: 28px;
    width: 28px;
    border-radius: 28px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .lnb .mob_lnb .mob_menu.open .menu_inner {
        width: 100%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 600px) {
    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        width: 40%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap::before {
        width: 40%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 {
        width: 60%;
        left: 40%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 .depth2_item.hasChild::after {
        transform: scale(0.7);
    }

    .lnb .mob_lnb .mob_menu .menu_inner .login_info_btn_wrap {
        width: 40%;
    }
}

@media screen and (max-width: 390px) {
    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1 {
        width: 50%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap::before {
        width: 50%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .menu_wrap .depth1.over .depth2 {
        width: 50%;
        left: 50%;
    }

    .lnb .mob_lnb .mob_menu .menu_inner .login_info_btn_wrap {
        width: 50%;
    }
}

@media screen and (max-width: 300px) {
    .lnb .mob_lnb .mob_menu .menu_top .link a {
        display: inline-block;
        margin-right: 0.3em;
    }
}


/* //// 기본 모달 팝업 //// */
.modal_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 검은 반투명 배경 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal_popup .popup_wrap {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 800px;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    max-height: 80%;
    border-radius: 10px;
    max-width: 90%;
    margin: 0 auto;
}

.modal_popup.wd500 .popup_wrap {
    width: 500px;
    height: auto !important;
}

.modal_popup .popup_tit {
    background: #126BDA;
    height: 55px;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02875rem;
    padding: 0 1em;
}

.modal_popup .popup_tit div:first-child {
    max-width: 90%; /* 타이틀이 길어질 경우 두 줄로 떨어지게 */
}

.modal_popup .popup_content {
    padding: 1.5em;
    max-height: 80%;
    overflow: auto;
    background: #fff;
}

.modal_popup .popup_cnt_tit {
    color: #121212;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: -0.0275rem;
}

.modal_popup .popup_cnt_inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding-bottom: 10px;
    border-bottom: 1px solid #CACBDA;
}

.modal_popup .popup_btnSet {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5em;
}

@media screen and (max-width: 301px) {
    .modal_popup .popup_cnt_tit span.br {
        display: block;
    }
}

/* // 팝업 스타일 추가 - 스크롤, 버튼 고정 // */
.modal_popup.btnFixed .popup_cnt_tit.small {
    font-size: 1.125rem;
}

.modal_popup.btnFixed .popup_cnt_tit {
    padding-bottom: 10px;
}

.modal_popup.btnFixed .popup_cnt_scroll {
    height: 400px;
    max-height: 45vh;
    overflow: auto;
}

/* 핸드폰 가로모드일 때를 위함 */
@media screen and (max-height: 500px) {
    .modal_popup .popup_cnt_inputs {
        max-height: 35vh;
    }

    .modal_popup.btnFixed .popup_cnt_scroll {
        max-height: 30vh;
    }

    .modal_popup .popup_btnSet {
        margin-top: 10px !important;
    }
}

/* 팝업 내부 테이블 스타일 */
.popup_table {
    width: 100%;
    margin: 10px 0;
}

.popup_cnt_scroll.borderTB {
    border-bottom: 1px solid #A7A9B9;
    border-top: 1px solid #A7A9B9;
}

.modal_popup .tableWr div.add {
    padding: 0 0.5em 1em 0.5em;
    color: #717171;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.03rem;
}

.tableWr .popup_table th,
.tableWr .popup_table td {
    padding: 0.5em;
    text-align: left;
}

.tableWr .popup_table th {
    color: #121212;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.025rem;
    width: 25%;
}

.tableWr .popup_table td {
    color: #121212;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.07313rem;
}

.tableWr .popup_table td input,
.tableWr .popup_table td select {
    font-size: 1rem;
}

.tableWr .popup_table tr.extend {
    display: none;
}

/* 팝업 내부 테이블 - 더보기 버튼 */
.modal_popup.btnFixed .btn_extend {
    display: flex;
    justify-content: flex-end;
}

.modal_popup.btnFixed .btn_extend .inner {
    border-radius: 0 0 10px 10px;
    background: #274071;
    color: #fff;
    width: 110px;
    padding: 0.5em;
    display: flex;
    gap: 0.5em;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .popup_table {
        margin: 0;
    }

    .tableWr .popup_table tr,
    .tableWr .popup_table th,
    .tableWr .popup_table td {
        display: block;
        width: 100% !important;
    }

    .tableWr .popup_table th {
        background: #f9f9f9;
        border-radius: 5px;
    }

    .tableWr .popup_table td {
        border-top: 1px solid #dddddd;
        padding: 1em 0.5em;
        word-break: break-all; /* 가로스크롤 하지 않도록 */
    }

    .modal_popup.btnFixed .btn_extend .inner {
        width: 100px;
    }
}


/* //// 푸터 //// */
#footer {
    background: #fff;
    color: #121212;
    padding: 40px 0;
    box-sizing: border-box;
    border-top: 1px solid #F1F1F1;
    font-weight: 500;
}

#footer .wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

/* 푸터 - 로고 / 주소 */
#footer .top {
    color: #6A6D72;
    font-size: 1.1rem;
}

#footer .top>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#footer .f_address {
    gap: 14px;
    text-align: right;
}

/* 푸터 - 약관 / sns */
#footer .bottom .f_info {
    color: #1D1D1D;
}

#footer .bottom .f_info ul {
    gap: 25px;
    margin-bottom: 3px;
}

#footer .bottom .f_info .blue {
    color: #126BDA;
}

#footer .bottom .f_info div {
    color: #555555;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 20px;
}

#footer .bottom .f_sns {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

#footer .bottom .f_sns a {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #e4e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .bottom .f_sns a:hover {
    background: #f8f8f8;
}

/* 푸터 - 패밀리사이트 */
#footer .bottom {
    align-items: flex-end;
}

.f_link {
    gap: 1em;
}

.f_link .nice-select {
    height: 50px;
    line-height: 50px;
    border: 1px solid #e4e4e4;
    width: 200px;
}

.f_link .nice-select .list {
    top: unset;
    bottom: 100%;
    width: 100%;
}

.f_link .nice-select .list li.disabled {
    display: none;
}

@media screen and (max-width: 860px) {
    #footer {
        padding: 20px 0;
    }

    #footer .wrap {
        gap: 20px;
    }

    #footer .top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #footer .f_address {
        gap: 14px;
        text-align: left;
    }

    #footer .bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #footer .bottom .f_link {
        order: 1;
    }

    #footer .bottom .f_info {
        order: 2;
    }

    #footer .bottom .f_sns a {
        width: 40px;
        height: 40px;
    }

    .f_link .nice-select {
        height: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 360px) {
    #footer .bottom .f_link {
        width: 100%;
    }

    .f_link .family {
        width: 100%;
    }
}

/* //// 하단 배너 모음 //// */
#banner_collect {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #E2E2E2;
}

#banner_collect .wrap>.flexSt {
    justify-content: space-between;
    gap: 30px;
}

#banner_collect .title {
    box-sizing: border-box;
}

#banner_collect .title h3 {
    font-size: 1.18em;
    font-weight: 500;
    color: #000;
}

#banner_collect .btns,
#banner_collect .btns .btn {
    display: inline-block;
    cursor: pointer;
}

#banner_collect .btns .btn {
    padding: 0 3px;
}

#banner_collect .btns .btn button {
    font-size: 1em;
}

#banner_collect img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.banner_collect_wrap .btns .btn.btn_pause .xi-play {
    display: none;
}

.banner_collect_wrap .btns .btn.btn_pause .xi-pause {
    display: block;
}

.banner_collect_wrap .btns .btn.btn_pause.active .xi-play {
    display: block;
}

.banner_collect_wrap .btns .btn.btn_pause.active .xi-pause {
    display: none;
}

.banner_cts {
    width: calc(100% - 200px);
}

.banner_cts .swiper-slide {
    width: unset;
}

.banner_cts .banner_box {
    height: 70px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 800px) {
    #banner_collect .wrap>.flexSt {
        gap: 0;
    }

    #banner_collect .title {
        padding-top: 15px;
    }

    #banner_collect img {
        max-width: 90%;
        max-height: 90%;
    }

    .banner_cts {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .banner_cts .banner_box {
        height: 60px;
    }
}


/* //// 우측 플로팅 팝업 //// */
.floating_pop {
    position: fixed;
    right: 0;
    top: 18%;
    text-align: center;
    z-index: 99;
}

.floating_pop ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-sizing: border-box;
    width: 100px;
    border-radius: 40px 0 0 40px;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.2em 0.8em;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

.floating_pop ul li {
    box-sizing: border-box;
}

.floating_pop ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
}

.floating_pop ul li div {
    color: #555;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.floating_pop ul li div.imgWr {
    width: 35px;
    height: 35px;
    border-radius: 40px;
    background: #E0F5FE;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating_pop ul li div.imgWr img {
    transform: scale(0.7);
}

.floating_pop ul li:nth-child(2n) div.imgWr {
    background: #DAF6EC;
}

.floating_pop ul li div.imgWr img {
    transition: all 0.3s;
}

.floating_pop ul li:hover img {
    margin-bottom: 10px;
}

.floating_pop .topBtn {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #126BDA;
    font-weight: 400;
    box-shadow: none;
    margin: 0 auto;
    margin-top: 20px;
    transition: all 0.3s;
}

.floating_pop .topBtn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating_pop .topBtn:hover {
    background: #000;
}

@media screen and (max-width: 1380px) {
    .floating_pop {
        top: unset;
        bottom: 8%;
        right: 4%;
    }

    .floating_pop ul {
        display: none;
    }

    .floating_pop .topBtn {
        box-shadow: 0px 0px 11.7px rgba(0, 23, 115, 0.36);
    }
}

@media screen and (max-width: 860px) {
    .floating_pop .topBtn {
        width: 45px;
        height: 45px;
    }
}