header{
    width:100%;
    box-sizing: border-box;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    padding: 10px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
}
header .inner{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-items: flex-end;
    justify-content: flex-end;
    padding: 10px 0;
    position: relative;
}
header .header_overlay{
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background-position: left bottom;
    background-size: 50vw auto;
}
header .inner .left{
    width: 380px;
}
header .inner .left img{
    width: 380px
}
header .inner .right{
    width: calc(100% - 380px);
}
/*---Responsive--------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:680px){
    header .header_overlay{
        display: none;
    }
    header .inner .header_termin{
        display: none;
    }
}
@media screen and (max-width:500px){
    header .inner .left img{
        width: 300px;
    }
}
@media screen and (max-width:360px){
    header .inner .left img{
        width: 250px;
    }
}