@charset "UTF-8";
/*==================================================*/
/* 前提css */
/*==================================================*/
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Koulen&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Road+Rage&display=swap");
a, article, blockquote, body, caption, dd, div, dl, dt, footer, h1, h2, h3, h4, h5, h6, header, html, iframe, img, li, nav, ol, p, pre, section, small, span, strong, table, td, th, tr, ul, figure {
  background: 0;
  border: 0;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: bottom; }

a, small, span, strong {
  vertical-align: baseline; }

article, footer, header, nav, section {
  display: block; }

li {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

address, th {
  font-style: normal; }

:focus, a:focus {
  outline: 0; }

br {
  letter-spacing: normal; }

img {
  height: auto;
  width: 100%; }

textarea {
  resize: none; }

a {
  text-decoration: none; }

/*==================================================*/
/* レスポンシブ用css */
/*==================================================*/
.pc {
  display: block; }
  .pc.inline {
    display: inline; }
  .pc.flex {
    display: flex; }

.sp {
  display: none; }
  .sp.inline {
    display: none; }
  .sp.flex {
    display: none; }

@media (max-width: 480px) {
  .pc {
    display: none; }
    .pc.inline {
      display: none; }
    .pc.flex {
      display: none; }

  .sp {
    display: block; }
    .sp.inline {
      display: inline; }
    .sp.flex {
      display: flex; } }
/*==================================================*/
/* アニメーション用css */
/*==================================================*/
/*==================================================*/
/*==============================================================*/
/* アニメーション */
/*==============================================================*/
@-webkit-keyframes bright {
  0% {
    filter: blur(10px);
    opacity: 0; }
  90% {
    filter: blur(0); }
  100% {
    opacity: 1;
    filter: blur(0); } }
@-moz-keyframes bright {
  0% {
    filter: blur(10px);
    opacity: 0; }
  90% {
    filter: blur(0); }
  100% {
    opacity: 1;
    filter: blur(0); } }
@keyframes bright {
  0% {
    filter: blur(10px);
    opacity: 0; }
  90% {
    filter: blur(0); }
  100% {
    opacity: 1;
    filter: blur(0); } }
@-webkit-keyframes click {
  0% {
    transform: translateY(0%); }
  35% {
    transform: translateY(0%); }
  50% {
    transform: translateY(-10%); }
  65% {
    transform: translateY(0%); }
  80% {
    transform: translateY(-10%); }
  95% {
    transform: translateY(0%); }
  100% {
    transform: translateY(0%); } }
@-moz-keyframes click {
  0% {
    transform: translateY(0%); }
  35% {
    transform: translateY(0%); }
  50% {
    transform: translateY(-10%); }
  65% {
    transform: translateY(0%); }
  80% {
    transform: translateY(-10%); }
  95% {
    transform: translateY(0%); }
  100% {
    transform: translateY(0%); } }
@keyframes click {
  0% {
    transform: translateY(0%); }
  35% {
    transform: translateY(0%); }
  50% {
    transform: translateY(-10%); }
  65% {
    transform: translateY(0%); }
  80% {
    transform: translateY(-10%); }
  95% {
    transform: translateY(0%); }
  100% {
    transform: translateY(0%); } }
@-webkit-keyframes text_on {
  0% {
    opacity: 0; }
  99% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@-moz-keyframes text_on {
  0% {
    opacity: 0; }
  99% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@keyframes text_on {
  0% {
    opacity: 0; }
  99% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@-webkit-keyframes text-eff_on {
  0% {
    left: -100%; }
  50% {
    left: 0%; }
  100% {
    left: 100%; } }
@-moz-keyframes text-eff_on {
  0% {
    left: -100%; }
  50% {
    left: 0%; }
  100% {
    left: 100%; } }
@keyframes text-eff_on {
  0% {
    left: -100%; }
  50% {
    left: 0%; }
  100% {
    left: 100%; } }
.bright {
  -webkit-animation: bright 1s ease;
  -moz-animation: bright 1s ease;
  animation: bright 1s ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }

@keyframes slideIn {
  0% {
    transform: translateX(-1200px);
    opacity: 0; }
  100% {
    transform: translateX(0); }
  40%,100% {
    opacity: 1; } }
.slideInLeft {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards; }

/* 以下拾いもののアニメーション*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.eary {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  0%,20%,53%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  40%,43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  40%,43%,70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  0%,20%,53%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  40%,43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  40%,43%,70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  0%,50%,to {
    opacity: 1; }
  25%,75% {
    opacity: 0; } }
@keyframes flash {
  0%,50%,to {
    opacity: 1; }
  25%,75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  0%,to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  10%,30%,50%,70%,90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,40%,60%,80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes shake {
  0%,to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  10%,30%,50%,70%,90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%,40%,60%,80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  10%,20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); }
  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
  40%,60%,80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  10%,20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); }
  30%,50%,70%,90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
  40%,60%,80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  0%,11.1%,to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes jello {
  0%,11.1%,to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
@keyframes bounceIn {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
@keyframes bounceInUp {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%,55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%,55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%,45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn); }
  0%,40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg); }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg); }
  50%,80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn); }
  0%,40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg); }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg); }
  50%,80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  0%,40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg); }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg); }
  60%,80% {
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg); }
  60%,80% {
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg); }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center; }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center; }
  to {
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center; }
  to {
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center; }
  to {
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: left bottom; }
  to {
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: right bottom; }
  to {
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left; }
  0%,20%,60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left; }
  40%,80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
@keyframes hinge {
  0% {
    transform-origin: top left; }
  0%,20%,60% {
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%,60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    transform-origin: top left; }
  40%,80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

@-webkit-keyframes rollOut {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50%,to {
    opacity: 0; } }
@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50%,to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/*==================================================*/
/* fonts */
/*==================================================*/
/*==================================================*/
/* common */
/*==================================================*/
.pc {
  display: block; }
  @media (max-width: 980px) {
    .pc {
      display: none; } }

.pad {
  display: none; }
  @media screen and (max-width: 1150px) {
    .pad {
      display: block; } }

.sp {
  display: none; }
  @media (max-width: 980px) {
    .sp {
      display: block; } }

img {
  object-fit: contain;
  height: auto;
  width: 100%;
  -webkit-user-drag: none;
  user-select: none; }

/* ===== 共通 ===== */
.fadeUp,
.fade-block_L,
.fade-block_R {
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease; }

/* ===== 下から ===== */
.fadeUp {
  transform: translateY(30px); }

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0); }

/* ===== 左から ===== */
.fade-block_L {
  transform: translateX(-40px); }

.fade-block_L.is-inview {
  opacity: 1;
  transform: translateX(0); }

/* ===== 右から ===== */
.fade-block_R {
  transform: translateX(40px); }

.fade-block_R.is-inview {
  opacity: 1;
  transform: translateX(0); }

/* ===== 順番表示（自動ディレイ） ===== */
.is-inview:nth-child(1) {
  transition-delay: 0.1s; }

.is-inview:nth-child(2) {
  transition-delay: 0.2s; }

.is-inview:nth-child(3) {
  transition-delay: 0.3s; }

.is-inview:nth-child(4) {
  transition-delay: 0.4s; }

.is-inview:nth-child(5) {
  transition-delay: 0.5s; }

/*==================================================*/
/* nav */
/*==================================================*/
#nav {
  position: fixed;
  background: #fff;
  height: 3.125vw;
  width: 100%;
  z-index: 999; }
  @media (max-width: 1280px) {
    #nav {
      height: 4.6875vw; } }
  @media (max-width: 980px) {
    #nav {
      background: none; } }
  #nav nav {
    box-sizing: border-box;
    padding: 0 2.6041666667vw; }
    @media screen and (max-width: 1580px) {
      #nav nav {
        padding: 0 2.6041666667vw; } }
    @media (max-width: 1280px) {
      #nav nav {
        box-sizing: border-box;
        padding: 0 3.90625vw; } }
    #nav nav ul {
      height: 3.125vw;
      display: flex;
      align-items: center; }
      @media (max-width: 1280px) {
        #nav nav ul {
          height: 4.6875vw; } }
      @media (max-width: 980px) {
        #nav nav ul {
          flex-direction: column; } }
      #nav nav ul li {
        font-family: "Anton", sans-serif;
        font-size: 1.3541666667vw;
        white-space: nowrap; }
        @media (max-width: 1280px) {
          #nav nav ul li {
            font-size: 2.03125vw; } }
        @media (max-width: 980px) {
          #nav nav ul li {
            font-size: 2.6530612245vw;
            margin-left: 0;
            margin-top: 30px;
            white-space: normal; }
            #nav nav ul li:first-child {
              margin-left: 0; } }
        #nav nav ul li:nth-child(n + 2) {
          margin-left: 1.5625vw; }
          @media (max-width: 1280px) {
            #nav nav ul li:nth-child(n + 2) {
              font-size: 2.03125vw;
              margin-left: 2.34375vw; } }
          @media (max-width: 980px) {
            #nav nav ul li:nth-child(n + 2) {
              font-size: 2.6530612245vw;
              margin-left: 0; } }
        #nav nav ul li:nth-last-child(2) {
          margin-left: 0;
          margin-left: auto; }
          @media (max-width: 980px) {
            #nav nav ul li:nth-last-child(2) {
              margin-left: 0; } }
        #nav nav ul li.hd_sns_area {
          display: flex;
          align-items: center; }
          #nav nav ul li.hd_sns_area .hd_sns_btn {
            margin-left: auto; }
            @media (max-width: 980px) {
              #nav nav ul li.hd_sns_area .hd_sns_btn {
                margin-left: 0;
                margin: 0 auto;
                height: 100% !important;
                flex-direction: row !important; } }
            #nav nav ul li.hd_sns_area .hd_sns_btn li {
              height: 1.8229166667vw;
              width: auto;
              margin: 0;
              padding: 0; }
              @media (max-width: 1280px) {
                #nav nav ul li.hd_sns_area .hd_sns_btn li {
                  height: 2.734375vw; } }
              @media (max-width: 980px) {
                #nav nav ul li.hd_sns_area .hd_sns_btn li {
                  height: 50px; } }
              #nav nav ul li.hd_sns_area .hd_sns_btn li:nth-child(n + 2) {
                margin-left: 10px; }
                @media (max-width: 980px) {
                  #nav nav ul li.hd_sns_area .hd_sns_btn li:nth-child(n + 2) {
                    margin-left: 20px; } }
              #nav nav ul li.hd_sns_area .hd_sns_btn li img {
                height: 100% !important;
                width: auto !important;
                object-fit: cover; }
        #nav nav ul li a {
          color: #000;
          transition: all .3s; }
          @media (max-width: 980px) {
            #nav nav ul li a {
              color: #fff;
              font-size: 16px; } }
          #nav nav ul li a:hover {
            opacity: .5; }
            @media (max-width: 980px) {
              #nav nav ul li a:hover {
                opacity: 1; } }
          @media (max-width: 980px) {
            #nav nav ul li a:active {
              opacity: .5; } }
    #nav nav .acd-check {
      display: none; }
    #nav nav .acd-label {
      box-sizing: border-box;
      cursor: pointer;
      color: #fff;
      display: block;
      /*margin-bottom: 1px;*/
      padding: 10px;
      transition: all .3s; }
      #nav nav .acd-label:hover {
        opacity: .5; }
    #nav nav .acd-content {
      box-sizing: border-box;
      position: fixed;
      background: #000;
      top: 4.1666666667vw;
      height: 0;
      opacity: 0;
      padding: 0 10px;
      transition: all .1s;
      visibility: hidden;
      width: 100%;
      max-width: 6.25vw; }
      @media (max-width: 1280px) {
        #nav nav .acd-content {
          top: 6.25vw;
          max-width: 9.375vw; } }
      #nav nav .acd-content p {
        color: #555; }
        #nav nav .acd-content p a {
          color: #fff;
          transition: all .3s; }
          #nav nav .acd-content p a:hover {
            color: #ff6900; }
      #nav nav .acd-content.box {
        box-sizing: border-box;
        position: fixed;
        background: #000;
        top: 3.6458333333vw;
        height: 0;
        opacity: 0;
        padding: 0 10px;
        transition: all .1s;
        visibility: hidden;
        width: 100%;
        max-width: 200px; }
        #nav nav .acd-content.box p {
          color: #555;
          text-align: center; }
          #nav nav .acd-content.box p a {
            color: #fff;
            transition: all .3s; }
            #nav nav .acd-content.box p a:hover {
              color: #ff6900;
              opacity: 1; }
    #nav nav .acd-check:checked + .acd-label + .acd-content {
      box-sizing: border-box;
      height: auto;
      opacity: 1;
      padding: 10px 0;
      visibility: visible; }

@media (max-width: 980px) {
  .openbtn {
    position: absolute;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: #fff;
    border: 1px solid #333;
    border-top: 0;
    border-right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    right: 0;
    top: 0;
    z-index: 1000; }
    .openbtn span {
      display: inline-block;
      transition: all .4s;
      /*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 3px;
      background: #000; }
      .openbtn span:nth-of-type(1) {
        top: 20px;
        width: 45%; }
      .openbtn span:nth-of-type(2) {
        top: 28px;
        width: 35%; }
      .openbtn span:nth-of-type(3) {
        top: 36px;
        width: 20%; }
    .openbtn.active span:nth-of-type(1) {
      top: 23px;
      left: 15px;
      transform: translateY(6px) rotate(-135deg);
      width: 50%; }
    .openbtn.active span:nth-of-type(2) {
      opacity: 0; }
    .openbtn.active span:nth-of-type(3) {
      top: 35px;
      left: 15px;
      transform: translateY(-6px) rotate(135deg);
      width: 50%; }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%;
    background: #222;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3; }

  .open nav {
    left: 0; } }
@media (max-width: 980px) and (max-width: 480px) {
  .openbtn {
    width: 12.5vw;
    height: 12.5vw; }
    .openbtn span:nth-of-type(1) {
      top: 3.75vw;
      width: 45%; }
    .openbtn span:nth-of-type(2) {
      top: 5.8333333333vw;
      width: 35%; }
    .openbtn span:nth-of-type(3) {
      top: 7.9166666667vw;
      width: 20%; }
    .openbtn.active span:nth-of-type(1) {
      top: 4.1666666667vw;
      left: 3.125vw;
      transform: translateY(6px) rotate(-135deg);
      width: 50%; }
    .openbtn.active span:nth-of-type(2) {
      opacity: 0; }
    .openbtn.active span:nth-of-type(3) {
      top: 7.5vw;
      left: 3.125vw;
      transform: translateY(-6px) rotate(135deg);
      width: 50%; } }
@media screen and (max-width: 980px) and (max-width: 767px) {
  nav {
    left: -100%;
    width: 100%; } }
.ranking_list {
  position: relative; }
  .ranking_list:hover .ranking-menu-list {
    opacity: 1;
    /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: visible;
    /* 下層メニューを表示 */ }
  .ranking_list a {
    align-items: center;
    color: #fff;
    /* メニューアイテム内のリンクテキストの色 */
    display: flex;
    height: 3.125vw;
    justify-content: center;
    text-decoration: none;
    /* リンクの下線を非表示 */ }
    .ranking_list a:hover {
      opacity: 1 !important; }
    @media (max-width: 980px) {
      .ranking_list a {
        height: auto; } }

/* ドロップダウンメニュー */
.ranking-menu {
  position: relative; }
  .ranking-menu-list {
    background: #111;
    left: 0;
    opacity: 0;
    /* 不透明度を最小に */
    position: absolute;
    top: 100%;
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: hidden;
    /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1; }
    @media screen and (max-width: 1150px) {
      .ranking-menu-list {
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row !important;
        margin-top: 10px !important;
        padding-top: 0 !important;
        position: static;
        opacity: 1;
        visibility: visible !important; } }
    .ranking-menu-list > li {
      box-sizing: border-box;
      margin-left: 0 !important;
      padding: 0.5208333333vw 0 0.5208333333vw 1.0416666667vw; }
      @media screen and (max-width: 1150px) {
        .ranking-menu-list > li {
          margin: 0 !important;
          padding: 0 !important; } }
      @media screen and (max-width: 1150px) {
        .ranking-menu-list > li a {
          color: #ffff00 !important; } }
      .ranking-menu-list > li a:hover {
        color: #ffff00 !important; }
        @media screen and (max-width: 1150px) {
          .ranking-menu-list > li a:hover {
            color: #fff !important; } }
      .ranking-menu-list > li a:active {
        color: #fff !important; }
        @media screen and (max-width: 1150px) {
          .ranking-menu-list > li a:active {
            color: #ffff00 !important; } }
      .ranking-menu-list > li:nth-child(n + 2) {
        margin-left: 1.0416666667vw !important;
        padding-left: 0;
        padding-right: 1.0416666667vw; }
        @media screen and (max-width: 1150px) {
          .ranking-menu-list > li:nth-child(n + 2) {
            margin: 0 !important;
            padding: 0 !important;
            margin-left: 15px !important; } }

.awt_list {
  position: relative; }
  .awt_list:hover .awt-menu-list {
    opacity: 1;
    /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: visible;
    /* 下層メニューを表示 */ }
  .awt_list a {
    align-items: center;
    color: #fff;
    /* メニューアイテム内のリンクテキストの色 */
    cursor: pointer;
    display: flex;
    height: 3.125vw;
    justify-content: center;
    text-decoration: none;
    /* リンクの下線を非表示 */ }
    @media (max-width: 980px) {
      .awt_list a {
        height: auto; } }
    .awt_list a::before {
      content: "";
      background: url("../img/icon_arrow.svg");
      background-size: 100%;
      position: absolute;
      right: 1.0416666667vw;
      top: 50%;
      margin-top: -0.5208333333vw;
      height: 1.0416666667vw;
      width: 1.0416666667vw; }
      @media (max-width: 1280px) {
        .awt_list a::before {
          right: 1.5625vw;
          margin-top: -0.78125vw;
          height: 1.5625vw;
          width: 1.5625vw; } }
      @media (max-width: 980px) {
        .awt_list a::before {
          display: none; } }
    .awt_list a:hover {
      opacity: 1 !important; }
    .awt_list a span {
      background: #111;
      box-sizing: border-box;
      border-radius: 30px;
      font-family: "Anton", sans-serif;
      font-size: 1.0416666667vw;
      color: #fff;
      padding: 8px 50px 8px 20px; }
      @media (max-width: 1280px) {
        .awt_list a span {
          font-size: 1.5625vw; } }
      @media (max-width: 980px) {
        .awt_list a span {
          color: #e4ff00;
          font-size: 20px; } }
      @media (max-width: 480px) {
        .awt_list a span {
          font-size: 18px; } }
      .awt_list a span:hover {
        color: #e4ff00;
        transition: all .3s; }
        @media (max-width: 980px) {
          .awt_list a span:hover {
            color: #fff; } }
      @media (max-width: 980px) {
        .awt_list a span {
          background: none;
          border: 0;
          padding: 0; } }

/* ドロップダウンメニュー */
.awt-menu {
  position: relative; }
  .awt-menu-list {
    background: #e4ff00;
    right: -20px;
    opacity: 0;
    /* 不透明度を最小に */
    position: absolute;
    padding: 0.2604166667vw 1.0416666667vw;
    top: 4.1666666667vw;
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: hidden;
    /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1; }
    @media (max-width: 1280px) {
      .awt-menu-list {
        padding: 0.390625vw 1.5625vw;
        top: 4.6875vw; } }
    @media (max-width: 980px) {
      .awt-menu-list {
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row !important;
        margin-top: 10px !important;
        padding-top: 0 !important;
        position: static;
        opacity: 1;
        visibility: visible !important; } }
    .awt-menu-list > li {
      box-sizing: border-box; }
      @media (max-width: 1280px) {
        .awt-menu-list > li {
          padding: 0.78125vw 0.78125vw; } }
      @media (max-width: 980px) {
        .awt-menu-list > li {
          margin: 0 !important;
          padding: 0; } }
      .awt-menu-list > li:nth-child(n + 2) {
        margin-left: 1.0416666667vw !important; }
        @media (max-width: 1280px) {
          .awt-menu-list > li:nth-child(n + 2) {
            margin-left: 0 !important; } }
        @media (max-width: 980px) {
          .awt-menu-list > li:nth-child(n + 2) {
            margin: 0 !important;
            margin-left: 20px !important;
            padding: 0 !important; } }
      .awt-menu-list > li a {
        color: #111;
        border: 0; }
        @media (max-width: 980px) {
          .awt-menu-list > li a {
            color: #fff !important; } }
        .awt-menu-list > li a::before {
          display: none; }
        .awt-menu-list > li a:hover {
          color: #888 !important; }
          @media (max-width: 980px) {
            .awt-menu-list > li a:hover {
              color: #111 !important; } }
        .awt-menu-list > li a:active {
          color: #111 !important; }
          @media (max-width: 980px) {
            .awt-menu-list > li a:active {
              color: #e4ff00 !important; } }

/*==================================================*/
/* contents */
/*==================================================*/
body {
  background: #000;
  background-size: cover;
  font-family: 'Noto Sans JP', 'Koulen', cursive, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  position: relative; }

header {
  background: url("../img/header_bg.jpg") no-repeat;
  background-position: bottom;
  background-size: contain;
  box-sizing: border-box;
  padding: 7.2916666667vw 0 6.7708333333vw; }
  @media (max-width: 1280px) {
    header {
      padding: 10.9375vw 0 10.15625vw; } }
  header h1 {
    margin: 0 auto;
    width: 100%;
    max-width: 44.375vw; }
    @media (max-width: 1280px) {
      header h1 {
        max-width: 66.5625vw; } }
    header h1 > img {
      pointer-events: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-touch-callout: none;
      -moz-user-select: none;
      user-select: none; }
  header .header_gamettl {
    margin: 4.1666666667vw auto 3.125vw;
    text-align: center;
    width: 100%;
    max-width: 27.0833333333vw; }
    @media (max-width: 1280px) {
      header .header_gamettl {
        margin: 6.25vw auto 4.6875vw;
        max-width: 40.625vw; } }
    @media (max-width: 980px) {
      header .header_gamettl {
        margin: 8.1632653061vw auto 4.0816326531vw;
        max-width: 38.7755102041vw; } }
  header .header_txt {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 67.1875vw; }
    @media (max-width: 1280px) {
      header .header_txt {
        max-width: 85.9375vw; } }
    @media (max-width: 980px) {
      header .header_txt {
        max-width: 85%; } }

footer {
  box-sizing: border-box;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 4.1666666667vw 0 2.0833333333vw; }
  @media (max-width: 1280px) {
    footer {
      padding: 6.25vw 0 3.125vw; } }
  @media (max-width: 980px) {
    footer {
      padding: 6.1224489796vw 0 4.0816326531vw; } }
  @media (max-width: 480px) {
    footer {
      padding: 4.0816326531vw 0 2.0408163265vw; } }
  footer .company {
    width: 100%;
    max-width: 5.2083333333vw; }
    @media (max-width: 1280px) {
      footer .company {
        max-width: 7.8125vw; } }
    @media (max-width: 980px) {
      footer .company {
        max-width: 8.1632653061vw; } }
    @media (max-width: 480px) {
      footer .company {
        max-width: 12.5vw; } }
    footer .company:hover {
      transition: all .3s;
      opacity: .5; }
      @media (max-width: 980px) {
        footer .company:hover {
          opacity: 1; } }
    footer .company:active {
      transition: all .3s;
      opacity: 1; }
      @media (max-width: 980px) {
        footer .company:active {
          opacity: .5; } }
  footer .copy {
    font-size: 0.7291666667vw;
    margin-top: 2.6041666667vw;
    text-align: center;
    line-height: 1.6;
    width: 100%; }
    @media (max-width: 1280px) {
      footer .copy {
        font-size: 1.09375vw;
        margin-top: 3.90625vw; } }
    @media (max-width: 980px) {
      footer .copy {
        font-size: 1.4285714286vw;
        margin-top: 3.0612244898vw; } }
    @media (max-width: 480px) {
      footer .copy {
        font-size: 12px;
        margin-top: 6.25vw; } }

/*==================================================*/
/* sched-tour */
/*==================================================*/
#sched-tour {
  width: 100%; }
  #sched-tour .sched-tour_area {
    background: linear-gradient(to bottom, #000 40%, #fff 40%);
    box-sizing: border-box;
    padding-bottom: 6.25vw;
    width: 100%; }
    @media (max-width: 1280px) {
      #sched-tour .sched-tour_area {
        padding-bottom: 9.375vw; } }
    @media (max-width: 980px) {
      #sched-tour .sched-tour_area {
        padding-bottom: 10.2040816327vw; } }
    #sched-tour .sched-tour_area dl {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center; }
      #sched-tour .sched-tour_area dl div {
        width: 100%;
        max-width: 26.7708333333vw; }
        @media (max-width: 1280px) {
          #sched-tour .sched-tour_area dl div {
            max-width: 40.15625vw; } }
        @media (max-width: 980px) {
          #sched-tour .sched-tour_area dl div {
            max-width: 52.4489795918vw; } }
        @media (max-width: 480px) {
          #sched-tour .sched-tour_area dl div {
            max-width: 58.3333333333vw; } }
        #sched-tour .sched-tour_area dl div dt {
          border: 3px solid #e4ff00;
          width: 100%; }
        #sched-tour .sched-tour_area dl div dd.tour_ttl {
          display: flex;
          align-items: center;
          color: #000;
          font-family: "Anton", sans-serif;
          font-size: 2.0833333333vw;
          margin-top: 1.3020833333vw; }
          @media (max-width: 1280px) {
            #sched-tour .sched-tour_area dl div dd.tour_ttl {
              font-size: 3.125vw;
              margin-top: 1.953125vw; } }
          @media (max-width: 980px) {
            #sched-tour .sched-tour_area dl div dd.tour_ttl {
              font-size: 4.0816326531vw;
              margin-top: 2.5510204082vw; } }
          @media (max-width: 480px) {
            #sched-tour .sched-tour_area dl div dd.tour_ttl {
              flex-direction: column;
              font-size: 20px; } }
          #sched-tour .sched-tour_area dl div dd.tour_ttl span {
            background: #e4ff00;
            box-sizing: border-box;
            color: #222;
            display: inline-block;
            font-size: 1.3541666667vw;
            font-family: "Anton", sans-serif;
            margin-right: 1.5625vw;
            padding: 1.0416666667vw; }
            @media (max-width: 1280px) {
              #sched-tour .sched-tour_area dl div dd.tour_ttl span {
                font-size: 2.03125vw;
                margin-right: 2.34375vw;
                padding: 1.5625vw; } }
            @media (max-width: 980px) {
              #sched-tour .sched-tour_area dl div dd.tour_ttl span {
                font-size: 2.6530612245vw;
                margin-right: 3.0612244898vw;
                padding: 2.0408163265vw; } }
            @media (max-width: 480px) {
              #sched-tour .sched-tour_area dl div dd.tour_ttl span {
                display: block;
                font-size: 16px;
                margin-right: 0;
                margin-bottom: 10px;
                padding: 2.0833333333vw 4.1666666667vw;
                text-align: center;
                width: 100%; } }
        #sched-tour .sched-tour_area dl div dd.tour_txt {
          font-family: "Noto Sans JP", sans-serif;
          font-size: 1.3541666667vw;
          margin-top: 1.3020833333vw;
          text-align: center;
          line-height: 1.4; }
          #sched-tour .sched-tour_area dl div dd.tour_txt::before, #sched-tour .sched-tour_area dl div dd.tour_txt::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #sched-tour .sched-tour_area dl div dd.tour_txt::before {
            margin-top: calc((1 - 1.4) * 0.5em); }
          #sched-tour .sched-tour_area dl div dd.tour_txt::after {
            margin-bottom: calc((1 - 1.4) * 0.5em); }
          @media (max-width: 1280px) {
            #sched-tour .sched-tour_area dl div dd.tour_txt {
              font-size: 2.03125vw;
              margin-top: 1.953125vw; } }
          @media (max-width: 980px) {
            #sched-tour .sched-tour_area dl div dd.tour_txt {
              font-size: 2.6530612245vw;
              margin-top: 2.5510204082vw; } }
          @media (max-width: 480px) {
            #sched-tour .sched-tour_area dl div dd.tour_txt {
              font-size: 16px;
              margin-top: 15px; } }

.remodal {
  position: relative;
  padding: 25px; }
  .remodal img {
    width: 100%;
    height: auto;
    vertical-align: top; }

.remodal_close {
  cursor: pointer;
  margin: 0 0 0 auto;
  height: 2.6041666667vw;
  width: 2.6041666667vw;
  transition: all .3s; }
  @media (max-width: 1280px) {
    .remodal_close {
      height: 3.90625vw;
      width: 3.90625vw; } }
  @media (max-width: 980px) {
    .remodal_close {
      height: 5.1020408163vw;
      width: 5.1020408163vw; } }
  @media (max-width: 480px) {
    .remodal_close {
      height: 10.4166666667vw;
      width: 10.4166666667vw; } }
  .remodal_close:hover {
    opacity: .6;
    transition: all .3s; }
    @media (max-width: 980px) {
      .remodal_close:hover {
        opacity: 1; } }
  @media (max-width: 980px) {
    .remodal_close:active {
      opacity: .6;
      transition: all .3s; } }

.movie_modal {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 0;
  margin-top: 30px;
  padding-top: 56.25%; }
  @media (max-width: 480px) {
    .movie_modal {
      margin-top: 15px; } }
  .movie_modal iframe,
  .movie_modal figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*==================================================*/
/* btn-lnk */
/*==================================================*/
.btn-lnk {
  background: #111;
  box-sizing: border-box;
  padding: 5.2083333333vw 0; }
  @media (max-width: 980px) {
    .btn-lnk {
      padding: 10.2040816327vw 0; } }
  @media (max-width: 480px) {
    .btn-lnk {
      padding: 12.2448979592vw 0; } }
  .btn-lnk ul {
    display: flex;
    justify-content: center;
    align-items: stretch; }
    @media (max-width: 980px) {
      .btn-lnk ul {
        align-items: center;
        flex-direction: column; } }
    .btn-lnk ul li {
      background: #000;
      box-sizing: border-box;
      border: 1px solid #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1.5625vw 1.5625vw;
      position: relative;
      width: auto; }
      @media (max-width: 980px) {
        .btn-lnk ul li {
          padding: 3.0612244898vw 3.0612244898vw;
          width: 100%;
          max-width: 80%; } }
      @media (max-width: 480px) {
        .btn-lnk ul li {
          padding: 6.25vw 6.25vw;
          width: 100%;
          max-width: 80%; }
          .btn-lnk ul li:nth-child(3) {
            padding: 1.6666666667vw 6.25vw; } }
      .btn-lnk ul li:hover {
        transition: all .3s;
        background: #000; }
        .btn-lnk ul li:hover figure {
          cursor: pointer; }
        .btn-lnk ul li:hover:nth-child(1) {
          border: 1px solid #f13932; }
        .btn-lnk ul li:hover:nth-child(2) {
          border: 1px solid #0002c1; }
        .btn-lnk ul li:hover:nth-child(3) {
          border: 1px solid #80198c; }
        @media (max-width: 980px) {
          .btn-lnk ul li:hover {
            background-color: transparent; }
            .btn-lnk ul li:hover figure {
              cursor: default; }
            .btn-lnk ul li:hover:nth-child(1) {
              border: 1px solid #fff; }
            .btn-lnk ul li:hover:nth-child(2) {
              border: 1px solid #fff; }
            .btn-lnk ul li:hover:nth-child(3) {
              border: 1px solid #fff; } }
      @media (max-width: 980px) {
        .btn-lnk ul li:active {
          transition: all .3s;
          background: #000; }
          .btn-lnk ul li:active figure {
            cursor: pointer; }
          .btn-lnk ul li:active:nth-child(1) {
            border: 1px solid #f13932; }
          .btn-lnk ul li:active:nth-child(2) {
            border: 1px solid #0002c1; }
          .btn-lnk ul li:active:nth-child(3) {
            border: 1px solid #80198c; } }
      .btn-lnk ul li a {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 2; }
      .btn-lnk ul li figure {
        position: relative;
        z-index: 1; }
      .btn-lnk ul li:nth-child(1) figure {
        width: 100%;
        max-width: 12.9166666667vw; }
        @media (max-width: 980px) {
          .btn-lnk ul li:nth-child(1) figure {
            max-width: 60%; } }
      .btn-lnk ul li:nth-child(n + 2) {
        margin-left: 2.0833333333vw; }
        @media (max-width: 1280px) {
          .btn-lnk ul li:nth-child(n + 2) {
            margin-left: 3.125vw; } }
        @media (max-width: 980px) {
          .btn-lnk ul li:nth-child(n + 2) {
            margin-left: 0;
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          .btn-lnk ul li:nth-child(n + 2) {
            margin-left: 0;
            margin-top: 6.25vw; } }
        .btn-lnk ul li:nth-child(n + 2) figure {
          width: 100%;
          max-width: 15.1041666667vw; }
          @media (max-width: 980px) {
            .btn-lnk ul li:nth-child(n + 2) figure {
              max-width: 70%; } }

/*==================================================*/
/* button */
/*==================================================*/
.btn_org {
  border: 1px solid #ff6900;
  background: rgba(255, 105, 0, 0.3);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 380px; }
  .btn_org.center {
    margin: 0 auto; }
    .btn_org.center.top {
      margin-top: 50px; }
      @media (max-width: 980px) {
        .btn_org.center.top {
          margin-top: 30px; } }
  .btn_org:hover {
    background: #ff6900; }
  @media (max-width: 980px) {
    .btn_org {
      margin: 0 auto;
      width: 90%; }
      .btn_org:hover {
        background: rgba(255, 105, 0, 0.3); }
      .btn_org:active {
        background: #ff6900; } }
  .btn_org a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    .btn_org a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 2em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_org a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_org a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_org a:hover::before, .btn_org a:hover::after {
        right: 1em; }
        @media (max-width: 980px) {
          .btn_org a:hover::before, .btn_org a:hover::after {
            right: 2em; } }
    @media (max-width: 980px) {
      .btn_org a:active::before, .btn_org a:active::after {
        right: 1em; } }

.btn_red {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.3);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 280px; }
  .btn_red.center {
    margin: 0 auto; }
  .btn_red:hover {
    background: #ff1a31; }
  @media (max-width: 980px) {
    .btn_red {
      margin: 0 auto;
      width: 90%; }
      .btn_red:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_red:active {
        background: #ff1a31; } }
  .btn_red a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    .btn_red a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 2em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_red a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_red a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_red a:hover::before, .btn_red a:hover::after {
        right: 1em; }
        @media (max-width: 980px) {
          .btn_red a:hover::before, .btn_red a:hover::after {
            right: 2em; } }
    @media (max-width: 980px) {
      .btn_red a:active::before, .btn_red a:active::after {
        right: 1em; } }
  .btn_red.off {
    opacity: .5; }
    .btn_red.off:hover {
      background: rgba(255, 26, 49, 0.3); }
    @media (max-width: 980px) {
      .btn_red.off:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_red.off:active {
        background: rgba(255, 26, 49, 0.3); } }
    .btn_red.off a {
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box;
      font-size: 18px;
      font-weight: 700;
      position: relative;
      margin: 0 auto;
      padding: 20px 20px 20px 30px;
      text-decoration: none;
      transition: all .3s; }
      .btn_red.off a::before {
        content: '';
        position: absolute;
        top: calc(50% - 2px);
        right: 2em;
        transform: translateY(calc(-50% - 2px)) rotate(30deg);
        width: 12px;
        height: 2px;
        background: #fff;
        transition: all .3s; }
      .btn_red.off a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 2em;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: #fff;
        transition: all .3s; }
      .btn_red.off a:hover {
        text-decoration: none;
        opacity: 1; }
        .btn_red.off a:hover::before, .btn_red.off a:hover::after {
          right: 2em; }
          @media (max-width: 980px) {
            .btn_red.off a:hover::before, .btn_red.off a:hover::after {
              right: 2em; } }
      @media (max-width: 980px) {
        .btn_red.off a:active::before, .btn_red.off a:active::after {
          right: 2em; } }

.btn_twitch {
  border: 1px solid #6441a5;
  background: rgba(100, 65, 165, 0.3);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 280px; }
  .btn_twitch.center {
    margin: 0 auto; }
  .btn_twitch:hover {
    background: #6441a5; }
  @media (max-width: 980px) {
    .btn_twitch {
      margin: 0 auto;
      width: 90%; }
      .btn_twitch:hover {
        background: rgba(100, 65, 165, 0.3); }
      .btn_twitch:active {
        background: #6441a5; } }
  .btn_twitch a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    .btn_twitch a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 2em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_twitch a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_twitch a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_twitch a:hover::before, .btn_twitch a:hover::after {
        right: 1em; }
        @media (max-width: 980px) {
          .btn_twitch a:hover::before, .btn_twitch a:hover::after {
            right: 2em; } }
    @media (max-width: 980px) {
      .btn_twitch a:active::before, .btn_twitch a:active::after {
        right: 1em; } }

.btn_ticket {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.1);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 480px; }
  .btn_ticket.center {
    margin: 0 auto; }
  .btn_ticket.en {
    max-width: 560px; }
    @media (max-width: 1280px) {
      .btn_ticket.en {
        max-width: 465px; } }
    @media (max-width: 980px) {
      .btn_ticket.en {
        max-width: 465px; } }
  .btn_ticket:hover {
    background: #ff1a31; }
  @media (max-width: 1280px) {
    .btn_ticket {
      width: 100%;
      max-width: 385px; } }
  @media (max-width: 980px) {
    .btn_ticket {
      margin: 0 auto;
      width: 100%;
      max-width: 365px; }
      .btn_ticket:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_ticket:active {
        background: #ff1a31; }
      .btn_ticket a {
        line-height: 1.4; }
        .btn_ticket a::before, .btn_ticket a::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        .btn_ticket a::before {
          margin-top: calc((1 - 1.4) * 0.5em); }
        .btn_ticket a::after {
          margin-bottom: calc((1 - 1.4) * 0.5em); } }
  .btn_ticket a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 24px;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    @media (max-width: 1280px) {
      .btn_ticket a {
        font-size: 1.875vw;
        letter-spacing: .08em; } }
    @media (max-width: 980px) {
      .btn_ticket a {
        font-size: 2.2448979592vw;
        letter-spacing: .08em; } }
    @media (max-width: 480px) {
      .btn_ticket a {
        padding: 20px 20px 20px 20px;
        font-size: 3.75vw;
        letter-spacing: .08em; } }
    .btn_ticket a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 1.5em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
      @media (max-width: 980px) {
        .btn_ticket a::before {
          top: calc(50%); } }
    .btn_ticket a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_ticket a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_ticket a:hover::before, .btn_ticket a:hover::after {
        right: .5em; }
        @media (max-width: 980px) {
          .btn_ticket a:hover::before, .btn_ticket a:hover::after {
            right: 1.5em; } }
    @media (max-width: 980px) {
      .btn_ticket a:active::before, .btn_ticket a:active::after {
        right: .5em; } }

.btn_Start_gg {
  border: 1px solid #3870e0;
  background: rgba(56, 112, 224, 0.1);
  position: relative;
  margin-top: 30px;
  padding: 0;
  transition: all .3s;
  max-width: 320px; }
  .btn_Start_gg.center {
    margin: 30px auto 0; }
  .btn_Start_gg.en {
    max-width: 560px; }
    @media (max-width: 1280px) {
      .btn_Start_gg.en {
        max-width: 465px; } }
    @media (max-width: 980px) {
      .btn_Start_gg.en {
        max-width: 465px; } }
  .btn_Start_gg:hover {
    background: #3870e0; }
  @media (max-width: 1280px) {
    .btn_Start_gg {
      width: 100%;
      max-width: 385px; } }
  @media (max-width: 980px) {
    .btn_Start_gg {
      margin: 0 auto;
      width: 100%;
      max-width: 365px; }
      .btn_Start_gg:hover {
        background: rgba(56, 112, 224, 0.3); }
      .btn_Start_gg:active {
        background: #ff1a31; }
      .btn_Start_gg a {
        line-height: 1.4; }
        .btn_Start_gg a::before, .btn_Start_gg a::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        .btn_Start_gg a::before {
          margin-top: calc((1 - 1.4) * 0.5em); }
        .btn_Start_gg a::after {
          margin-bottom: calc((1 - 1.4) * 0.5em); } }
  .btn_Start_gg a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 24px;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    @media (max-width: 1280px) {
      .btn_Start_gg a {
        font-size: 1.875vw;
        letter-spacing: .08em; } }
    @media (max-width: 980px) {
      .btn_Start_gg a {
        font-size: 2.2448979592vw;
        letter-spacing: .08em; } }
    @media (max-width: 480px) {
      .btn_Start_gg a {
        padding: 20px 20px 20px 20px;
        font-size: 3.75vw;
        letter-spacing: .08em; } }
    .btn_Start_gg a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 1.5em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
      @media (max-width: 980px) {
        .btn_Start_gg a::before {
          top: calc(50%); } }
    .btn_Start_gg a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_Start_gg a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_Start_gg a:hover::before, .btn_Start_gg a:hover::after {
        right: .5em; }
        @media (max-width: 980px) {
          .btn_Start_gg a:hover::before, .btn_Start_gg a:hover::after {
            right: 1.5em; } }
    @media (max-width: 980px) {
      .btn_Start_gg a:active::before, .btn_Start_gg a:active::after {
        right: .5em; } }

.btn_streame {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.1);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 900px; }
  .btn_streame.center {
    margin: 0 auto; }
  .btn_streame:hover {
    background: #ff1a31; }
  @media (max-width: 980px) {
    .btn_streame {
      margin: 0 auto;
      width: 90%; }
      .btn_streame:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_streame:active {
        background: #ff1a31; } }
  .btn_streame a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    @media (max-width: 980px) {
      .btn_streame a {
        font-size: 18px;
        letter-spacing: .08em; } }
    .btn_streame a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 1.5em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_streame a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_streame a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_streame a:hover::before, .btn_streame a:hover::after {
        right: .5em; }
        @media (max-width: 980px) {
          .btn_streame a:hover::before, .btn_streame a:hover::after {
            right: 1.5em; } }
    @media (max-width: 980px) {
      .btn_streame a {
        padding: 20px 90px 20px 20px; }
        .btn_streame a:active::before, .btn_streame a:active::after {
          right: .5em; } }

/*==================================================*/
/* @keyframes */
/*==================================================*/
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes equalizer01 {
  0% {
    width: 70%; }
  10% {
    width: 50%; }
  20% {
    width: 100%; }
  30% {
    width: 10%; }
  40% {
    width: 50%; }
  50% {
    width: 70%; }
  60% {
    width: 50%; }
  70% {
    width: 10%; }
  80% {
    width: 100%; }
  90% {
    width: 10%; }
  100% {
    width: 70%; } }
@keyframes equalizer02 {
  0% {
    width: 30%; }
  10% {
    width: 20%; }
  20% {
    width: 40%; }
  30% {
    width: 10%; }
  40% {
    width: 20%; }
  50% {
    width: 30%; }
  60% {
    width: 20%; }
  70% {
    width: 10%; }
  80% {
    width: 40%; }
  90% {
    width: 10%; }
  100% {
    width: 30%; } }
