/*header*/
.nav_container {
    max-width: inherit;
    padding: 0;
    font-weight: bold;
}

.nav_container_bg {
    max-width: 1350px;
    padding: 0;
    flex-wrap: wrap;
}

.nav_top_wrap {
    border-bottom: 3px solid #d71618;
}

.nav_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    max-width: 1350px;
    padding: 10px 28px 10px 40px;
    margin: 0 auto;
    font-weight: normal;
}

.nav_top_left {
    width: 100%;
    max-width: 130px;
    font-weight: normal;
}

.nav_top_right {
    display: flex;
    align-items: center;
}

.nav_top_right li {
    padding: 0 12px;
    font-size: 13px;
    font-weight: normal;
}

.header_search_wrap {
    top: 0 !important;
}

.nav_left {
    display: flex;
    align-items: center;
    margin: 20px 40px;
    flex-grow: inherit;
    min-width: 545px;
    width: 100%;
}

.nav_right {
    background: #d71618;
    min-height: 55px;
    padding: 0 56px;
	justify-content: center;
}

.header_g-plus {
    display: flex;
    color: #fff;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    padding: 6px 7px;
    background: #d71618;
}

.g-plus_ex {
    font-size: 10px;
    padding-right: 20px;
    line-height: 1.4;
}

.header_g-plus img {
    max-width: 100px;
    width: 100%;
    height: 35px
}

.g-plus_btn_wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-left: 20px;
}

.header_right .search_icon {
    margin: 0;
}

.g-plus_btn_wrap .g-plus_btn_top {
    font-size: 10px;
    position: relative;
    padding-bottom: 8px;
    color: #fff;
}

.g-plus_btn_wrap .g-plus_btn_top:after {
    content: "";
    color: #fff;
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    top: 3px;
    right: -12px;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.g-plus_btn_wrap .g-plus_btn_bottom {
    font-size: 10px;
    color: #d71618;
    width: 80px;
    text-align: center;
    background: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    line-height: 1.3;
}

.nav_category_link {
    position: relative;
}

.nav_left .nav_category_link_title {
    font-size: 14px;
    font-weight: bold;
}

.nav_category_link:after {
    content: "";
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    top: 2px;
    right: -16px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #d71618;
    border-right: 1px solid #d71618;
}

.header_right .header_search_wrap .header_search_inner .srchInput {
    right: -30px;
    border-radius: 30px;
    border-color: #838383;
    height: 30px;
    padding-left: 16px;
}

@media screen and (max-width: 767px) {
    .nav_top_wrap {
        margin: 0;
        border-bottom: none;
    }

    .nav_top {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        font-size: 14px;
    }

    .nav_top_left a {
        display: none;
    }

    .nav_left .nav_category_link_title {
        font-weight: normal;
    }

    .nav_top_right {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav_top_right li {
        padding: 12px 0;
    }

    .nav_left {
        align-items: flex-start;
        padding: 0;
        margin: 0;
    }

    .nav_left .nav_category {
        padding: 12px 0;
        margin: 0 !important;
    }

    .nav_right {
        margin-left: 0;
        background: none;
    }

    .nav_right .header_g-plus {
        display: none;
    }

    .nav_category_link:after {
        content: none;
    }

    .header_right.pc {
        display: none;
    }

    .header_right.sp {
        display: block;
    }

    .nav_container {
        padding: 40px;
    }

    .header_right .header_search_wrap .header_search_inner .srchInput {
        height: 40px;
        width: 250px;
        padding-right: 76px;
        right: -64px;
    }

    .header_search_wrap img {
        visibility: hidden;
    }

    .header_right .header_search_wrap .header_search_inner {
        position: absolute;
        right: 50%;
        bottom: inherit;
    }

    .header_right .header_search_wrap .header_search_inner .srchBtn, .srchBtn {
        position: absolute;
        width: 40px;
        height: 40px;
        right: -64px;
        top: -5px;
        min-width: inherit;
        background-color: #8C060E;
        line-height: 40px;
        padding: 0 6px;
        font-weight: bold;
        border-radius: 30px;
        background-image: url("../img/top/search_icon_sp.svg");
    }

    .header_nav .nav_container {
        overflow-x: hidden;
        overflow-y: scroll;
    }
}

@media screen and (min-width: 767px) {
    .header_right.sp {
        display: none;
    }

    .nav_right .header_g-plus {
        display: flex;
    }
}

@media screen and (min-width: 1240px) {
    .nav_container_bg {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .nav_left {
        width: 73%;
        margin: 0 0 0 12px;
    }

    .nav_right {
        padding: 0 23px;
        flex-grow: 0;
        width: 38%;
    }
}

/*header*/