/* icon */
/* .ic-arrow-prev{
    background-color: #333;
    -webkit-mask-image: url(../resources/icon/ic_arrow_left.svg);
    mask-image: url(../resources/icon/ic_arrow_left.svg);
}
.ic-arrow-next{
    background-color: #333;
    -webkit-mask-image: url(../resources/icon/ic_arrow_right.svg);
    mask-image: url(../resources/icon/ic_arrow_right.svg);
}
.ic-arrow-top{
    background-color: #333;
    -webkit-mask-image: url(../resources/icon/ic_arrow_top.svg);
    mask-image: url(../resources/icon/ic_arrow_top.svg);
} */

.ic-hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .ic-hamburger div {
    position: relative;
    width: 25px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    margin-top: 6px;
    transition: all 0.3s ease-in-out;
  }
  .ic-hamburger div:first-child{
    margin-top: unset;
  }

  .ic-hamburger.ON div {
    background-color: #aaa;
  }
  .ic-hamburger.ON .top-bun {
    transform: rotate(-45deg) translateX(-4px) translateY(4.5px);
    margin-top: 0;
  }
  .ic-hamburger.ON .bottom-bun {
    opacity: 0;
  }
  .ic-hamburger.ON .meat {
    transform: rotate(45deg) translateX(3px) translateY(3px);
    margin-top: 0;
  }
  
  .ic-hamburger.ON + .nav {
    top: 0;
    transform: scale(1);
  }
  


/* content */
#fullpage,
.secItem  {
  width: 100%;
  height: 100%;
}
.secItem {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #111;
}