@charset "utf-8";
/* CSS Document */
#header {
  position: fixed;
  top: 0;
}
#headMenu {
  height: 48px;
  text-align: center;
  border-bottom: 1px solid #eee;
  background: rgba(255,255,255,1.0);
}
span.headMenuTitle {
  font-size: 2rem;
  display: inline-block;
  padding-left: 40px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.5rem;
  vertical-align: 14px;
}
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  cursor : pointer;
}
.menu-trigger {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.headIcon {
  position: absolute;
  width: 30px;
  height: 21px;
  top: 13px;
}
.headIcon span {
  position: absolute;
  background: #959595;
  width: 30px;
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
}
.headIcon span:nth-of-type(1) {
  top: 0;
}
.headIcon span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.headIcon span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active .headIcon span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.menu-trigger.active .headIcon span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active .headIcon span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
.g-nav {
  display: none;
  z-index: 5;
}
.g-nav .list {
  padding: 0;
  margin: 0;
  background: rgba(0,0,0,0.90);
  display: block;
  height: 100%;
  width: 100%;
}
