@charset "UTF-8";
/* Scss Document */
/* CSS Document */
#top-head {
  display: none;
}

@media screen and (max-width: 890px) {
  .inner {
    width: 100%;
    padding: 0;
  }
  .inner:after {
    content: "";
    clear: both;
    display: block;
  }
  /* header */
  #top-head {
    top: 0px;
    position: fixed;
    width: 100%;
    margin: 0 auto 0;
    padding: 0;
    line-height: 1;
    z-index: 999;
    display: block;
  }
  #top-head a,
  #top-head {
    color: #fff;
    text-decoration: none;
  }
  #top-head .inner {
    position: relative;
  }
  #top-head .inner .mhead_copy {
    font-size: 1.35rem;
    color: #555;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 8px;
    z-index: 1000;
    font-feature-settings: "palt";
    -ms-font-feature-settings: "normal";
  }
  #top-head .logo {
    float: left;
    position: absolute;
    left: 10px;
    top: 12px;
    color: #333;
    max-width: 140px;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    left: -325px;
    background: rgba(0, 0, 0, 0.75);
    width: 320px;
    text-align: center;
    padding: 0;
    transition: 0.5s ease-in-out;
    box-sizing: border-box;
    padding: 10px 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  }
  #global-nav dl {
    list-style: none;
    right: 0;
    bottom: 0;
    font-size: 0.8125em;
    line-height: 2;
    display: flex;
  }
  #global-nav dl dt,
  #global-nav dl dd {
    float: none;
    text-align: left;
  }
  #global-nav dl dt a,
  #global-nav dl dd a {
    width: 100%;
    display: block;
    color: #fff;
  }
  #global-nav dl dt {
    width: 46%;
  }
  #global-nav dl dd {
    flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    -moz-flex: 1;
    -o-flex: 1;
  }
  /* Fixed */
  #mobile-head {
    background: rgba(255, 255, 255, 0.93);
    width: 100%;
    height: 40px;
    z-index: 999;
    position: relative;
  }
  /* Toggle Button */
  #nav-toggle {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 24px;
    height: 26px;
    cursor: pointer;
    z-index: 101;
  }
  #nav-toggle div {
    position: relative;
  }
  #nav-toggle span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: #000;
    left: 0;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 9px;
  }
  #nav-toggle span:nth-child(3) {
    top: 18px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 9px;
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 9px;
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    transform: translateX(325px);
  }
}/*# sourceMappingURL=hamburger.css.map */