@media screen and (min-width: 768px) {
  header {
    overflow: hidden;
  }
  header .logo {
    float: left;
  }
}

.nav-container {
  background:#111;
  padding: 5px 0;
}
.nav-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-social {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu-social {
    display: block;
  }
}
.sns-icon {
  display: flex;
}
.sns-icon a {
  color:#888;
}
.sns-icon a:hover {
  color:#fff;
}
.sns-icon li {
  margin-right: 10px;
  margin-left: 10px;
}
.sns-icon li:last-child {
  margin-right: 0;
}
.global-nav {
  font-family: 'Abel', sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .global-nav {
    line-height: 36px;
  }
}
.global-nav .navigation {
  display: none;
}
@media screen and (min-width: 768px) {
  .global-nav .navigation {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .global-nav .navigation ul {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .global-nav .navigation ul li {
    font-size: 1rem;
    margin: 0 10px;
  }
}
@media screen and (min-width: 1024px) {
  .global-nav .navigation ul li {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .global-nav .navigation ul li {
    font-size: 1.5rem;
  }
}
.global-nav .navigation ul li a:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .global-nav .navigation ul li a {
    text-decoration: none;
    color: #888;
  }
}

.mobile-nav {
  color: #888;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 29px;
  font-family: 'Abel', sans-serif;
  font-weight: medium;
  padding-left: 100px;
  transform: translateX(200%);
  transition: transform 0.3s cubic-bezier(0, 0, 0.3, 0.4);
}
.mobile-nav a:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

.open .mobile-nav {
  transform: translateX(0);
}

.m-menu {
  background: #111;
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
}
@media screen and (min-width: 768px) {
  .m-menu {
    display: none;
  }
}

.nav-toggle {
  position: fixed;
  top: 9px;
  right: 7px;
  height: 30px;
  cursor: pointer;
}
.nav-toggle > div {
  position: relative;
  width: 30px;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform .3s ease-in-out, top .5s ease;
  /* .nav-toggle close */
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 12px;
}
.nav-toggle span:nth-child(3) {
  top: 24px;
}

.open .nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open .nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open .nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* z-index */
.m-menu {
  z-index: 1000;
}

.nav-toggle {
  z-index: 900;
}

.container {
  z-index: 800;
}

.mobile-nav nav {
  z-index: 888;
}

.mobile-nav {
  background-image: linear-gradient(-45deg, #333, #111);
  opacity: .9;
  color: #888;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 29px;
  padding-left: 0;
  transform: translateX(200%);
  transition: transform 0.3s cubic-bezier(0, 0, 0.3, 0.4);
}

.open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav {
  padding: 36px;
}
.mobile-nav a {
  display: inline-block;
  color: #888;
  text-decoration: none;
  padding: 10px 0;
  transition: color .1s ease;
}
.mobile-nav ul {
  list-style: none;
}
.mobile-nav ul li {
  transform: translateX(500px);
  transition: transform .3s ease;
  position: relative;
}

.open .mobile-nav li {
  transform: translateX(0);
}

.nav-bg {
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: all 1s ease;
}

.nav-social > ul {
  display: flex;
}

.current-menu-item a {
  color: #fff !important;
}

.nav-social ul {
  display: flex;
}
.nav-social ul li {
  margin-right: 30px;
}
.nav-social ul li:last-child {
  margin-right: 0;
}
.nav-social ul li img {
  width: 30px;
  height: 30px;
}

.show {
  display: block !important;
}