@charset "UTF-8";
/* ------------------------------------------------------------
スマホ用グローバルナビ
------------------------------------------------------------ */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #ffffff;
  border: 1px solid #333333;
  z-index: 700;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 24px;
  background: #333333;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
@media print, screen and (min-width: 1100px) {
  .menu-btn {
    display: none;
  }
}

#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background: rgba(0, 0, 0, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
}

.menu-content {
  overflow-y: scroll;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 600;
}
.menu-content .logo {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 0 0 15px;
}
.menu-content .sp-gnav {
  margin: 0 0 90px;
}
.menu-content .sp-gnav ul li {
  border-top: 1px solid #cccccc;
}
.menu-content .sp-gnav ul li:last-child {
  border-bottom: 1px solid #cccccc;
}
.menu-content .sp-gnav ul li a {
  position: relative;
  display: block;
  padding: 20px 15px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.menu-content .sp-gnav ul li a::before {
  content: "";
  position: absolute;
  bottom: 23px;
  right: 20px;
  width: 40px;
  height: 1px;
  background: #333;
  transition: all 0.3s;
}
.menu-content .sp-gnav ul li a::after {
  content: "";
  position: absolute;
  bottom: 26px;
  right: 20px;
  width: 10px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.menu-content .sp-gnav ul li a:hover::before {
  right: 10px;
}
.menu-content .sp-gnav ul li a:hover::after {
  right: 10px;
}/*# sourceMappingURL=nav.css.map */