
/*---------------------------------------------
menu
---------------------------------------------*/


#menuBtn {
  background: url("../images/nav/btn_menu01b.png") no-repeat center;
  background-size: cover;
  width: 67px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 54;
  mix-blend-mode: difference;
}

#menuBtn2 {
  background: url("../images/nav/btn_menu02.png") no-repeat center;
  background-size: cover;
  width: 67px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55;
  display: none;
}

#menuAll {
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 52;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
}

#menuMain{
  width: 65%;
  position: absolute;
  top: 50%; left: 17.5%;
  transform: translateY(-50%);
  z-index: 2;
}

#menuLogo {
  width: 200px;
  margin: 0 auto 30px;
  animation: menufadeanm 1s ease .1s forwards;
  opacity: 0;
}

#menuLogo img{ width: 100%;}

#menu {
  width: 100%;
  margin: 0.2em auto;
}

#menu ul {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  position: relative;
}

#menu ul li {
  width: 100%;
  margin: 0.3em auto;
  text-align: center;
  font-family: "Elms Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  animation: menuanm 1s cubic-bezier(0,.64,.41,1) .5s forwards;
  transform: translateY(15px);
  opacity: 0;
}

#menu ul li a{
 color: #000;
 text-decoration: none;
}

#menu ul li.snsnav {
  line-height: 120px;
}

#menu ul li.snsnav img{
  width: 35px;
  margin: 0 10px;
}


/*---------------------------------------------
sns
----------------------------------------------*/

#snsIcon {
  background: #fff;
  width: 70px;
  height: 35px;
  position: fixed;
  top: 7.5px;
  right: 8px;
  z-index: 51;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#iX { background: url("../images/sns/nav_x_bk.png") no-repeat center; }
#iInstagram { background: url("../images/sns/nav_insta_bk.png") no-repeat center; }
#iTiktok { background: url("../images/sns/nav_tiktok_bk.png") no-repeat center; }

#iX,
#iInstagram,
#iTiktok {
  background-size: 70% auto;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
  text-indent: -99999px;
  overflow: hidden;
  margin: 0;
}

#iX a,
#iInstagram a,
#iTiktok a {
  width: 100%;
  height: 100%;
  display: block;
}


@keyframes menufadeanm {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes  menuanm {
0% { transform: translateY(15px); opacity: 0;}
100% { transform: translateX(0); opacity: 1;}
}

#menu ul li:nth-child(1) { animation-delay: 0.2s;}
#menu ul li:nth-child(2) { animation-delay: 0.3s;}
#menu ul li:nth-child(3) { animation-delay: 0.4s;}
#menu ul li:nth-child(4) { animation-delay: 0.5s;}
#menu ul li:nth-child(5) { animation-delay: 0.6s;}
#menu ul li:nth-child(6) { animation-delay: 0.7s;}
#menu ul li:nth-child(7) { animation-delay: 0.8s;}
#menu ul li:nth-child(8) { animation-delay: 0.9s;}
#menu ul li:nth-child(9) { animation-delay: 1s;}


@media screen and (min-width : 769px){

#menu ul li a{
  transition: all 0.3s ease;
}

#menu ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

#iX,
#iInstagram,
#iTiktok {
  transition: all 0.3s ease;
}



#iX:hover,
#iInstagram:hover,
#iTiktok:hover {
  opacity: 0.7;
  cursor: pointer;
}

}


