@charset "UTF-8";

@media screen and (min-width: 769px) {
  .global-header {
    background: #e6e6e6;
  }
  .global-header__inner {
    max-width: 1000px;
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0 auto;
  }
  .global-header__sitename {
    width: 100%;
    max-width: 200px;
    height: 40px;
    background: none;
    border: none;
    position: relative;
    z-index: 100;
    padding: 0;
    margin: 0;
  }
  .global-header__sitename a {
    height: 100%;
    display: block;
    background: var(--logo);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    text-indent:100%;
    overflow:hidden;
  }
  .global-header__nav {
    width: 100%;
    margin-left: 20px;
  }
  .global-header__nav ul {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .global-header__nav ul li {
    width: 100%;
  }
  .global-header__nav ul li a {
    display: block;
    text-align: center;
    color: #000;
  }
  .global-header__nav ul li:last-of-type a {
    margin-right: 0;
  }
  .header-search,
  .global-header__nav__sub {
    display: none;
  }
}