* {
    font-family: auto;
}
img {
    display: block;
    width: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a:hover {
    color: blue;
    text-decoration: underline;
}

.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; }



.wrap {
    display: block;
    max-width: 1200px;
    margin: auto;
    padding: 0 3%;
}
.flex {
    display: flex;
}

#header {
    background-color: #b20000;
    max-height: 60px;
}

#header .flex {
    justify-content: space-between;
}

#header .header_group {
    max-height: 60px;
    position: relative;
}

#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: flex;
    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;
    margin: auto;
    line-height: 22px;
}
#header .head_main_list li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

#header .language_list {
    position: absolute;
    right: 10px;
    top: calc(100%);
}
#header .language_list ul {
    display: flex;
}
#header .language_list ul li {
    opacity: 0.6;
    width: 30px;
    height: 60px;
    margin-right: 15px;
    background: url(./img/flag_on.png) no-repeat 0 0;
    background-size: 30px;
    display: flex;
}
#header .language_list ul li a img {
    width: 80%;
    margin: 7px auto;
}
#header .language_list ul li.on {
    opacity: 1;
    background-image: url(./img/flag_off.png);
}
#header .language_list ul li:hover {
    opacity: 1;
    background-image: url(./img/flag_off.png);
}


/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*---- 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 */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */
/*----********----------- */



/*----MAIN----------- */
#figure {
    max-width: 1600px;
    margin: 0 auto 40px;
}

#main .box {
    margin-bottom: 40px;
}
#main .main_title {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin-bottom: 20px;
}
#main .main_title h1 {
    font-size: 24px;
    text-align: center;
    color: #b20000;
    font-weight: bold;
}
#main .main_text {
    font-size: 16px;
    line-height: 30px;
}
#main .main_title .sub_title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #b20000;
}

#main .vision ul {
    display: flex;
    justify-content: space-between;
}
#main .vision ul li {
    width: 31%;
}
#main .vision ul li .vision_title {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 5px;
    text-align: center;
}
#main .vision ul li .vision_text {
    font-size: 14px;
    padding: 5px;
    text-align: center;
    line-height: 28px;
}



/*----MAIN - BUSINESS LIST---------------------------------------------- \ */


#main .business_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#main .business_list .japan {
    width: 100%;
    margin-bottom: 40px;
}
#main .business_list .vnam {
    width: 100%;
}
#main .business_list .main_title {
    padding-left: 50px;
    background: url(./img/company.png) no-repeat left center;
    background-size: 40px;
}
#main .business_list .main_title h2 {
    text-align: left;
    font-weight: bold;
    color: #b20000;
    font-size: 18px;
}
#main .business_list .sub_title {
    text-align: left;
}

#main .business_list .list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#main .business_list .list ul li {
    width: 46%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    align-content: flex-start;
}
#main .business_list .list ul li h3 {
    width: 100%;
    font-weight: bold;
    font-size: 16px;
}
#main .business_list .list ul li .img {
    width: 20%;
    padding: 10px;
}
#main .business_list .list ul li .text {
    width: 75%;
    font-size: 12px;
}


/*----MAIN-  BUSINESS LIST- ---------------------------------------------- END */




/*----MAIN----------- END */
/*----********----------- */
/*----********----------- */
/*----********----------- */

#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 .footer_main_list a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

#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;
}

#page_top {
    position: fixed;
    right: 4%;
    bottom: 4%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    padding: 8px 10px;
    background: #eee;
    border-radius: 2px;
}
#page_top:hover {
    background-color: #b20000;
    color: #fff;
}

@media screen and (max-width: 800px) {
    
}

@media screen and (max-width: 660px) {
    #header .language_list ul li {
        width: 20px;
        height: 40px;
        background-size: 20px;
    }

    #main .vision ul {
        flex-wrap: wrap;
    }

    #main .vision ul li {
        width: 100%;
        display: grid;
        grid-template-columns: 30% auto;
        margin-bottom: 40px;
    }
    #main .vision ul li .vision_img {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 3;
    }
    #main .vision ul li .vision_title {
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 2;
        text-align: left;
        padding: 5px 10px;
    }
    #main .vision ul li .vision_text {
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 3;
        text-align: left;
        padding: 5px 10px;
    }

    #main .business_list .list ul li {
        width: 100%;
    }
}

@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;
    }
}






















