


/* header start */


header{
    position: relative;
    height: var(--header-height);
    border-bottom: 1px solid #eee;
    /*z-index: 999999;*/
    background-color: #ffffff;
}
.mobile_menu{
    display: none;
    position: fixed;
    top:0;
    right:0;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999;
    width: 280px;
    padding: 5rem 3rem 10rem;
    font-size:16px;
    color: #888888;
}

.mobile_menu.on{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile_menu_top .close_btn{
    position: absolute;
    top:30px;
    right: 30px;
    margin-left: 0;
}
.mobile_menu_top .close_btn i{
    font-size: 20px;
    color: #333333;
}
.mobile_menu .mobile_menu_logo{
    width: 100px;
    margin-bottom: 50px;
}
.mobile_menu .gnb .depth01{
    height: 50px;
    line-height: 50px;
    position: relative;
}
.mobile_menu .gnb .depth01 a i{
    margin-right: 16px;
    width: 20px;
    color: var(--main-color)
}
.mobile_menu .gnb .depth01 a{
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #555555;
}
.mobile_menu .gnb .depth01:last-child::after{
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    top:0;
    right:0;
    background: url('/image/icon_menu_down-grey.png') center center / 100% no-repeat;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.mobile_menu .gnb .depth01.on>a{
    color: var(--main-color);
}
.mobile_menu .gnb .depth01:last-child.on::after{
    transform: rotate(180deg);
    background: url("/image/icon_menu-down.png")  center center / 100% no-repeat;
}
.mobile_menu .gnb .depth01 .depth02{
    display: none;
    /*color: var(--main-color)*/
}
.mobile_menu .gnb .depth01>.depth02.on{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    /*display: block;*/
}
.mobile_menu .gnb .depth01 .depth02 li{
    height: 50px;
    line-height: 50px;
}
/*.mobile_menu .gnb .depth01 > a:hover{*/
/*    color: var(--main-color)*/
/*}*/
.mobile_menu .gnb .depth01 .depth02 li a{
    display: block;
    margin-left: 40px;
    color: #888888;
}
/*.mobile_menu .gnb .depth01 .depth02 li > a:hover{*/
/*    color: var(--main-color);*/
/*}*/
.mobile_menu .mobile_menu_bottom{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile_menu .mobile_menu_bottom button:nth-child(1){
    color: var(--main-color);
    border-radius: 10px;
    border: 1px solid var(--main-color);
    background-color: #ffffff;
}
.mobile_menu .mobile_menu_bottom button{
    background-color: var(--main-color);
    width: 100%;
    border: 0;
    padding: 12px 24px;
    color: #fff;
    border-radius: 10px;
}

header .wrap_in{
    height: 100%;
    display: flex;
}

header .hd_logo{
    width: 120px;
    margin-right: 60px;
}
header .hd_logo a{
    display: block;
    width: 100%;
    height: var(--header-height);
    background-image: url(/image/toolro_logo.png);
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-position: center;
    text-indent: -99999px;
}


header .menu_wrap{
    display: flex;
    justify-content: end;
    /*width: calc(100% - 120px);*/
    width: 100%;
}
header nav .main_hd{
    display: flex;
}
header nav .main_hd > li{
    position: relative;
}
header nav .hd_mn1{
    display: block;
    width: 120px;
    font-size: 18px;
    color: #222222;
    line-height: var(--header-height);
    text-align: center;
    cursor: pointer;
}
header nav .hd_mn1:hover{
    color: var(--main-color);
}
header nav .sub_hd{
    position: absolute;
    top: 79px;
    left: 0;
    z-index: 9;
    display: none;
    width: 100%;
    padding: 10px 0;
    background-color: var(--main-color);
}
header nav .sub_hd li a{
    display: block;
    width: 100%;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}
header nav .sub_hd li a:hover{
    color: var(--main-color);
    background-color: #fff;
}
/*header .hd_mn1:hover .sub_hd{*/
/*    display: block;*/
/*}*/
header .hd_bg{
    position: absolute;
    display: none;
    top: 80px;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 280px;
    background-color: #fff;
}


header .hd_search{
    width: 230px;
    /*height: var(--header-height);*/
    margin: auto 0 auto auto;
    display: flex;
    position: relative;
}
header .hd_search input{
    display: block;
    width: 100%;
    height: 40px;
    margin: auto 0;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    padding: 0 60px 0 20px;
}
header .hd_search_btn{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 40px;
    background-image: url(/image/icon_search.png);
    background-position: center;
    background-size: auto 60% ;
    background-repeat: no-repeat;
    cursor: pointer;

}


header .menu_icon{
    width: 5rem;
    height: 50px;
    margin: auto 0 auto auto;
    background-image: url('/image/menu.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 30%;
    cursor: pointer;
}
header .hd_pageout{
    display: none;
}
header .hd_pageout.in{
    display: flex;
    font-size: 16px;
}

header .hd_login,
header .hd_join{
    height: auto;
    margin: auto 0;
}
header .hd_login a{
    color: #333;
    display: inline-block;
    line-height: 40px;
    margin: auto 0 auto 18px;
    padding: 0 12px;
}
header .hd_join a{
    display: inline-block;
    line-height: 40px;
    margin: auto 0;
    padding: 0 12px;
    /* background-color: var(--main-color); */
    color: var(--main-color);
    border-radius: 5px;
    font-size: 16px;

}


header .hd_pagein.in{
    display: flex;
}

header .hd_chat_wrap{
    width: 5rem;
    height: 100%;
    background-image: url('/image/icon_chat_main.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px;
    margin: 0 8px;
    text-indent: -99999999px;
    cursor: pointer;
}
header .hd_mypage{
    width: 40px;
    height: 100%;
    background-image: url('/image/icon_mypage.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 25%;
    text-indent: -99999999px;
    cursor: pointer;
}


@media  screen and (max-width: 1125px){
    header nav .hd_mn1{
        font-size: 16px;
        width: 100px;
    }
}
@media  screen and (max-width: 1050px){
    header nav .hd_mn1{
        font-size: 16px;
        width: 88px;
    }
    header .hd_logo{
        margin-right: 10px;
        width: 100px;
    }
}
@media  screen and (max-width: 970px){
    .mobile_menu{
        padding: 5rem 3rem;
    }
}

    @media  screen and (max-width: 840px) {
    header .wrap_in{
        width: 100%;
        padding: 0 20px;
    }
    header{
        height: 60px;
        line-height: 60px;
    }
    header .hd_logo a{
        height: 60px;
        background-size: auto 20px;
        background-position: left center;
    }
    header .menu_icon{
        height: 60px;
        background-position: right center;
        margin-left: 15px;
    }
    header .hd_mypage, header .hd_login, header .hd_join{
        display: none;
    }

    header .hd_search{
        margin: 0;
        width: 100%;
    }
    header .hd_logo{
        width: 90px;
        margin-right: 10px;
    }
    /*header .wrap_in .menu_wrap{*/
    /*    display: none;*/
    /*    position: fixed;*/
    /*    flex-direction: column-reverse;*/
    /*    justify-content: start;*/
    /*    top: 0;*/
    /*    right: 0;*/
    /*    width: 300px;*/
    /*    height: 100%;*/
    /*    background-color: #fff;*/
    /*    z-index: 9;*/
    /*    padding: 190px 40px;*/
    /*}*/

    header .wrap_in .menu_wrap nav ul{
        flex-direction: column;
    }
    header .wrap_in .menu_wrap nav ul li a{
        line-height: 45px;
        height: 45px;
        text-align: left;
    }

    header .wrap_in .menu_wrap .hd_search input{
        /* border-radius: 0;
        border: 0;
        border-bottom: 1px solid var(--main-color); */
    }
    /*header .hd_search{*/
    /*    position: absolute;*/
    /*    left: 50%;*/
    /*    top: 100px;*/
    /*    margin: 0;*/
    /*    transform: translate(-50%,0);*/
    /*}*/
    /*header .hd_pageout{*/
    /*    position: absolute;*/
    /*    top: 40px;*/
    /*    left: 10px;*/
    /*}*/
    header .hd_page.in{
        position: absolute;
        left: 0;
    }

}
@media screen and (max-width:768px) {
    header .hd_logo a{
        background-size: auto 16px;
    }
    header .menu_icon{
        background-size: auto 16px;
    }
}

@media screen and (max-width:480px) {

    header .menu_icon {
        background-size: auto 14px;
        width: 30px;
    }

    header .hd_chat_wrap {
        margin-left: 10px;
    }

    .mobile_menu .gnb .depth01 .depth02 li {
        height: 43px;
        line-height: 43px;
    }
    .mobile_menu .gnb .depth01{
        height: 43px;
        line-height: 43px;
    }
    .mobile_menu .gnb .depth01 a i {
        margin-right: 10px;
    }
    .mobile_menu .gnb .depth01 .depth02 li a{
        margin-left: 30px;
    }
}
/* header end */


/* floating_chat start */
.floating_chat{
    display: none;
    position: fixed;
    bottom: 100px;
    right: 100px;
    z-index: 10;
}
.floating_chat .floating_chat_bg{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.1);
}
.floating_chat .ftc_icon{
    position: relative;
    z-index: 12;
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    background-image: url("/image/icon_chat_fff.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 45%;
    border-radius: 50%;
    cursor: pointer;
}
.floating_chat .ftc_icon.new span{
    position: absolute;
    top: -3px;
    right: -3px;
    display: block;
    width: 8px;
    height: 8px;
    text-align: center;
    line-height: 16px;
    background-color: var(--main-color);
    box-shadow: 0px 0px 4px rgba(255,100,18,0.9);
    border-radius: 50%;
    font-size: 12px;

}
.floating_chat .ftc_list_wrap{
    position: absolute;
    bottom: 70px;
    left: 0;
}
.floating_chat .ftc_list_in{
    display: flex;
    flex-direction: column-reverse;
}
.floating_chat .ftcl_logo{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #fff;
    margin-top: 12px;
    cursor: pointer;
}
.floating_chat .ftcl_logo.list_new .ftcl_new{
    position: absolute;
    top: 3px;
    right: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff0000;
    border:0;
}





.floating_chat .ftcl_chat{
    position: fixed;
    bottom: 100px;
    right: 180px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 500px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    border-radius: 5px;
    overflow: hidden;
}
.floating_chat .ftcl_head_wrap{
    display: flex;
    height: 45px;
    border-bottom: 1px solid #ccc;
}
.floating_chat .ftcl_head_wrap .ftcl_name{
    width: calc(100% - 45px);
    font-size: 14px;
    font-weight: bold;
    color: #222;
    line-height: 44px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px 0 15px;
}
.floating_chat .ftcl_head_wrap .ftcl_close{
    width: 45px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 35%;
    background-image: url("/image/close.png");
}



.floating_chat .ftcl_cont_wrap{
    height: calc(100% - 90px);
    border-bottom: 1px solid #ccc;
    padding: 15px;
    overflow-y: scroll;
}
.floating_chat .ftcl_chat_line{
    margin-bottom: 12px;
}
.floating_chat .ftcl_chat_line.me{
    margin-left: auto;
    text-align: right;
}
.floating_chat .ftcl_text{
    display: inline-block;
    width: auto;
    padding: 10px;
    background-color: #ebeef5;
    border-radius: 10px;
    margin-bottom: 8px;
}
.floating_chat .ftcl_date{
    color: #888;
    font-size: 13px;
    line-height: 1;
    padding: 0 5px;
}



.floating_chat .ftcl_chat_input{
    display: flex;
    height: 45px;
}
.floating_chat .ftcl_add_file{
    width: 45px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: auto 35%;
    background-position: center;
    background-image: url("/image/icon_clip_888.png");
    cursor: pointer;
}
.floating_chat .ftcl_input_line{
    width: calc(100% - 90px);
    height: 100%;
}
.floating_chat .ftcl_input_line input{
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.floating_chat .ftcl_chat_btn{
    width: 45px;
    height: 100%;
}
.floating_chat .ftcl_btn{
    width: 100%;
    height: 100%;
    border-left: 1px solid #dedede;
    background-image: url("/image/icon_send_mc.png");
    background-repeat: no-repeat;
    background-size: auto 35%;
    background-position: center;
    cursor: pointer;
}
/* floating_chat end */
