* {
    font-family: auto;
    transition-duration: 0.5s;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
}

a:hover {
    color: blue;
}

.wrap {
    display: block;
    max-width: 1300px;
    margin: auto;
    padding: 0 2%;
}
.flex {
    display: flex;
}


.mg_top30 { margin-top: 30px; }
.mg_top40 { margin-top: 40px; }
.mg_top50 { margin-top: 50px; }
.mg_top60 { margin-top: 60px; }
.mg_top70 { margin-top: 70px; }
.mg_top80 { margin-top: 80px; }

.mg_bot30 { margin-bottom: 30px; }
.mg_bot40 { margin-bottom: 40px; }
.mg_bot50 { margin-bottom: 50px; }
.mg_bot60 { margin-bottom: 60px; }
.mg_bot70 { margin-bottom: 70px; }
.mg_bot80 { margin-bottom: 80px; }


#header {
    background-color: #b20000;
    max-height: 60px;
}

#header .flex {
    width: 100%;
    justify-content: space-between;
}

#header .header_group {
    max-height: 60px;
    display: flex;
    justify-content: space-between;
}

#header .head_logo {
    width: 50%;
    max-width: 280px;
}
#header .head_logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 60px;
    padding: 10px;
}

#header .head_list {
    width: 60%
}

#header .head_main_list {
    display: flex;
}

#header .head_main_list li {    
    display: block;
    width: 25%;
    height: 60px;
    line-height: 60px;
    position: relative;
}


#header .head_main_list li a {
    display: block;
    color: #fff;
    font-size: 16px;
    text-align: center;
}


/*---- HEADER --- HEADER -------- END --------- */


/*---- HEADER MOBI MENU */
#header .menu_butt {
    position: relative;
    z-index: 99999;
    cursor: pointer;
    display: none;
}
#header .menu_butt .butt {
    width: 40px;
    height: 40px;
    margin: auto 10px auto 10px;
    background: #b20000 url('./img/menu_cl.png') no-repeat center;
    background-size: 30px;
    border-radius: 7px;
    z-index: 99999;
    border: 3px solid #b20000;
    transition: 0.3s;
}
#header .menu_butt .butt:hover {
    background-color: #fff;
    background-image: url('./img/menu_op.png');
}
#header .menu_butt .butt.on {
    background-image: url('./img/close_cl.png');
}
#header .menu_butt .butt.on:hover {
    background-image: url('./img/close_op.png');
}
#header .menu_butt .header_list.mobi {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 80vw;
    max-width: 600px;
    height: calc(100vh - 80px);
    padding: 15px 20px 20vh 15px;
    overflow: auto;
    z-index: 99999;
    display: none;
}
#header .menu_butt .header_list.mobi .search {
    margin: 20px 0;
}
#header .menu_butt .header_list.mobi .search .search_box {
    display: flex;
    justify-content: space-between;
}
#header .menu_butt .header_list.mobi .search .search_box input {
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 3px;
    width: calc(100% - 40px);
}
#header .menu_butt .header_list.mobi .search_bt {
    width: 35px;
    height: 35px;
    background: #fff url('./img/search-hover.png') no-repeat center;
    background-size: 20px;
    border: 2px solid #b20000;
}
#header .menu_butt .header_list.mobi .search_bt:hover {
    background-image: url('./img/search.png');
    background-color: #b20000;
}
#header .menu_butt .header_list.mobi ul {
    width: 100%;
    position: unset;
}
#header .menu_butt .header_list.mobi ul li {
    margin-left: auto;
    text-align: right;
}
#header .menu_butt .header_list.mobi ul li:hover {
    background-color: rgba(243, 200, 200, 0.3);
    color: #b20000;
}
#header .menu_butt .header_list.mobi ul li:hover a {
    color: #b20000;
}
#header .menu_butt .header_list.mobi ul > li {
    border-bottom: 1px solid #aaa;
    padding: 14px 7px;
}
#header .menu_butt .header_list.mobi ul li a {
    color: #000;
    font-size: 16px;
}
#header .menu_butt .header_list.mobi ul li .title {
    color: #000;
    justify-content: right;
}
#header .menu_butt .header_list.mobi ul li .title.on {
    color: #b20000;
}
#header .menu_butt .header_list.mobi ul li .title span {
    margin-left: auto;
    background-image: url('./img/list-close.png');
}
#header .menu_butt .header_list.mobi ul li .title.on span {
    color: #b20000;
    background-image: url('./img/list-open.png');
}
#header .menu_butt .header_list.mobi ul li .sub_list {
    border-right: 1px solid #b20000;
    margin: 0 15px 15px 0;
    width: calc(100% - 15px);
}
#header .menu_butt .header_list.mobi ul li .sub_list li {
    border: none;
}
#header .menu_butt .header_list.mobi .box select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    margin-top: 5px;
}
/*---- HEADER MOBI MENU END */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */






/*----------------- --------------FT=------------------- */

#footer {
    background-color: #b20000;
    margin-top: auto;
}

#footer .flex {
    justify-content: space-between;
    padding: 15px 10px;
}

#footer .footer_logo {
    width: 40%;
    max-width: 80px;
}

#footer .footer_logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 60px;
}

#footer .footer_list {
    display: flex;
}

#footer .footer_main_list {
    display: flex;
    margin: auto 0;
}

#footer .footer_main_list li {    
    display: block;
    position: relative;
    border-right: 1px solid #fff;
}
#footer .footer_main_list li:first-child {
    border-left: 1px solid #fff;
}


#footer .footer_main_list a {
    display: block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 5px;
}

#footer .copy_right {
    text-align: center;
    color: #fff;
    font-size: 12px;
}

#shade {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.2s;
    z-index: 999;
    display: none;
}

#page_top {
    position: fixed;
    right: 2%;
    bottom: 2%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    padding: 5px;
    background: #eee;
    border-radius: 2px;
}
#page_top:hover {
    background-color: #b20000;
    color: #fff;
}


@media screen and (max-width: 800px) {
    
}

@media screen and (max-width: 600px) {
    
    #header .header_main .right_info .contact_bana {
        display: none;
    }
    #header .menu_butt {
        display: flex;
        flex-direction: column;
    }

    #header .head_list {
        display: none;
    }

    #footer .footer_logo {
        margin: auto;
    }

    #footer .footer_list {
        margin: auto;
    }

    #footer .flex {
        flex-direction: column;
        justify-content: center;
    }
}






















