@charset "UTF-8";

@media screen and (min-width: 769px) {
  .global-header {
    width: 100%;
    background: #e6e6e6;
    position: fixed;
    z-index: 100;
  }
  .container {
    padding-top: 170px;
  }
  .global-header__inner {
    max-width: 1000px;
    display: block;
    position: relative;
    padding: 60px 0;
    margin: 0 auto;
  }
  .global-header__sitename {
    width: 100%;
    max-width: 200px;
    height: 40px;
    background: none;
    border: none;
    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%;
    white-space:nowrap;
    overflow:hidden;
  }
  .global-header__btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 30;
    background: #fff;
    transition: .3s;
  }
  .active .global-header__btn {
    right: 500px;
    background: #4d4d4d;
    border-radius: 10px 0 0 10px;
    margin-right: calc(50% - 50vw);
  }
  .global-header__btn span,
  .global-header__btn span::before,
  .global-header__btn span::after {
    content: '';
    width: 20px;
    height: 4px;
    display: block;
    background: #4d4d4d;
    position: absolute;
  }
  .global-header__btn span::before {
    bottom: 10px;
  }
  .global-header__btn span::after {
    top: 10px;
  }
  .active .global-header__btn span,
  .active .global-header__btn span::before,
  .active .global-header__btn span::after {
    background: #fff;
  }
  .active .global-header__btn span {
    background: transparent;
  }
  .active .global-header__btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .active .global-header__btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .global-header__nav {
    width: 0;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background: #4d4d4d;
    z-index: 20;
    transition: .3s;
    margin-right: calc(50% - 50vw);
  }
  .active .global-header__nav {
    width: 500px;
  }
  .global-header__nav ul {
    display: block;
    color: transparent;
    overflow: hidden;
    padding-top: 130px;
  }
  .global-header__nav ul li a {
    height: auto;
    display: block;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    padding: 10px 0;
    margin: 0;
  }
  .header-search,
  .global-header__nav__sub {
    display: none;
  }
}