﻿/*--animation - arrow/start button floating--*/

.floating{
	animation-name: floating;-webkit-animation-name: floating;
	animation-duration: 2.4s;-webkit-animation-duration: 2.4s;
	animation-iteration-count: infinite;-webkit-animation-iteration-count: infinite;
}
@keyframes floating {
	0% {transform: translateY(-8px);}	50% {transform: translateY(7px);}	100% {transform: translateY(-8px);}			
}
@-webkit-keyframes floating {
	0% {-webkit-transform: translateY(-8px);}	50% {-webkit-transform: translateY(7px);}	100% {-webkit-transform: translateY(-8px);}			
}

/*-- animation - icon rotate --*/

.icon_rotate {
	-webkit-animation: rotate 3.5s;-ms-animation: rotate 3.5s;animation: rotate 3.5s;                  
	-webkit-animation-iteration-count: infinite;-ms-animation-iteration-count: infinite;animation-iteration-count: infinite;   
}
@-webkit-keyframes rotate {
     /* webkit用keyframes */ 
    0% { -webkit-transform: rotate(0deg); }
    40% { -webkit-transform: rotate(360deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@-ms-keyframes rotate {
     /* ms用keyframes */ 
    0% { -ms-transform: rotate(0deg); }
    40% { -ms-transform: rotate(360deg); }
    100% { -ms-transform: rotate(360deg); }
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    40% { transform: rotate(360deg); } 
    100% { transform: rotate(360deg); } 
}

/*-- animation - icon floating --*/

.icon_float{
	animation-name: floating;-webkit-animation-name: floating;
	animation-duration: 3.0s;-webkit-animation-duration: 3.0s;
	animation-iteration-count: infinite;-webkit-animation-iteration-count: infinite;
}
@keyframes floating {
	0% {transform: translateY(-5px);}	50% {transform: translateY(4px);}	100% {transform: translateY(-5px);}			
}
@-webkit-keyframes floating {
	0% {-webkit-transform: translateY(-5px);}	50% {-webkit-transform: translateY(4px);}	100% {-webkit-transform: translateY(-5px);}			
}




/*------------------------------------------------------------------------------------------------
 ↓tablet style
-------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 768px){


}


/*------------------------------------------------------------------------------------------------
 ↓mobile style
-------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 479px){

/*-- animation - Slidebar --*/

.sb-slidebar{
		animation-name: anime_sb;
		animation-duration: 0.6s;
		animation-timing-function: ease;
		-webkit-animation-name: anime_sb;
		-webkit-animation-duration: 0.6s;
		-webkit-animation-timing-function: ease;
		-ms-animation-name: anime_sb;
		-ms-animation-duration: 0.6s;
		-ms-animation-timing-function: ease;
	}
@-webkit-keyframes anime_sb {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,100%, 0);
    -ms-transform: translate3d(0,100%, 0);    
    transform: translate3d(0,100%, 0);
  }

  100% {
    opacity: 1.0;
    -webkit-transform: none;
    -ms-transform: none;    
    transform: none;
  }
}

@keyframes anime_sb {
  0% {
    opacity: 0;
    transform: translate3d(0,100%, 0);
  }

  100% {
    opacity: 1.0;
    transform: none;
  }
}

@-ms-keyframes anime_sb {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0,100%, 0);
    -ms-transform: translate3d(0,100%, 0);    
    transform: translate3d(0,100%, 0);
  }

  100% {
    opacity: 1.0;
    -webkit-transform: none;
    -ms-transform: none;    
    transform: none;
  }
}


/*-----toggle button-----*/

.tcon {
  appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 40px;
  background: transparent;
  outline: none; }
  .tcon > * {
    display: block; }
  .tcon:hover, .tcon:focus {
    outline: none; }
  .tcon::-moz-focus-inner {
    border: 0; }

.tcon-menu__lines {
  display: inline-block;
  height: 5.71429px;
  width: 40px;
  border-radius: 2.85714px;
  transition: 0.3s;
  background: rgba(100,100,100,1.0);
  position: relative; }
  .tcon-menu__lines::before, .tcon-menu__lines::after {
    display: inline-block;
    height: 5.71429px;
    width: 40px;
    border-radius: 2.85714px;
    transition: 0.3s;
    background: rgba(100,100,100,1.0);
    content: '';
    position: absolute;
    left: 0;
    -webkit-transform-origin: 2.85714px center;
    transform-origin: 2.85714px center;
    width: 100%; }
  .tcon-menu__lines::before {
    top: 10px; }
  .tcon-menu__lines::after {
    top: -10px; }
  .tcon-transform .tcon-menu__lines {
    -webkit-transform: scale3d(.8, .8, .8);
    transform: scale3d(.8, .8, .8); }

.tcon-menu--xbutterfly {
  width: auto; }
  .tcon-menu--xbutterfly .tcon-menu__lines::before, .tcon-menu--xbutterfly .tcon-menu__lines::after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: top .3s .6s ease, -webkit-transform .3s ease;
    transition: top .3s .6s ease, transform .3s ease; }
  .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines {
    background: transparent; }
    .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::before, .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::after {
      top: 0;
      transition: top .3s ease, -webkit-transform .3s .5s ease;
      transition: top .3s ease, transform .3s .5s ease;
      width: 40px; }
    .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::before {
      -webkit-transform: rotate3d(0, 0, 1, 45deg);
      transform: rotate3d(0, 0, 1, 45deg); }
    .tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::after {
      -webkit-transform: rotate3d(0, 0, 1, -45deg);
      transform: rotate3d(0, 0, 1, -45deg); }

.tcon-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .tcon-visuallyhidden:active, .tcon-visuallyhidden:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }


}