
.default_footer_content_area_wrap {
    font-size: 10px;
}
.default_footer_content_area {
    border-top: 1px solid #e2e2e2;
}
.default_footer_content_area_header {
    display: flex;
    width:100%;
    max-width:1280px;
    margin: auto;
    height: auto;
    min-height: fit-content;
    color: #2e2e2e;
    background-color: #ffffff;
    box-sizing: border-box;
    justify-content: space-between;
}
.default_footer_content_area_header .footer_brand_logo_area {
    width: 250px;
    height: 50px;
    padding: 10px;
    box-sizing: border-box;
    margin: 20px 0;
}
.default_footer_content_area_header .footer_brand_logo_area .footer_brand_logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.default_footer_content_area_header .detail_content_area {
    padding: 10px;
    margin: 20px 0;
    box-sizing: border-box;
}
.default_footer_content_area_header .detail_content_area .footer_menu_area {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.default_footer_content_area_header .detail_content_area .footer_menu_area .footer_menu_contents {
    display: flex;
}
.default_footer_content_area_header .detail_content_area .footer_menu_area .footer_menu_contents a {
    padding: 0 1.5em;
    font-size: 12px;
    text-align: center;
    color: #4c4c4c;
}
.default_footer_content_area_header .detail_content_area .footer_menu_area .footer_menu_contents a:not(:first-child) {
    border-left: 1px solid #e2e2e2;
}
.default_footer_content_area_header .detail_content_area .footer_menu_area .footer_menu_contents a:hover {
    color: block;
    font-weight: bold
}
.default_footer_content_area_body {
    width:100%;
    max-width:1280px;
    margin: auto;
    height: auto;
    min-height: fit-content;
    color: #2e2e2e;
    background-color: #ffffff;
    box-sizing: border-box;
    font-size: 13px;
}
.default_footer_content_area_body .footer_brand_contents_area {
    padding: 10px;
    box-sizing: border-box;
}
.default_footer_content_area_body .footer_brand_contents_area .brand_title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bolder;
    color: #4c4c4c;
}
.default_footer_content_area_body .footer_brand_contents_area .brand_contents {
    padding: 5px 0;
    box-sizing: border-box;
    font-size: 13px;
    color: #4c4c4c;
}
.default_footer_content_area_body .footer_brand_contents_area .brand_contents a {
    color: #4c4c4c;
}
.default_footer_content_area_body .footer_brand_contents_area .brand_contents label {
    position: relative;
    margin-right: 10px;
    padding-right: 10px;
    font-weight: bold;
    color: #2e2e2e;
}
.default_footer_content_area_body .footer_brand_contents_area .brand_contents label::after {
    content: ":";
    position: absolute;
    left: 100%;
}
.default_footer_content_area_wrap .default_footer_copyright_area {
    font-size: 1.2em;
    text-align: center;
    padding: 1em;
}









/* shortcut menu css */
/*  */
/* 공통영역 */
.default_footer_content_area_wrap .default_footer_shortcut_menu {
    position: fixed;
}
/**/
.default_footer_content_area_wrap .default_footer_shortcut_menu._toggle {
    right: 2em;
    bottom: 2em;
    z-index: 101;
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_onoff_btn {
    position: relative;
    width: 100%;
    height: 50px;
    display: block;
    padding: 10px 10px 10px 50px;
    box-sizing: border-box;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 25px;
    -moz-transition: transform ease-in-out 0.2s;
    -o-transition: transform ease-in-out 0.2s;
    -webkit-transition: transform ease-in-out 0.2s;
    transition: transform ease-in-out 0.2s;
    font-weight: bold;
    font-size: 15px;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_onoff_btn .icon_area {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 34px;
    height: 34px;
    background-color: #6e0094;
    background-image: url(/ui/img/ic_sticky_menu.svg);
    /* background-image: url(/ui/img/logo_homeasydoc_white.svg); */
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu._on .shortcut_menu_onoff_btn {
    background-image: url(/ui/img/ic_sticky_menu_close.svg);
}

.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_onoff_btn:hover {
    transform: scale(1.1);
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents {
    pointer-events: none;
    width: auto;
    height: auto;
    transform-origin: center 100%;
    -moz-transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    -o-transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    -webkit-transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    transform: scaleY(0);
    opacity: 0;
    overflow: visible;
    display: flex;
    flex-direction:column;
    align-items: end;
    gap: 1.2em;
    padding: 1.2em 0;
    white-space: nowrap;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    padding: 10px 10px 10px 50px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-sizing: border-box;
    border-radius: 25px;
    width: 100%;
    background: white;
    color: #6d6d6d;
    font-weight: 600;
    overflow:hidden;
    
    -moz-transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    -o-transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    -webkit-transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
    transition: transform ease-in-out 0.3s, opacity ease-in-out 0.3s;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a .icon_area {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    background-color: white;
    border-radius: 50%;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_group_btn {
    display: none;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a:before {
    content: "";
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #6e0094;
    z-index: -1;
        
    -moz-transition: right ease-in-out 0.2s, color ease-in-out 0.2s;
    -o-transition: right ease-in-out 0.2s, color ease-in-out 0.2s;
    -webkit-transition: right ease-in-out 0.2s, color ease-in-out 0.2s;
    transition: right ease-in-out 0.2s, color ease-in-out 0.2s;
} */
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a:hover {
    transform: scale(1.1);
    /* color: white; */
}
.default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a:hover::before {
    right: 0;
}
.default_footer_content_area_wrap .default_footer_shortcut_menu._on .shortcut_menu_contents {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: all;
}
/**/

@media (max-width: 798px) {
    .default_footer_content_area_wrap {
        font-size: 8px;
        padding-bottom: 80px;
    }
    .default_footer_content_area_header .brand_logo_content_area {
        flex: 1 0 150px;
        width: 150px;
        max-width: 150px;
    }
    .default_footer_content_area_header .detail_content_area {
        flex: 1 1 100%;
        margin: 0;
    }
    .default_footer_content_area_header .detail_content_area .footer_menu_area .footer_menu_contents {
        justify-content: end;
        flex-wrap: wrap;
    }
    .default_footer_content_area_header .detail_content_area .footer_menu_area .footer_menu_contents a {
        font-size: 11px;
    }
    .default_footer_content_area_header .footer_brand_logo_area {
        width: 100%;
        height: 100%;
        margin: 0;
    }
    .default_footer_content_area_body {
        font-size: 10px;
    }
    .default_footer_content_area_body .footer_brand_contents_area .brand_title {
        font-size: 1.6em;
    }
    .default_footer_content_area_body .footer_brand_contents_area .brand_contents {
        font-size: 1.2em;
    }
    /* shortcut menu css */
    /*  */
    /**/
    .default_footer_content_area_wrap .default_footer_shortcut_menu._toggle {
        margin-bottom: 0 !important;
        bottom: 0;
        left: 0;
        right: auto;
        width: 100%;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu._toggle .shortcut_menu_onoff_btn {
        display: none;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu._toggle .shortcut_menu_contents {
        width: 100%;
        height: 60px;
        transform: none;
        flex-direction: row;
        gap: 0;
        opacity: 1;
        padding: 0;
        background: #6e0394;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents {
        pointer-events: all;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents>* {
        flex: 1 1 100%;
        height: 60px;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        align-items: center;
        background: transparent;
        color: white;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a:hover {
        transform: none;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a .icon_area {
        position: relative;
        top: inherit;
        left: inherit;
        display: block;
        background-color: transparent;
        filter: invert(1);
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents a .title_area {
        font-size: 10px;
        line-height: 100%;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group_wrap {
        position: relative;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_group_btn {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_group_btn .icon_area {
        display: block;
        width: 34px;
        height: 34px;
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: center;
        border-radius: 50%;
        filter: invert(1);
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_group_btn .title_area {
        font-size: 10px;
        line-height: 100%;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group {
        display: none;
        position: absolute;
        right: 10px;
        bottom: 100%;
        margin-bottom: 10px;
        width: 100%;
        min-width: 120px;
        padding: 10px;
        box-sizing: border-box;
        background: white;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group a {
        flex-direction: row;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group a .icon_area {
        filter: invert(0);
        flex: 1 0 34px;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group a .title_area {
        flex: 1 1 100%;
        color: #2e2e2e;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group_wrap._on .shortcut_item_group {
        display:block;
    }
    .default_footer_content_area_wrap .default_footer_shortcut_menu .shortcut_menu_contents .shortcut_item_group_wrap._on .shortcut_item_group::after {
        content: "";
        width: 10px;
        height: 10px;
        background: white;
        position: absolute;
        right: 30%;
        bottom: -5px;
        transform: rotate(45deg);
    }
    /**/
}