﻿@charset 'UTF-8';

@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}

@keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-webkit-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-moz-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-ms-keyframes move-clouds-back {
    from {background-position: 0;}
    to {background-position:10000px 0;}
}

.stars, .twinkling, .clouds {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  display:block;
}

.stars {
  background:#000226 url(../img/share/stars.png) repeat top center;
  z-index:0;
}

.twinkling{
  background:transparent url(../img/share/twinkling.png) repeat top center;
  z-index:1;

  -moz-animation:move-twink-back 800s linear infinite;
  -ms-animation:move-twink-back 800s linear infinite;
  -o-animation:move-twink-back 800s linear infinite;
  -webkit-animation:move-twink-back 800s linear infinite;
  animation:move-twink-back 800s linear infinite;
}

.clouds{
    background:transparent url(../img/share/clouds.png) repeat top center;
    z-index:3;

  -moz-animation:move-clouds-back 800s linear infinite;
  -ms-animation:move-clouds-back 800s linear infinite;
  -o-animation:move-clouds-back 800s linear infinite;
  -webkit-animation:move-clouds-back 800s linear infinite;
  animation:move-clouds-back 800s linear infinite;
}


#header { z-index: 999999; position: relative; }

/*メニュー
------------------------------------------------- */
.menuWrapper {
  height: 100%;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
}
.overlay .menulist{
		opacity: 1;

	}
.twMenu{ margin-left: 5%; background-image: url(../img/share/twIcon.png); background-size:20px; background-position:5px; background-repeat:  no-repeat; background-position: 35px;}
.menu-trigger {
  display: inline-block !important;
  width: 54px;
  height: 25px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  transform: translateX(0);
  transition: transform .5s;
 }
 .menu-trigger.active {
  transform: translateX(-250px);
  right: -235px;
}
.menu-trigger span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 7%;
width: 100%;
height: 2px;
background: -moz-linear-gradient(top, #c2c2c2, #6e6f73); 
background: -webkit-linear-gradient(top, #c2c2c2, #6e6f73); 
background: linear-gradient(to bottom, #c2c2c2, #6e6f73); 
}
.menu-trigger.active span {
  background-color: #595656;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.menu-trigger p { font-size: 14px; margin-top: 30px;}

@media all and (-ms-high-contrast: none){
	.menu-trigger p { font-size: 13px;}
}

nav {
  width: 250px;
  height: 100%;
  padding-top: 90px;
  background-color: #000226;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}
nav li {
	display: inline-block;
	width: 100%;
	text-align: center;
	border-bottom: #5a5a5a 1px solid;
	padding: 0;
}
nav li a{
	width:100%;
    height:100%;
	padding: 15px 2%;
}

nav li:nth-of-type(1){
  border-top: #5a5a5a 1px solid;
}

@media only screen and (max-width: 720px) {
	

	
}