﻿@charset "utf-8";
/* カスタムLoading
------------------------- */
.sk-cube-grid {
  width: 40px;
  height: 40px;
}
.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #558ec8;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
}
.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); 
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1);
  } 35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1);
  } 
}


/* toggleナビ
------------------------- */
.button_container {
  position: fixed;
  top: 2vh;
  right: 2vw;
  height: 25px;
  width: 25px;
  cursor: pointer;
  z-index: 9999;
  transition: opacity .25s ease;
  padding: 8px;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(9px) translateX(0) rotate(45deg);
  background: #ddd;
}
.button_container.active .middle {
  opacity: 0;
  background: #ddd;
}
.button_container.active .bottom {
  -webkit-transform: translateY(1px) translateX(0) rotate(-45deg);
          transform: translateY(1px) translateX(0) rotate(-45deg);
  background: #ddd;
}
.button_container span {
  background: #000;
  border: none;
  height: 2px;
  width: 25px;
  position: absolute;
  top: 11px;
  left: 8px;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 19px;
}
.button_container span:nth-of-type(3) {
  top: 27px;
}

.overlay {
  position: fixed;
  background-color: rgba(0,0,0,0.95);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
z-index:999;

}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.overlay nav {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 100;
  text-align: center; max-width:500px; margin:0 auto;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
.overlay ul li.overlay_menu100 {
  display: block;
  width: calc(100% - 20px);
  height: auto;
  position: relative; padding:20px 10px 12px 10px;
  opacity: 0;
border-top: 3px double #444;
  color: lightgoldenrodyellow;
  margin: 0 auto;
    
}
.overlay ul li {
  display: inline-block;
  width: calc(33.333333% - 0px);
  position: relative; padding:0px 15px 20px 15px;
  opacity: 0;
}
@media (max-width: 540px) {
  .overlay ul li.overlay_menu100 { height: 8vh; padding:10px 0px 0px 0px; }
	.overlay ul li { width: calc(45% - 0px); margin:0 auto; padding:0 0 10px 0; }
}
.overlay ul li a {
  display: inline-block;
  position: relative;
  color: lightgreen;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  height: 2px;
  background: lightgreen;
  transition: .35s;
}
.soonnav{ cursor: not-allowed; opacity:0.5; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}