

/* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
    headre
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */

#header.header_wrap{
    display: none;
}
/*  ==== レスポンシブ（1200以下） ==== ==== ==== */
@media screen and (max-width:1200px) {

    .header_wrap_top_margin{
        padding-top: 80px;
    }
    #header.header_wrap{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;

        width: 100%;
        height:  80px;
        display: block;
        background-color: rgba(255, 255, 255, 1.0);
    }

    #header .header_content{
        margin: 0 auto;
        width: 100%;
        max-width: 1500px;
        height: 80px;

        display: -moz-box;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;

        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;

        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;

        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #header .header_logo{
        margin-left: 20px;
    }
    #header .header_logo img{
        width: auto;
        height: auto;
        height: 60px;
    }



    /* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== 
        以下バーガーメニュー
    ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
    #header .burger_btn_wrap{
        margin-right: 30px;
        width:  40px;
        height: 40px;
        position: relative;
    }

    #header .bg_btn_line{
        transition: 0.3s;
        position: absolute;
        width: 70%;
        height: 0px;
        border-top: solid 2px #000;
    }

    #header .bg_line_01{
        top: calc( 20% - 2px);
        left: 50%;
        transform: translateX(-50%);
    }
    #header .bg_line_02{
        top: calc(50% - 2px);
        left: 50%;
        transform: translateX(-50%);
    }
    #header .bg_line_03{
        top: calc(80% - 2px);
        left: 50%;
        transform: translateX(-50%);
    }

    .burger_btn_text_wrap{
        width: 40px;
        height: auto;
        color: #28a738;
        font-size: 8px;
        text-align: center;
    }
    .burger_btn_text.sp_menu_on{
        display: none;
    }
    /*  --- バーガーメニューをクリック （.sp_menu_on） --- --- */
    .sp_menu_on{
    }

    #header .burger_btn_wrap.sp_menu_on .bg_line_01{
        top: calc( 50% - 0px);
        transform: translateX(-50%) rotate(500deg);
    }
    #header .burger_btn_wrap.sp_menu_on .bg_line_02{
        display: none;
    }
    #header .burger_btn_wrap.sp_menu_on .bg_line_03{
        top: calc( 50% - 0px);
        transform:translateX(-50%) rotate(-500deg);
    }

    /* ---- header-menu_sp ---- ---- ---- ---- ---- ---- ---- ---- ---- ----  */
    .header_menu_sp{

        transition: 0.3s;
        position: fixed;
        top: 80px;
        left: calc(110vw);

        z-index: 100;

        margin: 0;
        padding: 0;
        width: 100%;
        background-color: #FFF;
    }
    /*  --- バーガーメニューをクリック （.sp_menu_on） --- --- */
    .header_menu_sp.sp_menu_on{
        top: 80px;
        left: 0;
    }

    .header_menu_sp_content{
        padding: 30px 20px 60px;
        width: 100%;
        height: calc(100vh - 80px);
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .header_menu_list_sp{
        width:  60%;
        max-width: 400px;
    }
    .header_menu_list_sp ul{
        padding: 0;
        list-style: none;
    }
    .header_menu_list_sp ul li{
        list-style: none;
        padding-top: 30px;
        padding-bottom: 10px;
        padding-left: 20px;
        border-bottom: solid 2px #b4b4b4;
    }
    .header_menu_list_sp ul li a{
        font-size: 0.8em;
        font-size: 20px;
    }
    .header_menu_list_sp ul li a .en{
        font-size: 0.8em;
        font-weight: 500;
        color: #28a738;
    }
    .header_menu_list_sp ul li a .jp{
        font-size: 1em;
        font-weight: 700;
    }

    .header_menu_bottom_sp{
        margin-top: 60px;
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    .bottom_link{
        width:  60%;
        max-width: 400px;
    }
    .logo{
        display: inline-block;
        margin-bottom: 10px;
    }
    .site_logo{
        width: 20%;
        max-width: 140px;
    }

}