@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");
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%; }

.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s, transform .5s; }

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s; }

.fadeBottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: .8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/*==================================================*/
/* nav */
/*==================================================*/
#nav {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  height: 60px;
  width: 100%;
  z-index: 999; }
  @media screen and (max-width: 1150px) {
    #nav {
      background: none; } }
  #nav nav {
    box-sizing: border-box;
    padding-left: 4.1666666667vw; }
    @media screen and (max-width: 1580px) {
      #nav nav {
        padding-left: 2.0833333333vw; } }
    @media (max-width: 1280px) {
      #nav nav {
        box-sizing: border-box;
        padding-left: 30px;
        margin-left: 0; } }
    @media screen and (max-width: 1200px) {
      #nav nav {
        padding-left: 0; } }
    @media (max-width: 980px) {
      #nav nav {
        padding-left: 0; } }
    #nav nav ul {
      height: 60px;
      display: flex;
      margin-left: -2.34375vw;
      align-items: center; }
      @media screen and (max-width: 1580px) {
        #nav nav ul {
          margin-left: -1.0416666667vw; } }
      @media (max-width: 1280px) {
        #nav nav ul {
          margin-left: -18px; } }
      @media screen and (max-width: 1200px) {
        #nav nav ul {
          margin-left: -12px; } }
      @media screen and (max-width: 1150px) {
        #nav nav ul {
          display: flex;
          align-items: center;
          flex-direction: column;
          box-sizing: border-box;
          padding-top: 80px;
          margin-left: 0;
          height: auto;
          margin-left: 0;
          margin-top: -30px; } }
      #nav nav ul li {
        font-family: "Koulen", cursive;
        font-size: 1.4583333333vw;
        margin-left: 2.34375vw;
        white-space: nowrap; }
        @media screen and (max-width: 1580px) {
          #nav nav ul li {
            margin-left: 1.0416666667vw; } }
        @media (max-width: 1280px) {
          #nav nav ul li {
            font-size: 20px;
            margin-left: 18px; } }
        @media screen and (max-width: 1200px) {
          #nav nav ul li {
            margin-left: 12px; }
            #nav nav ul li:first-child {
              margin-left: 30px; } }
        @media screen and (max-width: 1150px) {
          #nav nav ul li {
            margin-left: 0;
            margin-top: 30px;
            white-space: normal; }
            #nav nav ul li:first-child {
              margin-left: 0; }
            #nav nav ul li.language_area, #nav nav ul li.players_area, #nav nav ul li.AWT_area {
              color: #555; }
              #nav nav ul li.language_area > span, #nav nav ul li.players_area > span, #nav nav ul li.AWT_area > span {
                display: inline-block;
                color: #ffff00;
                margin-right: 20px; }
            #nav nav ul li.awt2022_area {
              /*background: rgba(32,23,71, 1);*/
              background: #000;
              box-sizing: border-box;
              border: 1px solid #fff;
              padding: 2.0408163265vw 8.1632653061vw 2.0408163265vw 3.0612244898vw;
              margin-bottom: 80px;
              width: 100%;
              max-width: 200px; }
              #nav nav ul li.awt2022_area a {
                position: relative;
                color: #fff;
                font-family: "Koulen", cursive; }
                #nav nav ul li.awt2022_area a::before {
                  content: "";
                  background: url("../img/btn_awt2022_icon.svg") no-repeat top left/100%;
                  height: 14px;
                  width: 14px;
                  position: absolute;
                  top: 50%;
                  right: -70px;
                  margin-top: -8px; }
                #nav nav ul li.awt2022_area a:active {
                  transition: all .3s;
                  opacity: .5; }
                  #nav nav ul li.awt2022_area a:active::before {
                    transition: all .3s;
                    right: -80px; } }
        @media (max-width: 980px) {
          #nav nav ul li {
            margin-left: 0;
            margin-top: 30px;
            white-space: normal; }
            #nav nav ul li:first-child {
              margin-left: 0; }
            #nav nav ul li.language_area, #nav nav ul li.players_area {
              color: #555; }
              #nav nav ul li.language_area > span, #nav nav ul li.players_area > span {
                display: inline-block;
                color: #ffff00;
                margin-right: 20px; }
            #nav nav ul li.awt2022_area {
              /*background: rgba(32,23,71, 1);*/
              background: #000;
              box-sizing: border-box;
              border: 1px solid #fff;
              padding: 2.5510204082vw 8.1632653061vw 2.5510204082vw 3.0612244898vw;
              margin-bottom: 80px;
              width: 100%;
              max-width: 20.4081632653vw; }
              #nav nav ul li.awt2022_area a {
                position: relative;
                color: #fff;
                font-family: "Koulen", cursive; }
                #nav nav ul li.awt2022_area a::before {
                  content: "";
                  background: url("../img/btn_awt2022_icon.svg") no-repeat top left/100%;
                  height: 14px;
                  width: 14px;
                  position: absolute;
                  top: 50%;
                  right: -6.1224489796vw;
                  margin-top: -8px; }
                #nav nav ul li.awt2022_area a:active {
                  transition: all .3s;
                  opacity: .5; }
                  #nav nav ul li.awt2022_area a:active::before {
                    transition: all .3s;
                    right: -7.1428571429vw; } }
        @media screen and (max-width: 780px) {
          #nav nav ul li.awt2022_area {
            padding: 20px 90px 20px 30px;
            width: 100%;
            max-width: 200px; }
            #nav nav ul li.awt2022_area a::before {
              right: -80px; }
            #nav nav ul li.awt2022_area a:active::before {
              right: -90px; } }
        @media (max-width: 480px) {
          #nav nav ul li.awt2022_area {
            padding: 4.1666666667vw 18.75vw 4.1666666667vw 6.25vw;
            width: 100%;
            max-width: 41.6666666667vw; }
            #nav nav ul li.awt2022_area a::before {
              right: -12.5vw; }
            #nav nav ul li.awt2022_area a:active::before {
              right: -14.5833333333vw; } }
        #nav nav ul li.players .acd-label {
          color: #fff; }
        @media (max-width: 980px) {
          #nav nav ul li.players {
            display: none; } }
        #nav nav ul li.sns {
          box-sizing: border-box;
          display: flex;
          justify-content: flex-end;
          padding-right: 385px;
          width: 100%;
          /*width: 46%;*/ }
          @media screen and (max-width: 1580px) {
            #nav nav ul li.sns {
              padding-right: 21vw; } }
          @media screen and (max-width: 1480px) {
            #nav nav ul li.sns {
              padding-right: 23.5vw; } }
          @media screen and (max-width: 1280px) {
            #nav nav ul li.sns {
              padding-right: 27.5vw; } }
          @media (max-width: 1280px) {
            #nav nav ul li.sns {
              padding-right: 24.375vw; } }
          @media screen and (max-width: 1150px) {
            #nav nav ul li.sns {
              padding-right: 300px;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              padding-right: 0; } }
          #nav nav ul li.sns.awt2023 {
            padding-right: 433px;
            /*@media screen and (max-width: 1150px) {
              padding-right: 0;
              justify-content: center;
            }*/ }
            @media screen and (max-width: 1580px) {
              #nav nav ul li.sns.awt2023 {
                padding-right: 24.3vw; } }
            @media screen and (max-width: 1480px) {
              #nav nav ul li.sns.awt2023 {
                padding-right: 26.5vw; } }
            @media (max-width: 1280px) {
              #nav nav ul li.sns.awt2023 {
                padding-right: 28.515625vw; } }
            @media screen and (max-width: 1150px) {
              #nav nav ul li.sns.awt2023 {
                padding-right: 0; } }
          #nav nav ul li.sns > ul {
            display: flex;
            margin-left: -15px; }
            @media screen and (max-width: 1150px) {
              #nav nav ul li.sns > ul {
                padding-top: 60px;
                flex-direction: row;
                margin-left: -20px; } }
            #nav nav ul li.sns > ul li {
              box-sizing: border-box;
              background: #fff;
              height: 100%;
              max-height: 40px;
              width: 100%;
              max-width: 40px;
              margin: 0;
              margin-left: 15px;
              padding: 5px;
              border-radius: 50%; }
              @media (max-width: 1280px) {
                #nav nav ul li.sns > ul li {
                  max-height: 3.125vw;
                  max-width: 3.125vw;
                  margin-left: 0.78125vw; } }
              @media screen and (max-width: 1150px) {
                #nav nav ul li.sns > ul li {
                  height: 50px;
                  margin-left: 20px;
                  max-height: 100%;
                  max-width: 50px; } }
              @media (max-width: 980px) {
                #nav nav ul li.sns > ul li {
                  height: 50px;
                  margin-left: 20px;
                  max-height: 100%;
                  max-width: 50px; } }
              #nav nav ul li.sns > ul li figure {
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto;
                height: 100%;
                width: 70%; }
                #nav nav ul li.sns > ul li figure img {
                  height: auto;
                  width: 100%; }
              #nav nav ul li.sns > ul li:last-child {
                background: none;
                padding: 0; }
                #nav nav ul li.sns > ul li:last-child figure {
                  width: 100%; }
        #nav nav ul li.off {
          color: #333; }
          #nav nav ul li.off a {
            color: #333; }
        #nav nav ul li a {
          color: #fff;
          transition: all .3s; }
          #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 .language, #nav nav .btn_awt_tt {
      background: #000;
      border: 1px solid #fff;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: "Koulen", cursive;
      font-size: 18px;
      position: fixed;
      letter-spacing: .1em;
      top: 10px;
      right: 230px;
      height: 100%;
      max-height: 38px;
      width: 100%;
      max-width: 130px;
      text-align: center; }
      @media screen and (max-width: 1580px) {
        #nav nav .language, #nav nav .btn_awt_tt {
          right: 11.2vw; } }
      @media screen and (max-width: 1480px) {
        #nav nav .language, #nav nav .btn_awt_tt {
          font-size: 1.2857vw;
          right: 12.4285vw;
          max-width: 8.5714vw; } }
      @media screen and (max-width: 1400px) {
        #nav nav .language, #nav nav .btn_awt_tt {
          right: 13.4285vw; } }
      @media (max-width: 1280px) {
        #nav nav .language, #nav nav .btn_awt_tt {
          max-height: 38px;
          font-size: 1.40625vw;
          right: 13.28125vw;
          max-width: 9.765625vw; } }
      @media screen and (max-width: 1150px) {
        #nav nav .language, #nav nav .btn_awt_tt {
          /*@media screen and (max-width: 1024px) {*/
          display: none; } }
      #nav nav .language.awt2022-24, #nav nav .btn_awt_tt.awt2022-24 {
        max-width: 170px; }
        @media screen and (max-width: 1580px) {
          #nav nav .language.awt2022-24, #nav nav .btn_awt_tt.awt2022-24 {
            right: 11.8vw; } }
        @media screen and (max-width: 1480px) {
          #nav nav .language.awt2022-24, #nav nav .btn_awt_tt.awt2022-24 {
            font-size: 1.4057vw;
            right: 12.2285vw;
            max-width: 12.7714vw; } }
        @media screen and (max-width: 1380px) {
          #nav nav .language.awt2022-24, #nav nav .btn_awt_tt.awt2022-24 {
            font-size: 1.4057vw;
            right: 11.8285vw;
            max-width: 12.7714vw; } }
        @media (max-width: 1280px) {
          #nav nav .language.awt2022-24, #nav nav .btn_awt_tt.awt2022-24 {
            right: 14.0625vw; } }
      #nav nav .language.awt2023, #nav nav .btn_awt_tt.awt2023 {
        right: 80px; }
        @media screen and (max-width: 1580px) {
          #nav nav .language.awt2023, #nav nav .btn_awt_tt.awt2023 {
            right: 2.0833333333vw; } }
        @media (max-width: 1280px) {
          #nav nav .language.awt2023, #nav nav .btn_awt_tt.awt2023 {
            right: 3.125vw; } }
        @media (max-width: 980px) {
          #nav nav .language.awt2023, #nav nav .btn_awt_tt.awt2023 {
            right: 8.1632653061vw; } }
    #nav nav .btn_awt2022 {
      /*background: rgba(32,23,71,.95);*/
      background: #000;
      box-sizing: border-box;
      border: 1px solid #fff;
      color: #fff;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      font-family: "Koulen", cursive;
      font-size: 18px;
      padding: 0 0 0 20px;
      position: fixed;
      letter-spacing: .1em;
      top: 10px;
      right: 80px;
      height: 100%;
      max-height: 39px;
      width: 100%;
      max-width: 130px;
      text-align: left;
      text-align: center; }
      @media screen and (max-width: 1580px) {
        #nav nav .btn_awt2022 {
          right: 2.0833333333vw; } }
      @media screen and (max-width: 1400px) {
        #nav nav .btn_awt2022 {
          font-size: 1.2857vw;
          right: 2.7142vw;
          max-width: 9.2857vw; } }
      @media (max-width: 1280px) {
        #nav nav .btn_awt2022 {
          font-size: 1.40625vw;
          right: 2.34375vw;
          max-width: 10.15625vw; } }
      @media screen and (max-width: 1150px) {
        #nav nav .btn_awt2022 {
          display: none; } }
      #nav nav .btn_awt2022 a {
        position: relative;
        color: #fff; }
        #nav nav .btn_awt2022 a::before {
          content: "";
          background: url("../img/btn_awt2022_icon.svg") no-repeat top left/100%;
          height: 14px;
          width: 14px;
          position: absolute;
          top: 50%;
          right: -20px;
          margin-top: -8px; }
        #nav nav .btn_awt2022 a:hover {
          transition: all .3s;
          opacity: .5; }
          #nav nav .btn_awt2022 a:hover::before {
            transition: all .3s;
            right: -25px; }
    #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.tt {
        max-width: 8.3333333333vw; }
        @media screen and (max-width: 1580px) {
          #nav nav .acd-content.tt {
            max-width: 160px; } }
        @media (max-width: 1280px) {
          #nav nav .acd-content.tt {
            top: 6.25vw;
            max-width: 10.9375vw; } }
      #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 screen and (max-width: 1150px) {
  .openbtn {
    position: absolute;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: #000;
    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: 2px;
      background: #fff; }
      .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 screen and (max-width: 1150px) 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: 1150px) and (max-width: 767px) {
  nav {
    left: -100%;
    width: 100%; } }
/*==================================================*/
/* 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 {
  box-sizing: border-box;
  background: #000 url("../img/header_bg.jpg") no-repeat top center;
  background-size: 100%;
  position: relative; }
  header figure {
    width: 100%;
    max-width: 59.4270833333vw; }
  header h1 {
    position: absolute;
    top: 3.90625vw;
    right: 8.2291666667vw;
    width: 100%;
    max-width: 44.1666666667vw; }
    @media (max-width: 980px) {
      header h1 {
        top: 3.3854166667vw;
        right: 4.0816326531vw;
        max-width: 46.9387755102vw; } }
    @media (max-width: 480px) {
      header h1 {
        top: 1.6666666667vw;
        right: 2.7083333333vw;
        max-width: 50vw; } }
  header.awt2023 > h1 {
    position: static;
    height: auto;
    width: 100%;
    max-width: 100%; }
    header.awt2023 > h1 figure {
      width: 100%;
      max-width: 100%; }

#event_pop {
  position: fixed !important;
  right: 0;
  bottom: 5%;
  z-index: 9; }
  #event_pop.close-box {
    opacity: 0;
    visibility: hidden; }
  @media (max-width: 980px) {
    #event_pop {
      bottom: 0;
      width: 100%; } }
  #event_pop .inr {
    background: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    padding: 30px 40px 25px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: 100%; }
    @media (max-width: 980px) {
      #event_pop .inr {
        background: #111;
        padding: 30px 40px 40px;
        width: 100%;
        max-width: 100%; } }
    #event_pop .inr .close {
      font-family: "Noto Sans JP", sans-serif;
      font-size: 30px;
      /*font-weight: bold;*/
      cursor: pointer;
      color: #fff;
      position: absolute;
      top: -20%;
      right: 5%; }
      @media (max-width: 980px) {
        #event_pop .inr .close {
          font-size: 30px;
          top: 4%;
          right: 4%; } }
    #event_pop .inr .event_pop_box {
      width: 260px; }
      @media (max-width: 980px) {
        #event_pop .inr .event_pop_box {
          width: 100%; } }
      #event_pop .inr .event_pop_box.en {
        width: 340px; }
        @media (max-width: 980px) {
          #event_pop .inr .event_pop_box.en {
            width: 100%; } }
        #event_pop .inr .event_pop_box.en .btn_red {
          max-width: 100% !important; }
      #event_pop .inr .event_pop_box.gbvsr {
        width: 340px; }
        @media (max-width: 980px) {
          #event_pop .inr .event_pop_box.gbvsr {
            width: 100%; } }
        #event_pop .inr .event_pop_box.gbvsr .btn_red {
          margin: 0 auto; }
        #event_pop .inr .event_pop_box.gbvsr.en {
          margin: 0 auto; }
          #event_pop .inr .event_pop_box.gbvsr.en .btn_red {
            max-width: 100% !important; }
        #event_pop .inr .event_pop_box.gbvsr > figure {
          margin: 0 auto 20px;
          width: 100%;
          max-width: 300px; }
          @media (max-width: 980px) {
            #event_pop .inr .event_pop_box.gbvsr > figure {
              margin: 0 auto 20px;
              width: 100%;
              max-width: 60%; } }
          #event_pop .inr .event_pop_box.gbvsr > figure img {
            height: auto;
            width: 100%;
            object-fit: cover; }
      #event_pop .inr .event_pop_box a {
        transition: all .5s; }
        #event_pop .inr .event_pop_box a:hover {
          opacity: .6;
          transition: all .5s; }
      #event_pop .inr .event_pop_box dl {
        margin: 0 auto;
        text-align: center; }
        #event_pop .inr .event_pop_box dl dt {
          color: #fff;
          font-family: 'Anton', sans-serif;
          font-size: 20px;
          letter-spacing: .08em;
          text-indent: .08em; }
          #event_pop .inr .event_pop_box dl dt .day {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 16px;
            margin: 0 auto 20px;
            letter-spacing: normal;
            text-indent: normal; }
            #event_pop .inr .event_pop_box dl dt .day span {
              color: #ff1a31; }
          #event_pop .inr .event_pop_box dl dt a {
            color: #fff; }
            #event_pop .inr .event_pop_box dl dt a:hover {
              color: #ffff00;
              text-decoration: underline;
              transition: all .2s; }
              @media (max-width: 980px) {
                #event_pop .inr .event_pop_box dl dt a:hover {
                  color: #fff;
                  text-decoration: none; } }
            @media (max-width: 980px) {
              #event_pop .inr .event_pop_box dl dt a:active {
                color: #ffff00;
                text-decoration: underline;
                transition: all .2s; } }
        #event_pop .inr .event_pop_box dl dd {
          color: #fff;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 20px; }
          #event_pop .inr .event_pop_box dl dd span {
            color: #fff;
            display: block;
            /*margin-right: 20px;*/
            box-sizing: border-box;
            letter-spacing: 0.1em;
            background: #222;
            font-weight: bold;
            padding: 12px; }
      #event_pop .inr .event_pop_box figure {
        margin: 0 auto 20px;
        width: 100%;
        max-width: 200px; }
        @media (max-width: 980px) {
          #event_pop .inr .event_pop_box figure {
            margin: 0 auto 20px;
            width: 100%;
            max-width: 60%; } }
        #event_pop .inr .event_pop_box figure img {
          height: auto;
          width: 100%;
          object-fit: cover; }

footer {
  box-sizing: border-box;
  border-top: 1px solid #fff;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 35px 80px 35px; }
  @media screen and (max-width: 1150px) {
    footer {
      flex-direction: column;
      align-items: center;
      padding: 30px 20px; } }
  footer .footer_logo {
    height: 55px;
    width: 54px; }
    @media screen and (max-width: 1150px) {
      footer .footer_logo {
        margin-bottom: 20px; } }
    footer .footer_logo a {
      transition: all .3s; }
      footer .footer_logo a:hover {
        opacity: .5; }
  footer .copy {
    font-size: 0.7291666667vw;
    text-align: center;
    line-height: 1.6;
    width: 100%; }
    @media (max-width: 980px) {
      footer .copy {
        font-size: 1.4285714286vw; } }
    @media (max-width: 480px) {
      footer .copy {
        font-size: 2.9166666667vw; } }

h2.ttl {
  border-bottom: #fff solid 3px;
  margin-bottom: 2.6041666667vw; }
  @media (max-width: 980px) {
    h2.ttl {
      margin-bottom: 5.1020408163vw; } }
  @media (max-width: 480px) {
    h2.ttl {
      margin-bottom: 8.3333333333vw; } }
  h2.ttl figure {
    margin: 0 auto;
    text-align: center;
    height: 100%;
    max-height: 53px;
    width: 100%; }
    @media (max-width: 980px) {
      h2.ttl figure {
        max-height: 5.4081632653vw;
        width: auto; } }
    @media (max-width: 480px) {
      h2.ttl figure {
        max-height: 8.9583333333vw; } }
    h2.ttl figure img {
      object-fit: cover;
      height: 100%;
      width: auto; }
      @media (max-width: 980px) {
        h2.ttl figure img {
          object-fit: contain;
          height: 5.4081632653vw; } }
      @media (max-width: 480px) {
        h2.ttl figure img {
          object-fit: cover;
          height: 8.9583333333vw; } }
h2.Lcq_ttl {
  border-bottom: #fff solid 3px;
  margin-bottom: 2.6041666667vw; }
  @media (max-width: 980px) {
    h2.Lcq_ttl {
      margin-bottom: 5.1020408163vw; } }
  @media (max-width: 480px) {
    h2.Lcq_ttl {
      margin-bottom: 8.3333333333vw; } }
  h2.Lcq_ttl figure {
    margin: 0 auto;
    text-align: center;
    height: 100%;
    max-height: 53px;
    width: 100%; }
    @media (max-width: 980px) {
      h2.Lcq_ttl figure {
        max-height: 5.4081632653vw;
        width: auto; } }
    @media (max-width: 480px) {
      h2.Lcq_ttl figure {
        max-height: 7.9166666667vw; } }
    h2.Lcq_ttl figure img {
      object-fit: cover;
      height: 100%;
      width: auto; }
      @media (max-width: 980px) {
        h2.Lcq_ttl figure img {
          object-fit: contain;
          height: 5.4081632653vw; } }
      @media (max-width: 480px) {
        h2.Lcq_ttl figure img {
          object-fit: cover;
          height: 7.9166666667vw; } }
h2.uni_ttl {
  border-bottom: #fff solid 3px;
  margin-bottom: 2.6041666667vw; }
  @media (max-width: 980px) {
    h2.uni_ttl {
      margin-bottom: 5.1020408163vw; } }
  @media (max-width: 480px) {
    h2.uni_ttl {
      margin-bottom: 8.3333333333vw; } }
h2.result_ttl {
  border-bottom: #fff solid 3px;
  margin-bottom: 2.6041666667vw; }
  @media (max-width: 980px) {
    h2.result_ttl {
      margin-bottom: 5.1020408163vw; } }
  @media (max-width: 480px) {
    h2.result_ttl {
      margin-bottom: 8.3333333333vw; } }
  h2.result_ttl figure {
    margin: 0 auto;
    text-align: center;
    height: 100%;
    max-height: 53px;
    width: 100%; }
    @media (max-width: 980px) {
      h2.result_ttl figure {
        max-height: 5.4081632653vw;
        width: auto; } }
    @media (max-width: 480px) {
      h2.result_ttl figure {
        max-height: 7.9166666667vw; } }
    h2.result_ttl figure img {
      object-fit: cover;
      height: 100%;
      width: auto; }
      @media (max-width: 980px) {
        h2.result_ttl figure img {
          object-fit: contain;
          height: 5.4081632653vw; } }
      @media (max-width: 480px) {
        h2.result_ttl figure img {
          object-fit: cover;
          height: 7.9166666667vw; } }
h2.qt_ttl {
  border-bottom: #fff solid 3px;
  margin-bottom: 2.6041666667vw; }
  @media (max-width: 980px) {
    h2.qt_ttl {
      margin-bottom: 5.1020408163vw; } }
  @media (max-width: 480px) {
    h2.qt_ttl {
      margin-bottom: 8.3333333333vw; } }
  h2.qt_ttl figure {
    margin: 0 auto;
    text-align: center;
    height: 100%;
    max-height: 53px;
    width: 100%; }
    @media (max-width: 980px) {
      h2.qt_ttl figure {
        max-height: 5.4081632653vw;
        width: auto; } }
    @media (max-width: 480px) {
      h2.qt_ttl figure {
        max-height: 6.6666666667vw; } }
    h2.qt_ttl figure img {
      object-fit: cover;
      height: 100%;
      width: auto; }
      @media (max-width: 980px) {
        h2.qt_ttl figure img {
          object-fit: contain;
          height: 5.4081632653vw; } }
      @media (max-width: 480px) {
        h2.qt_ttl figure img {
          object-fit: cover;
          height: 6.6666666667vw; } }

h3.ttl {
  color: #fff;
  font-family: "Koulen", cursive;
  font-size: 2.0833333333vw;
  margin-bottom: 20px;
  letter-spacing: .2em;
  text-align: center;
  position: relative; }
  @media (max-width: 980px) {
    h3.ttl {
      font-size: 4.0816326531vw; } }
  @media (max-width: 480px) {
    h3.ttl {
      font-size: 5.8333333333vw; } }
  h3.ttl::before {
    content: '';
    position: absolute;
    bottom: -20px;
    display: inline-block;
    width: 10.4166666667vw;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #d00008;
    border-radius: 2px; }
    @media (max-width: 980px) {
      h3.ttl::before {
        width: 20.4081632653vw; } }
    @media (max-width: 480px) {
      h3.ttl::before {
        width: 41.6666666667vw; } }
h3.title {
  margin: 0 auto 1.5625vw;
  text-align: center;
  width: 100%; }
  @media (max-width: 1280px) {
    h3.title {
      margin-bottom: 2.34375vw; } }
  @media (max-width: 980px) {
    h3.title {
      margin-bottom: 3.0612244898vw; } }
  @media (max-width: 480px) {
    h3.title {
      margin-bottom: 6.25vw; } }
  h3.title > figure {
    height: 6.25vw;
    width: auto; }
    @media (max-width: 1280px) {
      h3.title > figure {
        height: 9.375vw; } }
    @media (max-width: 980px) {
      h3.title > figure {
        height: 10.2040816327vw; } }
    @media (max-width: 480px) {
      h3.title > figure {
        height: 20.8333333333vw; } }
    h3.title > figure img {
      object-fit: contain;
      height: 100%;
      width: auto; }
  h3.title.ggst {
    margin-top: 5.2083333333vw; }
    @media (max-width: 1280px) {
      h3.title.ggst {
        margin-top: 7.8125vw; } }
    @media (max-width: 980px) {
      h3.title.ggst {
        margin-top: 8.1632653061vw; } }
    @media (max-width: 480px) {
      h3.title.ggst {
        margin-top: 16.6666666667vw; } }
    h3.title.ggst > figure {
      height: 3.0208333333vw;
      width: auto; }
      @media (max-width: 1280px) {
        h3.title.ggst > figure {
          height: 4.53125vw; } }
      @media (max-width: 980px) {
        h3.title.ggst > figure {
          height: 5.9183673469vw; } }
      @media (max-width: 480px) {
        h3.title.ggst > figure {
          height: 12.0833333333vw; } }
      h3.title.ggst > figure img {
        object-fit: contain;
        height: 100%;
        width: auto; }
  h3.title.uni {
    margin-top: 5.2083333333vw; }
    @media (max-width: 1280px) {
      h3.title.uni {
        margin-top: 7.8125vw; } }
    @media (max-width: 980px) {
      h3.title.uni {
        margin-top: 8.1632653061vw; } }
    @media (max-width: 480px) {
      h3.title.uni {
        margin-top: 16.6666666667vw; } }
    h3.title.uni > figure {
      height: 6.25vw;
      width: auto; }
      @media (max-width: 1280px) {
        h3.title.uni > figure {
          height: 9.375vw; } }
      @media (max-width: 980px) {
        h3.title.uni > figure {
          height: 10.2040816327vw; } }
      @media (max-width: 480px) {
        h3.title.uni > figure {
          height: 20.8333333333vw; } }
      h3.title.uni > figure img {
        object-fit: contain;
        height: 100%;
        width: auto; }

.inr_area {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 72.9166666667vw; }
  @media (max-width: 980px) {
    .inr_area {
      max-width: 90%; } }

.bn_gg a,
.bn_gbvsr a {
  transition: all .3s; }
  .bn_gg a:hover,
  .bn_gbvsr a:hover {
    opacity: .5; }
    @media (max-width: 980px) {
      .bn_gg a:hover,
      .bn_gbvsr a:hover {
        opacity: 1; } }
  @media (max-width: 980px) {
    .bn_gg a:active,
    .bn_gbvsr a:active {
      opacity: .5; } }

/*==================================================*/
/* news */
/*==================================================*/
#news {
  position: absolute;
  top: 37.7604166667vw;
  right: 0;
  margin: 0 0 0 auto;
  width: 100%;
  max-width: 89.84375vw; }
  @media (max-width: 980px) {
    #news {
      max-width: 90%; } }
  @media (max-width: 480px) {
    #news {
      margin: 0;
      box-sizing: border-box;
      padding: 0 4.1666666667vw;
      max-width: 100%; } }
  #news.gbvsr {
    max-width: 72.9166666667vw; }
    @media (max-width: 980px) {
      #news.gbvsr {
        max-width: 90%; } }
    @media (max-width: 480px) {
      #news.gbvsr {
        max-width: 100%; } }
    #news.gbvsr > .inr .topics {
      margin-left: 3.125vw;
      width: 60%; }
      @media (max-width: 980px) {
        #news.gbvsr > .inr .topics {
          margin-left: 5.1020408163vw;
          width: 70%; } }
      @media (max-width: 480px) {
        #news.gbvsr > .inr .topics {
          margin-left: 2.0833333333vw;
          width: 100%;
          overflow-y: scroll;
          height: 160px; } }
      #news.gbvsr > .inr .topics figure {
        border: 1px solid #000;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 6.5104166667vw; }
        @media (max-width: 980px) {
          #news.gbvsr > .inr .topics figure {
            height: auto; } }
        @media (max-width: 480px) {
          #news.gbvsr > .inr .topics figure {
            width: 100%;
            /*max-width: vw_s(110);*/
            max-width: 16.6666666667vw; } }
  #news > .inr {
    display: flex; }
    #news > .inr h2 {
      box-sizing: border-box;
      color: #fff;
      font-family: "Koulen", cursive;
      font-weight: normal;
      font-size: 5.2083333333vw;
      margin: 0;
      padding-top: 2.34375vw;
      letter-spacing: .12em; }
      @media (max-width: 980px) {
        #news > .inr h2 {
          font-size: 6.1224489796vw; } }
      @media (max-width: 480px) {
        #news > .inr h2 {
          padding-top: 1.6666666667vw;
          font-size: 5.8333333333vw; } }
      #news > .inr h2 div {
        display: flex;
        align-items: center; }
        @media (max-width: 980px) {
          #news > .inr h2 div {
            flex-direction: column;
            justify-content: center; } }
        #news > .inr h2 div span {
          color: #ffff00;
          font-size: 1.0416666667vw;
          font-weight: bold;
          letter-spacing: .18em;
          margin-left: 1.0416666667vw; }
          @media (max-width: 980px) {
            #news > .inr h2 div span {
              margin-left: 0;
              margin-top: 0.8163265306vw; } }
          @media (max-width: 480px) {
            #news > .inr h2 div span {
              margin-top: 0.4166666667vw;
              margin-left: 0;
              font-size: 1.6666666667vw; } }
    #news > .inr .topics {
      margin-left: 5.2083333333vw;
      width: 70%; }
      @media (max-width: 980px) {
        #news > .inr .topics {
          margin-left: 5.1020408163vw;
          width: 70%; } }
      @media (max-width: 480px) {
        #news > .inr .topics {
          margin-left: 2.0833333333vw;
          width: 100%;
          overflow-y: scroll;
          height: 160px; } }
      #news > .inr .topics ol {
        display: flex; }
        @media (max-width: 480px) {
          #news > .inr .topics ol {
            display: block;
            width: 100%; } }
        #news > .inr .topics ol li {
          width: 100%;
          max-width: 12.5vw; }
          #news > .inr .topics ol li:nth-child(n + 2) {
            margin-left: 1.0416666667vw; }
            @media (max-width: 1280px) {
              #news > .inr .topics ol li:nth-child(n + 2) {
                margin-left: 1.5625vw; } }
            @media (max-width: 980px) {
              #news > .inr .topics ol li:nth-child(n + 2) {
                margin-left: 2.0408163265vw; } }
            @media (max-width: 480px) {
              #news > .inr .topics ol li:nth-child(n + 2) {
                /*margin-left: vw_s(10);*/
                margin: 0;
                margin-top: 2.0833333333vw; } }
          @media (max-width: 980px) {
            #news > .inr .topics ol li {
              max-width: 23.4693877551vw; } }
          @media (max-width: 480px) {
            #news > .inr .topics ol li {
              /*max-width: vw_s(110);*/
              max-width: 100%; } }
          #news > .inr .topics ol li a {
            color: #fff;
            transition: all .3s; }
            @media (max-width: 480px) {
              #news > .inr .topics ol li a {
                display: flex;
                width: 100%; } }
            #news > .inr .topics ol li a:hover figure {
              transition: all .3s;
              opacity: .6; }
            #news > .inr .topics ol li a:hover dd {
              color: #ffff00; }
              @media (max-width: 980px) {
                #news > .inr .topics ol li a:hover dd {
                  color: #fff; } }
              @media (max-width: 980px) {
                #news > .inr .topics ol li a:hover dd:active {
                  transition: all .3s;
                  color: #ffff00; } }
      @media (max-width: 480px) {
        #news > .inr .topics {
          display: flex;
          max-width: 100%; } }
      #news > .inr .topics figure {
        border: 1px solid #000;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 8.0729166667vw; }
        @media (max-width: 980px) {
          #news > .inr .topics figure {
            height: auto; } }
        @media (max-width: 480px) {
          #news > .inr .topics figure {
            width: 100%;
            /*max-width: vw_s(110);*/
            max-width: 16.6666666667vw; } }
      #news > .inr .topics dl {
        color: #fff; }
        @media (max-width: 480px) {
          #news > .inr .topics dl {
            margin-left: 2.0833333333vw; } }
        #news > .inr .topics dl dt {
          font-weight: bold;
          margin: 0.78125vw 0 0.78125vw; }
          @media (max-width: 980px) {
            #news > .inr .topics dl dt {
              font-size: 1.8367346939vw;
              margin: 1.5306122449vw 0 1.5306122449vw; } }
          @media (max-width: 480px) {
            #news > .inr .topics dl dt {
              margin-top: 0; } }
        #news > .inr .topics dl dd {
          line-height: 1.4; }
          #news > .inr .topics dl dd::before, #news > .inr .topics dl dd::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #news > .inr .topics dl dd::before {
            margin-top: calc((1 - 1.4) * 0.5em); }
          #news > .inr .topics dl dd::after {
            margin-bottom: calc((1 - 1.4) * 0.5em); }
          @media (max-width: 980px) {
            #news > .inr .topics dl dd {
              font-size: 1.8367346939vw; } }
          @media (max-width: 480px) {
            #news > .inr .topics dl dd {
              width: 100%; } }
          #news > .inr .topics dl dd a {
            color: #fff;
            transition: all .3s; }
            #news > .inr .topics dl dd a:hover {
              color: #ffff00; }
              @media (max-width: 980px) {
                #news > .inr .topics dl dd a:hover {
                  color: #fff; } }
            @media (max-width: 980px) {
              #news > .inr .topics dl dd a:active {
                transition: all .3s;
                color: #ffff00; } }

/*==================================================*/
/* about */
/*==================================================*/
#about {
  margin-top: -7.8125vw;
  position: relative;
  z-index: 1; }
  @media (max-width: 980px) {
    #about {
      margin-top: -3.0612244898vw; } }
  @media (max-width: 480px) {
    #about {
      margin-top: 2.0833333333vw; } }
  @media screen and (max-width: 320px) {
    #about {
      margin-top: 15px; } }
  #about .wrap {
    background: url("../img/bg_about.png") no-repeat top left/cover;
    box-sizing: border-box;
    margin: 0 auto 4.1666666667vw;
    padding: 9.375vw 0 10.4166666667vw;
    width: 100%; }
    @media (max-width: 480px) {
      #about .wrap {
        margin: 0 auto 10.4166666667vw;
        padding: 16.6666666667vw 4.1666666667vw 12.5vw;
        width: 100%; } }
    #about .wrap .inr {
      display: flex;
      flex-direction: row-reverse;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      width: 100%;
      max-width: 75.5208333333vw; }
      @media (max-width: 980px) {
        #about .wrap .inr {
          max-width: 95%; } }
      @media (max-width: 480px) {
        #about .wrap .inr {
          flex-direction: column-reverse;
          max-width: 100%; } }
      #about .wrap .inr figure {
        margin-right: 2.8645833333vw;
        width: 100%;
        max-width: 20.1041666667vw; }
        @media (max-width: 980px) {
          #about .wrap .inr figure {
            max-width: 25.1020408163vw;
            margin-right: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #about .wrap .inr figure {
            max-width: 41.6666666667vw;
            margin-right: 0; } }
      #about .wrap .inr .txt_area h2 {
        width: 100%;
        max-width: 44.2708333333vw;
        text-align: center;
        margin: 0 auto; }
        @media (max-width: 980px) {
          #about .wrap .inr .txt_area h2 {
            max-width: 53.0612244898vw; } }
        @media (max-width: 480px) {
          #about .wrap .inr .txt_area h2 {
            margin-top: 4.1666666667vw;
            max-width: 100%; } }
      #about .wrap .inr .txt_area p.about_txt {
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.1458333333vw;
        line-height: 1.8;
        margin-top: 2.34375vw; }
        #about .wrap .inr .txt_area p.about_txt::before, #about .wrap .inr .txt_area p.about_txt::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #about .wrap .inr .txt_area p.about_txt::before {
          margin-top: calc((1 - 1.8) * 0.5em); }
        #about .wrap .inr .txt_area p.about_txt::after {
          margin-bottom: calc((1 - 1.8) * 0.5em); }
        @media (max-width: 980px) {
          #about .wrap .inr .txt_area p.about_txt {
            font-size: 1.8367346939vw; } }
        @media (max-width: 480px) {
          #about .wrap .inr .txt_area p.about_txt {
            margin-top: 4.1666666667vw;
            font-size: 3.3333333333vw; } }
        #about .wrap .inr .txt_area p.about_txt span {
          color: #ff1a31;
          font-family: "Koulen", cursive;
          font-size: 1.25vw;
          letter-spacing: .05em; }
          @media (max-width: 980px) {
            #about .wrap .inr .txt_area p.about_txt span {
              font-size: 2.2448979592vw; } }
          @media (max-width: 480px) {
            #about .wrap .inr .txt_area p.about_txt span {
              font-size: 3.75vw; } }
        #about .wrap .inr .txt_area p.about_txt.en {
          margin: 2.34375vw auto 0;
          width: 100%;
          max-width: 62.5vw;
          text-align: center; }
          @media (max-width: 980px) {
            #about .wrap .inr .txt_area p.about_txt.en {
              margin: 4.5918367347vw auto 0;
              max-width: 90%;
              text-align: left; } }
          @media (max-width: 480px) {
            #about .wrap .inr .txt_area p.about_txt.en {
              margin: 9.375vw auto 0; } }
    #about .wrap.gbvsr {
      background: url("../img/bg_about.png") no-repeat top left/cover;
      box-sizing: border-box;
      margin: 0 auto 4.1666666667vw;
      padding: 14.5833333333vw 0 13.0208333333vw;
      width: 100%; }
      @media (max-width: 480px) {
        #about .wrap.gbvsr {
          margin: 0 auto 10.4166666667vw;
          padding: 16.6666666667vw 4.1666666667vw 12.5vw;
          width: 100%; } }
      #about .wrap.gbvsr .inr .txt_area h2 {
        width: 100%;
        max-width: 62.5vw;
        text-align: center;
        margin: 0 auto; }
        @media (max-width: 980px) {
          #about .wrap.gbvsr .inr .txt_area h2 {
            max-width: 83.6734693878vw; } }
        @media (max-width: 480px) {
          #about .wrap.gbvsr .inr .txt_area h2 {
            margin-top: 4.1666666667vw;
            max-width: 100%; } }
      #about .wrap.gbvsr .inr .txt_area p.about_txt {
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.1458333333vw;
        line-height: 1.8;
        margin-top: 2.34375vw;
        text-align: center; }
        #about .wrap.gbvsr .inr .txt_area p.about_txt::before, #about .wrap.gbvsr .inr .txt_area p.about_txt::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #about .wrap.gbvsr .inr .txt_area p.about_txt::before {
          margin-top: calc((1 - 1.8) * 0.5em); }
        #about .wrap.gbvsr .inr .txt_area p.about_txt::after {
          margin-bottom: calc((1 - 1.8) * 0.5em); }
        @media (max-width: 980px) {
          #about .wrap.gbvsr .inr .txt_area p.about_txt {
            font-size: 1.8367346939vw; } }
        @media (max-width: 480px) {
          #about .wrap.gbvsr .inr .txt_area p.about_txt {
            margin-top: 4.1666666667vw;
            font-size: 3.3333333333vw; } }

/*==================================================*/
/* finals */
/*==================================================*/
#finals {
  background: url("../img/bg_top_Lcq.jpg") top center no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw; }
  @media (max-width: 980px) {
    #finals {
      padding-top: 10.2040816327vw;
      padding-bottom: 10.2040816327vw; } }
  @media (max-width: 480px) {
    #finals {
      padding-top: 16.6666666667vw;
      padding-bottom: 16.6666666667vw; } }
  #finals .finals_logo {
    margin: 0 auto 2.0833333333vw;
    width: 100%;
    max-width: 27.0833333333vw; }
    @media (max-width: 1280px) {
      #finals .finals_logo {
        margin-bottom: 3.125vw;
        max-width: 37.5vw; } }
    @media (max-width: 980px) {
      #finals .finals_logo {
        margin-bottom: 4.0816326531vw;
        max-width: 48.9795918367vw; } }
    @media (max-width: 480px) {
      #finals .finals_logo {
        margin-bottom: 8.3333333333vw;
        max-width: 80%; } }
  #finals .details {
    margin-bottom: 50px; }
    @media (max-width: 980px) {
      #finals .details {
        margin-bottom: 30px; } }
    #finals .details .tournaments {
      font-family: "Anton", sans-serif;
      color: #fff;
      font-size: 2.1875vw;
      text-align: center;
      letter-spacing: .03em;
      line-height: 1.2; }
      #finals .details .tournaments::before, #finals .details .tournaments::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #finals .details .tournaments::before {
        margin-top: calc((1 - 1.2) * 0.5em); }
      #finals .details .tournaments::after {
        margin-bottom: calc((1 - 1.2) * 0.5em); }
      @media (max-width: 1280px) {
        #finals .details .tournaments {
          font-size: 3.28125vw; } }
      @media (max-width: 980px) {
        #finals .details .tournaments {
          font-size: 3.2653061224vw; } }
      @media (max-width: 480px) {
        #finals .details .tournaments {
          font-size: 6.6666666667vw; } }
      #finals .details .tournaments:nth-child(n + 2) {
        margin-top: 2.0833333333vw; }
        @media (max-width: 1280px) {
          #finals .details .tournaments:nth-child(n + 2) {
            margin-top: 3.125vw; } }
        @media (max-width: 980px) {
          #finals .details .tournaments:nth-child(n + 2) {
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          #finals .details .tournaments:nth-child(n + 2) {
            margin-top: 6.25vw; } }
      #finals .details .tournaments .day {
        color: #ffff00;
        display: block;
        font-size: 1.6666666667vw;
        margin-bottom: 0.5208333333vw;
        width: 100%; }
        @media (max-width: 1280px) {
          #finals .details .tournaments .day {
            font-size: 2.5vw;
            margin-bottom: 0.78125vw; } }
        @media (max-width: 980px) {
          #finals .details .tournaments .day {
            font-size: 2.4489795918vw;
            margin-bottom: 1.0204081633vw; } }
        @media (max-width: 480px) {
          #finals .details .tournaments .day {
            font-size: 5vw;
            margin-bottom: 2.0833333333vw; } }
  #finals dl.details {
    color: #fff;
    margin: 0 auto 4.1666666667vw;
    width: 100%;
    max-width: 52.0833333333vw; }
    @media (max-width: 1280px) {
      #finals dl.details {
        max-width: 78.125vw; } }
    @media (max-width: 980px) {
      #finals dl.details {
        margin: 0 auto 5.1020408163vw;
        max-width: 100%; } }
    @media (max-width: 480px) {
      #finals dl.details {
        margin: 0 auto 8.3333333333vw; } }
    #finals dl.details div {
      display: flex;
      align-items: center; }
      @media (max-width: 480px) {
        #finals dl.details div {
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start; } }
      #finals dl.details div:nth-child(n + 2) {
        margin-top: 1.0416666667vw; }
        @media (max-width: 980px) {
          #finals dl.details div:nth-child(n + 2) {
            margin-top: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #finals dl.details div:nth-child(n + 2) {
            margin-top: 8.3333333333vw; } }
      #finals dl.details div.gameTtl {
        display: flex;
        align-items: flex-start; }
        @media (max-width: 480px) {
          #finals dl.details div.gameTtl {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start; } }
        #finals dl.details div.gameTtl dd {
          font-family: "Noto Sans JP", sans-serif;
          line-height: 1.8;
          margin-top: 0.5208333333vw; }
          #finals dl.details div.gameTtl dd::before, #finals dl.details div.gameTtl dd::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #finals dl.details div.gameTtl dd::before {
            margin-top: calc((1 - 1.8) * 0.5em); }
          #finals dl.details div.gameTtl dd::after {
            margin-bottom: calc((1 - 1.8) * 0.5em); }
          @media (max-width: 480px) {
            #finals dl.details div.gameTtl dd {
              margin-top: 3.125vw;
              font-size: 3.3333333333vw; } }
      #finals dl.details div dt {
        box-sizing: border-box;
        font-weight: bold;
        background: #692bdc;
        margin-right: 1.0416666667vw;
        padding: 0.625vw 0;
        text-align: center;
        width: 100%;
        max-width: 130px; }
        @media (max-width: 1280px) {
          #finals dl.details div dt {
            margin-right: 1.40625vw;
            padding: 0.9375vw 0;
            max-width: 130px; } }
        @media (max-width: 980px) {
          #finals dl.details div dt {
            margin-right: 1.8367346939vw;
            padding: 1.2244897959vw 0; } }
        @media (max-width: 480px) {
          #finals dl.details div dt {
            font-size: 3.75vw;
            margin-right: 4.1666666667vw;
            padding: 2.5vw 0; } }
      #finals dl.details div dd {
        font-family: "Noto Sans JP", sans-serif;
        line-height: 1.2; }
        #finals dl.details div dd::before, #finals dl.details div dd::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #finals dl.details div dd::before {
          margin-top: calc((1 - 1.2) * 0.5em); }
        #finals dl.details div dd::after {
          margin-bottom: calc((1 - 1.2) * 0.5em); }
        @media (max-width: 480px) {
          #finals dl.details div dd {
            margin-top: 3.125vw;
            font-size: 3.3333333333vw; } }
    #finals dl.details.en div {
      display: flex;
      align-items: center; }
      @media (max-width: 480px) {
        #finals dl.details.en div {
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start; } }
      #finals dl.details.en div:nth-child(n + 2) {
        margin-top: 1.0416666667vw; }
        @media (max-width: 980px) {
          #finals dl.details.en div:nth-child(n + 2) {
            margin-top: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #finals dl.details.en div:nth-child(n + 2) {
            margin-top: 8.3333333333vw; } }
      #finals dl.details.en div.gameTtl {
        display: flex;
        align-items: flex-start; }
        @media (max-width: 480px) {
          #finals dl.details.en div.gameTtl {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start; } }
        #finals dl.details.en div.gameTtl dd {
          font-family: "Noto Sans JP", sans-serif;
          line-height: 1.8;
          margin-top: 0.5208333333vw; }
          #finals dl.details.en div.gameTtl dd::before, #finals dl.details.en div.gameTtl dd::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #finals dl.details.en div.gameTtl dd::before {
            margin-top: calc((1 - 1.8) * 0.5em); }
          #finals dl.details.en div.gameTtl dd::after {
            margin-bottom: calc((1 - 1.8) * 0.5em); }
          @media (max-width: 480px) {
            #finals dl.details.en div.gameTtl dd {
              margin-top: 3.125vw;
              font-size: 3.3333333333vw; } }
      #finals dl.details.en div dt {
        box-sizing: border-box;
        font-weight: bold;
        background: #692bdc;
        margin-right: 1.0416666667vw;
        padding: 0.625vw 0;
        text-align: center;
        width: 100%;
        max-width: 180px; }
        @media (max-width: 1280px) {
          #finals dl.details.en div dt {
            margin-right: 1.40625vw;
            padding: 0.9375vw 0;
            max-width: 130px; } }
        @media (max-width: 980px) {
          #finals dl.details.en div dt {
            margin-right: 1.8367346939vw;
            padding: 1.2244897959vw 0; } }
        @media (max-width: 480px) {
          #finals dl.details.en div dt {
            font-size: 3.75vw;
            margin-right: 4.1666666667vw;
            padding: 2.5vw 0; } }
      #finals dl.details.en div dd {
        font-family: "Noto Sans JP", sans-serif;
        line-height: 1.2; }
        #finals dl.details.en div dd::before, #finals dl.details.en div dd::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #finals dl.details.en div dd::before {
          margin-top: calc((1 - 1.2) * 0.5em); }
        #finals dl.details.en div dd::after {
          margin-bottom: calc((1 - 1.2) * 0.5em); }
        @media (max-width: 480px) {
          #finals dl.details.en div dd {
            margin-top: 3.125vw;
            font-size: 3.3333333333vw; } }
      #finals dl.details.en div.en:nth-child(n + 2) {
        margin-top: 1.0416666667vw; }
        @media (max-width: 980px) {
          #finals dl.details.en div.en:nth-child(n + 2) {
            margin-top: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #finals dl.details.en div.en:nth-child(n + 2) {
            margin-top: 6.25vw; } }
      #finals dl.details.en div.en dt {
        max-width: 180px; }
        @media (max-width: 980px) {
          #finals dl.details.en div.en dt {
            padding: 1.5306122449vw 0; } }
        @media (max-width: 480px) {
          #finals dl.details.en div.en dt {
            padding: 3.125vw 0; } }
      @media (max-width: 480px) {
        #finals dl.details.en div.en dd {
          margin-top: 2.0833333333vw; } }
  #finals .ticket_notes {
    color: #fff;
    font-size: 0.9375vw;
    text-align: center;
    margin-top: 1.0416666667vw; }
    #finals .ticket_notes strong {
      color: #ffff00; }
    @media (max-width: 1280px) {
      #finals .ticket_notes {
        font-size: 1.40625vw;
        margin-top: 1.5625vw; } }
    @media (max-width: 980px) {
      #finals .ticket_notes {
        font-size: 1.6326530612vw;
        margin-top: 2.0408163265vw; } }
    @media (max-width: 480px) {
      #finals .ticket_notes {
        font-size: 3.3333333333vw;
        margin-top: 4.1666666667vw; } }

/*==================================================*/
/* overview */
/*==================================================*/
#overview dl.details {
  color: #fff;
  margin: 0 auto 4.1666666667vw;
  width: 100%;
  max-width: 52.0833333333vw; }
  @media (max-width: 980px) {
    #overview dl.details {
      margin: 0 auto 5.1020408163vw;
      max-width: 100%; } }
  @media (max-width: 480px) {
    #overview dl.details {
      margin: 0 auto 8.3333333333vw; } }
  #overview dl.details div {
    display: flex;
    align-items: center; }
    @media (max-width: 480px) {
      #overview dl.details div {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; } }
    #overview dl.details div:nth-child(n + 2) {
      margin-top: 1.0416666667vw; }
      @media (max-width: 980px) {
        #overview dl.details div:nth-child(n + 2) {
          margin-top: 2.0408163265vw; } }
      @media (max-width: 480px) {
        #overview dl.details div:nth-child(n + 2) {
          margin-top: 4.1666666667vw; } }
    #overview dl.details div dt {
      box-sizing: border-box;
      font-weight: bold;
      background: #692bdc;
      margin-right: 1.0416666667vw;
      padding: 0.625vw 0;
      text-align: center;
      width: 100%;
      max-width: 120px; }
      @media (max-width: 980px) {
        #overview dl.details div dt {
          margin-right: 2.0408163265vw;
          padding: 1.2244897959vw 0; } }
      @media (max-width: 480px) {
        #overview dl.details div dt {
          font-size: 3.75vw;
          margin-right: 4.1666666667vw;
          padding: 2.5vw 0; } }
    #overview dl.details div dd {
      font-family: "Noto Sans JP", sans-serif;
      line-height: 1.2; }
      #overview dl.details div dd::before, #overview dl.details div dd::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #overview dl.details div dd::before {
        margin-top: calc((1 - 1.2) * 0.5em); }
      #overview dl.details div dd::after {
        margin-bottom: calc((1 - 1.2) * 0.5em); }
      @media (max-width: 480px) {
        #overview dl.details div dd {
          margin-top: 3.125vw;
          font-size: 3.3333333333vw; } }
    #overview dl.details div.en:nth-child(n + 2) {
      margin-top: 1.0416666667vw; }
      @media (max-width: 980px) {
        #overview dl.details div.en:nth-child(n + 2) {
          margin-top: 2.0408163265vw; } }
      @media (max-width: 480px) {
        #overview dl.details div.en:nth-child(n + 2) {
          margin-top: 6.25vw; } }
    #overview dl.details div.en dt {
      max-width: 180px; }
      @media (max-width: 980px) {
        #overview dl.details div.en dt {
          padding: 1.5306122449vw 0; } }
      @media (max-width: 480px) {
        #overview dl.details div.en dt {
          padding: 3.125vw 0; } }
    @media (max-width: 480px) {
      #overview dl.details div.en dd {
        margin-top: 2.0833333333vw; } }
#overview .qualification {
  box-sizing: border-box;
  /*background: #222;*/
  font-family: "Noto Sans JP", sans-serif;
  /*padding: vw(80) 0;*/
  padding: 2.0833333333vw 0;
  width: 100%; }
  @media (max-width: 980px) {
    #overview .qualification {
      /*padding: vw_p(80) 0;*/
      padding: 4.0816326531vw 0; } }
  @media (max-width: 480px) {
    #overview .qualification {
      /*padding: vw_s(40) 0 vw_s(80);*/
      padding: 8.3333333333vw 0 16.6666666667vw; } }
  #overview .qualification h2 {
    color: #fff;
    font-size: 1.5625vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.2; }
    #overview .qualification h2::before, #overview .qualification h2::after {
      content: "";
      display: block;
      width: 0;
      height: 0; }
    #overview .qualification h2::before {
      margin-top: calc((1 - 1.2) * 0.5em); }
    #overview .qualification h2::after {
      margin-bottom: calc((1 - 1.2) * 0.5em); }
    @media (max-width: 980px) {
      #overview .qualification h2 {
        font-size: 3.0612244898vw;
        margin: 0 auto;
        width: 90%; }
        #overview .qualification h2.en {
          text-align: left; } }
    @media (max-width: 480px) {
      #overview .qualification h2 {
        font-size: 5vw; } }
    #overview .qualification h2 span {
      color: #ffff00;
      font-weight: 900; }
  #overview .qualification h3 {
    /*background: #000;*/
    background: #333;
    border-radius: 50px;
    box-sizing: border-box;
    color: #fff;
    font-size: 0.9375vw;
    margin: 0 auto 1.5625vw;
    padding: 0.78125vw 0 0.9375vw;
    text-align: center;
    width: 100%;
    max-width: 11.9791666667vw; }
    @media (max-width: 980px) {
      #overview .qualification h3 {
        font-size: 1.8367346939vw;
        margin: 0 auto 3.0612244898vw;
        padding: 1.5306122449vw 0 1.8367346939vw;
        max-width: 23.4693877551vw; } }
    @media (max-width: 480px) {
      #overview .qualification h3 {
        font-size: 3.75vw;
        margin: 0 auto 6.25vw;
        padding: 3.125vw 0 3.75vw;
        max-width: 47.9166666667vw; } }
  #overview .qualification_txt {
    color: #fff;
    margin: 2.0833333333vw auto;
    text-align: center; }
    #overview .qualification_txt.en {
      line-height: 1.4; }
      #overview .qualification_txt.en::before, #overview .qualification_txt.en::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #overview .qualification_txt.en::before {
        margin-top: calc((1 - 1.4) * 0.5em); }
      #overview .qualification_txt.en::after {
        margin-bottom: calc((1 - 1.4) * 0.5em); }
    @media (max-width: 980px) {
      #overview .qualification_txt {
        margin: 4.0816326531vw auto;
        text-align: left;
        line-height: 1.2;
        width: 90%; }
        #overview .qualification_txt::before, #overview .qualification_txt::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #overview .qualification_txt::before {
          margin-top: calc((1 - 1.2) * 0.5em); }
        #overview .qualification_txt::after {
          margin-bottom: calc((1 - 1.2) * 0.5em); } }
    @media (max-width: 480px) {
      #overview .qualification_txt {
        margin: 8.3333333333vw auto; } }
  #overview .qualification_pic {
    margin: 2.0833333333vw auto 0;
    width: 100%;
    max-width: 52.0833333333vw; }
    @media (max-width: 980px) {
      #overview .qualification_pic {
        margin: 4.0816326531vw auto 0;
        max-width: 90%; } }
    @media (max-width: 480px) {
      #overview .qualification_pic {
        margin: 6.25vw auto 0; } }
  #overview .qualification .condition {
    color: #fff;
    font-size: 0.9375vw;
    margin: 0 auto;
    width: 100%;
    max-width: 52.0833333333vw; }
    @media (max-width: 980px) {
      #overview .qualification .condition {
        font-size: 1.8367346939vw;
        max-width: 90%; } }
    @media (max-width: 480px) {
      #overview .qualification .condition {
        font-size: 3.75vw; } }
    #overview .qualification .condition li {
      position: relative;
      margin-left: 17px;
      line-height: 1.2; }
      #overview .qualification .condition li::before, #overview .qualification .condition li::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #overview .qualification .condition li::before {
        margin-top: calc((1 - 1.2) * 0.5em); }
      #overview .qualification .condition li::after {
        margin-bottom: calc((1 - 1.2) * 0.5em); }
      #overview .qualification .condition li:nth-child(n + 2) {
        margin-top: 1.0416666667vw; }
        @media (max-width: 980px) {
          #overview .qualification .condition li:nth-child(n + 2) {
            margin-top: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #overview .qualification .condition li:nth-child(n + 2) {
            margin-top: 4.1666666667vw; } }
      #overview .qualification .condition li span {
        color: #ffff00;
        font-weight: bold; }
      #overview .qualification .condition li::before {
        content: "●";
        color: #692bdc;
        font-size: 10px;
        position: absolute;
        top: 50%;
        margin-top: -5px;
        margin-left: -17px; }
#overview .prize {
  background: url("../img/price_bg.gif") no-repeat top center;
  background-size: cover;
  box-sizing: border-box;
  padding: 4.1666666667vw 0; }
  @media (max-width: 980px) {
    #overview .prize {
      padding: 8.1632653061vw 0; } }
  @media (max-width: 480px) {
    #overview .prize {
      background: url("../img/price_bg.gif") no-repeat top right;
      background-size: auto;
      padding: 16.6666666667vw 0; } }
  #overview .prize figure {
    margin: 0 auto;
    width: 100%;
    max-width: 12.9166666667vw; }
    @media (max-width: 980px) {
      #overview .prize figure {
        max-width: 25.306122449vw; } }
    @media (max-width: 480px) {
      #overview .prize figure {
        max-width: 51.6666666667vw; } }
    #overview .prize figure.game_ttl {
      margin-top: 4.1666666667vw; }
      @media (max-width: 980px) {
        #overview .prize figure.game_ttl {
          margin-top: 8.1632653061vw; } }
      @media (max-width: 480px) {
        #overview .prize figure.game_ttl {
          margin-top: 12.5vw; } }
      #overview .prize figure.game_ttl.gbvsr {
        max-width: 18.75vw; }
        @media (max-width: 1280px) {
          #overview .prize figure.game_ttl.gbvsr {
            max-width: 28.125vw; } }
        @media (max-width: 980px) {
          #overview .prize figure.game_ttl.gbvsr {
            max-width: 32.6530612245vw; } }
        @media (max-width: 480px) {
          #overview .prize figure.game_ttl.gbvsr {
            max-width: 60.4166666667vw; } }
  #overview .prize dl {
    margin: 0 auto;
    width: 100%;
    max-width: 40.625vw;
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 980px) {
      #overview .prize dl {
        max-width: 90%; } }
    @media (max-width: 480px) {
      #overview .prize dl {
        flex-direction: column;
        max-width: 90%; } }
    #overview .prize dl div {
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      margin-top: 1.5625vw;
      width: 50%; }
      @media (max-width: 980px) {
        #overview .prize dl div {
          margin-top: 3.0612244898vw; } }
      @media (max-width: 480px) {
        #overview .prize dl div {
          margin-top: 4.1666666667vw;
          width: 100%; } }
      #overview .prize dl div.one {
        margin-top: 2.0833333333vw;
        width: 100%; }
        @media (max-width: 980px) {
          #overview .prize dl div.one {
            margin-top: 4.0816326531vw; } }
        @media (max-width: 480px) {
          #overview .prize dl div.one {
            margin-top: 8.3333333333vw; } }
        #overview .prize dl div.one dt {
          background: #a90007;
          color: #ffff00;
          font-size: 1.7708333333vw; }
          @media (max-width: 980px) {
            #overview .prize dl div.one dt {
              font-size: 3.4693877551vw; } }
          @media (max-width: 480px) {
            #overview .prize dl div.one dt {
              font-size: 5vw; } }
      #overview .prize dl div.two dt {
        background: #692bdc; }
      #overview .prize dl div.three dt {
        background: #601986; }
      #overview .prize dl div dt {
        background: #333;
        border-radius: 30px;
        box-sizing: border-box;
        font-family: "Anton", sans-serif;
        font-size: 1.25vw;
        padding: 0.78125vw 1.0416666667vw;
        letter-spacing: .05em;
        text-align: center;
        width: 100%;
        max-width: 9.375vw; }
        @media (max-width: 980px) {
          #overview .prize dl div dt {
            font-size: 2.4489795918vw;
            padding: 1.5306122449vw 2.0408163265vw;
            max-width: 18.3673469388vw; } }
        @media (max-width: 480px) {
          #overview .prize dl div dt {
            font-size: 3.75vw;
            padding: 3.125vw 4.1666666667vw;
            max-width: 37.5vw; } }
      #overview .prize dl div dd {
        width: 100%;
        max-width: 7.8125vw;
        margin-left: 1.5625vw;
        font-size: 1.25vw;
        font-weight: bold; }
        @media (max-width: 980px) {
          #overview .prize dl div dd {
            font-size: 2.4489795918vw;
            margin-left: 3.0612244898vw;
            max-width: 15.306122449vw; } }
        @media (max-width: 480px) {
          #overview .prize dl div dd {
            font-size: 3.75vw;
            margin-left: 6.25vw;
            max-width: 31.25vw; } }
#overview .rule {
  box-sizing: border-box;
  padding: 4.1666666667vw 0 6.25vw; }
  @media (max-width: 980px) {
    #overview .rule {
      padding: 8.1632653061vw 0 12.2448979592vw; } }
  @media (max-width: 480px) {
    #overview .rule {
      padding: 16.6666666667vw 0 16.6666666667vw; } }
  #overview .rule .inr {
    background: #111;
    box-sizing: border-box;
    padding: 2.6041666667vw 0;
    margin: 3.6458333333vw auto 0;
    width: 100%;
    max-width: 52.0833333333vw; }
    @media (max-width: 980px) {
      #overview .rule .inr {
        margin: 7.1428571429vw auto 0;
        padding: 5.1020408163vw 0;
        max-width: 90%; } }
    @media (max-width: 480px) {
      #overview .rule .inr {
        margin: 14.5833333333vw auto 0;
        padding: 6.25vw 0;
        max-width: 90%; } }
    #overview .rule .inr p {
      margin: 0 auto; }
  #overview .rule .btn_red_off {
    opacity: .5;
    border: 1px solid #ff1a31;
    background: rgba(255, 26, 49, 0.3);
    position: relative;
    padding: 0;
    transition: all .3s;
    max-width: 280px; }
    #overview .rule .btn_red_off.center {
      margin: 0 auto; }
    #overview .rule .btn_red_off:hover {
      background: rgba(255, 26, 49, 0.3); }
    @media (max-width: 980px) {
      #overview .rule .btn_red_off {
        margin: 0 auto;
        width: 90%; }
        #overview .rule .btn_red_off:hover {
          background: rgba(255, 26, 49, 0.3); }
        #overview .rule .btn_red_off:active {
          background: #ff1a31; } }
    #overview .rule .btn_red_off a {
      color: #fff;
      display: flex;
      justify-content: center;
      /*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;
      /*padding: 20px 20px 20px 30px;*/
      text-decoration: none;
      transition: all .3s;
      text-align: center;
      /*&::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;
      }
      &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 2em;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: #fff;
        transition: all .3s;
      }
      &:hover {
        text-decoration: none;
        opacity: 1;
        &::before,
        &::after {
          right: 2em;
          @include pad{
            right: 2em;
          }
        }
      }*/ }
      @media (max-width: 980px) {
        #overview .rule .btn_red_off a:active::before, #overview .rule .btn_red_off a:active::after {
          right: 2em; } }

/*==================================================*/
/* schedule */
/*==================================================*/
#schedule {
  box-sizing: border-box;
  padding-bottom: 6.25vw; }
  @media (max-width: 980px) {
    #schedule {
      padding-bottom: 12.2448979592vw; } }
  @media (max-width: 480px) {
    #schedule {
      padding-bottom: 16.6666666667vw; } }
  #schedule .schedule_txt {
    color: #fff;
    font-size: 0.8333333333vw;
    margin: 3.6458333333vw auto 2.0833333333vw;
    text-align: center; }
    @media (max-width: 980px) {
      #schedule .schedule_txt {
        font-size: 1.6326530612vw;
        margin: 7.1428571429vw auto 4.0816326531vw; } }
    @media (max-width: 480px) {
      #schedule .schedule_txt {
        font-size: 3.75vw;
        margin: 14.5833333333vw auto 8.3333333333vw; } }
  #schedule .tournament {
    margin: -1.5625vw auto 0;
    width: 100%;
    max-width: 56.5104166667vw; }
    @media (max-width: 980px) {
      #schedule .tournament {
        margin: -3.0612244898vw auto 0;
        max-width: 100%; } }
    @media (max-width: 480px) {
      #schedule .tournament {
        margin: -6.25vw auto 0;
        max-width: 90%; } }
    #schedule .tournament .inr {
      display: flex;
      flex-wrap: wrap;
      margin-left: -1.5625vw; }
      @media (max-width: 480px) {
        #schedule .tournament .inr {
          flex-direction: column;
          margin-left: 0; } }
      #schedule .tournament .inr dl {
        box-sizing: border-box;
        background: #222;
        border: 2px solid #111;
        margin: 1.5625vw 0 0 1.5625vw;
        padding: 1.4583333333vw;
        width: 100%;
        max-width: 17.7083333333vw; }
        @media (max-width: 980px) {
          #schedule .tournament .inr dl {
            margin: 3.0612244898vw 0 0 3.0612244898vw;
            padding: 2.8571428571vw;
            max-width: 46%; } }
        @media (max-width: 480px) {
          #schedule .tournament .inr dl {
            margin: 6.25vw 0 0 0;
            padding: 5.8333333333vw;
            max-width: 100%; } }
        #schedule .tournament .inr dl dt {
          border: 1px solid #fff;
          width: 100%;
          max-width: 14.5833333333vw; }
          @media (max-width: 980px) {
            #schedule .tournament .inr dl dt {
              max-width: 100%; } }
        #schedule .tournament .inr dl dd {
          color: #fff; }
          #schedule .tournament .inr dl dd.day {
            font-size: 1.0416666667vw;
            margin-top: 1.0416666667vw;
            text-align: center;
            line-height: 1.2; }
            #schedule .tournament .inr dl dd.day::before, #schedule .tournament .inr dl dd.day::after {
              content: "";
              display: block;
              width: 0;
              height: 0; }
            #schedule .tournament .inr dl dd.day::before {
              margin-top: calc((1 - 1.2) * 0.5em); }
            #schedule .tournament .inr dl dd.day::after {
              margin-bottom: calc((1 - 1.2) * 0.5em); }
            @media (max-width: 980px) {
              #schedule .tournament .inr dl dd.day {
                font-size: 2.0408163265vw;
                margin-top: 2.0408163265vw; } }
            @media (max-width: 480px) {
              #schedule .tournament .inr dl dd.day {
                font-size: 4.1666666667vw;
                margin-top: 4.1666666667vw; } }
          #schedule .tournament .inr dl dd.name {
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: "Anton", sans-serif;
            font-size: 1.25vw;
            margin: 0.9375vw 0;
            text-align: center;
            height: 2.6041666667vw;
            letter-spacing: .05em;
            line-height: 1.2; }
            #schedule .tournament .inr dl dd.name::before, #schedule .tournament .inr dl dd.name::after {
              content: "";
              display: block;
              width: 0;
              height: 0; }
            #schedule .tournament .inr dl dd.name::before {
              margin-top: calc((1 - 1.2) * 0.5em); }
            #schedule .tournament .inr dl dd.name::after {
              margin-bottom: calc((1 - 1.2) * 0.5em); }
            @media (max-width: 980px) {
              #schedule .tournament .inr dl dd.name {
                font-size: 2.4489795918vw;
                margin: 1.8367346939vw 0;
                height: 5.1020408163vw; } }
            @media (max-width: 480px) {
              #schedule .tournament .inr dl dd.name {
                font-size: 5vw;
                margin: 3.75vw 0;
                height: auto; } }
          #schedule .tournament .inr dl dd.btn_Web {
            border: 1px solid #692bdc;
            background: rgba(105, 43, 220, 0.1);
            position: relative;
            padding: 0;
            transition: all .3s;
            width: 100%; }
            #schedule .tournament .inr dl dd.btn_Web:hover {
              background: #692bdc; }
            @media (max-width: 980px) {
              #schedule .tournament .inr dl dd.btn_Web {
                margin: 0 auto; }
                #schedule .tournament .inr dl dd.btn_Web:hover {
                  background: rgba(105, 43, 220, 0.3); }
                #schedule .tournament .inr dl dd.btn_Web:active {
                  background: #692bdc; } }
            #schedule .tournament .inr dl dd.btn_Web a {
              color: #fff;
              display: flex;
              justify-content: space-between;
              align-items: center;
              box-sizing: border-box;
              font-size: 0.9375vw;
              letter-spacing: .05em;
              font-weight: 700;
              position: relative;
              margin: 0 auto;
              padding: 1.0416666667vw 1.0416666667vw 1.0416666667vw 2.0833333333vw;
              text-decoration: none;
              transition: all .3s; }
              @media (max-width: 980px) {
                #schedule .tournament .inr dl dd.btn_Web a {
                  font-size: 1.8367346939vw;
                  padding: 2.0408163265vw 2.0408163265vw 2.0408163265vw 4.0816326531vw;
                  letter-spacing: .08em; } }
              @media (max-width: 480px) {
                #schedule .tournament .inr dl dd.btn_Web a {
                  font-size: 3.75vw;
                  padding: 4.1666666667vw 4.1666666667vw 4.1666666667vw 8.3333333333vw;
                  letter-spacing: .08em; } }
              #schedule .tournament .inr dl dd.btn_Web 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; }
              #schedule .tournament .inr dl dd.btn_Web a::after {
                content: '';
                position: absolute;
                top: 50%;
                right: 1.5em;
                transform: translateY(-50%);
                width: 50px;
                height: 2px;
                background: #fff;
                transition: all .3s; }
              #schedule .tournament .inr dl dd.btn_Web a:hover {
                text-decoration: none;
                opacity: 1; }
                #schedule .tournament .inr dl dd.btn_Web a:hover::before, #schedule .tournament .inr dl dd.btn_Web a:hover::after {
                  right: .5em; }
                  @media (max-width: 980px) {
                    #schedule .tournament .inr dl dd.btn_Web a:hover::before, #schedule .tournament .inr dl dd.btn_Web a:hover::after {
                      right: 1.5em; } }
              @media (max-width: 980px) {
                #schedule .tournament .inr dl dd.btn_Web a:active::before, #schedule .tournament .inr dl dd.btn_Web a:active::after {
                  right: .5em; } }
          #schedule .tournament .inr dl dd.btn_twitter {
            border: 1px solid #1da1f2;
            background: rgba(29, 161, 242, 0.1);
            position: relative;
            margin-top: 0.5208333333vw;
            padding: 0;
            transition: all .3s;
            width: 100%; }
            #schedule .tournament .inr dl dd.btn_twitter:hover {
              background: #1da1f2; }
            @media (max-width: 980px) {
              #schedule .tournament .inr dl dd.btn_twitter {
                margin: 1.0204081633vw auto 0; }
                #schedule .tournament .inr dl dd.btn_twitter:hover {
                  background: rgba(29, 161, 242, 0.3); }
                #schedule .tournament .inr dl dd.btn_twitter:active {
                  background: #1da1f2; } }
            @media (max-width: 480px) {
              #schedule .tournament .inr dl dd.btn_twitter {
                margin: 2.0833333333vw auto 0; } }
            #schedule .tournament .inr dl dd.btn_twitter a {
              color: #fff;
              display: flex;
              justify-content: space-between;
              align-items: center;
              box-sizing: border-box;
              font-size: 0.9375vw;
              letter-spacing: .05em;
              font-weight: 700;
              position: relative;
              margin: 0 auto;
              padding: 1.0416666667vw 1.0416666667vw 1.0416666667vw 2.0833333333vw;
              text-decoration: none;
              transition: all .3s; }
              @media (max-width: 980px) {
                #schedule .tournament .inr dl dd.btn_twitter a {
                  font-size: 1.8367346939vw;
                  padding: 2.0408163265vw 2.0408163265vw 2.0408163265vw 4.0816326531vw;
                  letter-spacing: .08em; } }
              @media (max-width: 480px) {
                #schedule .tournament .inr dl dd.btn_twitter a {
                  font-size: 3.75vw;
                  padding: 4.1666666667vw 4.1666666667vw 4.1666666667vw 8.3333333333vw;
                  letter-spacing: .08em; } }
              #schedule .tournament .inr dl dd.btn_twitter 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; }
              #schedule .tournament .inr dl dd.btn_twitter a::after {
                content: '';
                position: absolute;
                top: 50%;
                right: 1.5em;
                transform: translateY(-50%);
                width: 50px;
                height: 2px;
                background: #fff;
                transition: all .3s; }
              #schedule .tournament .inr dl dd.btn_twitter a:hover {
                text-decoration: none;
                opacity: 1; }
                #schedule .tournament .inr dl dd.btn_twitter a:hover::before, #schedule .tournament .inr dl dd.btn_twitter a:hover::after {
                  right: .5em; }
                  @media (max-width: 980px) {
                    #schedule .tournament .inr dl dd.btn_twitter a:hover::before, #schedule .tournament .inr dl dd.btn_twitter a:hover::after {
                      right: 1.5em; } }
              @media (max-width: 980px) {
                #schedule .tournament .inr dl dd.btn_twitter a:active::before, #schedule .tournament .inr dl dd.btn_twitter a:active::after {
                  right: .5em; } }
  #schedule .more {
    margin: 0 auto;
    text-align: center; }
    #schedule .more span {
      border-bottom: solid 5px #692bdc;
      box-sizing: border-box;
      color: #fff;
      font-family: "Anton", sans-serif;
      font-size: 24px;
      margin-top: 60px;
      padding-bottom: 5px;
      letter-spacing: .2em;
      text-align: center;
      display: inline-block; }

/*==================================================*/
/* player */
/*==================================================*/
#player {
  background: #111;
  box-sizing: border-box;
  padding: 120px 0; }
  @media (max-width: 980px) {
    #player {
      background-size: contain;
      padding: 12.2448979592vw 0; } }
  @media (max-width: 480px) {
    #player {
      padding: 16.6666666667vw 0; } }
  #player > .inr_area {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px; }
    #player > .inr_area:nth-child(n + 2) {
      margin-top: 4.1666666667vw; }
    @media (max-width: 1280px) {
      #player > .inr_area {
        max-width: 90%; } }
    #player > .inr_area .wrap {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid #000;
      box-sizing: border-box;
      margin-top: 40px;
      padding: 60px 30px;
      /*&:nth-child(n + 3){
        margin-top: vw(40);
        @include pad{
          margin-top: vw_p(20);
        }
      }*/ }
      @media (max-width: 980px) {
        #player > .inr_area .wrap {
          flex-direction: column;
          margin-top: 4.0816326531vw;
          padding: 5.1020408163vw 3.0612244898vw; } }
      #player > .inr_area .wrap .box {
        margin-top: -2.6041666667vw;
        margin-left: -0.9375vw;
        display: flex;
        flex-flow: wrap;
        justify-content: center; }
        @media (max-width: 980px) {
          #player > .inr_area .wrap .box {
            flex-direction: column;
            margin: 0; } }
        #player > .inr_area .wrap .box:nth-child(n + 2) {
          margin-top: 1.5625vw; }
          @media (max-width: 980px) {
            #player > .inr_area .wrap .box:nth-child(n + 2) {
              margin-top: 8.1632653061vw; } }
      #player > .inr_area .wrap .player_list {
        margin-top: 2.6041666667vw;
        margin-left: 0.9375vw; }
        @media (max-width: 980px) {
          #player > .inr_area .wrap .player_list {
            margin: 0; }
            #player > .inr_area .wrap .player_list:nth-child(n + 2) {
              margin-top: 8.1632653061vw; } }
        #player > .inr_area .wrap .player_list p {
          text-align: center;
          line-height: 1.4;
          margin-top: -5px;
          margin-bottom: 20px; }
          @media (max-width: 980px) {
            #player > .inr_area .wrap .player_list p {
              margin-top: -0.5102040816vw; } }
          #player > .inr_area .wrap .player_list p strong.yel {
            color: #ffff00; }
        #player > .inr_area .wrap .player_list .player {
          margin: 0 auto;
          width: 100%;
          max-width: 500px; }
        #player > .inr_area .wrap .player_list a:hover {
          transition: all .3s;
          opacity: .6; }
          @media (max-width: 980px) {
            #player > .inr_area .wrap .player_list a:hover {
              opacity: 1; } }
        @media (max-width: 980px) {
          #player > .inr_area .wrap .player_list a:active {
            transition: all .3s;
            opacity: .6; } }
    #player > .inr_area .point_area {
      margin: 4.1666666667vw auto 0;
      width: 100%;
      max-width: 46.875vw; }
      @media (max-width: 1280px) {
        #player > .inr_area .point_area {
          margin: 6.25vw auto 0;
          max-width: 70.3125vw; } }
      @media (max-width: 980px) {
        #player > .inr_area .point_area {
          margin: 8.1632653061vw auto 0;
          max-width: 91.8367346939vw; } }
      @media (max-width: 480px) {
        #player > .inr_area .point_area {
          margin: 16.6666666667vw auto 0;
          max-width: 90%; } }
      #player > .inr_area .point_area tr.tq td {
        border-top: 5px solid #111;
        border-bottom: 2px solid #333; }
        #player > .inr_area .point_area tr.tq td.rank, #player > .inr_area .point_area tr.tq td.point, #player > .inr_area .point_area tr.tq td.name {
          background: rgba(208, 0, 8, 0.5); }
      #player > .inr_area .point_area tr.ptq {
        color: #ffff00 !important; }
      #player > .inr_area .point_area tr th {
        background: #000;
        box-sizing: border-box;
        font-size: 1.0416666667vw;
        padding: 0.9375vw 0; }
        @media (max-width: 1280px) {
          #player > .inr_area .point_area tr th {
            font-size: 1.5625vw;
            padding: 1.40625vw 0; } }
        @media (max-width: 980px) {
          #player > .inr_area .point_area tr th {
            font-size: 2.0408163265vw;
            padding: 1.8367346939vw 0; } }
        @media (max-width: 480px) {
          #player > .inr_area .point_area tr th {
            font-size: 4.1666666667vw;
            padding: 3.75vw 0; } }
        #player > .inr_area .point_area tr th.rank, #player > .inr_area .point_area tr th.point {
          width: 10.4166666667vw; }
          @media (max-width: 1280px) {
            #player > .inr_area .point_area tr th.rank, #player > .inr_area .point_area tr th.point {
              width: 15.625vw; } }
          @media (max-width: 980px) {
            #player > .inr_area .point_area tr th.rank, #player > .inr_area .point_area tr th.point {
              width: 25%; } }
          @media (max-width: 480px) {
            #player > .inr_area .point_area tr th.rank, #player > .inr_area .point_area tr th.point {
              width: 25%; } }
        #player > .inr_area .point_area tr th.name {
          background: #222;
          box-sizing: border-box;
          border-left: 5px solid #111;
          border-right: 5px solid #111;
          padding-left: 0.5208333333vw;
          padding-right: 0.5208333333vw;
          width: 26.0416666667vw; }
          @media (max-width: 1280px) {
            #player > .inr_area .point_area tr th.name {
              padding-left: 0.78125vw;
              padding-right: 0.78125vw;
              width: 39.0625vw; } }
          @media (max-width: 980px) {
            #player > .inr_area .point_area tr th.name {
              padding-left: 1.0204081633vw;
              padding-right: 1.0204081633vw;
              width: 50%; } }
          @media (max-width: 480px) {
            #player > .inr_area .point_area tr th.name {
              padding-left: 2.0833333333vw;
              padding-right: 2.0833333333vw;
              width: 50%; } }
      #player > .inr_area .point_area tr td {
        border-bottom: 2px solid #333;
        box-sizing: border-box;
        text-align: center;
        font-size: 0.9375vw;
        padding: 1.0416666667vw 0; }
        @media (max-width: 1280px) {
          #player > .inr_area .point_area tr td {
            font-size: 1.40625vw;
            padding: 1.5625vw 0; } }
        @media (max-width: 980px) {
          #player > .inr_area .point_area tr td {
            font-size: 1.8367346939vw;
            padding: 2.0408163265vw 0; } }
        @media (max-width: 480px) {
          #player > .inr_area .point_area tr td {
            font-size: 3.75vw;
            padding: 4.1666666667vw 0; } }
        #player > .inr_area .point_area tr td.rank, #player > .inr_area .point_area tr td.point {
          width: 10.4166666667vw; }
          @media (max-width: 1280px) {
            #player > .inr_area .point_area tr td.rank, #player > .inr_area .point_area tr td.point {
              width: 15.625vw; } }
          @media (max-width: 980px) {
            #player > .inr_area .point_area tr td.rank, #player > .inr_area .point_area tr td.point {
              width: 20.4081632653vw; } }
          @media (max-width: 480px) {
            #player > .inr_area .point_area tr td.rank, #player > .inr_area .point_area tr td.point {
              width: 41.6666666667vw; } }
        #player > .inr_area .point_area tr td.name {
          border-left: 5px solid #111;
          border-right: 5px solid #111;
          padding-left: 1.0416666667vw;
          padding-right: 1.0416666667vw;
          text-align: left;
          width: 26.0416666667vw; }
          @media (max-width: 1280px) {
            #player > .inr_area .point_area tr td.name {
              padding-left: 1.5625vw;
              padding-right: 1.5625vw;
              width: 39.0625vw; } }
          @media (max-width: 980px) {
            #player > .inr_area .point_area tr td.name {
              padding-left: 2.0408163265vw;
              padding-right: 2.0408163265vw;
              width: 51.0204081633vw; } }
          @media (max-width: 480px) {
            #player > .inr_area .point_area tr td.name {
              padding-left: 4.1666666667vw;
              padding-right: 4.1666666667vw;
              width: 104.1666666667vw; } }

/*==================================================*/
/* Last Chance Qualifier */
/*==================================================*/
#Lcq {
  background: #111;
  box-sizing: border-box;
  padding: 5.2083333333vw 0 6.25vw; }
  @media (max-width: 980px) {
    #Lcq {
      padding: 10.2040816327vw 0 8.1632653061vw; } }
  @media (max-width: 480px) {
    #Lcq {
      padding: 16.6666666667vw 0 12.5vw; } }
  #Lcq figure.logo {
    margin: 0 auto;
    width: 100%;
    max-width: 40.625vw; }
    @media (max-width: 1280px) {
      #Lcq figure.logo {
        max-width: 53.90625vw; } }
    @media (max-width: 980px) {
      #Lcq figure.logo {
        max-width: 70.4081632653vw; } }
    #Lcq figure.logo a:hover {
      transition: all .3s;
      opacity: .5; }
      @media (max-width: 980px) {
        #Lcq figure.logo a:hover {
          opacity: 1; } }
    @media (max-width: 980px) {
      #Lcq figure.logo a:active {
        transition: all .3s;
        opacity: .5; } }
  #Lcq .details {
    margin-top: 50px; }
    @media (max-width: 980px) {
      #Lcq .details {
        margin-top: 30px; } }
    #Lcq .details .tournaments {
      font-family: "Anton", sans-serif;
      color: #fff;
      font-size: 2.1875vw;
      text-align: center;
      letter-spacing: .03em;
      line-height: 1.2; }
      #Lcq .details .tournaments::before, #Lcq .details .tournaments::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #Lcq .details .tournaments::before {
        margin-top: calc((1 - 1.2) * 0.5em); }
      #Lcq .details .tournaments::after {
        margin-bottom: calc((1 - 1.2) * 0.5em); }
      @media (max-width: 1280px) {
        #Lcq .details .tournaments {
          font-size: 3.28125vw; } }
      @media (max-width: 980px) {
        #Lcq .details .tournaments {
          font-size: 3.2653061224vw; } }
      @media (max-width: 480px) {
        #Lcq .details .tournaments {
          font-size: 6.6666666667vw; } }
      #Lcq .details .tournaments:nth-child(n + 2) {
        margin-top: 2.0833333333vw; }
        @media (max-width: 1280px) {
          #Lcq .details .tournaments:nth-child(n + 2) {
            margin-top: 3.125vw; } }
        @media (max-width: 980px) {
          #Lcq .details .tournaments:nth-child(n + 2) {
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          #Lcq .details .tournaments:nth-child(n + 2) {
            margin-top: 6.25vw; } }
      #Lcq .details .tournaments .day {
        color: #ffff00;
        display: block;
        font-size: 2.1875vw;
        width: 100%;
        line-height: 1.2; }
        #Lcq .details .tournaments .day::before, #Lcq .details .tournaments .day::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #Lcq .details .tournaments .day::before {
          margin-top: calc((1 - 1.2) * 0.5em); }
        #Lcq .details .tournaments .day::after {
          margin-bottom: calc((1 - 1.2) * 0.5em); }
        @media (max-width: 1280px) {
          #Lcq .details .tournaments .day {
            font-size: 3.28125vw; } }
        @media (max-width: 980px) {
          #Lcq .details .tournaments .day {
            font-size: 3.2653061224vw; } }
        @media (max-width: 480px) {
          #Lcq .details .tournaments .day {
            font-size: 6.6666666667vw; } }
        #Lcq .details .tournaments .day.jp {
          display: block;
          font-family: "Noto Sans JP", sans-serif;
          font-weight: bold;
          font-size: 1.6666666667vw;
          width: 100%; }
          @media (max-width: 1280px) {
            #Lcq .details .tournaments .day.jp {
              font-size: 2.5vw; } }
          @media (max-width: 980px) {
            #Lcq .details .tournaments .day.jp {
              font-size: 2.4489795918vw; } }
          @media (max-width: 480px) {
            #Lcq .details .tournaments .day.jp {
              font-size: 5vw; } }
      #Lcq .details .tournaments span.jp_txt {
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        font-size: 2.1875vw; }
        @media (max-width: 1280px) {
          #Lcq .details .tournaments span.jp_txt {
            font-size: 3.28125vw; } }
        @media (max-width: 980px) {
          #Lcq .details .tournaments span.jp_txt {
            font-size: 3.2653061224vw; } }
        @media (max-width: 480px) {
          #Lcq .details .tournaments span.jp_txt {
            font-size: 6.6666666667vw; } }
      #Lcq .details .tournaments span.capacity {
        display: block;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        font-size: 2.1875vw;
        margin: 0.78125vw auto; }
        @media (max-width: 1280px) {
          #Lcq .details .tournaments span.capacity {
            font-size: 3.28125vw;
            margin: 1.171875vw auto; } }
        @media (max-width: 980px) {
          #Lcq .details .tournaments span.capacity {
            font-size: 3.2653061224vw;
            margin: 1.0204081633vw auto; } }
        @media (max-width: 480px) {
          #Lcq .details .tournaments span.capacity {
            font-size: 6.6666666667vw;
            margin: 2.0833333333vw auto; } }
      #Lcq .details .tournaments span.en {
        display: block;
        margin: 0.78125vw auto;
        font-size: 2.1875vw; }
        @media (max-width: 1280px) {
          #Lcq .details .tournaments span.en {
            margin: 1.171875vw auto;
            font-size: 3.28125vw; } }
        @media (max-width: 980px) {
          #Lcq .details .tournaments span.en {
            margin: 1.5306122449vw auto;
            font-size: 3.2653061224vw; } }
        @media (max-width: 480px) {
          #Lcq .details .tournaments span.en {
            margin: 3.125vw auto;
            font-size: 6.6666666667vw; } }
  #Lcq .Lcq_txt {
    background: #222;
    box-sizing: border-box;
    border: 1px solid #333;
    color: #fff;
    font-size: 1.0416666667vw;
    font-weight: bold;
    margin: 2.0833333333vw auto 0;
    padding: 1.0416666667vw 0;
    text-align: center;
    width: 100%;
    max-width: 40.625vw; }
    #Lcq .Lcq_txt strong {
      color: #ffff00; }
    @media (max-width: 1280px) {
      #Lcq .Lcq_txt {
        font-size: 1.5625vw;
        margin-top: 3.125vw;
        padding: 1.5625vw 0;
        max-width: 53.90625vw; } }
    @media (max-width: 980px) {
      #Lcq .Lcq_txt {
        font-size: 2.0408163265vw;
        margin-top: 3.0612244898vw;
        padding: 2.0408163265vw 0;
        max-width: 70.4081632653vw; } }
    @media (max-width: 480px) {
      #Lcq .Lcq_txt {
        font-size: 3.75vw;
        margin-top: 6.25vw;
        padding: 4.1666666667vw 0;
        max-width: 80%; } }

/*==================================================*/
/* uni */
/*==================================================*/
#uni {
  /*background: #111;*/
  box-sizing: border-box;
  padding: 5.2083333333vw 0 6.25vw; }
  @media (max-width: 980px) {
    #uni {
      padding: 10.2040816327vw 0 8.1632653061vw; } }
  @media (max-width: 480px) {
    #uni {
      padding: 16.6666666667vw 0 12.5vw; } }
  #uni h2 {
    box-sizing: border-box;
    color: #fff;
    font-size: 1.3541666667vw;
    margin-bottom: 2.6041666667vw;
    padding-bottom: 1.0416666667vw;
    text-align: center;
    line-height: 1.4; }
    #uni h2::before, #uni h2::after {
      content: "";
      display: block;
      width: 0;
      height: 0; }
    #uni h2::before {
      margin-top: calc((1 - 1.4) * 0.5em); }
    #uni h2::after {
      margin-bottom: calc((1 - 1.4) * 0.5em); }
    @media (max-width: 1280px) {
      #uni h2 {
        font-size: 1.875vw;
        margin-bottom: 3.125vw;
        padding-bottom: 1.5625vw; } }
    @media (max-width: 980px) {
      #uni h2 {
        font-size: 2.4489795918vw;
        margin-bottom: 4.0816326531vw;
        padding-bottom: 2.0408163265vw; } }
    @media (max-width: 480px) {
      #uni h2 {
        font-size: 4.1666666667vw;
        margin-bottom: 8.3333333333vw;
        padding-bottom: 4.1666666667vw; } }
  #uni figure {
    margin: 0 auto;
    width: 100%;
    max-width: 40.625vw; }
    @media (max-width: 1280px) {
      #uni figure {
        max-width: 53.90625vw; } }
    @media (max-width: 980px) {
      #uni figure {
        max-width: 70.4081632653vw; } }
    #uni figure a:hover {
      transition: all .3s;
      opacity: .5; }
      @media (max-width: 980px) {
        #uni figure a:hover {
          opacity: 1; } }
    @media (max-width: 980px) {
      #uni figure a:active {
        transition: all .3s;
        opacity: .5; } }
  #uni .details {
    margin-top: 50px; }
    @media (max-width: 980px) {
      #uni .details {
        margin-top: 30px; } }
    #uni .details .tournaments {
      font-family: "Anton", sans-serif;
      color: #fff;
      font-size: 2.1875vw;
      text-align: center;
      letter-spacing: .03em;
      line-height: 1.2; }
      #uni .details .tournaments::before, #uni .details .tournaments::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #uni .details .tournaments::before {
        margin-top: calc((1 - 1.2) * 0.5em); }
      #uni .details .tournaments::after {
        margin-bottom: calc((1 - 1.2) * 0.5em); }
      @media (max-width: 1280px) {
        #uni .details .tournaments {
          font-size: 3.28125vw; } }
      @media (max-width: 980px) {
        #uni .details .tournaments {
          font-size: 3.2653061224vw; } }
      @media (max-width: 480px) {
        #uni .details .tournaments {
          font-size: 6.6666666667vw; } }
      #uni .details .tournaments:nth-child(n + 2) {
        margin-top: 2.0833333333vw; }
        @media (max-width: 1280px) {
          #uni .details .tournaments:nth-child(n + 2) {
            margin-top: 3.125vw; } }
        @media (max-width: 980px) {
          #uni .details .tournaments:nth-child(n + 2) {
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          #uni .details .tournaments:nth-child(n + 2) {
            margin-top: 6.25vw; } }
      #uni .details .tournaments .day {
        color: #ffff00;
        display: block;
        font-size: 2.1875vw;
        margin-bottom: 0.5208333333vw;
        width: 100%;
        line-height: 1.2; }
        #uni .details .tournaments .day::before, #uni .details .tournaments .day::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #uni .details .tournaments .day::before {
          margin-top: calc((1 - 1.2) * 0.5em); }
        #uni .details .tournaments .day::after {
          margin-bottom: calc((1 - 1.2) * 0.5em); }
        @media (max-width: 1280px) {
          #uni .details .tournaments .day {
            font-size: 3.28125vw;
            margin-bottom: 0.78125vw; } }
        @media (max-width: 980px) {
          #uni .details .tournaments .day {
            font-size: 3.2653061224vw;
            margin-bottom: 1.0204081633vw; } }
        @media (max-width: 480px) {
          #uni .details .tournaments .day {
            font-size: 6.6666666667vw;
            margin-bottom: 2.0833333333vw; } }
        #uni .details .tournaments .day.jp {
          display: block;
          font-family: "Noto Sans JP", sans-serif;
          font-weight: bold;
          font-size: 1.6666666667vw;
          width: 100%; }
          @media (max-width: 1280px) {
            #uni .details .tournaments .day.jp {
              font-size: 2.5vw; } }
          @media (max-width: 980px) {
            #uni .details .tournaments .day.jp {
              font-size: 2.4489795918vw; } }
          @media (max-width: 480px) {
            #uni .details .tournaments .day.jp {
              font-size: 5vw; } }
      #uni .details .tournaments span.jp_txt {
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        font-size: 2.1875vw; }
        @media (max-width: 1280px) {
          #uni .details .tournaments span.jp_txt {
            font-size: 3.28125vw; } }
        @media (max-width: 980px) {
          #uni .details .tournaments span.jp_txt {
            font-size: 3.2653061224vw; } }
        @media (max-width: 480px) {
          #uni .details .tournaments span.jp_txt {
            font-size: 6.6666666667vw; } }
      #uni .details .tournaments span.capacity {
        display: block;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        font-size: 2.1875vw;
        margin: 0.78125vw auto; }
        @media (max-width: 1280px) {
          #uni .details .tournaments span.capacity {
            font-size: 3.28125vw;
            margin: 1.171875vw auto; } }
        @media (max-width: 980px) {
          #uni .details .tournaments span.capacity {
            font-size: 3.2653061224vw;
            margin: 1.0204081633vw auto; } }
        @media (max-width: 480px) {
          #uni .details .tournaments span.capacity {
            font-size: 6.6666666667vw;
            margin: 2.0833333333vw auto; } }
      #uni .details .tournaments span.en {
        display: block;
        margin: 0.78125vw auto;
        font-size: 2.1875vw; }
        @media (max-width: 1280px) {
          #uni .details .tournaments span.en {
            margin: 1.171875vw auto;
            font-size: 3.28125vw; } }
        @media (max-width: 980px) {
          #uni .details .tournaments span.en {
            margin: 1.5306122449vw auto;
            font-size: 3.2653061224vw; } }
        @media (max-width: 480px) {
          #uni .details .tournaments span.en {
            margin: 3.125vw auto;
            font-size: 6.6666666667vw; } }
  #uni .uni_txt {
    background: #000;
    box-sizing: border-box;
    border: 1px solid #333;
    color: #fff;
    font-size: 1.0416666667vw;
    font-weight: bold;
    margin: 2.0833333333vw auto 0;
    padding: 1.0416666667vw 0;
    text-align: center;
    width: 100%;
    max-width: 40.625vw; }
    #uni .uni_txt strong {
      color: #ffff00; }
    @media (max-width: 1280px) {
      #uni .uni_txt {
        font-size: 1.5625vw;
        margin-top: 3.125vw;
        padding: 1.5625vw 0;
        max-width: 53.90625vw; } }
    @media (max-width: 980px) {
      #uni .uni_txt {
        font-size: 2.0408163265vw;
        margin-top: 3.0612244898vw;
        padding: 2.0408163265vw 0;
        max-width: 70.4081632653vw; } }
    @media (max-width: 480px) {
      #uni .uni_txt {
        font-size: 3.75vw;
        margin-top: 6.25vw;
        padding: 4.1666666667vw 0;
        max-width: 80%; } }

/*==================================================*/
/* result */
/*==================================================*/
#result {
  background: #111;
  box-sizing: border-box;
  padding: 5.2083333333vw 0 6.25vw; }
  @media (max-width: 980px) {
    #result {
      padding: 10.2040816327vw 0 8.1632653061vw; } }
  @media (max-width: 480px) {
    #result {
      padding: 16.6666666667vw 0 12.5vw; } }
  #result .tournaments_list {
    margin: 0 auto;
    width: 100%;
    max-width: 80%; }
    @media (max-width: 980px) {
      #result .tournaments_list {
        max-width: 90%; } }
    @media (max-width: 480px) {
      #result .tournaments_list {
        max-width: 90%; } }
    #result .tournaments_list li {
      width: 100%; }
      #result .tournaments_list li:nth-child(n + 2) {
        margin-top: 1.5625vw; }
        @media (max-width: 980px) {
          #result .tournaments_list li:nth-child(n + 2) {
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          #result .tournaments_list li:nth-child(n + 2) {
            margin-top: 6.25vw; } }
      #result .tournaments_list li:hover {
        cursor: pointer;
        transition: all .3s;
        opacity: .5; }
        @media (max-width: 980px) {
          #result .tournaments_list li:hover {
            opacity: 1; } }
      @media (max-width: 980px) {
        #result .tournaments_list li:active {
          transition: all .3s;
          opacity: .5; } }
  #result .tt_winners {
    display: flex;
    margin: 2.0833333333vw auto 0;
    width: 100%;
    max-width: 90%; }
    @media (max-width: 1280px) {
      #result .tt_winners {
        margin: 3.125vw auto 0; } }
    @media (max-width: 980px) {
      #result .tt_winners {
        margin: 3.0612244898vw auto 0;
        flex-direction: column;
        max-width: 90%; } }
    @media (max-width: 480px) {
      #result .tt_winners {
        margin: 6.25vw auto 0;
        max-width: 90%; } }
    #result .tt_winners li {
      width: 100%; }
      #result .tt_winners li:nth-child(n + 2) {
        margin-left: 1.5625vw; }
        @media (max-width: 1280px) {
          #result .tt_winners li:nth-child(n + 2) {
            margin-left: 2.34375vw; } }
        @media (max-width: 980px) {
          #result .tt_winners li:nth-child(n + 2) {
            margin-left: 0;
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          #result .tt_winners li:nth-child(n + 2) {
            margin-top: 6.25vw; } }

/*==================================================*/
/* stream */
/*==================================================*/
#stream {
  /*background: #111; */
  box-sizing: border-box;
  padding: 5.2083333333vw 0 6.25vw; }
  @media (max-width: 980px) {
    #stream {
      padding: 10.2040816327vw 0 8.1632653061vw; } }
  @media (max-width: 480px) {
    #stream {
      padding: 16.6666666667vw 0 12.5vw; } }
  #stream .archives {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2.6041666667vw auto 2.0833333333vw;
    width: 60%; }
    @media (max-width: 980px) {
      #stream .archives {
        flex-direction: column;
        margin: 6.1224489796vw auto 3.0612244898vw; } }
    @media (max-width: 480px) {
      #stream .archives {
        margin: 12.5vw auto 6.25vw; } }
    #stream .archives.en {
      width: 100%; }
      #stream .archives.en > li {
        margin-top: 1.5625vw;
        width: 100%;
        max-width: 23%; }
        @media (max-width: 1280px) {
          #stream .archives.en > li {
            margin-top: 2.34375vw;
            max-width: 23%; } }
        @media (max-width: 980px) {
          #stream .archives.en > li {
            margin-top: 3.0612244898vw;
            max-width: 100%; } }
        #stream .archives.en > li:nth-child(n + 2) {
          margin-left: 1.0416666667vw; }
          @media (max-width: 1280px) {
            #stream .archives.en > li:nth-child(n + 2) {
              margin-left: 1.5625vw; } }
          @media (max-width: 980px) {
            #stream .archives.en > li:nth-child(n + 2) {
              margin-left: 0;
              margin-top: 4.0816326531vw; } }
          @media (max-width: 480px) {
            #stream .archives.en > li:nth-child(n + 2) {
              margin-top: 8.3333333333vw; } }
        #stream .archives.en > li span {
          line-height: 1.6;
          font-size: 0.9375vw; }
          #stream .archives.en > li span::before, #stream .archives.en > li span::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #stream .archives.en > li span::before {
            margin-top: calc((1 - 1.6) * 0.5em); }
          #stream .archives.en > li span::after {
            margin-bottom: calc((1 - 1.6) * 0.5em); }
          @media (max-width: 1280px) {
            #stream .archives.en > li span {
              font-size: 1.40625vw; } }
          @media (max-width: 980px) {
            #stream .archives.en > li span {
              font-size: 1.6326530612vw; } }
          @media (max-width: 480px) {
            #stream .archives.en > li span {
              font-size: 3.3333333333vw; } }
          #stream .archives.en > li span strong {
            font-size: 1.25vw; }
            @media (max-width: 1280px) {
              #stream .archives.en > li span strong {
                font-size: 1.875vw; } }
            @media (max-width: 980px) {
              #stream .archives.en > li span strong {
                font-size: 2.2448979592vw; } }
            @media (max-width: 480px) {
              #stream .archives.en > li span strong {
                font-size: 4.5833333333vw; } }
    #stream .archives > li {
      margin-top: 1.5625vw;
      width: 100%;
      max-width: 12.5vw; }
      @media (max-width: 1280px) {
        #stream .archives > li {
          margin-top: 2.34375vw;
          max-width: 18.75vw; } }
      @media (max-width: 980px) {
        #stream .archives > li {
          margin-top: 3.0612244898vw;
          max-width: 100%; } }
      #stream .archives > li:nth-child(n + 2) {
        margin-left: 1.0416666667vw; }
        @media (max-width: 1280px) {
          #stream .archives > li:nth-child(n + 2) {
            margin-left: 1.5625vw; } }
        @media (max-width: 980px) {
          #stream .archives > li:nth-child(n + 2) {
            margin-left: 0;
            margin-top: 4.0816326531vw; } }
        @media (max-width: 480px) {
          #stream .archives > li:nth-child(n + 2) {
            margin-top: 8.3333333333vw; } }
      #stream .archives > li span {
        color: #fff;
        display: block;
        font-size: 1.0416666667vw;
        font-weight: bold;
        margin-bottom: 1.0416666667vw;
        text-align: center; }
        @media (max-width: 1280px) {
          #stream .archives > li span {
            font-size: 1.5625vw;
            margin-bottom: 1.5625vw; } }
        @media (max-width: 980px) {
          #stream .archives > li span {
            font-size: 2.0408163265vw;
            margin-bottom: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #stream .archives > li span {
            font-size: 4.1666666667vw;
            margin-bottom: 4.1666666667vw; } }
      #stream .archives > li:hover {
        transition: all .3s; }
        #stream .archives > li:hover span {
          color: #ffff00; }
          @media (max-width: 980px) {
            #stream .archives > li:hover span {
              color: #fff; } }
      @media (max-width: 980px) {
        #stream .archives > li:active {
          transition: all .3s; }
          #stream .archives > li:active span {
            color: #ffff00; } }
  #stream figure.time_schedule {
    background: #555;
    margin: 0 auto 2.0833333333vw;
    width: 100%;
    max-width: 70%; }
    @media (max-width: 980px) {
      #stream figure.time_schedule {
        margin-bottom: 4.0816326531vw;
        max-width: 80%; } }
    @media (max-width: 480px) {
      #stream figure.time_schedule {
        margin-bottom: 8.3333333333vw;
        max-width: 90%; } }
    #stream figure.time_schedule:hover {
      cursor: pointer;
      transition: all .3s;
      opacity: .5; }
      @media (max-width: 980px) {
        #stream figure.time_schedule:hover {
          opacity: 1; } }
    @media (max-width: 980px) {
      #stream figure.time_schedule:active {
        transition: all .3s;
        opacity: .5; } }
  #stream figure.viewing {
    margin: 4.1666666667vw auto 0;
    width: 100%;
    max-width: 70%; }
    @media (max-width: 980px) {
      #stream figure.viewing {
        margin-top: 8.1632653061vw;
        max-width: 80%; } }
    @media (max-width: 480px) {
      #stream figure.viewing {
        margin-top: 16.6666666667vw;
        max-width: 90%; } }
    #stream figure.viewing a:hover {
      transition: all .3s;
      opacity: .5; }
      @media (max-width: 980px) {
        #stream figure.viewing a:hover {
          opacity: 1; } }
    @media (max-width: 980px) {
      #stream figure.viewing a:active {
        transition: all .3s;
        opacity: .5; } }
  #stream figure.streamer {
    margin: 4.1666666667vw auto 0;
    width: 100%;
    max-width: 70%; }
    @media (max-width: 980px) {
      #stream figure.streamer {
        margin-top: 8.1632653061vw;
        max-width: 80%; } }
    @media (max-width: 480px) {
      #stream figure.streamer {
        margin-top: 16.6666666667vw;
        max-width: 90%; } }
    #stream figure.streamer a:hover {
      transition: all .3s;
      opacity: .5; }
      @media (max-width: 980px) {
        #stream figure.streamer a:hover {
          opacity: 1; } }
    @media (max-width: 980px) {
      #stream figure.streamer a:active {
        transition: all .3s;
        opacity: .5; } }

.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_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; } }

.mail_magazine {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  position: fixed;
  letter-spacing: .1em;
  top: 10px;
  /*right: 395px;*/
  right: 595px;
  height: 100%;
  max-height: 38px;
  width: 100%;
  max-width: 201px;
  text-align: center; }
  @media screen and (max-width: 1580px) {
    .mail_magazine {
      font-size: 1.2857vw;
      right: 37.5vw;
      max-width: 8.5714vw; } }
  @media screen and (max-width: 1470px) {
    .mail_magazine {
      right: 40.5vw; } }
  @media screen and (max-width: 1400px) {
    .mail_magazine {
      font-size: 1.2857vw;
      /*right: 26.5vw;*/
      right: 41vw;
      max-width: 8.5714vw; } }
  @media (max-width: 1280px) {
    .mail_magazine {
      max-height: 38px;
      font-size: 1.40625vw;
      right: 42.5vw;
      max-width: 9.765625vw; } }
  @media screen and (max-width: 1260px) {
    .mail_magazine {
      max-height: 38px;
      font-size: 1.40625vw;
      right: 42.8vw;
      max-width: 9.765625vw; } }
  @media screen and (max-width: 1150px) {
    .mail_magazine {
      position: sticky;
      margin-left: 30px;
      right: 0;
      max-width: 100%; } }
  @media (max-width: 980px) {
    .mail_magazine {
      box-sizing: border-box;
      margin: 10px 0;
      max-height: 38px;
      padding-left: 30px;
      font-size: 18px;
      position: static;
      top: 0;
      left: 0;
      max-width: 100%; } }
  .mail_magazine.ggst {
    right: 541px; }
    @media screen and (max-width: 1580px) {
      .mail_magazine.ggst {
        right: 34vw; } }
    @media screen and (max-width: 1480px) {
      .mail_magazine.ggst {
        right: 37vw; } }
    @media screen and (max-width: 1420px) {
      .mail_magazine.ggst {
        right: 33.3333333333vw; } }
    @media screen and (max-width: 1400px) {
      .mail_magazine.ggst {
        right: 38.333333vw; } }
    @media (max-width: 1280px) {
      .mail_magazine.ggst {
        right: 38.671875vw; } }
    @media screen and (max-width: 1150px) {
      .mail_magazine.ggst {
        position: sticky;
        margin-left: 0;
        right: 0;
        max-width: 100%; } }
  .mail_magazine a {
    color: #ffff00 !important;
    position: relative; }
    .mail_magazine a::before {
      content: "";
      background: url("../img/icon_mail.svg");
      background-size: 100%;
      position: absolute;
      top: 50%;
      margin-top: -9px;
      left: -30px;
      width: 20px;
      height: 20px; }

/*==================================================*/
/* @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%; } }
