@charset "utf-8";
/* CSS Document */

/* ハンバーガー・ナビメニュー */
.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: block;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }

.global-nav {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ccc;
  z-index: 1000;
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav li {
  border-bottom: 1px solid #eee;
}

.global-nav li a {
  display: block;
  padding: 14px;
  text-decoration: none;
  color: #333;
}

/* 表示切り替え */
.global-nav.show {
  display: block;
}

/* PC表示対応 */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .global-nav {
    display: block !important;
    position: static;
    border: none;
  }
  .global-nav ul {
    display: flex;
  }
  .global-nav li {
    border: none;
    margin-left: 20px;
  }
}
