@charset "utf-8";
/* 폰트 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900; 1,100..900&display=swap');

@font-face {
    font-family: 'NanumHuman';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'NanumHuman';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFLight.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'NanumHuman';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFRegular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'NanumHuman';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFBold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'NanumHuman';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'NanumHuman';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2501-1@1.1/NanumHumanTTFHeavy.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'SebangGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SebangGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2104@1.0/SEBANG_Gothic_Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* ******************* *
* GLOBAL
* ******************* */
:root {
    --font-Pretendard: "Pretendard", sans-serif;
    --font-NotoSans: "Noto Sans", sans-serif;
    --font-NanumHuman: "NanumHuman";
    --font-SebangGothic: "SebangGothic";
    --color-main: #B97E54;
    --color1: #F6EBD7;
    --color-gray: #696969;
}

html,
body {
    font-size: 20px;
    font-family: var(--font-Pretendard);
    letter-spacing: -0.038rem;
    line-height: 1.4;
    word-break: keep-all;
    word-wrap: break-word;
    color: #000;
    touch-action: auto;
    overscroll-behavior: auto;
    text-size-adjust: 100%;
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: visible;
}

html.locked,
body.locked {
    overflow: hidden;
}

body::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: .35s;
    z-index: 100
}

body.locked::after {
    opacity: 1;
    pointer-events: auto;
}

body {}

.cinner {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
}

.line-br {
    display: block;
}


/* 구글 번역 상단 바 제거 */
.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* iframe 자체 숨김 */
iframe.goog-te-banner-frame {
    display: none !important;
}

@media all and (max-width: 1399px) {
    /* .cinner { width: auto; margin: 0 50px; } */
}

@media all and (max-width: 1024px) {

    html,
    body {
        font-size: 18px;
    }

    /* .cinner { margin: 0 30px; } */
}

@media all and (max-width: 640px) {

    html,
    body {
        font-size: 16px;
    }

    /* .cinner { margin: 0 20px; } */
}

/* scroll Bar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-main);
}

body::-webkit-scrollbar-track {
    background-color: #f9f9f9;
}

.nomal_img {
    display: block
}

.sub_img {
    display: none
}

#header.sub-hd {
    background: #fff;
    border-bottom: 1px solid #e5e5e5
}

#header.sub-hd .nomal_img {
    display: none
}

#header.sub-hd .sub_img {
    display: block
}

#header.sub-hd .nav__btn a {
    background: url(../img/common/menu_icon_sub.png)
}

#header.sub-hd #util>ul>li>a {
    color: #666
}

#header.sub-hd .main-nav__depth1 .mn-a1 {
    color: #000
}

#header.sub-hd .main-nav__depth1 .mn-a1::before {
    background: #000
}

.hd_login li {
    border-left: 0
}

#header.sub-hd .lang img {
    filter: none
}

/* ******************* *
* HEADER
* ******************* */
#header {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
    border-bottom: 1px solid #fff
}

#header .cinner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: none;
    padding: 0 50px;
}

#header__nav {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative
}

.main-nav__depth1 .mn-ul1 {
    display: flex;
    align-items: center;
    gap: 60px;
}

.main-nav__depth1 .mn-li1 {
    line-height: 1.0;
    position: relative;
    height: 100px;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.main-nav__depth1 .mn-a1 {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    position: relative;
}

.main-nav__depth1 .mn-a1::before {
    content: '';
    display: block;
    width: 4px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .35s;
}

.main-nav__depth1 .mn-a1:hover::before,
.main-nav__depth1 .mn-a1:focus::before {
    opacity: 1;
}

/* .main-nav__depth2 { display: none; position: absolute; top: 100px; left: 0; width: 100%; background: transparent; z-index: 991; } */
.main-nav__depth2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1000;
}

.main-nav__depth1 .mn-li1:hover>.main-nav__depth2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

.mn-ul2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mn-a2 {
    color: #333;
    font-size: 15px;
    font-weight: 400;
    transition: .3s;
}

.mn-a2:hover {
    color: #000;
    font-weight: 500;
}


#util>ul {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    top: 0;
}

#util>ul>li>a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

#util>ul>li>a>.ico>img {
    margin: 0 auto;
}

.mo_nav__btn {
    display: none;
}

.nav__btn {
    align-self: center;
}

.nav__btn.active {
    opacity: 1;
    visibility: visible;
}

.lang-btn {
    background: none;
    border: none
}

.nav__btn a {
    display: flex;
    align-items: center;
    width: 30px;
    height: 26px;
    background: url(../img/common/menu_icon.png) center center / cover no-repeat;
    position: relative;
    transition: .5s
}

.locked .nav__btn a {
    transform: rotateZ(90deg);
    transition: .5s
}

.nav-bg {
    width: 100%;
    height: 0;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
    z-index: 990;
}

#util {
    display: flex;
    gap: 100px;
    align-items: center;
}

.nav__btn {
    display: none
}

@media all and (max-width: 1399px) {
    .main-nav__depth1 .mn-ul1 {
        gap: 30px
    }

    .main-nav__depth1 .mn-a1 {
        font-size: 16px
    }

    #util {
        gap: 50px;
    }
}

@media all and (max-width: 1199px) {
    #util>ul {
        gap: 15px
    }

    #util {
        gap: 30px
    }
}

@media all and (max-width: 1024px) {
    #header .cinner {
        width: 92%;
        max-width: none;
        margin: 0 auto;
        padding: 0
    }

    #header {
        height: 100px;
    }

    #main-nav {
        display: none;
    }

    .header__logo img {
        height: 40px;
    }

    #util {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    #util>ul>li>a>.txt {
        display: none;
    }

    .nav__btn {
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mypagelist {
        display: none
    }

    #util>ul.hd_login {
        display: none;
    }
}

@media all and (max-width: 768px) {
    .hd_line_banner p {
        font-size: 12px;
    }
}

@media all and (max-width: 640px) {
    #header {
        height: 80px;
    }

    .nav__btn a {
        width: 20px;
        aspect-ratio: 1/1;
        height: auto;
        background-size: cover !important;
    }

    .header__logo>a>img {
        max-width: none;
        height: 30px;
    }

    #util>ul {
        gap: 12px;
    }

    #util>ul>li>a>.ico>img {
        width: 20px;
    }

    #util {
        gap: 12px;
    }
}

@media all and (max-width: 480px) {}




.lang {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.lang img {
    max-width: 20px;
    filter: brightness(0) invert(1);
}

.lang-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 0;
    z-index: 1000;
}

.lang.is-open .lang-list {
    display: block;
}

.lang-list li a {
    display: block;
    padding: 6px 14px;
    font-size: 14px;
    white-space: nowrap;
    width: auto !important
}

.lang-list li a:hover {
    background: #f5f5f5;
}

.nav__btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width:1199px) {
    .lang--header {
        display: flex;
    }
}



/* ******************* *
* SIDEBAR
* ******************* */
#sidebar {
    max-width: 450px;
    width: 100%;
    height: calc(100% - 130px);
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    position: fixed;
    top: 130px;
    left: -450px;
    right: 100%;
    z-index: 9999;
    transition: .35s ease;
    visibility: hidden;
    opacity: 0;
}

#sidebar.active {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar__header>.btn-adm {
    display: block;
    width: 60px;
    padding: 3px 0;
    background: #E04545;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.sidebar__header>.sidebar-btn_close {
    display: block;
    width: 24px;
    aspect-ratio: 1 / 1;
    border: 0;
    background: no-repeat;
    position: relative;
}

.sidebar__header>.sidebar-btn_close::before,
.sidebar__header>.sidebar-btn_close::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-main);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.sidebar__header>.sidebar-btn_close::before {
    transform: rotate(45deg);
}

.sidebar__header>.sidebar-btn_close::after {
    transform: rotate(-45deg);
}

.sidebar__cont {
    max-height: 92%;
    padding-right: 10px;
    padding-bottom: 20px;
    box-sizing: border-box;
    overflow-y: scroll;
}

.sidebar__cont::-webkit-scrollbar {
    width: 4px;
}

.sidebar__cont::-webkit-scrollbar-thumb {
    background-color: #bfbfbf;
    border-radius: 2px;
}

.sidebar__cont::-webkit-scrollbar-track {
    background-color: transparent;
}

.sidebar_user {
    margin-bottom: 20px;
}

.sidebar_user>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sidebar_user>ul>li {
    width: calc(50% - 6px);
}

.sidebar_user>ul>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    border: 1px solid var(--color-main);
    border-radius: 5px;
    color: var(--color-main);
    font-size: 16px;
    font-weight: 500;
}

.sidebar_user>ul>li>a.color {
    background: var(--color-main);
    color: #fff;
}


.sidebar__menu_depth1 a {
    color: #111;
    font-weight: 500;
    transition: .35s;
}

.sidebar__menu_depth1 a:hover {
    color: var(--color-main);
}

.sidebar__menu_depth1 .mn-li1 {
    border-top: 1px solid rgba(255, 255, 255, .3);
    position: relative;
}

.sidebar__menu_depth1 .mn-li1:not(:last-child) {
    margin-bottom: 20px;
}

.sidebar__menu_depth1 .mn-a1 {
    font-family: var(--font-NanumHuman);
    font-weight: 600;
}

.sidebar__menu_depth1 .mn-li1:has(.sidebar__menu_depth2)>.toggle-arrow {
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    position: absolute;
    top: 10px;
    right: 10px;
    transform: translateY(-50%) rotate(135deg);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.sidebar__menu_depth1 .mn-li1:has(.sidebar__menu_depth2).active>.toggle-arrow {
    transform: rotate(-45deg);
}

.sidebar__menu_depth2 {
    margin: 10px auto;
    padding: 10px 15px;
    background: #f7f7f7;
}

.sidebar__menu_depth2 .mn-li2:not(:last-child) {
    margin-bottom: 10px;
}

.sidebar__menu_depth2 .mn-li2:has(.sidebar__menu_depth3)>.toggle-arrow {
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 29px;
    right: 10px;
    transform: translateY(-50%) rotate(135deg);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.sidebar__menu_depth2 .mn-li2:has(.sidebar__menu_depth3).active>.toggle-arrow {
    transform: rotate(-45deg);
}

.sidebar__menu_depth2 .mn-a2 {
    font-size: 16px;
}

.sidebar__menu_depth3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.sidebar__menu_depth3 .mn-li3 {
    padding: 6px 0;
}

.sidebar__menu_depth3 .mn-a3 {
    color: rgba(255, 255, 255, .4);
    font-size: 16px;
}


@media all and (max-width: 1024px) {
    #sidebar {
        top: 100px;
        height: calc(100% - 100px);
        max-width: 100%
    }
}

@media all and (max-width: 640px) {
    #sidebar {
        top: 80px;
        height: calc(100% - 80px);
    }

    .sidebar__header>.sidebar-btn_close {
        width: 30px;
    }
}

/* ******************* *
* FOOTER
* ******************* */
.fixed_bar {
    position: fixed;
    top: 50%;
    right: 30px;
    ;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    gap: 5px;
    max-width: 150px;
}

.fixed_bar>div {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.fixed_bar .time_wrap {
    background: #fff;
    font-family: 'outfit';
    border-radius: 10px;
    overflow: hidden;
}

.fixed_bar .time_wrap .txt_wrap {
    background: var(--color-main);
    color: #fff;
    text-align: center;
    padding: 5px;
}

.fixed_bar .time_wrap .list_wrap {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed_bar .time_wrap .list_wrap li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: .8em;
}

.fixed_bar .contact_wrap {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fixed_bar .contact_wrap .img_wrap {
    display: flex;
    gap: 10px;
}

.fixed_bar .contact_wrap .img_wrap img {
    width: calc(50% - 5px)
}

.fixed_bar .contact_wrap .txt_wrap {
    font-size: .9em;
}

.fixed_bar .gray_box {
    background: #d9d9d9;
    font-family: 'SebangGothic';
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.fixed_bar>div.talk_wrap {
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.fixed_bar>div.talk_wrap img {
    max-width: 80px;
}

@media(max-width:1600px) {}

@media(max-width:1399px) {
    .fixed_bar {
        right: 10px
    }
}

@media(max-width:1199px) {}

@media(max-width:1024px) {
    .fixed_bar {
        display: none
    }
}

.ft_line_banner {
    background: url(../img/main/msec05_linebanner.png)no-repeat center center/cover;
    width: 100%;
    height: 250px
}

.ft_line_banner .cinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.ft_line_banner .left {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft_line_banner .left h4 {
    font-size: 2em;
    font-family: var(--font-SebangGothic);
    font-weight: 300
}

.ft_line_banner .left p {
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ft_line_banner .left p span {}

.ft_line_banner .right {}

.ft_line_banner .right a {
    background: #fff;
    font-size: .9em;
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
}

.ft_call_list {
    padding: 120px 0;
}

.ft_call_list .cinner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.ft_call_list .card {
    width: calc(50% - 25px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 50px;
}

.ft_call_list .card .txt_wrap {
    display: flex;
    flex-direction: column;
}

.ft_call_list .card .txt_wrap h3 {
    font-size: 1.5em;
    font-weight: bold;
    font-family: 'SebangGothic';
    margin-bottom: 25px;
}

.ft_call_list .card .txt_wrap p {
    color: #333;
    font-size: .9em;
}

.ft_call_list .card:nth-child(1) .txt_wrap p {
    font-family: 'SebangGothic';
    font-size: 2.5em;
    font-weight: bold;
    color: #B97e54;
}

.ft_call_list .card .txt_wrap span {}

.ft_call_list .card .txt_wrap span span {}

.ft_call_list .card .img_wrap {}

.ft_call_list .card:nth-child(1) {
    background: #fff6ef;
}

.ft_call_list .card:nth-child(1) .txt_wrap span {
    color: #8B8B8B;
}

.ft_call_list .card:nth-child(1) .txt_wrap span span {
    color: #000;
    font-weight: bold
}

.ft_call_list .card:nth-child(2) {
    background: #fafafa;
}

#footer {
    border-top: 1px solid #d9d9d9;
    padding: 60px 0;
}

#footer .cinner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#footer .ft_contact_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#footer .ft_contact_wrap h2 {
    margin-bottom: 30px;
    width: 100%;
    font-family: var(--font-SebangGothic);
}

#footer .ft_contact_wrap ul {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#footer .ft_contact_wrap ul li {
    font-size: .9em;
    color: #333;
}

#footer .ft_sns_wrap {
    display: flex;
    flex-direction: column;
}

#footer .ft_sns_wrap h2 {
    margin-bottom: 30px;
    font-family: var(--font-SebangGothic);
}

#footer .ft_sns_wrap ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

#footer .ft_sns_wrap ul li {}


/* ******************* *
* CONTAINER
* ******************* */
@media all and (max-width: 1399px) {
    .ft_call_list .cinner {
        gap: 20px
    }

    .ft_call_list .card {
        width: calc(50% - 10px)
    }
}

@media all and (max-width: 1024px) {
    #footer .cinner {
        flex-direction: column;
        gap: 30px
    }

    .footer__cont .ft_right {
        gap: 30px;
        flex-wrap: wrap;
    }

    .ft_call_list .card .img_wrap {
        width: 30%
    }

    .ft_call_list .card .txt_wrap h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
        ;
    }

    .ft_call_list .card:nth-child(1) .txt_wrap p {
        font-size: 2em
    }
}

@media all and (max-width: 768px) {
    .ft_line_banner .cinner {
        flex-direction: column;
        justify-content: center;
        gap: 20px
    }

    .ft_line_banner .right a {
        padding: 15px 20px
    }

    .ft_line_banner .left {
        text-align: center;
        align-items: center;
    }

    .ft_call_list .cinner {
        flex-direction: column;
    }

    .ft_call_list .card {
        width: 100%
    }
}

@media all and (max-width: 640px) {
    .ft_line_banner .left h4 {
        font-size: 1.5em;
    }

    #footer .ft_contact_wrap h2 {
        margin-bottom: 0
    }

    #footer .ft_contact_wrap {
        flex-direction: column;
        gap: 20px
    }
}



/* ******************* *
* 전체 검색
* ******************* */
#headerSearchBox {
    position: absolute;
    left: 0;
    top: 130px;
    width: 100%;
    z-index: 10000;
    background: var(--color-main);
}

#headerSearchBox .cinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0
}

#headerSearchBox .cinner button {
    background: transparent;
    border: 0;
}

#headerSearchBox .cinner input {
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 2px solid #fff;
    padding: 10px;
    width: 350px;
}

#headerSearchBox .cinner input::placeholder {
    color: #fff
}

.msearch>form {
    display: flex;
    align-items: center;
    gap: 14px;
}

.msearch .search-cont {
    width: 100%;
    height: 80px;
    padding: 16px 50px;
    border: 2px solid var(--color1);
    border-radius: 40px;
    box-sizing: border-box;
    background: #fff;
    position: relative;
    cursor: pointer;
}

.msearch .search-cont.active {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.msearch .search-cont>.txt {
    margin-bottom: 3px;
    color: var(--color-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.0;
}

.msearch .search-cont>input[type="text"] {
    width: 100%;
    border: none;
    color: #999;
    font-size: 18px;
}

.msearch #sch_submit {
    flex: 0 0 auto;
    display: block;
    width: 78px;
    aspect-ratio: 1 / 1;
    border: 0;
    border-radius: 15px;
    background: var(--color-main) url('../img/main/msec01-ico_search.svg') center center / cover no-repeat;
}

.msearch .search-popup {
    display: none;
    width: 100%;
    border-radius: 20px;
    padding: 40px 50px;
    box-sizing: border-box;
    background: #fff;
    font-size: 16px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 999;
}

.msearch .search-filter-cont>div:not(:last-child) {
    margin-bottom: 30px;
}

.msearch .search-filter-cont .tit {
    margin-bottom: 10px;
    color: var(--color-main);
    font-weight: 700;
}

.msearch .search-filter-cont .filter-keyword {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.msearch .search-filter-cont .filter-keyword>.keyword {
    padding: 11px 36px;
    border: 1px solid #B3B3B3;
    border-radius: 20px;
    box-sizing: border-box;
    color: #B3B3B3;
    line-height: 1.0;
}

.msearch .search-filter-cont .filter-keyword>.keyword.active {
    border-color: var(--color-main);
    color: var(--color-main);
}

.msearch .search-auto-cont>.tit {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #D4D4D4;
    color: #000;
    font-weight: 600;
}

@media all and (max-width: 1199px) {
    .msearch {
        margin-bottom: 40px;
    }
}

@media all and (max-width: 1024px) {
    #headerSearchBox {
        top: 100px;
    }

    .msearch .search-cont {
        height: 60px;
        padding: 9px 30px;
    }

    .msearch .search-cont>.txt {
        margin-bottom: 0;
        font-size: 14px;
    }

    .msearch .search-cont>input[type="text"] {
        font-size: 16px;
    }

    .msearch #sch_submit {
        width: 60px;
    }

    .msearch .search-popup {
        padding: 30px;
        border-radius: 15px;
        top: 80px;
    }

    .msearch .search-filter-cont .filter-keyword {
        gap: 10px;
    }

    .msearch .search-filter-cont .filter-keyword>.keyword {
        padding: 8px 24px;
    }
}

@media all and (max-width: 768px) {
    .msearch .search-cont {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .msearch .search-cont>.txt {
        width: 46px;
        margin-bottom: 0;
    }

    .msearch .search-cont>input[type="text"] {
        width: calc(100% - 56px);
    }
}

@media all and (max-width: 640px) {
    #headerSearchBox {
        top: 80px;
    }

    .msearch {
        margin-bottom: 30px;
    }

    .msearch>form {
        gap: 5px;
    }

    .msearch .search-cont {
        height: 50px;
        padding: 6px 20px;
    }

    .msearch .search-cont>input[type="text"] {
        font-size: 15px;
    }

    .msearch #sch_submit {
        width: 50px;
    }

    .msearch .search-popup {
        padding: 20px 20px;
        font-size: 15px;
        top: 70px;
    }

    .msearch .search-filter-cont .filter-keyword>.keyword {
        padding: 8px 20px;
    }
}

.mypage_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.mypage_title h2 {
    font-size: 3em;
    font-family: 'SebangGothic';
}

.mypage_title ul {
    display: flex;
    align-items: center;
    width: 100%;
}

.mypage_title ul li {
    border-right: 2px solid #d9d9d9;
    line-height: 1;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mypage_title ul li:last-child {
    border-right: 0
}

.mypage_title ul li a {}

.mypage_title ul li.active a {
    color: var(--color-main);
}


@media all and (max-width: 1399px) {}

@media all and (max-width: 1199px) {}

@media all and (max-width: 1024px) {}

@media all and (max-width: 768px) {
    .mypage_title h2 {
        font-size: 2em;
    }

    .mypage_title {
        gap: 30px;
    }
}

@media all and (max-width: 640px) {}