
/*ハンバーガーメニュー*/
.trigger {
  width: 60px;
  height: 60px;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 10;
  padding: 10px 12px;
  cursor: pointer;
  transition: .5s ease-in-out;
}
/*#header.headerColorScroll .trigger{
  background: #b39d51;
  transition: .5s ease-in-out;
}*/
.menu-trigger {
  position: fixed;
  width: 35px;
  height: 40px;
  z-index: 15;
}
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 6px;
}
.menu-trigger span:nth-of-type(2) {
  top: 19px;
}
.menu-trigger span:nth-of-type(3) {
  top: 31px;
}
.menu-trigger.active {
  height: 35px;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  left: 0;
  top: 9px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(-90deg);
  transform: translateY(-8px) rotate(-45deg);
  top: 25px;
}
/*ハンバーガー メニュー内*/
.smp-navList {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 1;
  background: #000;
  transition: all 0.3s ease-in-out;
  display: none;
}
.smp-navList.active {
  display: block;
  right: 0;
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.smp-navList ul.fixMenu {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  font-weight: bold;
  text-align: center;
}
.smp-navList ul.fixMenu a{
  color: #fff;
}
.smp-navList ul.fixMenu > li {
  width: 100%;
  font-size: 1.5rem;
}
.smp-navList ul.fixMenu > li.menu a {
  display: block;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}

/*scrollマーク*/
.scrolldown{
  position: absolute;
  bottom: 0;
  left: 50%;
}
.scrolldown span{
  position: absolute;
  left: 10px;
  bottom: 30px;
  color: #fff;
  font-size: 0.7rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom: 62px;}
  100%{bottom: -5px;}
}

@keyframes cirlemovehide{
  0%{opacity: 0}
  50%{opacity: 1;}
  80%{opacity: 0.9;}
  100%{opacity: 0;}
}

.scrolldown:after{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 70px;
  background:#fff;
}