@charset "UTF-8";
.SpMenu {
  position: absolute; }
  @media (min-width: 1024px) {
    .SpMenu {
      display: none; } }
  .SpMenu .SpLogo {
    left: 5%;
    top: 10px;
    z-index: 100;
    position: fixed; }
    .SpMenu .SpLogo img {
      width: auto;
      height: 54px; }

/*ハンバーガーメニュー*/
.openbtn {
  position: fixed;
  background-color: #3C452F;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  top: 10px;
  right: 10px;
  z-index: 1000;
  /*ボタン内側*/ }
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: #fff; }
    .openbtn span:nth-of-type(1) {
      top: 15px;
      width: 45%; }
    .openbtn span:nth-of-type(2) {
      top: 23px;
      width: 35%; }
    .openbtn span:nth-of-type(3) {
      top: 31px;
      width: 20%; }

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
  top: 16px;
  left: 16px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%; }
.openbtn.active span:nth-of-type(2) {
  opacity: 0; }
.openbtn.active span:nth-of-type(3) {
  top: 28px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%; }

/*メニュー押した後の背景アニメーション*/
.circle-bg {
  position: fixed;
  background-color: #3c452f;
  top: -50px;
  width: 100%;
  height: 100px;
  transition: all 1s ease-in-out;
  overflow: hidden;
  z-index: 10;
  transform: scale(0); }
  .circle-bg.open {
    transform: scale(100); }

/*メニュー押した後の文字アニメーション*/
#g-nav {
  position: relative;
  text-align: center;
  padding-top: 100px; }
  #g-nav.navActive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh; }
  #g-nav ul {
    margin-top: 0px; }
    #g-nav ul li {
      margin-bottom: 20px;
      opacity: 0;
      color: #fff; }
      @media (min-width: 410px) {
        #g-nav ul li {
          margin-bottom: 30px; } }
      #g-nav ul li a {
        color: #fff;
        font-size: 1.125em;
        letter-spacing: 0.05em;
        font-weight: 500; }
        #g-nav ul li a img {
          width: 150px;
          height: auto;
          text-align: center; }
      #g-nav ul li.Rockwell {
        margin: 34px 0 20px; }

#g-nav.navActive li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s; }
  #g-nav.navActive li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s; }
  #g-nav.navActive li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s; }
  #g-nav.navActive li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s; }
  #g-nav.navActive li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s; }
  #g-nav.navActive li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s; }
  #g-nav.navActive li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s; }
  #g-nav.navActive li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s; }
  #g-nav.navActive li:nth-of-type(9) {
    -webkit-animation-delay: .75s;
    animation-delay: .75s; }
  #g-nav.navActive li:nth-of-type(10) {
    -webkit-animation-delay: .80s;
    animation-delay: .80s; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(0px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight; }
