@charset "UTF-8";

.menu_area{
  background: #000;
  width: 50px;
  height: 90px;
  position: fixed;
  right: 30px;
  top: 0;
  z-index: 5000
}

/*ここからハンバーガーメニュー のデザイン設定*/

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: absolute;
  width: 30px;
  height: 24px;
  bottom: 13px;
  left: calc(50% - 15px)
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*ここからハンバーガーメニュー の動作設定*/

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

.menu-trigger.active span{
  background-color: #000;
}

.nav_area{
  position: fixed;
  top: 0;
  right: 0;
  width: 596px;
  height: 100vh;
  box-sizing: border-box;
  padding: 135px 73px;
  z-index: 100001;
  background-color: rgba(255,255,255,0.9);
  overflow: scroll;
  display: none
}

#gnav li{
  font-family: din-condensed;
  font-size: 30px;
  color: #999999;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px #CCCCCC solid;
  padding-left: 20px;
}

#gnav li:last-of-type{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 185px
}

#gnav li a{
  color: #000;
  text-decoration: none;
  padding-left: 20px;
  transition: 0.5s;
}

#gnav li a:before{
  content: "- "
}

#gnav li a:hover{
  padding-left: 35px;
}

.nav_area h2{
  text-align: left;
  margin-bottom: 20px
}

.info li{
  font-family:"Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #666;
  font-weight: lighter;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

@media only screen and (max-width:768px) {
.menu_area{
  right: 0
}

.nav_area {
    width: 100vw;
    padding: 120px 45px 75px;
    background: #fff
}

#gnav li {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 12px;
}

#gnav li:last-of-type {
    margin-bottom: 100px;
}
}
