@charset "UTF-8";

.bl_header {
    /*
    z-index: 10000;
    position: sticky;
    top: 0;
    */
    padding-top: 20px;
    background-color: #ffffff;
}

.bl_header_topWrap {
    width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
}

.bl_header_top_item {
    width: 390px;
}

.bl_header_top_logo {
    width: 254px;
    margin: 0 auto;
    /*
    width: 140px;
    margin:  0 auto 12px;
    */
}

.bl_header_top_login {
    cursor: pointer;
}

/* ナビゲーションメニュー */
.bl_menu {
    background-image: repeating-linear-gradient(135deg, #161616 5px 10px, #1e1e1e 10px 15px);
    border-bottom: 3px solid #f90000;
}

.bl_menu_innber {
    width: 1120px;
    margin: 0 auto;
}

.bl_menu_itemBox {
    display: flex;
    justify-content: space-between;
}

.bl_menu_item {
    position: relative;
    /* width: calc((100% - (10px * 2)) / 3); */
}

.bl_menu_item_head {
    margin: 7px 0;
    cursor: pointer;
}

.bl_menu_subMenuBox {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 37px;
    z-index: 4;
    transition: all .15s ease;
    /*はじめは非表示*/
    /* visibility: hidden;
	opacity: 0; */
    display: none;
}

.bl_menu_subMenuBox .active {
    display: block;
}

.bl_menu_subMenu_item {
    padding: 0 5px;
    display: block;
}

.bl_menu_subMenu_item:first-child .bl_menu_subMenu_item_link {
    padding-top: 8px;
}

.bl_menu_subMenu_item:last-child .bl_menu_subMenu_item_link {
    border-bottom: 1px transparent solid;
}

.bl_menu_subMenu_item_link {
    display: block;
    width: 262px;
    padding: 7px 0;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px #fff solid;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .el_menuItem {
        display: none;
    }

    .bl_header {
        overflow: hidden;
        position: relative;
    }

    /* ハンバーガーメニュー */
    .el_hamburger {
        position: absolute;
        top: 10px;
        right: 0;
    }

    .el_hamburgerBox {
        position: relative;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    .el_hamburger_parts {
        display: inline-block;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #e50012;
        width: 45%;
        transition: all 0.3s ease;
    }

    .el_hamburger_parts:nth-child(1) {
        top: 15px;
    }

    .el_hamburger_parts:nth-child(2) {
        top: 23px;
    }

    .el_hamburger_parts:nth-child(3) {
        top: 31px;
    }

    .bl_header {
        padding-top: 10px;
        width: 100%;
    }

    .bl_header_topWrap {
        width: 100%;
        height: 15vw;
        margin-bottom: 0;
        justify-content: space-around;
    }

    .bl_header_top_item {
        width: 100%;
    }

    .bl_header_top_logo {
        width: 140px;
        margin: 0 auto 12px;
    }

    .bl_header_sp {
        width: 100%;
        height: 11.2vw;
    }

    .bl_header_sp_list {
        display: flex;
    }

    .bl_header_sp_item {
        width: calc(100% / 3);
        padding: 10px 0;
    }

    .bl_header_sp_item_link {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bl_header_sp_item_link_img {
        margin-right: 6px;
        max-width: 25px;
    }

    .bl_header_sp_item_link_img img {
        min-height: 6.7vw;        
    }

    .bl_header_sp_item_link_txt {
        font-size: 14px;
        color: #fff;
    }


}