#header {
  position: sticky;
  z-index: 64;
  top: -40px;
  width: 100%;
  background: #AF1D31;
  margin-bottom: 8px;
}
.header-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
  .header_logo {
    display: block;
    height: 30px;
  }
    .header_logo_img {
      display: block;
      width: 140px;
      object-fit: contain;
      margin-left: 5px;
      height: 100%;
    }
  .header-bottom {
    display: none;
    width: 100%;
    background: #004374;
  }
    #header_nav {
      display: none;
      justify-content: flex-end;
      width: 100%;
      height: 46px;
      margin-top: 5px;
      margin-left: 5px;
      padding-bottom: 5px;
    }
      .header_nav_button {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 50%;
        border-left: solid 1px #fff;
        border-right: solid 1px #fff;
        font-size: 14px;
        text-decoration: none;
      }
        .header_nav_button_img {
          display: block;
          width: 24px;
          height: 24px;
        }
        .header_nav_button_text {
          width: 100%;
          text-align: center;
          color: #fff;
          font-weight: bold;
          font-size: 12px;
        }
        #header {
          position: initial;
        }

@media screen and (min-width: 765px) {
  .header-wrapper {
    max-width: 1024px;
    margin: 0 auto;
  }
    .header_logo {
      display: block;
      width: auto;
      height: 40px;
      margin-top: 0;
    }
  #header_nav {
    width: 60%;
    height: 46px;
  }
  .header_logo_img {
    width: 200px;
  }
  .header_nav_button_text {
    font-size: 16px;
  }
  .header_nav_button_img {
    width: 28px;
    height: 28px;
  }

    
}

@media screen and (max-width: 320px) {
  .header_logo_img {
    width: 110px;
  }
  .header_logo {
    margin-top: 15px;
  }


}
