@charset "UTF-8";
/*==================================================*/
/* 前提css */
/*==================================================*/
@import url("https://fonts.googleapis.com/css2?family=Anton&amp;family=Koulen&amp;family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Road+Rage&amp;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; }

.sub_ttl {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 1.5625vw;
  position: relative;
  display: inline-block;
  padding: 0 120px;
  text-align: center;
  letter-spacing: .14em;
  text-indent: .14em; }
  @media (max-width: 1280px) {
    .sub_ttl {
      font-size: 2.34375vw; } }
  @media (max-width: 980px) {
    .sub_ttl {
      font-size: 3.0612244898vw; } }
  @media (max-width: 480px) {
    .sub_ttl {
      font-size: 5.4166666667vw; } }
  .sub_ttl::before, .sub_ttl::after {
    position: absolute;
    top: calc(50% - 3px);
    width: 100px;
    height: 10px;
    content: '';
    border-top: solid 3px #ff7700; }
  .sub_ttl::before {
    left: 0; }
  .sub_ttl::after {
    right: 0; }

/*==================================================*/
/* 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: 0 4.1666666667vw; }
    @media screen and (max-width: 1580px) {
      #nav nav {
        padding: 0 2.0833333333vw; } }
    @media (max-width: 1280px) {
      #nav nav {
        box-sizing: border-box;
        padding: 0 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: 40px;
          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: 1.8229166667vw;
        white-space: nowrap; }
        #nav nav ul li:last-child {
          margin-left: 0;
          margin-left: auto; }
        @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: 1150px) {
          #nav nav ul li {
            margin-left: 12px; }
            #nav nav ul li:first-child {
              margin-left: 30px; }
            #nav nav ul li:last-child {
              margin-left: 0;
              margin: 30px auto 0; } }
        @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 {
              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.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("https://www.arcsystemworks.jp/awt2024/assets/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("https://www.arcsystemworks.jp/awt2024/assets/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: 232px;
            /*@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: 12vw; } }
            @media (max-width: 1280px) {
              #nav nav ul li.sns.awt2023 {
                padding-right: 14.453125vw; } }
            @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 {
      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 {
          right: 11.2vw; } }
      @media screen and (max-width: 1480px) {
        #nav nav .language {
          font-size: 1.2857vw;
          right: 12.4285vw;
          max-width: 8.5714vw; } }
      @media screen and (max-width: 1400px) {
        #nav nav .language {
          right: 13.4285vw; } }
      @media (max-width: 1280px) {
        #nav nav .language {
          max-height: 38px;
          font-size: 1.40625vw;
          right: 13.28125vw;
          max-width: 9.765625vw; } }
      @media screen and (max-width: 1150px) {
        #nav nav .language {
          /*@media screen and (max-width: 1024px) {*/
          display: none; } }
      #nav nav .language.awt2023 {
        right: 80px; }
        @media screen and (max-width: 1580px) {
          #nav nav .language.awt2023 {
            right: 2.0833333333vw; } }
        @media (max-width: 1280px) {
          #nav nav .language.awt2023 {
            right: 3.125vw; } }
        @media (max-width: 980px) {
          #nav nav .language.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("https://www.arcsystemworks.jp/awt2024/assets/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.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%; } }
.ranking_list {
  position: relative; }
  .ranking_list:hover .ranking-menu-list {
    opacity: 1;
    /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: visible;
    /* 下層メニューを表示 */ }
  .ranking_list a {
    align-items: center;
    color: #fff;
    /* メニューアイテム内のリンクテキストの色 */
    display: flex;
    height: 3.125vw;
    justify-content: center;
    text-decoration: none;
    /* リンクの下線を非表示 */ }
    .ranking_list a:hover {
      opacity: 1 !important; }
    @media (max-width: 980px) {
      .ranking_list a {
        height: auto; } }

/* ドロップダウンメニュー */
.ranking-menu {
  position: relative; }
  .ranking-menu-list {
    background: #111;
    left: 0;
    opacity: 0;
    /* 不透明度を最小に */
    position: absolute;
    top: 100%;
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: hidden;
    /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1; }
    @media screen and (max-width: 1150px) {
      .ranking-menu-list {
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row !important;
        margin-top: 10px !important;
        padding-top: 0 !important;
        position: static;
        opacity: 1;
        visibility: visible !important; } }
    .ranking-menu-list > li {
      box-sizing: border-box;
      margin-left: 0 !important;
      padding: 0.5208333333vw 0 0.5208333333vw 1.0416666667vw; }
      @media screen and (max-width: 1150px) {
        .ranking-menu-list > li {
          margin: 0 !important;
          padding: 0 !important; } }
      @media screen and (max-width: 1150px) {
        .ranking-menu-list > li a {
          color: #ffff00 !important; } }
      .ranking-menu-list > li a:hover {
        color: #ffff00 !important; }
        @media screen and (max-width: 1150px) {
          .ranking-menu-list > li a:hover {
            color: #fff !important; } }
      .ranking-menu-list > li a:active {
        color: #fff !important; }
        @media screen and (max-width: 1150px) {
          .ranking-menu-list > li a:active {
            color: #ffff00 !important; } }
      .ranking-menu-list > li:nth-child(n + 2) {
        margin-left: 1.0416666667vw !important;
        padding-left: 0;
        padding-right: 1.0416666667vw; }
        @media screen and (max-width: 1150px) {
          .ranking-menu-list > li:nth-child(n + 2) {
            margin: 0 !important;
            padding: 0 !important;
            margin-left: 15px !important; } }

.awt_list {
  position: relative; }
  .awt_list:hover .awt-menu-list {
    opacity: 1;
    /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: visible;
    /* 下層メニューを表示 */ }
  .awt_list a {
    align-items: center;
    color: #fff;
    /* メニューアイテム内のリンクテキストの色 */
    cursor: pointer;
    display: flex;
    height: 3.125vw;
    justify-content: center;
    text-decoration: none;
    /* リンクの下線を非表示 */ }
    .awt_list a:hover {
      opacity: 1 !important; }
    @media (max-width: 980px) {
      .awt_list a {
        height: auto; } }
    .awt_list a span {
      box-sizing: border-box;
      border: 1px solid #aaa;
      padding: 5px 8px; }
      @media screen and (max-width: 1150px) {
        .awt_list a span {
          background: none;
          border: 0;
          padding: 0; } }

/* ドロップダウンメニュー */
.awt-menu {
  position: relative; }
  .awt-menu-list {
    background: #111;
    left: 0;
    opacity: 0;
    /* 不透明度を最小に */
    position: absolute;
    top: 100%;
    transition: opacity .3s, visibility .3s;
    /* アニメーション設定 */
    visibility: hidden;
    /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1; }
    @media screen and (max-width: 1150px) {
      .awt-menu-list {
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row !important;
        margin-top: 10px !important;
        padding-top: 0 !important;
        position: static;
        opacity: 1;
        visibility: visible !important; } }
    .awt-menu-list > li {
      box-sizing: border-box;
      margin-left: 0 !important;
      padding: 0.5208333333vw 0 0.5208333333vw 1.0416666667vw; }
      @media screen and (max-width: 1150px) {
        .awt-menu-list > li {
          margin: 0 !important;
          padding: 0 !important; } }
      .awt-menu-list > li a {
        border: 0; }
        @media screen and (max-width: 1150px) {
          .awt-menu-list > li a {
            color: #ffff00 !important; } }
        .awt-menu-list > li a:hover {
          color: #ffff00 !important; }
          @media screen and (max-width: 1150px) {
            .awt-menu-list > li a:hover {
              color: #fff !important; } }
        .awt-menu-list > li a:active {
          color: #fff !important; }
          @media screen and (max-width: 1150px) {
            .awt-menu-list > li a:active {
              color: #ffff00 !important; } }
      .awt-menu-list > li:nth-child(n + 3) {
        margin-left: 1.0416666667vw !important;
        padding-left: 0;
        padding-right: 1.0416666667vw; }
        @media screen and (max-width: 1150px) {
          .awt-menu-list > li:nth-child(n + 3) {
            margin: 0 !important;
            padding: 0 !important;
            margin-left: 15px !important; } }
      @media screen and (max-width: 1150px) {
        .awt-menu-list > li:nth-child(n + 2) {
          margin: 0 !important;
          padding: 0 !important;
          margin-left: 15px !important; } }

/*==================================================*/
/* contents */
/*==================================================*/
body {
  background: #000;
  background-size: cover;
  font-family: 'Noto Sans JP', 'Koulen', cursive, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  position: relative; }

header {
  box-sizing: border-box;
  background-size: 100%;
  position: relative; }
  header h1 {
    margin: 0 auto;
    width: 100%; }
    header h1 > img {
      pointer-events: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-touch-callout: none;
      -moz-user-select: none;
      user-select: none; }

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 .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; } }

.main_Top_txt,
.main_Bottom_txt {
  color: #fff;
  font-family: "Road Rage", sans-serif;
  font-size: 4.4791666667vw;
  text-align: center;
  font-weight: 400;
  margin: 3.125vw auto 4.6875vw; }
  @media (max-width: 1280px) {
    .main_Top_txt,
    .main_Bottom_txt {
      font-size: 4.8979591837vw;
      margin: 4.6875vw auto 7.03125vw; } }
  @media (max-width: 980px) {
    .main_Top_txt,
    .main_Bottom_txt {
      font-size: 8.7755102041vw;
      margin: 3.0612244898vw auto 5.1020408163vw; } }
  @media (max-width: 480px) {
    .main_Top_txt,
    .main_Bottom_txt {
      font-size: 10vw;
      margin: 6.25vw auto 10.4166666667vw; } }
  .main_Top_txt span,
  .main_Bottom_txt span {
    color: #ffff00; }
    .main_Top_txt span.sp,
    .main_Bottom_txt span.sp {
      color: #fff;
      display: inline-block;
      width: auto; }
      @media (max-width: 980px) {
        .main_Top_txt span.sp,
        .main_Bottom_txt span.sp {
          display: none; } }

.main_Bottom_txt {
  margin: 3.125vw auto 3.125vw; }
  @media (max-width: 1280px) {
    .main_Bottom_txt {
      margin: 4.6875vw auto 4.6875vw; } }
  @media (max-width: 980px) {
    .main_Bottom_txt {
      margin: 3.0612244898vw auto 5.1020408163vw; } }
  @media (max-width: 480px) {
    .main_Bottom_txt {
      margin: 6.25vw auto 10.4166666667vw; } }

h2.contents_ttl {
  box-sizing: border-box;
  margin: 0 auto 4.1666666667vw;
  padding: 0 2.0833333333vw;
  text-align: center; }
  @media (max-width: 1280px) {
    h2.contents_ttl {
      margin: 0 auto 6.25vw;
      padding: 0 3.125vw; } }
  @media (max-width: 980px) {
    h2.contents_ttl {
      margin: 0 auto 8.1632653061vw;
      padding: 0 4.0816326531vw; } }
  h2.contents_ttl span {
    color: #fff;
    display: inline-block;
    font-family: "Anton", sans-serif;
    font-size: 3.6458333333vw;
    font-weight: normal;
    letter-spacing: .14em;
    text-indent: .2em;
    margin: 0 auto;
    text-align: center;
    position: relative; }
    @media (max-width: 1280px) {
      h2.contents_ttl span {
        font-size: 5.46875vw; } }
    @media (max-width: 980px) {
      h2.contents_ttl span {
        font-size: 7.1428571429vw; } }
    @media (max-width: 480px) {
      h2.contents_ttl span {
        font-size: 7.2916666667vw; } }
    h2.contents_ttl span::before {
      position: absolute;
      left: -25.5208333333vw;
      top: 50%;
      content: "";
      background: #bb0007;
      height: 5px;
      width: 23.4375vw; }
      @media (max-width: 1280px) {
        h2.contents_ttl span::before {
          left: -33.59375vw;
          width: 31.25vw; } }
      @media (max-width: 980px) {
        h2.contents_ttl span::before {
          left: -29.5918367347vw;
          width: 25.5102040816vw; } }
      @media (max-width: 480px) {
        h2.contents_ttl span::before {
          left: -20.8333333333vw;
          width: 18.75vw; } }
    h2.contents_ttl span::after {
      position: absolute;
      right: -25.5208333333vw;
      top: 50%;
      content: "";
      background: #047ad8;
      height: 5px;
      width: 23.4375vw; }
      @media (max-width: 1280px) {
        h2.contents_ttl span::after {
          right: -33.59375vw;
          width: 31.25vw; } }
      @media (max-width: 980px) {
        h2.contents_ttl span::after {
          right: -29.5918367347vw;
          width: 25.5102040816vw; } }
      @media (max-width: 480px) {
        h2.contents_ttl span::after {
          right: -20.8333333333vw;
          width: 18.75vw; } }

.game-title {
  background: #111;
  box-sizing: border-box;
  padding: 1.5625vw 0; }
  @media (max-width: 1280px) {
    .game-title {
      padding: 2.34375vw 0; } }
  @media (max-width: 980px) {
    .game-title {
      padding: 2.0408163265vw 0; } }
  @media (max-width: 480px) {
    .game-title {
      padding: 4.1666666667vw 0; } }
  .game-title ol {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 78.125vw;
    /*max-width: vw(1020);*/ }
    @media (max-width: 1280px) {
      .game-title ol {
        max-width: 87.5vw; } }
    @media (max-width: 980px) {
      .game-title ol {
        max-width: 95%; } }
    @media (max-width: 480px) {
      .game-title ol {
        max-width: 95%; } }
    .game-title ol li {
      /*&:nth-child(n + 2){
        margin-left: vw(80);
        @include pcW{
          margin-left: vw_np(80);
        }
        @include pad{
          margin-left: vw_p(20);
        }
        @include pcW{
          margin-left: vw_s(20);
        }
      }*/ }
      .game-title ol li.gbvsr {
        width: 100%;
        max-width: 16.6666666667vw; }
        @media (max-width: 1280px) {
          .game-title ol li.gbvsr {
            max-width: 25vw; } }
        @media (max-width: 980px) {
          .game-title ol li.gbvsr {
            max-width: 28.5714285714vw; } }
        @media (max-width: 480px) {
          .game-title ol li.gbvsr {
            max-width: 29.1666666667vw; } }
      .game-title ol li.ggst {
        margin-left: -3%;
        width: 100%;
        max-width: 12.9166666667vw; }
        @media (max-width: 1280px) {
          .game-title ol li.ggst {
            max-width: 19.375vw; } }
        @media (max-width: 980px) {
          .game-title ol li.ggst {
            max-width: 21.2244897959vw; } }
        @media (max-width: 480px) {
          .game-title ol li.ggst {
            margin-left: -3%;
            max-width: 20.4166666667vw; } }
      .game-title ol li.uni {
        width: 100%;
        max-width: 14.5833333333vw; }
        @media (max-width: 1280px) {
          .game-title ol li.uni {
            max-width: 21.875vw; } }
        @media (max-width: 980px) {
          .game-title ol li.uni {
            max-width: 24.4897959184vw; } }
        @media (max-width: 480px) {
          .game-title ol li.uni {
            max-width: 25vw; } }

#awt2024_pv {
  margin: -2.6041666667vw auto 4.1666666667vw;
  width: 100%;
  max-width: 640px; }
  @media (max-width: 980px) {
    #awt2024_pv {
      margin: -3.0612244898vw auto 6.1224489796vw;
      max-width: 90%; } }
  @media (max-width: 480px) {
    #awt2024_pv {
      margin: -6.25vw auto 12.5vw;
      max-width: 90%; } }
  #awt2024_pv .video {
    box-sizing: border-box;
    position: relative;
    padding-bottom: 56.25%; }
    #awt2024_pv .video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.contents_inr {
  box-sizing: border-box;
  padding-bottom: 6.25vw;
  margin: 0 auto;
  width: 100%;
  max-width: 72.9166666667vw; }
  @media (max-width: 1280px) {
    .contents_inr {
      padding-bottom: 9.375vw; } }
  @media (max-width: 980px) {
    .contents_inr {
      padding-bottom: 8.1632653061vw;
      max-width: 90%; } }
  @media (max-width: 480px) {
    .contents_inr {
      padding-bottom: 16.6666666667vw;
      max-width: 90%; } }

/*==================================================*/
/* PRIZE */
/*==================================================*/
#prize {
  background: url("https://www.arcsystemworks.jp/awt2024/assets/img/prize_bg.jpg") no-repeat bottom right;
  background-size: cover;
  box-sizing: border-box;
  margin-bottom: 6.25vw;
  padding-top: 4.1666666667vw; }
  @media (max-width: 1280px) {
    #prize {
      margin-bottom: 9.375vw;
      padding-top: 6.25vw; } }
  @media (max-width: 980px) {
    #prize {
      background: url("https://www.arcsystemworks.jp/awt2024/assets/img/prize_bg.jpg") no-repeat bottom right;
      background-size: auto;
      margin-bottom: 12.2448979592vw;
      padding-top: 8.1632653061vw; } }
  #prize .contents_ttl {
    position: relative; }
    #prize .contents_ttl::before {
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_prize_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #prize .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 26.09375vw;
          height: 7.890625vw;
          margin: -3.984375vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_prize_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #prize .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 34.1836734694vw;
          height: 10.306122449vw;
          margin: -5.2040816327vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_prize_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #prize .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 35.4166666667vw;
          height: 10.625vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_prize_bg.svg");
          background-size: contain; } }
  @media (max-width: 1280px) {
    #prize .contents_inr {
      max-width: 90%; } }
  #prize .prize_inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    @media (max-width: 480px) {
      #prize .prize_inr {
        flex-direction: column; } }
    #prize .prize_inr dl div {
      display: flex;
      align-items: center; }
      #prize .prize_inr dl div:nth-child(n + 2) {
        margin-top: 1.0416666667vw; }
        @media (max-width: 1280px) {
          #prize .prize_inr dl div:nth-child(n + 2) {
            margin-top: 1.5625vw; } }
        @media (max-width: 980px) {
          #prize .prize_inr dl div:nth-child(n + 2) {
            margin-top: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #prize .prize_inr dl div:nth-child(n + 2) {
            margin-top: 4.1666666667vw; } }
      #prize .prize_inr dl div.one dt, #prize .prize_inr dl div.one dd {
        font-size: 1.6666666667vw; }
        @media (max-width: 1280px) {
          #prize .prize_inr dl div.one dt, #prize .prize_inr dl div.one dd {
            font-size: 2.1875vw; } }
        @media (max-width: 980px) {
          #prize .prize_inr dl div.one dt, #prize .prize_inr dl div.one dd {
            font-size: 2.8571428571vw; } }
        @media (max-width: 480px) {
          #prize .prize_inr dl div.one dt, #prize .prize_inr dl div.one dd {
            font-size: 5.8333333333vw; } }
        #prize .prize_inr dl div.one dt span, #prize .prize_inr dl div.one dd span {
          color: #ffff00; }
      #prize .prize_inr dl div.one dt {
        background: #a90007;
        max-width: 10.4166666667vw; }
        @media (max-width: 1280px) {
          #prize .prize_inr dl div.one dt {
            max-width: 14.0625vw; } }
        @media (max-width: 980px) {
          #prize .prize_inr dl div.one dt {
            max-width: 18.3673469388vw; } }
        @media (max-width: 480px) {
          #prize .prize_inr dl div.one dt {
            max-width: 33.3333333333vw; } }
      #prize .prize_inr dl div.two dt {
        background: #ff7700; }
      #prize .prize_inr dl div.three dt {
        background: #692bdc; }
      #prize .prize_inr dl div dt {
        background: #333;
        box-sizing: border-box;
        border-radius: 30px;
        color: #fff;
        font-family: "Anton", sans-serif;
        font-size: 1.25vw;
        padding: 0.625vw 0;
        letter-spacing: .05em;
        text-align: center;
        width: 100%;
        max-width: 9.375vw; }
        @media (max-width: 1280px) {
          #prize .prize_inr dl div dt {
            font-size: 1.875vw;
            padding: 0.9375vw 0;
            max-width: 14.0625vw; } }
        @media (max-width: 980px) {
          #prize .prize_inr dl div dt {
            font-size: 2.4489795918vw;
            padding: 1.2244897959vw 0;
            max-width: 18.3673469388vw; } }
        @media (max-width: 480px) {
          #prize .prize_inr dl div dt {
            font-size: 4.5833333333vw;
            padding: 2.0833333333vw 0 1.6666666667vw;
            max-width: 29.1666666667vw; } }
      #prize .prize_inr dl div dd {
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 900;
        font-size: 1.25vw;
        margin-left: 1.3020833333vw; }
        @media (max-width: 1280px) {
          #prize .prize_inr dl div dd {
            font-size: 1.875vw;
            margin-left: 1.953125vw; } }
        @media (max-width: 980px) {
          #prize .prize_inr dl div dd {
            font-size: 2.4489795918vw;
            margin-left: 2.5510204082vw; } }
        @media (max-width: 480px) {
          #prize .prize_inr dl div dd {
            font-size: 4.5833333333vw;
            margin-left: 5.2083333333vw; } }
  #prize .prize_gbvsr {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 20.0520833333vw; }
    @media (max-width: 1280px) {
      #prize .prize_gbvsr {
        max-width: 27.34375vw; } }
    @media (max-width: 980px) {
      #prize .prize_gbvsr {
        max-width: 45%; } }
    @media (max-width: 480px) {
      #prize .prize_gbvsr {
        margin: 0 auto;
        max-width: 75%; } }
    #prize .prize_gbvsr h2 {
      margin: 0.9375vw auto 1.8229166667vw;
      max-width: 16.6666666667vw; }
      @media (max-width: 1280px) {
        #prize .prize_gbvsr h2 {
          margin: 1.5625vw auto 3.125vw;
          max-width: 25vw; } }
      @media (max-width: 980px) {
        #prize .prize_gbvsr h2 {
          margin: 2.0408163265vw auto 3.5714285714vw;
          max-width: 32.6530612245vw; } }
      @media (max-width: 480px) {
        #prize .prize_gbvsr h2 {
          margin: 0 auto 4.1666666667vw;
          max-width: 58.3333333333vw; } }
  #prize .prize_ggst {
    display: flex;
    flex-direction: column;
    margin-left: 3.90625vw;
    width: 100%;
    max-width: 20.0520833333vw; }
    @media (max-width: 1280px) {
      #prize .prize_ggst {
        margin-left: 2.34375vw;
        max-width: 27.34375vw; } }
    @media (max-width: 980px) {
      #prize .prize_ggst {
        max-width: 45%; } }
    @media (max-width: 480px) {
      #prize .prize_ggst {
        margin-left: 0;
        margin: 0 auto;
        margin-top: 12.5vw;
        max-width: 75%; } }
    #prize .prize_ggst h2 {
      margin: 2.0833333333vw auto 2.34375vw;
      max-width: 12.9166666667vw; }
      @media (max-width: 1280px) {
        #prize .prize_ggst h2 {
          margin: 3.125vw auto 3.515625vw;
          max-width: 19.375vw; } }
      @media (max-width: 980px) {
        #prize .prize_ggst h2 {
          margin: 4.0816326531vw auto 4.5918367347vw;
          max-width: 25.306122449vw; } }
      @media (max-width: 480px) {
        #prize .prize_ggst h2 {
          margin: 0 auto 4.1666666667vw;
          max-width: 41.25vw; } }
  #prize .prize_uni {
    display: flex;
    flex-direction: column;
    margin-left: 3.90625vw;
    width: 100%;
    max-width: 20.0520833333vw; }
    @media (max-width: 1280px) {
      #prize .prize_uni {
        margin-left: 2.34375vw;
        max-width: 27.34375vw; } }
    @media (max-width: 980px) {
      #prize .prize_uni {
        margin-left: 0;
        margin-top: 4.0816326531vw;
        max-width: 45%; } }
    @media (max-width: 480px) {
      #prize .prize_uni {
        margin: 0 auto;
        margin-top: 8.3333333333vw;
        max-width: 75%; } }
    #prize .prize_uni h2 {
      margin: 0 auto 0.78125vw;
      max-width: 14.5833333333vw; }
      @media (max-width: 1280px) {
        #prize .prize_uni h2 {
          margin-bottom: 1.171875vw;
          max-width: 21.875vw; } }
      @media (max-width: 980px) {
        #prize .prize_uni h2 {
          margin-bottom: 1.5306122449vw;
          max-width: 28.5714285714vw; } }
      @media (max-width: 480px) {
        #prize .prize_uni h2 {
          margin-bottom: 4.1666666667vw;
          max-width: 50vw; } }

/*==================================================*/
/* RULE */
/*==================================================*/
#rule .contents_ttl {
  position: relative; }
  #rule .contents_ttl::before {
    content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_rule_bg.svg");
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: -2.65625vw auto 0;
    text-align: center; }
    @media (max-width: 1280px) {
      #rule .contents_ttl::before {
        content: '';
        display: inline-block;
        width: 26.09375vw;
        height: 7.890625vw;
        margin: -3.984375vw auto 0;
        background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_rule_bg.svg");
        background-size: contain; } }
    @media (max-width: 980px) {
      #rule .contents_ttl::before {
        content: '';
        display: inline-block;
        width: 34.1836734694vw;
        height: 10.306122449vw;
        margin: -5.2040816327vw auto 0;
        background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_rule_bg.svg");
        background-size: contain; } }
    @media (max-width: 480px) {
      #rule .contents_ttl::before {
        content: '';
        display: inline-block;
        width: 35.4166666667vw;
        height: 10.625vw;
        margin: -5.625vw auto 0;
        background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_rule_bg.svg");
        background-size: contain; } }
#rule > .contents_inr {
  box-sizing: border-box;
  padding-bottom: 4.1666666667vw;
  margin: 0 auto;
  width: 100%;
  max-width: 72.9166666667vw; }
  @media (max-width: 1280px) {
    #rule > .contents_inr {
      padding-bottom: 6.25vw; } }
  @media (max-width: 980px) {
    #rule > .contents_inr {
      padding-bottom: 8.1632653061vw;
      max-width: 90%; } }
  @media (max-width: 480px) {
    #rule > .contents_inr {
      padding-bottom: 8.3333333333vw;
      max-width: 90%; } }
#rule figure.tournament_rule {
  margin: 0 auto;
  text-align: center; }
  @media (max-width: 980px) {
    #rule figure.tournament_rule {
      width: 100%;
      max-width: 90%; } }
  #rule figure.tournament_rule img {
    border: 1px solid #222; }
#rule .awt2024_rule {
  margin: 0 auto;
  width: 100%;
  max-width: 47.9166666667vw; }
  @media (max-width: 1280px) {
    #rule .awt2024_rule {
      max-width: 71.875vw; } }
  @media (max-width: 980px) {
    #rule .awt2024_rule {
      max-width: 90%; } }
  #rule .awt2024_rule h3 {
    color: #ffff00;
    font-family: "Road Rage", sans-serif;
    font-size: 3.5416666667vw;
    text-align: center;
    font-weight: normal;
    margin: 3.125vw auto 1.0416666667vw; }
    @media (max-width: 1280px) {
      #rule .awt2024_rule h3 {
        font-size: 5.3125vw;
        margin: 4.6875vw auto 1.5625vw; } }
    @media (max-width: 980px) {
      #rule .awt2024_rule h3 {
        font-size: 5.9183673469vw;
        margin: 6.1224489796vw auto 2.0408163265vw; } }
    @media (max-width: 480px) {
      #rule .awt2024_rule h3 {
        font-size: 7.2916666667vw; } }
  #rule .awt2024_rule .game_slots {
    background: #222;
    border-bottom: 5px solid #111;
    box-sizing: border-box;
    padding: 2.0833333333vw 3.6458333333vw; }
    @media (max-width: 1280px) {
      #rule .awt2024_rule .game_slots {
        padding: 3.125vw 5.46875vw; } }
    @media (max-width: 980px) {
      #rule .awt2024_rule .game_slots {
        padding: 3.0612244898vw; } }
    #rule .awt2024_rule .game_slots div {
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      #rule .awt2024_rule .game_slots div:nth-child(n + 2) {
        margin-top: 1.0416666667vw; }
        @media (max-width: 1280px) {
          #rule .awt2024_rule .game_slots div:nth-child(n + 2) {
            margin-top: 1.5625vw; } }
      #rule .awt2024_rule .game_slots div dt {
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.5625vw;
        font-weight: bold;
        margin-left: 1.8229166667vw;
        position: relative; }
        @media (max-width: 1280px) {
          #rule .awt2024_rule .game_slots div dt {
            font-size: 2.34375vw;
            margin-left: 2.734375vw; } }
        @media (max-width: 980px) {
          #rule .awt2024_rule .game_slots div dt {
            font-size: 2.6530612245vw;
            margin-left: 3.5714285714vw; } }
        #rule .awt2024_rule .game_slots div dt::before {
          content: "\025c6";
          font-size: 1.1458333333vw;
          position: absolute;
          top: 50%;
          left: -1.8229166667vw;
          margin-top: -0.5729166667vw; }
          @media (max-width: 1280px) {
            #rule .awt2024_rule .game_slots div dt::before {
              font-size: 1.71875vw;
              left: -2.734375vw;
              margin-top: -0.859375vw; } }
      #rule .awt2024_rule .game_slots div dd {
        box-sizing: border-box;
        border-radius: 50px;
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 900;
        font-size: 1.1458333333vw;
        margin-left: 1.3020833333vw;
        padding: 0.625vw 0;
        text-align: center;
        width: 100%;
        max-width: 8.3333333333vw; }
        @media (max-width: 1280px) {
          #rule .awt2024_rule .game_slots div dd {
            font-size: 1.71875vw;
            margin-left: 1.953125vw;
            padding: 0.9375vw 0;
            max-width: 12.5vw; } }
        @media (max-width: 980px) {
          #rule .awt2024_rule .game_slots div dd {
            font-size: 2.2448979592vw;
            margin-left: 2.5510204082vw;
            padding: 1.2244897959vw 0;
            max-width: 16.3265306122vw; } }
        @media (max-width: 480px) {
          #rule .awt2024_rule .game_slots div dd {
            font-size: 3.3333333333vw;
            margin-left: 5.2083333333vw;
            padding: 1.6666666667vw 0 1.0416666667vw;
            max-width: 18.75vw; } }
        #rule .awt2024_rule .game_slots div dd span {
          color: #ffff00;
          font-family: "Anton", sans-serif;
          font-weight: normal;
          font-size: 1.5625vw; }
          @media (max-width: 1280px) {
            #rule .awt2024_rule .game_slots div dd span {
              font-size: 2.34375vw; } }
          @media (max-width: 480px) {
            #rule .awt2024_rule .game_slots div dd span {
              font-size: 3.3333333333vw; } }
        @media (max-width: 1280px) {
          #rule .awt2024_rule .game_slots div dd {
            font-size: 1.875vw;
            margin-left: 1.953125vw; } }
        @media (max-width: 980px) {
          #rule .awt2024_rule .game_slots div dd {
            font-size: 2.4489795918vw;
            margin-left: 2.5510204082vw; } }
        @media (max-width: 480px) {
          #rule .awt2024_rule .game_slots div dd {
            font-size: 2.9166666667vw;
            margin-left: 5.2083333333vw; } }
      #rule .awt2024_rule .game_slots div.gbvsr dt::before {
        color: #2d76fe; }
      #rule .awt2024_rule .game_slots div.gbvsr dd {
        background: #2d76fe; }
      #rule .awt2024_rule .game_slots div.ggst dt::before {
        color: #a40000; }
      #rule .awt2024_rule .game_slots div.ggst dd {
        background: #a40000; }
      #rule .awt2024_rule .game_slots div.uni dt::before {
        color: #601986; }
      #rule .awt2024_rule .game_slots div.uni dd {
        background: #601986; }
#rule .awt2024_official_rule {
  box-sizing: border-box;
  border-bottom: 2px solid #000;
  padding: 4.1666666667vw 0 6.25vw;
  background: #111;
  width: 100%; }
  @media (max-width: 1280px) {
    #rule .awt2024_official_rule {
      padding: 6.25vw 0 9.375vw; } }
  @media (max-width: 980px) {
    #rule .awt2024_official_rule {
      padding: 8.1632653061vw 0 12.2448979592vw; } }
  #rule .awt2024_official_rule > .inr {
    margin: 0 auto;
    width: 100%;
    max-width: 47.9166666667vw; }
    @media (max-width: 1280px) {
      #rule .awt2024_official_rule > .inr {
        max-width: 71.875vw; } }
    @media (max-width: 980px) {
      #rule .awt2024_official_rule > .inr {
        max-width: 90%; } }
    #rule .awt2024_official_rule > .inr h3 {
      color: #ffff00;
      font-family: "Road Rage", sans-serif;
      font-size: 3.5416666667vw;
      text-align: center;
      font-weight: normal;
      margin: 0 auto 1.0416666667vw; }
      @media (max-width: 1280px) {
        #rule .awt2024_official_rule > .inr h3 {
          font-size: 5.3125vw;
          margin: 0 auto 1.5625vw; } }
      @media (max-width: 980px) {
        #rule .awt2024_official_rule > .inr h3 {
          font-size: 5.9183673469vw;
          margin: 0 auto 2.0408163265vw; } }
      @media (max-width: 480px) {
        #rule .awt2024_official_rule > .inr h3 {
          font-size: 7.2916666667vw;
          margin: 0 auto 4.1666666667vw; } }
    #rule .awt2024_official_rule > .inr .official_rule {
      display: flex;
      justify-content: center;
      margin: 2.0833333333vw auto 0;
      width: 100%; }
      @media (max-width: 980px) {
        #rule .awt2024_official_rule > .inr .official_rule {
          flex-direction: column; } }
      #rule .awt2024_official_rule > .inr .official_rule li {
        width: 100%; }
        @media (max-width: 980px) {
          #rule .awt2024_official_rule > .inr .official_rule li:nth-child(n + 2) {
            margin-top: 4.0816326531vw; } }
        @media (max-width: 480px) {
          #rule .awt2024_official_rule > .inr .official_rule li:nth-child(n + 2) {
            margin-top: 8.3333333333vw; } }
        #rule .awt2024_official_rule > .inr .official_rule li span {
          color: #fff;
          display: block;
          font-family: "Noto Sans JP", sans-serif;
          font-weight: bold;
          font-size: 1.5625vw;
          margin-bottom: 1.3020833333vw;
          text-align: center; }
          @media (max-width: 1280px) {
            #rule .awt2024_official_rule > .inr .official_rule li span {
              font-size: 2.34375vw;
              margin-bottom: 1.953125vw; } }
          @media (max-width: 980px) {
            #rule .awt2024_official_rule > .inr .official_rule li span {
              font-size: 2.4489795918vw;
              margin-bottom: 2.0408163265vw; } }
          @media (max-width: 480px) {
            #rule .awt2024_official_rule > .inr .official_rule li span {
              font-size: 4.1666666667vw;
              margin-bottom: 4.1666666667vw; } }

/*==================================================*/
/* SCHEDULE */
/*==================================================*/
#schedule {
  background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule_bg.jpg") no-repeat top center fixed;
  background-size: cover;
  width: 100%; }
  @media (max-width: 980px) {
    #schedule {
      background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule_bg.jpg") repeat-y top left;
      background-size: auto; } }
  #schedule .contents_inr {
    box-sizing: border-box;
    padding-top: 6.25vw;
    padding-bottom: 3.125vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #schedule .contents_inr {
        padding-top: 9.375vw;
        padding-bottom: 4.6875vw; } }
    @media (max-width: 980px) {
      #schedule .contents_inr {
        padding-top: 10.2040816327vw;
        padding-bottom: 5.1020408163vw; } }
    @media (max-width: 480px) {
      #schedule .contents_inr {
        padding-top: 20.8333333333vw;
        padding-bottom: 10.4166666667vw; } }
  #schedule .contents_ttl {
    position: relative; }
    #schedule .contents_ttl::before {
      color: #fff;
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_schedule_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #schedule .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 43.984375vw;
          height: 7.890625vw;
          margin: -3.984375vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_schedule_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #schedule .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 57.6530612245vw;
          height: 10.306122449vw;
          margin: -5.2040816327vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_schedule_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #schedule .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 59.375vw;
          height: 10.625vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_schedule_bg.svg");
          background-size: contain; } }
  #schedule .top_notes {
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
    color: #ffff00;
    font-size: 0.9375vw;
    margin: 0 auto 20px;
    padding: 1.0416666667vw 0;
    text-align: center;
    width: 100%;
    max-width: 64.6354166667vw; }
    @media (max-width: 1280px) {
      #schedule .top_notes {
        font-size: 1.40625vw;
        padding: 1.5625vw 0;
        max-width: 90%; } }
    @media (max-width: 980px) {
      #schedule .top_notes {
        font-size: 1.8367346939vw;
        padding: 2.0408163265vw 0;
        max-width: 80%; } }
    @media (max-width: 480px) {
      #schedule .top_notes {
        font-size: 3.3333333333vw;
        padding: 3.125vw 0;
        max-width: 84%; } }
  #schedule .tournaments {
    margin: 0 auto;
    width: 100%;
    max-width: 64.6354166667vw; }
    @media (max-width: 1280px) {
      #schedule .tournaments {
        box-sizing: border-box;
        max-width: 96.953125vw;
        padding: 0 2.34375vw;
        max-width: 95%; } }
    @media (max-width: 980px) {
      #schedule .tournaments {
        max-width: 85%; } }
    @media (max-width: 480px) {
      #schedule .tournaments {
        max-width: 88%; } }
    #schedule .tournaments_ttl {
      margin: 3.125vw auto 2.0833333333vw;
      text-align: center; }
      @media (max-width: 1280px) {
        #schedule .tournaments_ttl {
          margin: 4.6875vw auto 3.125vw; } }
      @media (max-width: 980px) {
        #schedule .tournaments_ttl {
          margin: 5.1020408163vw auto 3.0612244898vw; } }
      @media (max-width: 480px) {
        #schedule .tournaments_ttl {
          margin: 10.4166666667vw auto 6.25vw; } }
    #schedule .tournaments > h3 {
      margin: 0 auto;
      margin-bottom: 3.125vw;
      text-align: center; }
      @media (max-width: 1280px) {
        #schedule .tournaments > h3 {
          margin-bottom: 4.6875vw; } }
      @media (max-width: 980px) {
        #schedule .tournaments > h3 {
          margin-bottom: 3.0612244898vw; } }
      @media (max-width: 480px) {
        #schedule .tournaments > h3 {
          margin-bottom: 6.25vw; } }
      #schedule .tournaments > h3.gbvsr {
        height: 3.6458333333vw;
        width: auto; }
        @media (max-width: 1280px) {
          #schedule .tournaments > h3.gbvsr {
            height: 5.46875vw; } }
        @media (max-width: 980px) {
          #schedule .tournaments > h3.gbvsr {
            height: 7.1428571429vw; } }
        @media (max-width: 480px) {
          #schedule .tournaments > h3.gbvsr {
            height: 14.5833333333vw; } }
      #schedule .tournaments > h3.ggst {
        margin-top: 4.1666666667vw;
        height: 2.6041666667vw;
        width: auto; }
        @media (max-width: 1280px) {
          #schedule .tournaments > h3.ggst {
            margin-top: 4.6875vw;
            height: 3.90625vw; } }
        @media (max-width: 980px) {
          #schedule .tournaments > h3.ggst {
            margin-top: 5.1020408163vw;
            height: 5.1020408163vw; } }
        @media (max-width: 480px) {
          #schedule .tournaments > h3.ggst {
            margin-top: 10.4166666667vw;
            height: 10.4166666667vw; } }
      #schedule .tournaments > h3.uni {
        height: 5.2083333333vw;
        width: auto; }
        @media (max-width: 1280px) {
          #schedule .tournaments > h3.uni {
            height: 7.8125vw; } }
        @media (max-width: 980px) {
          #schedule .tournaments > h3.uni {
            height: 10.2040816327vw; } }
        @media (max-width: 480px) {
          #schedule .tournaments > h3.uni {
            height: 20.8333333333vw; } }
      #schedule .tournaments > h3 img {
        width: auto;
        height: 100%;
        object-fit: cover; }
      #schedule .tournaments > h3 span {
        box-sizing: border-box;
        color: #fff;
        display: block;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 12px;
        font-weight: bold;
        margin: 15px auto 0;
        padding: 5px 0;
        width: 100%;
        max-width: 4.6875vw; }
        @media (max-width: 1280px) {
          #schedule .tournaments > h3 span {
            font-size: 0.9375vw;
            padding: 0.390625vw 0;
            max-width: 7.03125vw; } }
        @media (max-width: 980px) {
          #schedule .tournaments > h3 span {
            font-size: 1.2244897959vw;
            padding: 0.5102040816vw 0;
            max-width: 9.1836734694vw; } }
        @media (max-width: 480px) {
          #schedule .tournaments > h3 span {
            font-size: 1.25vw;
            padding: 0.625vw 0;
            max-width: 18.75vw; } }
        #schedule .tournaments > h3 span.pla {
          color: #111;
          background: #d5b7e0;
          border-radius: 50px; }
        #schedule .tournaments > h3 span.gold {
          background: #dc9618;
          border-radius: 50px; }
        #schedule .tournaments > h3 span.silver {
          color: #111;
          background: #acacac;
          border-radius: 50px; }
          @media (max-width: 480px) {
            #schedule .tournaments > h3 span.silver {
              font-size: 2.5vw; } }
    #schedule .tournaments > .inr {
      box-sizing: border-box;
      display: flex;
      flex-wrap: wrap;
      margin: -2.6041666667vw 0 0 -2.6041666667vw; }
      @media (max-width: 1280px) {
        #schedule .tournaments > .inr {
          margin: -3.90625vw 0 0 -3.90625vw; } }
      @media (max-width: 980px) {
        #schedule .tournaments > .inr {
          margin: -5.1020408163vw 0 0 -2.5510204082vw; } }
      @media (max-width: 480px) {
        #schedule .tournaments > .inr {
          margin: -10.4166666667vw 0 0 -5.2083333333vw; } }
      #schedule .tournaments > .inr div {
        margin: 2.6041666667vw 0 0 2.6041666667vw;
        text-align: center;
        width: 100%;
        max-width: 19.7916666667vw; }
        @media (max-width: 1280px) {
          #schedule .tournaments > .inr div {
            margin: 3.90625vw 0 0 3.90625vw;
            max-width: 27.34375vw; } }
        @media (max-width: 980px) {
          #schedule .tournaments > .inr div {
            margin: 5.1020408163vw 0 0 2.5510204082vw;
            max-width: 38.7755102041vw; } }
        @media (max-width: 480px) {
          #schedule .tournaments > .inr div {
            margin: 10.4166666667vw 0 0 5.2083333333vw; } }
        #schedule .tournaments > .inr div dt {
          margin: 0 auto 2.0833333333vw;
          width: 100%;
          max-width: 19.7916666667vw; }
          @media (max-width: 1280px) {
            #schedule .tournaments > .inr div dt {
              margin: 0 auto 3.125vw;
              max-width: 27.34375vw; } }
          @media (max-width: 980px) {
            #schedule .tournaments > .inr div dt {
              margin: 0 auto 4.0816326531vw;
              max-width: 38.7755102041vw; } }
          @media (max-width: 480px) {
            #schedule .tournaments > .inr div dt {
              margin: 0 auto 4.1666666667vw; } }
          #schedule .tournaments > .inr div dt a:hover {
            opacity: .6;
            transition: all .3s; }
            @media (max-width: 980px) {
              #schedule .tournaments > .inr div dt a:hover {
                opacity: 1; } }
          @media (max-width: 980px) {
            #schedule .tournaments > .inr div dt a:active {
              opacity: .6;
              transition: all .3s; } }
        #schedule .tournaments > .inr div dd {
          color: #fff;
          font-family: "Anton", sans-serif;
          font-size: 1.6666666667vw;
          line-height: 1.4; }
          #schedule .tournaments > .inr div dd::before, #schedule .tournaments > .inr div dd::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #schedule .tournaments > .inr div dd::before {
            margin-top: calc((1 - 1.4) * 0.5em); }
          #schedule .tournaments > .inr div dd::after {
            margin-bottom: calc((1 - 1.4) * 0.5em); }
          @media (max-width: 1280px) {
            #schedule .tournaments > .inr div dd {
              font-size: 2.5vw; } }
          @media (max-width: 980px) {
            #schedule .tournaments > .inr div dd {
              font-size: 3.2653061224vw; } }
          @media (max-width: 480px) {
            #schedule .tournaments > .inr div dd {
              font-size: 3.75vw; } }
          #schedule .tournaments > .inr div dd span {
            color: #ffff00;
            font-size: 2.5vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments > .inr div dd span {
                font-size: 3.75vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments > .inr div dd span {
                font-size: 4.8979591837vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments > .inr div dd span {
                font-size: 5vw; } }
          #schedule .tournaments > .inr div dd.event > .rank {
            background: rgba(0, 0, 0, 0.8);
            box-sizing: border-box;
            padding: 1.0416666667vw;
            margin-top: 1.0416666667vw;
            display: flex;
            align-items: flex-end;
            justify-content: center; }
            @media (max-width: 1280px) {
              #schedule .tournaments > .inr div dd.event > .rank {
                padding: 1.5625vw;
                margin-top: 1.5625vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments > .inr div dd.event > .rank {
                padding: 2.0408163265vw;
                margin-top: 2.0408163265vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments > .inr div dd.event > .rank {
                padding: 2.0833333333vw;
                margin-top: 4.1666666667vw; } }
            #schedule .tournaments > .inr div dd.event > .rank li.gbvsr {
              width: 100%;
              max-width: 6.25vw; }
              @media (max-width: 1280px) {
                #schedule .tournaments > .inr div dd.event > .rank li.gbvsr {
                  max-width: 9.375vw; } }
              @media (max-width: 980px) {
                #schedule .tournaments > .inr div dd.event > .rank li.gbvsr {
                  max-width: 12.2448979592vw; } }
              #schedule .tournaments > .inr div dd.event > .rank li.gbvsr img {
                margin-bottom: 10px; }
                @media (max-width: 480px) {
                  #schedule .tournaments > .inr div dd.event > .rank li.gbvsr img {
                    margin-bottom: 7px; } }
            #schedule .tournaments > .inr div dd.event > .rank li.ggst {
              margin-left: 1.0416666667vw;
              width: 100%;
              max-width: 4.84375vw; }
              @media (max-width: 1280px) {
                #schedule .tournaments > .inr div dd.event > .rank li.ggst {
                  margin-left: 0.78125vw;
                  max-width: 7.265625vw; } }
              @media (max-width: 980px) {
                #schedule .tournaments > .inr div dd.event > .rank li.ggst {
                  margin-left: 1.0204081633vw;
                  max-width: 9.4897959184vw; } }
              #schedule .tournaments > .inr div dd.event > .rank li.ggst img {
                margin-bottom: 15px; }
                @media (max-width: 480px) {
                  #schedule .tournaments > .inr div dd.event > .rank li.ggst img {
                    margin-bottom: 8px; } }
            #schedule .tournaments > .inr div dd.event > .rank li.uni {
              width: 100%;
              max-width: 4.9479166667vw;
              margin-left: 1.0416666667vw; }
              @media (max-width: 1280px) {
                #schedule .tournaments > .inr div dd.event > .rank li.uni {
                  margin-left: 0.78125vw;
                  max-width: 7.421875vw; } }
              @media (max-width: 980px) {
                #schedule .tournaments > .inr div dd.event > .rank li.uni {
                  margin-left: 1.0204081633vw;
                  max-width: 9.693877551vw; } }
              #schedule .tournaments > .inr div dd.event > .rank li.uni img {
                margin-bottom: 5px; }
            #schedule .tournaments > .inr div dd.event > .rank li.one {
              margin-left: 0; }
            #schedule .tournaments > .inr div dd.event > .rank li span {
              box-sizing: border-box;
              color: #fff;
              display: block;
              font-family: "Noto Sans JP", sans-serif;
              font-size: 12px;
              font-weight: bold;
              margin: 0 auto;
              padding: 5px 0;
              width: 100%;
              max-width: 4.6875vw; }
              @media (max-width: 1280px) {
                #schedule .tournaments > .inr div dd.event > .rank li span {
                  font-size: 0.9375vw;
                  padding: 0.390625vw 0;
                  max-width: 7.03125vw; } }
              @media (max-width: 980px) {
                #schedule .tournaments > .inr div dd.event > .rank li span {
                  font-size: 1.2244897959vw;
                  padding: 0.5102040816vw 0;
                  max-width: 9.1836734694vw; } }
              @media (max-width: 480px) {
                #schedule .tournaments > .inr div dd.event > .rank li span {
                  font-size: 1.25vw;
                  padding: 0.625vw 0;
                  max-width: 18.75vw; } }
              #schedule .tournaments > .inr div dd.event > .rank li span.pla {
                color: #111;
                background: #d5b7e0;
                border-radius: 50px; }
              #schedule .tournaments > .inr div dd.event > .rank li span.gold {
                background: #dc9618;
                border-radius: 50px; }
              #schedule .tournaments > .inr div dd.event > .rank li span.silver {
                background: #acacac;
                border-radius: 50px; }
          #schedule .tournaments > .inr div dd.event > .event_ttl {
            color: #ffff00;
            font-family: "Anton", sans-serif;
            font-size: 1.5625vw;
            margin: 0;
            line-height: 1.4; }
            #schedule .tournaments > .inr div dd.event > .event_ttl::before, #schedule .tournaments > .inr div dd.event > .event_ttl::after {
              content: "";
              display: block;
              width: 0;
              height: 0; }
            #schedule .tournaments > .inr div dd.event > .event_ttl::before {
              margin-top: calc((1 - 1.4) * 0.5em); }
            #schedule .tournaments > .inr div dd.event > .event_ttl::after {
              margin-bottom: calc((1 - 1.4) * 0.5em); }
            @media (max-width: 1280px) {
              #schedule .tournaments > .inr div dd.event > .event_ttl {
                font-size: 2.34375vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments > .inr div dd.event > .event_ttl {
                font-size: 3.0612244898vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments > .inr div dd.event > .event_ttl {
                font-size: 3.3333333333vw; } }
            #schedule .tournaments > .inr div dd.event > .event_ttl.bcme {
              font-size: 1.3541666667vw; }
              @media (max-width: 1280px) {
                #schedule .tournaments > .inr div dd.event > .event_ttl.bcme {
                  font-size: 2.03125vw; } }
              @media (max-width: 980px) {
                #schedule .tournaments > .inr div dd.event > .event_ttl.bcme {
                  font-size: 2.6530612245vw; } }
          #schedule .tournaments > .inr div dd.event > .event_venue {
            margin-top: 1.5625vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments > .inr div dd.event > .event_venue {
                margin-top: 2.34375vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments > .inr div dd.event > .event_venue {
                margin-top: 3.0612244898vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments > .inr div dd.event > .event_venue {
                margin-top: 3.0612244898vw; } }
            #schedule .tournaments > .inr div dd.event > .event_venue div {
              display: flex;
              justify-content: flex-start;
              align-items: center;
              margin: 0; }
              @media (max-width: 480px) {
                #schedule .tournaments > .inr div dd.event > .event_venue div {
                  flex-direction: column; } }
              #schedule .tournaments > .inr div dd.event > .event_venue div:nth-child(n + 2) {
                margin-top: 10px; }
                @media (max-width: 480px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div:nth-child(n + 2) {
                    margin-bottom: 15px; } }
              #schedule .tournaments > .inr div dd.event > .event_venue div dt {
                box-sizing: border-box;
                background: #000;
                border: 1px solid #555;
                color: #fff;
                font-size: 0.9375vw;
                margin: 0;
                padding: 0.625vw 0 0.4166666667vw;
                width: 100%;
                max-width: 5.7291666667vw; }
                @media (max-width: 1280px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div dt {
                    font-size: 1.40625vw;
                    padding: 0.9375vw 0 0.625vw;
                    max-width: 8.59375vw; } }
                @media (max-width: 980px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div dt {
                    font-size: 1.8367346939vw;
                    padding: 1.2244897959vw 0 0.8163265306vw;
                    max-width: 11.2244897959vw; } }
                @media (max-width: 480px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div dt {
                    font-size: 2.9166666667vw;
                    padding: 2.0833333333vw 0 1.6666666667vw;
                    max-width: 100%; } }
              #schedule .tournaments > .inr div dd.event > .event_venue div dd {
                font-size: 0.9375vw;
                font-family: "Noto Sans JP", sans-serif;
                font-weight: 900;
                margin-left: 1.0416666667vw;
                text-align: left; }
                @media (max-width: 1280px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div dd {
                    font-size: 1.40625vw;
                    margin-left: 1.5625vw; } }
                @media (max-width: 980px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div dd {
                    font-size: 1.8367346939vw;
                    margin-left: 2.0408163265vw; } }
                @media (max-width: 480px) {
                  #schedule .tournaments > .inr div dd.event > .event_venue div dd {
                    margin-left: 0;
                    margin-top: 10px;
                    font-size: 2.5vw; } }
    #schedule .tournaments .notes {
      color: #fff;
      font-size: 0.8333333333vw;
      line-height: 1.4;
      margin-top: 2.0833333333vw; }
      #schedule .tournaments .notes::before, #schedule .tournaments .notes::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #schedule .tournaments .notes::before {
        margin-top: calc((1 - 1.4) * 0.5em); }
      #schedule .tournaments .notes::after {
        margin-bottom: calc((1 - 1.4) * 0.5em); }
      @media (max-width: 1280px) {
        #schedule .tournaments .notes {
          font-size: 1.25vw;
          margin-top: 3.125vw; } }
      @media (max-width: 980px) {
        #schedule .tournaments .notes {
          font-size: 1.4285714286vw;
          margin-top: 3.0612244898vw; } }
      @media (max-width: 480px) {
        #schedule .tournaments .notes {
          font-size: 2.9166666667vw;
          margin-top: 6.25vw; } }
    #schedule .tournaments .tournament_list {
      margin-top: 40px; }
      @media (max-width: 980px) {
        #schedule .tournaments .tournament_list {
          overflow: scroll; } }
      @media (max-width: 1280px) {
        #schedule .tournaments .tournament_list.gbvsr {
          box-sizing: border-box;
          padding-left: 7.03125vw; } }
      @media (max-width: 980px) {
        #schedule .tournaments .tournament_list.gbvsr {
          box-sizing: border-box;
          padding-left: 12.2448979592vw; } }
      @media (max-width: 480px) {
        #schedule .tournaments .tournament_list.gbvsr {
          box-sizing: border-box;
          padding-left: 20.8333333333vw; } }
      #schedule .tournaments .tournament_list > div {
        background: rgba(0, 0, 0, 0.5);
        box-sizing: border-box;
        justify-content: space-between;
        display: flex;
        align-items: center;
        padding: 1.0416666667vw; }
        @media (max-width: 1280px) {
          #schedule .tournaments .tournament_list > div {
            padding: 1.5625vw; } }
        @media (max-width: 980px) {
          #schedule .tournaments .tournament_list > div {
            padding: 2.0408163265vw;
            width: 1200px; } }
        @media (max-width: 480px) {
          #schedule .tournaments .tournament_list > div {
            padding: 5.2083333333vw 4.1666666667vw; } }
        #schedule .tournaments .tournament_list > div.tt_ttl_icon {
          position: relative; }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon::before {
            content: "";
            position: absolute;
            height: 2.6041666667vw;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            width: 100%;
            max-width: 4.1666666667vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon::before {
                height: 3.90625vw;
                max-width: 6.25vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon::before {
                height: 5.1020408163vw;
                max-width: 8.1632653061vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon::before {
                height: 10.4166666667vw;
                max-width: 16.6666666667vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.VV_Asia::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/01_VersusAsia.png") no-repeat;
            background-size: contain;
            left: -5.2083333333vw;
            margin-top: -1.5%; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.VV_Asia::before {
                margin-top: -1.8%;
                left: -7.8125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.VV_Asia::before {
                margin-top: -1%;
                height: 3.5714285714vw;
                left: -10.2040816327vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.VV_Asia::before {
                margin-top: -0.8%;
                height: 8.3333333333vw;
                left: -20.8333333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.Transcendence::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/02_Transcendence_StartGG.png") no-repeat;
            background-size: contain;
            margin-top: -1.8%;
            left: -3.3854166667vw;
            height: 2.34375vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Transcendence::before {
                margin-top: -2%;
                height: 3.515625vw;
                left: -5.078125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Transcendence::before {
                margin-top: -1.8%;
                height: 4.5918367347vw;
                left: -8.1632653061vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Transcendence::before {
                height: 10.8333333333vw;
                left: -14.5833333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.Primal::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/03_Zate.png") no-repeat;
            background-size: contain;
            margin-top: -1.8%;
            left: -3.3854166667vw;
            height: 2.34375vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Primal::before {
                margin-top: -2%;
                height: 3.515625vw;
                left: -5.078125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Primal::before {
                margin-top: -1.8%;
                height: 4.5918367347vw;
                left: -8.1632653061vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Primal::before {
                height: 10.8333333333vw;
                left: -14.5833333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fighters::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/04_BadoorSNK.png") no-repeat;
            background-size: contain;
            margin-top: -1.8%;
            left: -3.3854166667vw;
            height: 2.34375vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fighters::before {
                margin-top: -2%;
                height: 3.515625vw;
                left: -5.078125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fighters::before {
                margin-top: -1.8%;
                height: 4.5918367347vw;
                left: -8.1632653061vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fighters::before {
                height: 10.8333333333vw;
                left: -14.5833333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.TNS::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/05a_TNS_Main_Gradient.png") no-repeat;
            background-size: contain;
            margin-top: -1.5%;
            left: -4.6875vw;
            height: 2.34375vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.TNS::before {
                height: 3.515625vw;
                left: -6.640625vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.TNS::before {
                height: 4.8979591837vw;
                left: -11.2244897959vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.TNS::before {
                height: 9.375vw;
                left: -17.7083333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fate_s::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/06b_favicon-number.png") no-repeat;
            background-size: contain;
            margin-top: -1.8%;
            left: -3.3854166667vw;
            height: 2.34375vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fate_s::before {
                margin-top: -2%;
                height: 3.515625vw;
                left: -5.078125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fate_s::before {
                margin-top: -1.8%;
                height: 4.5918367347vw;
                left: -8.1632653061vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Fate_s::before {
                height: 10.8333333333vw;
                left: -14.5833333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.Hearts::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/07a_HAB_Logo.png") no-repeat;
            background-size: contain;
            margin-top: -1.5%;
            left: -5.2083333333vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Hearts::before {
                left: -7.8125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Hearts::before {
                margin-top: -1.2%;
                height: 3.6734693878vw;
                left: -11.2244897959vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.Hearts::before {
                height: 8.3333333333vw;
                left: -20.8333333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.UNGA::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/08_UNGA_Logo_2023.png") no-repeat;
            background-size: contain;
            margin-top: -0.8%;
            left: -5.2083333333vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.UNGA::before {
                left: -7.8125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.UNGA::before {
                height: 2.8571428571vw;
                left: -10.2040816327vw;
                max-width: 7.4489795918vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.UNGA::before {
                height: 8.3333333333vw;
                max-width: 16.6666666667vw;
                left: -20.8333333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.WASD::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/09_wasd.svg") no-repeat;
            background-size: contain;
            margin-top: -1.8%;
            left: -3.3854166667vw;
            height: 2.34375vw; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.WASD::before {
                margin-top: -2%;
                height: 3.515625vw;
                left: -5.078125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.WASD::before {
                margin-top: -1.8%;
                height: 4.5918367347vw;
                left: -8.1632653061vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.WASD::before {
                height: 10.8333333333vw;
                left: -14.5833333333vw; } }
          #schedule .tournaments .tournament_list > div.tt_ttl_icon.FWAT::before {
            background: url("https://www.arcsystemworks.jp/awt2024/assets/img/schedule/online/10_Guylian_FWAT_new.png") no-repeat;
            background-size: contain;
            left: -5.2083333333vw;
            margin-top: -1.25%; }
            @media (max-width: 1280px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.FWAT::before {
                left: -7.8125vw; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.FWAT::before {
                height: 3.2653061224vw;
                left: -10.2040816327vw; } }
            @media (max-width: 480px) {
              #schedule .tournaments .tournament_list > div.tt_ttl_icon.FWAT::before {
                height: 8.3333333333vw;
                left: -20.8333333333vw; } }
        #schedule .tournaments .tournament_list > div.list_ttl.gbvsr {
          background: #047ad8; }
          #schedule .tournaments .tournament_list > div.list_ttl.gbvsr dt, #schedule .tournaments .tournament_list > div.list_ttl.gbvsr dd {
            color: #fff;
            font-weight: bold; }
        #schedule .tournaments .tournament_list > div.list_ttl.ggst {
          background: #bb0007; }
          #schedule .tournaments .tournament_list > div.list_ttl.ggst dt, #schedule .tournaments .tournament_list > div.list_ttl.ggst dd {
            color: #fff;
            font-weight: bold; }
        #schedule .tournaments .tournament_list > div:nth-child(n + 2) {
          margin-top: 20px; }
          @media (max-width: 980px) {
            #schedule .tournaments .tournament_list > div:nth-child(n + 2) {
              margin-top: 15px; } }
        #schedule .tournaments .tournament_list > div dt, #schedule .tournaments .tournament_list > div dd {
          color: #fff; }
        #schedule .tournaments .tournament_list > div dt {
          font-weight: bold;
          width: 100%; }
          #schedule .tournaments .tournament_list > div dt a {
            color: #fff;
            transition: all .3s; }
            #schedule .tournaments .tournament_list > div dt a:hover {
              color: #ff7700; }
              @media (max-width: 980px) {
                #schedule .tournaments .tournament_list > div dt a:hover {
                  color: #fff; } }
            @media (max-width: 980px) {
              #schedule .tournaments .tournament_list > div dt a:active {
                color: #ff7700; } }
          #schedule .tournaments .tournament_list > div dt.gbvsr_t_name {
            max-width: 55%;
            margin-right: 5px; }
          #schedule .tournaments .tournament_list > div dt.ggst_t_name {
            max-width: 42%;
            margin-right: 5px; }
        #schedule .tournaments .tournament_list > div dd {
          width: 100%; }
          #schedule .tournaments .tournament_list > div dd.gbvsr_t_area {
            max-width: 200px; }
          #schedule .tournaments .tournament_list > div dd.gbvsr_t_day {
            max-width: 200px;
            text-align: center; }
          #schedule .tournaments .tournament_list > div dd.ggst_t_area {
            max-width: 200px; }
          #schedule .tournaments .tournament_list > div dd.ggst_t_day {
            max-width: 250px;
            text-align: center; }
            #schedule .tournaments .tournament_list > div dd.ggst_t_day.finals {
              max-width: 200px; }

#tournaments_notes {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 52.0833333333vw; }
  @media (max-width: 1280px) {
    #tournaments_notes {
      max-width: 78.125vw; } }
  @media (max-width: 980px) {
    #tournaments_notes {
      max-width: 90%; } }
  #tournaments_notes .notes_txt {
    color: #fff;
    line-height: 1.4;
    text-align: center; }
    #tournaments_notes .notes_txt::before, #tournaments_notes .notes_txt::after {
      content: "";
      display: block;
      width: 0;
      height: 0; }
    #tournaments_notes .notes_txt::before {
      margin-top: calc((1 - 1.4) * 0.5em); }
    #tournaments_notes .notes_txt::after {
      margin-bottom: calc((1 - 1.4) * 0.5em); }
  #tournaments_notes .notes_link {
    margin: 20px auto 0;
    text-align: center;
    width: 100%; }
    #tournaments_notes .notes_link a {
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      transition: all .3s; }
      @media (max-width: 980px) {
        #tournaments_notes .notes_link a {
          font-size: 20px; } }
      #tournaments_notes .notes_link a:hover {
        opacity: .5; }
        @media (max-width: 980px) {
          #tournaments_notes .notes_link a:hover {
            opacity: 1; } }
      @media (max-width: 980px) {
        #tournaments_notes .notes_link a:active {
          opacity: .5; } }

/*==================================================*/
/* PLAYERS */
/*==================================================*/
#players {
  width: 100%; }
  #players .contents_inr {
    box-sizing: border-box;
    padding-top: 6.25vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #players .contents_inr {
        padding-top: 9.375vw; } }
    @media (max-width: 980px) {
      #players .contents_inr {
        padding-top: 10.2040816327vw; } }
    @media (max-width: 480px) {
      #players .contents_inr {
        padding-top: 20.8333333333vw; } }
  #players .contents_ttl {
    position: relative; }
    #players .contents_ttl::before {
      color: #fff;
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_players_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #players .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 43.984375vw;
          height: 7.890625vw;
          margin: -3.984375vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_players_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #players .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 57.6530612245vw;
          height: 10.306122449vw;
          margin: -5.2040816327vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_players_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #players .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 47.9166666667vw;
          height: 10.625vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_players_bg.svg");
          background-size: contain; } }
  #players .player_list {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 83.3333333333vw; }
    @media (max-width: 1280px) {
      #players .player_list {
        max-width: 78.125vw; } }
    @media (max-width: 980px) {
      #players .player_list {
        max-width: 90%; } }
    #players .player_list:nth-child(n + 2) {
      margin-top: 4.1666666667vw; }
      @media (max-width: 1280px) {
        #players .player_list:nth-child(n + 2) {
          margin-top: 6.25vw; } }
      @media (max-width: 980px) {
        #players .player_list:nth-child(n + 2) {
          margin-top: 8.1632653061vw; } }
      @media (max-width: 480px) {
        #players .player_list:nth-child(n + 2) {
          margin-top: 12.5vw; } }
    #players .player_list > h3 {
      margin-bottom: 1.5625vw; }
      @media (max-width: 1280px) {
        #players .player_list > h3 {
          margin-bottom: 2.34375vw; } }
      @media (max-width: 980px) {
        #players .player_list > h3 {
          margin-bottom: 3.0612244898vw; } }
      @media (max-width: 480px) {
        #players .player_list > h3 {
          margin-bottom: 6.25vw; } }
      #players .player_list > h3.gbvsr {
        height: 3.6458333333vw;
        width: auto; }
        @media (max-width: 1280px) {
          #players .player_list > h3.gbvsr {
            height: 5.46875vw; } }
        @media (max-width: 980px) {
          #players .player_list > h3.gbvsr {
            height: 7.1428571429vw; } }
        @media (max-width: 480px) {
          #players .player_list > h3.gbvsr {
            height: 14.5833333333vw; } }
      #players .player_list > h3.ggst {
        height: 2.6041666667vw;
        width: auto; }
        @media (max-width: 1280px) {
          #players .player_list > h3.ggst {
            height: 3.90625vw; } }
        @media (max-width: 980px) {
          #players .player_list > h3.ggst {
            height: 5.1020408163vw; } }
        @media (max-width: 480px) {
          #players .player_list > h3.ggst {
            height: 10.4166666667vw; } }
      #players .player_list > h3.uni {
        height: 5.2083333333vw;
        width: auto; }
        @media (max-width: 1280px) {
          #players .player_list > h3.uni {
            height: 7.8125vw; } }
        @media (max-width: 980px) {
          #players .player_list > h3.uni {
            height: 10.2040816327vw; } }
        @media (max-width: 480px) {
          #players .player_list > h3.uni {
            height: 20.8333333333vw; } }
      #players .player_list > h3 img {
        width: auto;
        height: 100%;
        object-fit: cover; }
    #players .player_list > ol {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: -1.5625vw 0 1.5625vw -1.5625vw; }
      @media (max-width: 1280px) {
        #players .player_list > ol {
          margin: -2.34375vw 0 2.34375vw -2.34375vw; } }
      @media (max-width: 980px) {
        #players .player_list > ol {
          margin: -3.0612244898vw 0 3.0612244898vw -3.0612244898vw; } }
      @media (max-width: 480px) {
        #players .player_list > ol {
          margin: -6.25vw 0 6.25vw -6.25vw; } }
      #players .player_list > ol li {
        box-sizing: border-box;
        padding: 1.5625vw 0 0 1.5625vw;
        width: 100%;
        max-width: 26.6666666667vw; }
        @media (max-width: 1280px) {
          #players .player_list > ol li {
            padding: 2.34375vw 0 0 2.34375vw;
            max-width: 40vw; } }
        @media (max-width: 980px) {
          #players .player_list > ol li {
            padding: 3.0612244898vw 0 0 3.0612244898vw;
            max-width: 70%; } }
        @media (max-width: 480px) {
          #players .player_list > ol li {
            padding: 6.25vw 0 0 6.25vw;
            max-width: 90%; } }

/*==================================================*/
/* RESULT */
/*==================================================*/
#result {
  /*background: #111;*/
  width: 100%; }
  #result .contents_inr {
    box-sizing: border-box;
    padding-top: 6.25vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #result .contents_inr {
        padding-top: 9.375vw; } }
    @media (max-width: 980px) {
      #result .contents_inr {
        padding-top: 10.2040816327vw; } }
    @media (max-width: 480px) {
      #result .contents_inr {
        padding-top: 20.8333333333vw; } }
  #result .contents_ttl {
    position: relative; }
    #result .contents_ttl::before {
      color: #fff;
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_result_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #result .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 28.671875vw;
          height: 7.8125vw;
          margin: -3.90625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_result_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #result .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 37.4489795918vw;
          height: 10.2040816327vw;
          margin: -5.1020408163vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_result_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #result .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 38.75vw;
          height: 10.625vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_result_bg.svg");
          background-size: contain; } }
  #result .player_list {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 52.0833333333vw; }
    @media (max-width: 1280px) {
      #result .player_list {
        max-width: 78.125vw; } }
    @media (max-width: 980px) {
      #result .player_list {
        max-width: 90%; } }
    #result .player_list:nth-child(n + 2) {
      margin-top: 4.1666666667vw; }
      @media (max-width: 1280px) {
        #result .player_list:nth-child(n + 2) {
          margin-top: 6.25vw; } }
      @media (max-width: 980px) {
        #result .player_list:nth-child(n + 2) {
          margin-top: 8.1632653061vw; } }
      @media (max-width: 480px) {
        #result .player_list:nth-child(n + 2) {
          margin-top: 12.5vw; } }
    #result .player_list > ol {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: -1.5625vw 0 1.5625vw -1.5625vw; }
      @media (max-width: 1280px) {
        #result .player_list > ol {
          margin: -2.34375vw 0 2.34375vw -2.34375vw; } }
      @media (max-width: 980px) {
        #result .player_list > ol {
          margin: -3.0612244898vw 0 3.0612244898vw -3.0612244898vw; } }
      @media (max-width: 480px) {
        #result .player_list > ol {
          margin: -6.25vw 0 6.25vw -6.25vw; } }
      #result .player_list > ol li {
        box-sizing: border-box;
        padding: 1.5625vw 0 0 1.5625vw;
        width: 100%;
        max-width: 26.6666666667vw; }
        @media (max-width: 1280px) {
          #result .player_list > ol li {
            padding: 2.34375vw 0 0 2.34375vw;
            max-width: 40vw; } }
        @media (max-width: 980px) {
          #result .player_list > ol li {
            padding: 3.0612244898vw 0 0 3.0612244898vw;
            max-width: 70%; } }
        @media (max-width: 480px) {
          #result .player_list > ol li {
            padding: 6.25vw 0 0 6.25vw;
            max-width: 90%; } }
        #result .player_list > ol li.tournament {
          cursor: pointer; }
          #result .player_list > ol li.tournament:hover {
            transition: all .3s;
            opacity: .5; }
            @media (max-width: 480px) {
              #result .player_list > ol li.tournament:hover {
                opacity: 1; } }
          @media (max-width: 480px) {
            #result .player_list > ol li.tournament:active {
              opacity: .5; } }

/*==================================================*/
/* FINALS */
/*==================================================*/
#finals {
  background: #111;
  width: 100%; }
  #finals .contents_inr {
    box-sizing: border-box;
    padding-top: 6.25vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #finals .contents_inr {
        padding-top: 9.375vw; } }
    @media (max-width: 980px) {
      #finals .contents_inr {
        padding-top: 10.2040816327vw; } }
    @media (max-width: 480px) {
      #finals .contents_inr {
        padding-top: 20.8333333333vw; } }
    #finals .contents_inr figure {
      margin: 0 auto;
      width: 100%;
      max-width: 42.7083333333vw; }
      #finals .contents_inr figure a {
        transition: all .3s; }
        #finals .contents_inr figure a:hover {
          opacity: .5; }
          @media (max-width: 480px) {
            #finals .contents_inr figure a:hover {
              opacity: 1; } }
        @media (max-width: 480px) {
          #finals .contents_inr figure a:active {
            opacity: .5; } }
      @media (max-width: 1280px) {
        #finals .contents_inr figure {
          max-width: 64.0625vw; } }
      @media (max-width: 980px) {
        #finals .contents_inr figure {
          max-width: 69.387755102vw; } }
      @media (max-width: 480px) {
        #finals .contents_inr figure {
          max-width: 80%; } }
    #finals .contents_inr .txt {
      color: #fff;
      font-size: 0.9375vw;
      margin: 1.5625vw auto 2.0833333333vw;
      line-height: 1.6;
      text-align: center; }
      #finals .contents_inr .txt::before, #finals .contents_inr .txt::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #finals .contents_inr .txt::before {
        margin-top: calc((1 - 1.6) * 0.5em); }
      #finals .contents_inr .txt::after {
        margin-bottom: calc((1 - 1.6) * 0.5em); }
      @media (max-width: 1280px) {
        #finals .contents_inr .txt {
          font-size: 1.40625vw;
          margin: 2.34375vw auto 3.125vw; } }
      @media (max-width: 980px) {
        #finals .contents_inr .txt {
          font-size: 1.6326530612vw;
          margin: 3.0612244898vw auto 4.0816326531vw; } }
      @media (max-width: 480px) {
        #finals .contents_inr .txt {
          font-size: 3.3333333333vw;
          margin: 6.25vw auto 8.3333333333vw; } }
      #finals .contents_inr .txt strong {
        font-size: 1.25vw; }
        @media (max-width: 1280px) {
          #finals .contents_inr .txt strong {
            font-size: 1.875vw; } }
        @media (max-width: 980px) {
          #finals .contents_inr .txt strong {
            font-size: 1.8367346939vw; } }
        @media (max-width: 480px) {
          #finals .contents_inr .txt strong {
            font-size: 3.75vw; } }
    #finals .contents_inr dl {
      color: #fff;
      margin: 40px auto 0;
      width: 100%;
      text-align: center; }
      @media (max-width: 980px) {
        #finals .contents_inr dl {
          margin: 20px auto 0; } }
      #finals .contents_inr dl dt {
        font-family: "Anton", sans-serif;
        font-size: 1.875vw;
        color: #ffff00;
        margin-bottom: 15px;
        line-height: 1.4; }
        #finals .contents_inr dl dt::before, #finals .contents_inr dl dt::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #finals .contents_inr dl dt::before {
          margin-top: calc((1 - 1.4) * 0.5em); }
        #finals .contents_inr dl dt::after {
          margin-bottom: calc((1 - 1.4) * 0.5em); }
        @media (max-width: 1280px) {
          #finals .contents_inr dl dt {
            font-size: 2.8125vw; } }
        @media (max-width: 980px) {
          #finals .contents_inr dl dt {
            font-size: 2.4489795918vw; } }
        @media (max-width: 480px) {
          #finals .contents_inr dl dt {
            font-size: 5vw; } }
      #finals .contents_inr dl dd {
        font-family: "Noto Sans JP", sans-serif;
        font-weight: bold;
        font-size: 1.4583333333vw;
        line-height: 1.4; }
        #finals .contents_inr dl dd::before, #finals .contents_inr dl dd::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        #finals .contents_inr dl dd::before {
          margin-top: calc((1 - 1.4) * 0.5em); }
        #finals .contents_inr dl dd::after {
          margin-bottom: calc((1 - 1.4) * 0.5em); }
        @media (max-width: 1280px) {
          #finals .contents_inr dl dd {
            font-size: 2.1875vw; } }
        @media (max-width: 980px) {
          #finals .contents_inr dl dd {
            font-size: 2.0408163265vw; } }
        @media (max-width: 480px) {
          #finals .contents_inr dl dd {
            font-size: 4.1666666667vw; } }
  #finals .contents_ttl {
    position: relative; }
    #finals .contents_ttl::before {
      color: #fff;
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_finals_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #finals .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 28.671875vw;
          height: 7.8125vw;
          margin: -3.90625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_finals_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #finals .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 37.4489795918vw;
          height: 10.2040816327vw;
          margin: -5.1020408163vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_finals_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #finals .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 38.75vw;
          height: 10.625vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_finals_bg.svg");
          background-size: contain; } }

/*==================================================*/
/* STREAM */
/*==================================================*/
#stream {
  /*background: #111;*/
  width: 100%; }
  #stream .contents_inr {
    box-sizing: border-box;
    padding-top: 6.25vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #stream .contents_inr {
        padding-top: 9.375vw; } }
    @media (max-width: 980px) {
      #stream .contents_inr {
        padding-top: 10.2040816327vw; } }
    @media (max-width: 480px) {
      #stream .contents_inr {
        padding-top: 20.8333333333vw; } }
    #stream .contents_inr figure {
      margin: 0 auto;
      width: 100%;
      max-width: 42.7083333333vw; }
      #stream .contents_inr figure a {
        transition: all .3s; }
        #stream .contents_inr figure a:hover {
          opacity: .5; }
          @media (max-width: 480px) {
            #stream .contents_inr figure a:hover {
              opacity: 1; } }
        @media (max-width: 480px) {
          #stream .contents_inr figure a:active {
            opacity: .5; } }
      @media (max-width: 1280px) {
        #stream .contents_inr figure {
          max-width: 64.0625vw; } }
      @media (max-width: 980px) {
        #stream .contents_inr figure {
          max-width: 69.387755102vw; } }
      @media (max-width: 480px) {
        #stream .contents_inr figure {
          max-width: 80%; } }
    #stream .contents_inr > .btn_red {
      margin-top: 2.0833333333vw;
      max-width: 380px !important; }
      @media (max-width: 1280px) {
        #stream .contents_inr > .btn_red {
          margin-top: 3.125vw; } }
      @media (max-width: 980px) {
        #stream .contents_inr > .btn_red {
          margin-top: 4.0816326531vw; } }
      @media (max-width: 480px) {
        #stream .contents_inr > .btn_red {
          margin-top: 6.25vw; } }
      #stream .contents_inr > .btn_red a {
        box-sizing: border-box;
        font-size: 16px;
        padding: 20px; }
    #stream .contents_inr .notes {
      color: #fff;
      font-size: 0.8333333333vw;
      margin: 1.0416666667vw auto 0;
      line-height: 1.6;
      text-align: center; }
      #stream .contents_inr .notes::before, #stream .contents_inr .notes::after {
        content: "";
        display: block;
        width: 0;
        height: 0; }
      #stream .contents_inr .notes::before {
        margin-top: calc((1 - 1.6) * 0.5em); }
      #stream .contents_inr .notes::after {
        margin-bottom: calc((1 - 1.6) * 0.5em); }
      @media (max-width: 1280px) {
        #stream .contents_inr .notes {
          font-size: 1.25vw;
          margin: 1.5625vw auto 0; } }
      @media (max-width: 980px) {
        #stream .contents_inr .notes {
          font-size: 1.4285714286vw;
          margin: 2.0408163265vw auto 0; } }
      @media (max-width: 480px) {
        #stream .contents_inr .notes {
          font-size: 2.9166666667vw;
          margin: 4.1666666667vw auto 0; } }
      #stream .contents_inr .notes strong {
        font-size: 1.25vw; }
        @media (max-width: 1280px) {
          #stream .contents_inr .notes strong {
            font-size: 1.875vw; } }
        @media (max-width: 980px) {
          #stream .contents_inr .notes strong {
            font-size: 1.8367346939vw; } }
        @media (max-width: 480px) {
          #stream .contents_inr .notes strong {
            font-size: 3.75vw; } }
  #stream .contents_ttl {
    position: relative; }
    #stream .contents_ttl::before {
      color: #fff;
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_stream_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #stream .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 35.234375vw;
          height: 7.8125vw;
          margin: -3.90625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_stream_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #stream .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 46.0204081633vw;
          height: 10.2040816327vw;
          margin: -5.1020408163vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_stream_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #stream .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 44.7916666667vw;
          height: 10.8333333333vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_stream_bg.svg");
          background-size: contain; } }
  #stream .stream_table_inr {
    margin: 0 auto;
    margin-bottom: 8px;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    max-width: 83.3333333333vw;
    /* スクロールバー全体を対象にする */
    /* スクロールバーの背景部分をカスタマイズ */
    /* スクロールバーの操作部分をカスタマイズ */
    /* スクロールバーの操作部分にホバーした時のスタイル */ }
    @media (max-width: 1280px) {
      #stream .stream_table_inr {
        margin: 0 auto;
        overflow: hidden;
        overflow-x: scroll;
        max-width: 93.75vw; } }
    @media (max-width: 980px) {
      #stream .stream_table_inr {
        margin: 0 auto;
        overflow: hidden;
        overflow-x: scroll;
        max-width: 91.8367346939vw; } }
    @media (max-width: 480px) {
      #stream .stream_table_inr {
        overflow: hidden;
        overflow-x: scroll;
        max-width: 90%; } }
    #stream .stream_table_inr .stream_table {
      color: #fff;
      margin: 2.0833333333vw auto 0;
      width: 1400px; }
      @media (max-width: 1280px) {
        #stream .stream_table_inr .stream_table {
          margin: 3.125vw auto 0; } }
      @media (max-width: 980px) {
        #stream .stream_table_inr .stream_table {
          margin: 4.0816326531vw auto 0; } }
      @media (max-width: 480px) {
        #stream .stream_table_inr .stream_table {
          margin: 8.3333333333vw auto 0; } }
      #stream .stream_table_inr .stream_table tr {
        margin-top: 0.2604166667vw;
        border-bottom: 1px solid #555; }
        @media (max-width: 1280px) {
          #stream .stream_table_inr .stream_table tr {
            margin-top: 0.390625vw; } }
        @media (max-width: 980px) {
          #stream .stream_table_inr .stream_table tr {
            margin-top: 0.5102040816vw; } }
        @media (max-width: 480px) {
          #stream .stream_table_inr .stream_table tr {
            margin-top: 1.0416666667vw; } }
        #stream .stream_table_inr .stream_table tr:first-child {
          border-bottom: 0; }
        #stream .stream_table_inr .stream_table tr:nth-child(3) {
          border-bottom: 1px dotted #222; }
        #stream .stream_table_inr .stream_table tr:nth-child(even) {
          border-left: #000 5px solid;
          border-right: #000 5px solid; }
        #stream .stream_table_inr .stream_table tr.stream_table_ttl {
          background: #111; }
          #stream .stream_table_inr .stream_table tr.stream_table_ttl > th {
            box-sizing: border-box;
            background: #222;
            padding: 1.0416666667vw 0.2604166667vw; }
            @media (max-width: 1280px) {
              #stream .stream_table_inr .stream_table tr.stream_table_ttl > th {
                padding: 1.5625vw 0.390625vw; } }
            @media (max-width: 980px) {
              #stream .stream_table_inr .stream_table tr.stream_table_ttl > th {
                padding: 2.0408163265vw 0.5102040816vw; } }
            @media (max-width: 480px) {
              #stream .stream_table_inr .stream_table tr.stream_table_ttl > th {
                padding: 4.1666666667vw 1.0416666667vw; } }
            #stream .stream_table_inr .stream_table tr.stream_table_ttl > th:nth-child(even) {
              background: #111; }
            #stream .stream_table_inr .stream_table tr.stream_table_ttl > th:nth-child(1) {
              width: 120px; }
            #stream .stream_table_inr .stream_table tr.stream_table_ttl > th:nth-child(4) {
              width: 150px; }
        #stream .stream_table_inr .stream_table tr th, #stream .stream_table_inr .stream_table tr td {
          box-sizing: border-box;
          vertical-align: middle;
          line-height: 1.4;
          padding: 0.78125vw 0; }
          #stream .stream_table_inr .stream_table tr th::before, #stream .stream_table_inr .stream_table tr th::after, #stream .stream_table_inr .stream_table tr td::before, #stream .stream_table_inr .stream_table tr td::after {
            content: "";
            display: block;
            width: 0;
            height: 0; }
          #stream .stream_table_inr .stream_table tr th::before, #stream .stream_table_inr .stream_table tr td::before {
            margin-top: calc((1 - 1.4) * 0.5em); }
          #stream .stream_table_inr .stream_table tr th::after, #stream .stream_table_inr .stream_table tr td::after {
            margin-bottom: calc((1 - 1.4) * 0.5em); }
          @media (max-width: 1280px) {
            #stream .stream_table_inr .stream_table tr th, #stream .stream_table_inr .stream_table tr td {
              padding: 1.171875vw 0; } }
          @media (max-width: 980px) {
            #stream .stream_table_inr .stream_table tr th, #stream .stream_table_inr .stream_table tr td {
              padding: 1.5306122449vw 0; } }
          @media (max-width: 480px) {
            #stream .stream_table_inr .stream_table tr th, #stream .stream_table_inr .stream_table tr td {
              padding: 3.125vw 0; } }
          #stream .stream_table_inr .stream_table tr th a, #stream .stream_table_inr .stream_table tr td a {
            color: #fff;
            text-decoration: underline; }
            #stream .stream_table_inr .stream_table tr th a:hover, #stream .stream_table_inr .stream_table tr td a:hover {
              color: yellow;
              text-decoration: none;
              transition: all .3s; }
            @media (max-width: 980px) {
              #stream .stream_table_inr .stream_table tr th a:active, #stream .stream_table_inr .stream_table tr td a:active {
                color: yellow;
                text-decoration: none;
                transition: all .3s; } }
          #stream .stream_table_inr .stream_table tr th.game, #stream .stream_table_inr .stream_table tr td.game {
            line-height: 1.4; }
            #stream .stream_table_inr .stream_table tr th.game::before, #stream .stream_table_inr .stream_table tr th.game::after, #stream .stream_table_inr .stream_table tr td.game::before, #stream .stream_table_inr .stream_table tr td.game::after {
              content: "";
              display: block;
              width: 0;
              height: 0; }
            #stream .stream_table_inr .stream_table tr th.game::before, #stream .stream_table_inr .stream_table tr td.game::before {
              margin-top: calc((1 - 1.4) * 0.5em); }
            #stream .stream_table_inr .stream_table tr th.game::after, #stream .stream_table_inr .stream_table tr td.game::after {
              margin-bottom: calc((1 - 1.4) * 0.5em); }
          #stream .stream_table_inr .stream_table tr th.language, #stream .stream_table_inr .stream_table tr td.language {
            color: yellow;
            text-align: center; }
          #stream .stream_table_inr .stream_table tr th.day, #stream .stream_table_inr .stream_table tr td.day {
            text-align: center; }
          #stream .stream_table_inr .stream_table tr th span.stream_twitch, #stream .stream_table_inr .stream_table tr td span.stream_twitch {
            box-sizing: border-box;
            background: #6441a5;
            display: inline-block;
            margin-bottom: 0.2604166667vw;
            padding: 0.15625vw 0.5208333333vw; }
            @media (max-width: 1280px) {
              #stream .stream_table_inr .stream_table tr th span.stream_twitch, #stream .stream_table_inr .stream_table tr td span.stream_twitch {
                margin-bottom: 0.390625vw;
                padding: 0.234375vw 0.78125vw; } }
            @media (max-width: 980px) {
              #stream .stream_table_inr .stream_table tr th span.stream_twitch, #stream .stream_table_inr .stream_table tr td span.stream_twitch {
                margin-bottom: 0.5102040816vw;
                padding: 0.306122449vw 1.0204081633vw; } }
            @media (max-width: 480px) {
              #stream .stream_table_inr .stream_table tr th span.stream_twitch, #stream .stream_table_inr .stream_table tr td span.stream_twitch {
                margin-bottom: 1.0416666667vw;
                padding: 0.625vw 2.0833333333vw; } }
          #stream .stream_table_inr .stream_table tr th span.stream_youtube, #stream .stream_table_inr .stream_table tr td span.stream_youtube {
            box-sizing: border-box;
            background: #FF0000;
            display: inline-block;
            margin-bottom: 0.2604166667vw;
            padding: 0.15625vw 0.5208333333vw;
            margin-top: 0.78125vw; }
            @media (max-width: 1280px) {
              #stream .stream_table_inr .stream_table tr th span.stream_youtube, #stream .stream_table_inr .stream_table tr td span.stream_youtube {
                margin-bottom: 0.390625vw;
                padding: 0.234375vw 0.78125vw; } }
            @media (max-width: 980px) {
              #stream .stream_table_inr .stream_table tr th span.stream_youtube, #stream .stream_table_inr .stream_table tr td span.stream_youtube {
                margin-bottom: 0.5102040816vw;
                padding: 0.306122449vw 1.0204081633vw; } }
            @media (max-width: 480px) {
              #stream .stream_table_inr .stream_table tr th span.stream_youtube, #stream .stream_table_inr .stream_table tr td span.stream_youtube {
                margin-bottom: 1.0416666667vw;
                padding: 0.625vw 2.0833333333vw; } }
          #stream .stream_table_inr .stream_table tr th span.stream_soop, #stream .stream_table_inr .stream_table tr td span.stream_soop {
            box-sizing: border-box;
            background: #0275d8;
            display: inline-block;
            margin-bottom: 0.2604166667vw;
            padding: 0.15625vw 0.5208333333vw; }
            @media (max-width: 1280px) {
              #stream .stream_table_inr .stream_table tr th span.stream_soop, #stream .stream_table_inr .stream_table tr td span.stream_soop {
                margin-bottom: 0.390625vw;
                padding: 0.234375vw 0.78125vw; } }
            @media (max-width: 980px) {
              #stream .stream_table_inr .stream_table tr th span.stream_soop, #stream .stream_table_inr .stream_table tr td span.stream_soop {
                margin-bottom: 0.5102040816vw;
                padding: 0.306122449vw 1.0204081633vw; } }
            @media (max-width: 480px) {
              #stream .stream_table_inr .stream_table tr th span.stream_soop, #stream .stream_table_inr .stream_table tr td span.stream_soop {
                margin-bottom: 1.0416666667vw;
                padding: 0.625vw 2.0833333333vw; } }
          #stream .stream_table_inr .stream_table tr th span.stream_bilibili, #stream .stream_table_inr .stream_table tr td span.stream_bilibili {
            box-sizing: border-box;
            background: #00aeec;
            display: inline-block;
            margin-bottom: 0.2604166667vw;
            padding: 0.15625vw 0.5208333333vw; }
            @media (max-width: 1280px) {
              #stream .stream_table_inr .stream_table tr th span.stream_bilibili, #stream .stream_table_inr .stream_table tr td span.stream_bilibili {
                margin-bottom: 0.390625vw;
                padding: 0.234375vw 0.78125vw; } }
            @media (max-width: 980px) {
              #stream .stream_table_inr .stream_table tr th span.stream_bilibili, #stream .stream_table_inr .stream_table tr td span.stream_bilibili {
                margin-bottom: 0.5102040816vw;
                padding: 0.306122449vw 1.0204081633vw; } }
            @media (max-width: 480px) {
              #stream .stream_table_inr .stream_table tr th span.stream_bilibili, #stream .stream_table_inr .stream_table tr td span.stream_bilibili {
                margin-bottom: 1.0416666667vw;
                padding: 0.625vw 2.0833333333vw; } }
    #stream .stream_table_inr .stream_table::-webkit-scrollbar {
      width: 10px;
      /* スクロールバーの幅 */
      height: 10px;
      /* スクロールバーの高さ */ }
    #stream .stream_table_inr .stream_table::-webkit-scrollbar-track {
      background: #f1f1f1;
      /* スクロールバーの背景色 */
      border-radius: 5px;
      /* 角丸にする */ }
    #stream .stream_table_inr .stream_table::-webkit-scrollbar-thumb {
      background: #888;
      /* スクロールバーの操作部分の背景色 */
      border-radius: 5px;
      /* 角丸にする */ }
    #stream .stream_table_inr .stream_table::-webkit-scrollbar-thumb:hover {
      background: #555;
      /* ホバー時のスクロールバーの操作部分の背景色 */ }

/*==================================================*/
/* GAME TITLE */
/*==================================================*/
#game-title {
  background: #111;
  width: 100%; }
  #game-title .contents_inr {
    box-sizing: border-box;
    /*padding-top: vw(120);*/
    padding: 6.25vw 0;
    /*padding-bottom: 0 !important;*/
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #game-title .contents_inr {
        padding: 9.375vw 0; } }
    @media (max-width: 980px) {
      #game-title .contents_inr {
        padding: 10.2040816327vw 0; } }
    @media (max-width: 480px) {
      #game-title .contents_inr {
        padding: 20.8333333333vw 0; } }
    #game-title .contents_inr .cont {
      border-bottom: 1px solid #333;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 30px;
      margin: 0 auto;
      width: 100%;
      max-width: 52.0833333333vw; }
      @media (max-width: 1280px) {
        #game-title .contents_inr .cont {
          max-width: 78.125vw; } }
      @media (max-width: 980px) {
        #game-title .contents_inr .cont {
          flex-direction: column;
          max-width: 102.0408163265vw; } }
      @media (max-width: 480px) {
        #game-title .contents_inr .cont {
          max-width: 80%; } }
      #game-title .contents_inr .cont:nth-child(n + 2) {
        margin-top: 30px; }
      #game-title .contents_inr .cont:last-child {
        border-bottom: 0;
        padding-bottom: 0; }
      #game-title .contents_inr .cont figure {
        margin: 0 auto;
        width: 100%;
        max-width: 12.5vw; }
        @media (max-width: 1280px) {
          #game-title .contents_inr .cont figure {
            max-width: 18.75vw; } }
        @media (max-width: 980px) {
          #game-title .contents_inr .cont figure {
            max-width: 24.4897959184vw; } }
        @media (max-width: 480px) {
          #game-title .contents_inr .cont figure {
            max-width: 80%; } }
      #game-title .contents_inr .cont dl {
        color: #fff;
        margin: 0;
        width: 100%;
        text-align: left; }
        @media (max-width: 980px) {
          #game-title .contents_inr .cont dl {
            margin: 20px auto 0; } }
        #game-title .contents_inr .cont dl div {
          margin-left: 1.5625vw; }
          @media (max-width: 1280px) {
            #game-title .contents_inr .cont dl div {
              margin-left: 2.34375vw; } }
          @media (max-width: 980px) {
            #game-title .contents_inr .cont dl div {
              margin-left: 3.0612244898vw; } }
          @media (max-width: 480px) {
            #game-title .contents_inr .cont dl div {
              margin-left: 0; } }
          #game-title .contents_inr .cont dl div.left_off {
            margin-left: 0; }
            @media (max-width: 980px) {
              #game-title .contents_inr .cont dl div.left_off {
                margin-left: 3.0612244898vw; } }
            @media (max-width: 480px) {
              #game-title .contents_inr .cont dl div.left_off {
                margin-left: 0; } }
          #game-title .contents_inr .cont dl div dt {
            font-family: "Anton", sans-serif;
            font-size: 1.875vw;
            color: #ffff00;
            margin-bottom: 15px;
            line-height: 1.4; }
            #game-title .contents_inr .cont dl div dt::before, #game-title .contents_inr .cont dl div dt::after {
              content: "";
              display: block;
              width: 0;
              height: 0; }
            #game-title .contents_inr .cont dl div dt::before {
              margin-top: calc((1 - 1.4) * 0.5em); }
            #game-title .contents_inr .cont dl div dt::after {
              margin-bottom: calc((1 - 1.4) * 0.5em); }
            @media (max-width: 1280px) {
              #game-title .contents_inr .cont dl div dt {
                font-size: 2.8125vw; } }
            @media (max-width: 980px) {
              #game-title .contents_inr .cont dl div dt {
                font-size: 2.4489795918vw; } }
            @media (max-width: 480px) {
              #game-title .contents_inr .cont dl div dt {
                font-size: 5vw; } }
          #game-title .contents_inr .cont dl div dd {
            font-family: "Noto Sans JP", sans-serif;
            font-weight: bold;
            font-size: 1.0416666667vw;
            line-height: 1.4; }
            #game-title .contents_inr .cont dl div dd::before, #game-title .contents_inr .cont dl div dd::after {
              content: "";
              display: block;
              width: 0;
              height: 0; }
            #game-title .contents_inr .cont dl div dd::before {
              margin-top: calc((1 - 1.4) * 0.5em); }
            #game-title .contents_inr .cont dl div dd::after {
              margin-bottom: calc((1 - 1.4) * 0.5em); }
            @media (max-width: 1280px) {
              #game-title .contents_inr .cont dl div dd {
                font-size: 2.1875vw; } }
            @media (max-width: 980px) {
              #game-title .contents_inr .cont dl div dd {
                font-size: 2.0408163265vw; } }
            @media (max-width: 480px) {
              #game-title .contents_inr .cont dl div dd {
                font-size: 4.1666666667vw; } }
            #game-title .contents_inr .cont dl div dd:last-child {
              margin-top: 2.0833333333vw; }
              @media (max-width: 1280px) {
                #game-title .contents_inr .cont dl div dd:last-child {
                  margin-top: 3.125vw; } }
              @media (max-width: 980px) {
                #game-title .contents_inr .cont dl div dd:last-child {
                  margin-top: 4.0816326531vw; } }
              @media (max-width: 480px) {
                #game-title .contents_inr .cont dl div dd:last-child {
                  margin-top: 8.3333333333vw; } }

/*==================================================*/
/* SUPPORT */
/*==================================================*/
.support {
  box-sizing: border-box;
  padding-top: 4.1666666667vw;
  padding-bottom: 6.25vw; }
  @media (max-width: 1280px) {
    .support {
      padding-top: 6.25vw;
      padding-bottom: 9.375vw; } }
  @media (max-width: 980px) {
    .support {
      padding-top: 4.0816326531vw;
      padding-bottom: 5.1020408163vw; } }
  @media (max-width: 480px) {
    .support {
      padding-top: 8.3333333333vw;
      padding-bottom: 10.4166666667vw; } }
  .support ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    .support ul li.asw {
      width: 100%;
      max-width: 5.2083333333vw; }
      @media (max-width: 1280px) {
        .support ul li.asw {
          max-width: 7.8125vw; } }
      @media (max-width: 980px) {
        .support ul li.asw {
          max-width: 5.1020408163vw; } }
      @media (max-width: 480px) {
        .support ul li.asw {
          max-width: 10.4166666667vw; } }
    .support ul li.cygames {
      height: 5.2083333333vw;
      width: auto; }
      @media (max-width: 1280px) {
        .support ul li.cygames {
          height: 7.8125vw; } }
      @media (max-width: 980px) {
        .support ul li.cygames {
          height: 5.1020408163vw; } }
      @media (max-width: 480px) {
        .support ul li.cygames {
          height: 10.4166666667vw; } }
      .support ul li.cygames a img {
        object-fit: cover;
        height: 100% !important;
        width: auto; }
    .support ul li.ps {
      height: 5.2083333333vw;
      width: auto; }
      @media (max-width: 1280px) {
        .support ul li.ps {
          height: 7.8125vw; } }
      @media (max-width: 980px) {
        .support ul li.ps {
          margin-top: 3.0612244898vw;
          height: 5.1020408163vw; } }
      @media (max-width: 480px) {
        .support ul li.ps {
          margin-top: 6.25vw;
          height: 10.4166666667vw; } }
      .support ul li.ps img {
        object-fit: cover;
        height: 100% !important;
        width: auto; }
    .support ul li:nth-child(n + 2) {
      margin-left: 2.6041666667vw; }
      @media (max-width: 1280px) {
        .support ul li:nth-child(n + 2) {
          margin-left: 3.90625vw; } }
      @media (max-width: 980px) {
        .support ul li:nth-child(n + 2) {
          margin-left: 3.0612244898vw; } }
      @media (max-width: 480px) {
        .support ul li:nth-child(n + 2) {
          margin-left: 6.25vw; } }
    .support ul li a {
      transition: all .3s; }
      .support ul li a:hover {
        opacity: .5; }

/*==================================================*/
/* RANKING */
/*==================================================*/
#ranking {
  width: 100%; }
  #ranking .contents_inr {
    box-sizing: border-box;
    padding-top: 6.25vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #ranking .contents_inr {
        padding-top: 9.375vw; } }
    @media (max-width: 980px) {
      #ranking .contents_inr {
        padding-top: 10.2040816327vw; } }
    @media (max-width: 480px) {
      #ranking .contents_inr {
        padding-top: 20.8333333333vw; } }
  #ranking .contents_ttl {
    position: relative; }
    #ranking .contents_ttl::before {
      color: #fff;
      content: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_ranking_bg.svg");
      position: absolute;
      top: 50%;
      right: 0;
      left: 0;
      margin: -2.65625vw auto 0;
      text-align: center; }
      @media (max-width: 1280px) {
        #ranking .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 43.984375vw;
          height: 7.890625vw;
          margin: -3.984375vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_ranking_bg.svg");
          background-size: contain; } }
      @media (max-width: 980px) {
        #ranking .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 57.6530612245vw;
          height: 10.306122449vw;
          margin: -5.2040816327vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_ranking_bg.svg");
          background-size: contain; } }
      @media (max-width: 480px) {
        #ranking .contents_ttl::before {
          content: '';
          display: inline-block;
          width: 59.375vw;
          height: 10.625vw;
          margin: -5.625vw auto 0;
          background-image: url("https://www.arcsystemworks.jp/awt2024/assets/img/ttl_ranking_bg.svg");
          background-size: contain; } }
  #ranking .ranking_inr {
    display: flex;
    justify-content: center;
    width: 100%; }
    @media (max-width: 980px) {
      #ranking .ranking_inr {
        flex-direction: column; } }
    #ranking .ranking_inr h3 {
      margin-bottom: 1.0416666667vw; }
      @media (max-width: 1280px) {
        #ranking .ranking_inr h3 {
          margin-bottom: 1.5625vw; } }
      @media (max-width: 980px) {
        #ranking .ranking_inr h3 {
          margin-bottom: 3.0612244898vw; } }
      @media (max-width: 480px) {
        #ranking .ranking_inr h3 {
          margin-bottom: 6.25vw; } }
      #ranking .ranking_inr h3.gbvsr {
        margin: 0 auto;
        text-align: center;
        height: 3.6458333333vw;
        width: auto; }
        @media (max-width: 1280px) {
          #ranking .ranking_inr h3.gbvsr {
            height: 5.46875vw; } }
        @media (max-width: 980px) {
          #ranking .ranking_inr h3.gbvsr {
            height: 7.1428571429vw; } }
        @media (max-width: 480px) {
          #ranking .ranking_inr h3.gbvsr {
            height: 14.5833333333vw; } }
      #ranking .ranking_inr h3.ggst {
        margin: 0 auto;
        text-align: center;
        height: 2.6041666667vw;
        width: auto; }
        @media (max-width: 1280px) {
          #ranking .ranking_inr h3.ggst {
            height: 3.90625vw; } }
        @media (max-width: 980px) {
          #ranking .ranking_inr h3.ggst {
            height: 5.1020408163vw; } }
        @media (max-width: 480px) {
          #ranking .ranking_inr h3.ggst {
            height: 10.4166666667vw; } }
      #ranking .ranking_inr h3 img {
        width: auto;
        height: 100%;
        object-fit: cover; }
  #ranking .ranking_gbvsr {
    background: #111;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 2.0833333333vw 1.0416666667vw 3.125vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #ranking .ranking_gbvsr {
        padding: 3.125vw 1.5625vw 4.6875vw; } }
    @media (max-width: 980px) {
      #ranking .ranking_gbvsr {
        padding: 4.0816326531vw 2.0408163265vw 6.1224489796vw; } }
    @media (max-width: 480px) {
      #ranking .ranking_gbvsr {
        padding: 8.3333333333vw 4.1666666667vw 8.3333333333vw; } }
  #ranking .ranking_ggst {
    background: #111;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 3.125vw 1.0416666667vw 3.125vw;
    width: 100%;
    max-width: 100%; }
    @media (max-width: 1280px) {
      #ranking .ranking_ggst {
        padding: 4.6875vw 1.5625vw 4.6875vw; } }
    @media (max-width: 980px) {
      #ranking .ranking_ggst {
        margin-left: 0;
        margin: 0 auto;
        margin-top: 3.0612244898vw;
        padding: 6.1224489796vw 2.0408163265vw 6.1224489796vw; } }
    @media (max-width: 480px) {
      #ranking .ranking_ggst {
        margin: 0 auto;
        margin-top: 8.3333333333vw;
        padding: 8.3333333333vw 4.1666666667vw 8.3333333333vw; } }
  #ranking .ranking_txt {
    color: #fff;
    margin: 20px auto 40px;
    text-align: center; }
  #ranking .point_area {
    color: #fff;
    margin: 1.5625vw auto 0;
    width: 100%;
    max-width: 46.875vw; }
    @media (max-width: 1280px) {
      #ranking .point_area {
        margin: 2.34375vw auto 0;
        max-width: 70.3125vw; } }
    @media (max-width: 980px) {
      #ranking .point_area {
        margin: 3.0612244898vw auto 0;
        max-width: 61.2244897959vw; } }
    @media (max-width: 480px) {
      #ranking .point_area {
        margin: 6.25vw auto 0;
        max-width: 100%; } }
    #ranking .point_area tr.tq td {
      border-top: 5px solid #111;
      border-bottom: 2px solid #333; }
      #ranking .point_area tr.tq td.rank, #ranking .point_area tr.tq td.point, #ranking .point_area tr.tq td.name {
        background: rgba(208, 0, 8, 0.5); }
    #ranking .point_area tr.tq.gbvsr td.name, #ranking .point_area tr.tq.ggst td.name {
      background: rgba(208, 0, 8, 0.5);
      border-bottom: 0; }
    #ranking .point_area tr.tq.gbvsr td.rank_two, #ranking .point_area tr.tq.ggst td.rank_two {
      background: rgba(208, 0, 8, 0.5);
      border: 0;
      border-top: 5px solid #111;
      border-right: 5px solid #111;
      border-bottom: 0;
      width: 20.8333333333vw; }
      @media (max-width: 1280px) {
        #ranking .point_area tr.tq.gbvsr td.rank_two, #ranking .point_area tr.tq.ggst td.rank_two {
          width: 31.25vw; } }
      @media (max-width: 980px) {
        #ranking .point_area tr.tq.gbvsr td.rank_two, #ranking .point_area tr.tq.ggst td.rank_two {
          width: 40.8163265306vw; } }
      @media (max-width: 480px) {
        #ranking .point_area tr.tq.gbvsr td.rank_two, #ranking .point_area tr.tq.ggst td.rank_two {
          width: 83.3333333333vw; } }
    #ranking .point_area tr.ptq {
      color: #ffff00 !important; }
    #ranking .point_area tr th {
      background: #000;
      box-sizing: border-box;
      font-size: 1.0416666667vw;
      padding: 0.9375vw 0; }
      @media (max-width: 1280px) {
        #ranking .point_area tr th {
          font-size: 1.5625vw;
          padding: 1.40625vw 0; } }
      @media (max-width: 980px) {
        #ranking .point_area tr th {
          font-size: 2.0408163265vw;
          padding: 1.8367346939vw 0; } }
      @media (max-width: 480px) {
        #ranking .point_area tr th {
          font-size: 4.1666666667vw;
          padding: 3.75vw 0; } }
      #ranking .point_area tr th.rank {
        width: 10.4166666667vw; }
        @media (max-width: 1280px) {
          #ranking .point_area tr th.rank {
            width: 15.625vw; } }
        @media (max-width: 980px) {
          #ranking .point_area tr th.rank {
            width: 25%; } }
        @media (max-width: 480px) {
          #ranking .point_area tr th.rank {
            width: 25%; } }
      #ranking .point_area tr th.point {
        background: #222;
        border-left: 5px solid #111;
        border-right: 5px solid #111;
        width: 10.4166666667vw; }
        @media (max-width: 1280px) {
          #ranking .point_area tr th.point {
            width: 15.625vw; } }
        @media (max-width: 980px) {
          #ranking .point_area tr th.point {
            width: 25%; } }
        @media (max-width: 480px) {
          #ranking .point_area tr th.point {
            width: 25%; } }
      #ranking .point_area tr th.name {
        box-sizing: border-box;
        padding-left: 0.5208333333vw;
        padding-right: 0.5208333333vw;
        width: 26.0416666667vw; }
        @media (max-width: 1280px) {
          #ranking .point_area tr th.name {
            padding-left: 0.78125vw;
            padding-right: 0.78125vw;
            width: 39.0625vw; } }
        @media (max-width: 980px) {
          #ranking .point_area tr th.name {
            padding-left: 1.0204081633vw;
            padding-right: 1.0204081633vw;
            width: 50%; } }
        @media (max-width: 480px) {
          #ranking .point_area tr th.name {
            padding-left: 2.0833333333vw;
            padding-right: 2.0833333333vw;
            width: 50%; } }
    #ranking .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) {
        #ranking .point_area tr td {
          font-size: 1.40625vw;
          padding: 1.5625vw 0; } }
      @media (max-width: 980px) {
        #ranking .point_area tr td {
          font-size: 1.8367346939vw;
          padding: 2.0408163265vw 0; } }
      @media (max-width: 480px) {
        #ranking .point_area tr td {
          font-size: 3.75vw;
          padding: 4.1666666667vw 0; } }
      #ranking .point_area tr td.rank {
        width: 10.4166666667vw; }
        @media (max-width: 1280px) {
          #ranking .point_area tr td.rank {
            width: 15.625vw; } }
        @media (max-width: 980px) {
          #ranking .point_area tr td.rank {
            width: 20.4081632653vw; } }
        @media (max-width: 480px) {
          #ranking .point_area tr td.rank {
            width: 41.6666666667vw; } }
      #ranking .point_area tr td.point {
        border-left: 5px solid #111;
        border-right: 5px solid #111;
        width: 10.4166666667vw; }
        @media (max-width: 1280px) {
          #ranking .point_area tr td.point {
            width: 15.625vw; } }
        @media (max-width: 980px) {
          #ranking .point_area tr td.point {
            width: 20.4081632653vw; } }
        @media (max-width: 480px) {
          #ranking .point_area tr td.point {
            width: 41.6666666667vw; } }
      #ranking .point_area tr td.name {
        padding-left: 1.0416666667vw;
        padding-right: 1.0416666667vw;
        text-align: left;
        width: 26.0416666667vw; }
        @media (max-width: 1280px) {
          #ranking .point_area tr td.name {
            padding-left: 1.5625vw;
            padding-right: 1.5625vw;
            width: 39.0625vw; } }
        @media (max-width: 980px) {
          #ranking .point_area tr td.name {
            padding-left: 2.0408163265vw;
            padding-right: 2.0408163265vw;
            width: 51.0204081633vw; } }
        @media (max-width: 480px) {
          #ranking .point_area tr td.name {
            padding-left: 4.1666666667vw;
            padding-right: 4.1666666667vw;
            width: 104.1666666667vw; } }

.remodal {
  position: relative;
  padding: 25px; }
  .remodal img {
    width: 100%;
    height: auto;
    vertical-align: top; }

.remodal_close {
  cursor: pointer;
  margin: 0 0 0 auto;
  height: 2.6041666667vw;
  width: 2.6041666667vw;
  transition: all .3s; }
  @media (max-width: 1280px) {
    .remodal_close {
      height: 3.90625vw;
      width: 3.90625vw; } }
  @media (max-width: 980px) {
    .remodal_close {
      height: 5.1020408163vw;
      width: 5.1020408163vw; } }
  @media (max-width: 480px) {
    .remodal_close {
      height: 10.4166666667vw;
      width: 10.4166666667vw; } }
  .remodal_close:hover {
    opacity: .6;
    transition: all .3s; }
    @media (max-width: 980px) {
      .remodal_close:hover {
        opacity: 1; } }
  @media (max-width: 980px) {
    .remodal_close:active {
      opacity: .6;
      transition: all .3s; } }

.movie_modal {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 0;
  margin-top: 30px;
  padding-top: 56.25%; }
  @media (max-width: 480px) {
    .movie_modal {
      margin-top: 15px; } }
  .movie_modal iframe,
  .movie_modal figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*==================================================*/
/* btn-lnk */
/*==================================================*/
.btn-lnk {
  background: #111;
  box-sizing: border-box;
  padding: 5.2083333333vw 0; }
  @media (max-width: 980px) {
    .btn-lnk {
      padding: 10.2040816327vw 0; } }
  @media (max-width: 480px) {
    .btn-lnk {
      padding: 12.2448979592vw 0; } }
  .btn-lnk ul {
    display: flex;
    justify-content: center;
    align-items: stretch; }
    @media (max-width: 980px) {
      .btn-lnk ul {
        align-items: center;
        flex-direction: column; } }
    .btn-lnk ul li {
      background: #000;
      box-sizing: border-box;
      border: 1px solid #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1.5625vw 1.5625vw;
      position: relative;
      width: auto; }
      @media (max-width: 980px) {
        .btn-lnk ul li {
          padding: 3.0612244898vw 3.0612244898vw;
          width: 100%;
          max-width: 80%; } }
      @media (max-width: 480px) {
        .btn-lnk ul li {
          padding: 6.25vw 6.25vw;
          width: 100%;
          max-width: 80%; }
          .btn-lnk ul li:nth-child(3) {
            padding: 1.6666666667vw 6.25vw; } }
      .btn-lnk ul li:hover {
        transition: all .3s;
        background: #000; }
        .btn-lnk ul li:hover figure {
          cursor: pointer; }
        .btn-lnk ul li:hover:nth-child(1) {
          border: 1px solid #f13932; }
        .btn-lnk ul li:hover:nth-child(2) {
          border: 1px solid #0002c1; }
        .btn-lnk ul li:hover:nth-child(3) {
          border: 1px solid #80198c; }
        @media (max-width: 980px) {
          .btn-lnk ul li:hover {
            background-color: transparent; }
            .btn-lnk ul li:hover figure {
              cursor: default; }
            .btn-lnk ul li:hover:nth-child(1) {
              border: 1px solid #fff; }
            .btn-lnk ul li:hover:nth-child(2) {
              border: 1px solid #fff; }
            .btn-lnk ul li:hover:nth-child(3) {
              border: 1px solid #fff; } }
      @media (max-width: 980px) {
        .btn-lnk ul li:active {
          transition: all .3s;
          background: #000; }
          .btn-lnk ul li:active figure {
            cursor: pointer; }
          .btn-lnk ul li:active:nth-child(1) {
            border: 1px solid #f13932; }
          .btn-lnk ul li:active:nth-child(2) {
            border: 1px solid #0002c1; }
          .btn-lnk ul li:active:nth-child(3) {
            border: 1px solid #80198c; } }
      .btn-lnk ul li a {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 2; }
      .btn-lnk ul li figure {
        position: relative;
        z-index: 1; }
      .btn-lnk ul li:nth-child(1) figure {
        width: 100%;
        max-width: 12.9166666667vw; }
        @media (max-width: 980px) {
          .btn-lnk ul li:nth-child(1) figure {
            max-width: 60%; } }
      .btn-lnk ul li:nth-child(n + 2) {
        margin-left: 2.0833333333vw; }
        @media (max-width: 1280px) {
          .btn-lnk ul li:nth-child(n + 2) {
            margin-left: 3.125vw; } }
        @media (max-width: 980px) {
          .btn-lnk ul li:nth-child(n + 2) {
            margin-left: 0;
            margin-top: 3.0612244898vw; } }
        @media (max-width: 480px) {
          .btn-lnk ul li:nth-child(n + 2) {
            margin-left: 0;
            margin-top: 6.25vw; } }
        .btn-lnk ul li:nth-child(n + 2) figure {
          width: 100%;
          max-width: 15.1041666667vw; }
          @media (max-width: 980px) {
            .btn-lnk ul li:nth-child(n + 2) figure {
              max-width: 70%; } }

/*==================================================*/
/* button */
/*==================================================*/
.btn_org {
  border: 1px solid #ff6900;
  background: rgba(255, 105, 0, 0.3);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 380px; }
  .btn_org.center {
    margin: 0 auto; }
    .btn_org.center.top {
      margin-top: 50px; }
      @media (max-width: 980px) {
        .btn_org.center.top {
          margin-top: 30px; } }
  .btn_org:hover {
    background: #ff6900; }
  @media (max-width: 980px) {
    .btn_org {
      margin: 0 auto;
      width: 90%; }
      .btn_org:hover {
        background: rgba(255, 105, 0, 0.3); }
      .btn_org:active {
        background: #ff6900; } }
  .btn_org a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    .btn_org a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 2em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_org a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_org a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_org a:hover::before, .btn_org a:hover::after {
        right: 1em; }
        @media (max-width: 980px) {
          .btn_org a:hover::before, .btn_org a:hover::after {
            right: 2em; } }
    @media (max-width: 980px) {
      .btn_org a:active::before, .btn_org a:active::after {
        right: 1em; } }

.btn_red {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.3);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 280px; }
  .btn_red.center {
    margin: 0 auto; }
  .btn_red:hover {
    background: #ff1a31; }
  @media (max-width: 980px) {
    .btn_red {
      margin: 0 auto;
      width: 90%; }
      .btn_red:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_red:active {
        background: #ff1a31; } }
  .btn_red a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    .btn_red a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 2em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_red a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_red a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_red a:hover::before, .btn_red a:hover::after {
        right: 1em; }
        @media (max-width: 980px) {
          .btn_red a:hover::before, .btn_red a:hover::after {
            right: 2em; } }
    @media (max-width: 980px) {
      .btn_red a:active::before, .btn_red a:active::after {
        right: 1em; } }
  .btn_red.off {
    opacity: .5; }
    .btn_red.off:hover {
      background: rgba(255, 26, 49, 0.3); }
    @media (max-width: 980px) {
      .btn_red.off:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_red.off:active {
        background: rgba(255, 26, 49, 0.3); } }
    .btn_red.off a {
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-sizing: border-box;
      font-size: 18px;
      font-weight: 700;
      position: relative;
      margin: 0 auto;
      padding: 20px 20px 20px 30px;
      text-decoration: none;
      transition: all .3s; }
      .btn_red.off a::before {
        content: '';
        position: absolute;
        top: calc(50% - 2px);
        right: 2em;
        transform: translateY(calc(-50% - 2px)) rotate(30deg);
        width: 12px;
        height: 2px;
        background: #fff;
        transition: all .3s; }
      .btn_red.off a::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 2em;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: #fff;
        transition: all .3s; }
      .btn_red.off a:hover {
        text-decoration: none;
        opacity: 1; }
        .btn_red.off a:hover::before, .btn_red.off a:hover::after {
          right: 2em; }
          @media (max-width: 980px) {
            .btn_red.off a:hover::before, .btn_red.off a:hover::after {
              right: 2em; } }
      @media (max-width: 980px) {
        .btn_red.off a:active::before, .btn_red.off a:active::after {
          right: 2em; } }

.btn_twitch {
  border: 1px solid #6441a5;
  background: rgba(100, 65, 165, 0.3);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 280px; }
  .btn_twitch.center {
    margin: 0 auto; }
  .btn_twitch:hover {
    background: #6441a5; }
  @media (max-width: 980px) {
    .btn_twitch {
      margin: 0 auto;
      width: 90%; }
      .btn_twitch:hover {
        background: rgba(100, 65, 165, 0.3); }
      .btn_twitch:active {
        background: #6441a5; } }
  .btn_twitch a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    .btn_twitch a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 2em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_twitch a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 2em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_twitch a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_twitch a:hover::before, .btn_twitch a:hover::after {
        right: 1em; }
        @media (max-width: 980px) {
          .btn_twitch a:hover::before, .btn_twitch a:hover::after {
            right: 2em; } }
    @media (max-width: 980px) {
      .btn_twitch a:active::before, .btn_twitch a:active::after {
        right: 1em; } }

.btn_ticket {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.1);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 480px; }
  .btn_ticket.center {
    margin: 0 auto; }
  .btn_ticket.en {
    max-width: 560px; }
    @media (max-width: 1280px) {
      .btn_ticket.en {
        max-width: 465px; } }
    @media (max-width: 980px) {
      .btn_ticket.en {
        max-width: 465px; } }
  .btn_ticket:hover {
    background: #ff1a31; }
  @media (max-width: 1280px) {
    .btn_ticket {
      width: 100%;
      max-width: 385px; } }
  @media (max-width: 980px) {
    .btn_ticket {
      margin: 0 auto;
      width: 100%;
      max-width: 365px; }
      .btn_ticket:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_ticket:active {
        background: #ff1a31; }
      .btn_ticket a {
        line-height: 1.4; }
        .btn_ticket a::before, .btn_ticket a::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        .btn_ticket a::before {
          margin-top: calc((1 - 1.4) * 0.5em); }
        .btn_ticket a::after {
          margin-bottom: calc((1 - 1.4) * 0.5em); } }
  .btn_ticket a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 24px;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    @media (max-width: 1280px) {
      .btn_ticket a {
        font-size: 1.875vw;
        letter-spacing: .08em; } }
    @media (max-width: 980px) {
      .btn_ticket a {
        font-size: 2.2448979592vw;
        letter-spacing: .08em; } }
    @media (max-width: 480px) {
      .btn_ticket a {
        padding: 20px 20px 20px 20px;
        font-size: 3.75vw;
        letter-spacing: .08em; } }
    .btn_ticket a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 1.5em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
      @media (max-width: 980px) {
        .btn_ticket a::before {
          top: calc(50%); } }
    .btn_ticket a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_ticket a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_ticket a:hover::before, .btn_ticket a:hover::after {
        right: .5em; }
        @media (max-width: 980px) {
          .btn_ticket a:hover::before, .btn_ticket a:hover::after {
            right: 1.5em; } }
    @media (max-width: 980px) {
      .btn_ticket a:active::before, .btn_ticket a:active::after {
        right: .5em; } }

.btn_Start_gg {
  border: 1px solid #3870e0;
  background: rgba(56, 112, 224, 0.1);
  position: relative;
  margin-top: 30px;
  padding: 0;
  transition: all .3s;
  max-width: 320px; }
  .btn_Start_gg.center {
    margin: 30px auto 0; }
  .btn_Start_gg.en {
    max-width: 560px; }
    @media (max-width: 1280px) {
      .btn_Start_gg.en {
        max-width: 465px; } }
    @media (max-width: 980px) {
      .btn_Start_gg.en {
        max-width: 465px; } }
  .btn_Start_gg:hover {
    background: #3870e0; }
  @media (max-width: 1280px) {
    .btn_Start_gg {
      width: 100%;
      max-width: 385px; } }
  @media (max-width: 980px) {
    .btn_Start_gg {
      margin: 0 auto;
      width: 100%;
      max-width: 365px; }
      .btn_Start_gg:hover {
        background: rgba(56, 112, 224, 0.3); }
      .btn_Start_gg:active {
        background: #ff1a31; }
      .btn_Start_gg a {
        line-height: 1.4; }
        .btn_Start_gg a::before, .btn_Start_gg a::after {
          content: "";
          display: block;
          width: 0;
          height: 0; }
        .btn_Start_gg a::before {
          margin-top: calc((1 - 1.4) * 0.5em); }
        .btn_Start_gg a::after {
          margin-bottom: calc((1 - 1.4) * 0.5em); } }
  .btn_Start_gg a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 24px;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    @media (max-width: 1280px) {
      .btn_Start_gg a {
        font-size: 1.875vw;
        letter-spacing: .08em; } }
    @media (max-width: 980px) {
      .btn_Start_gg a {
        font-size: 2.2448979592vw;
        letter-spacing: .08em; } }
    @media (max-width: 480px) {
      .btn_Start_gg a {
        padding: 20px 20px 20px 20px;
        font-size: 3.75vw;
        letter-spacing: .08em; } }
    .btn_Start_gg a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 1.5em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
      @media (max-width: 980px) {
        .btn_Start_gg a::before {
          top: calc(50%); } }
    .btn_Start_gg a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_Start_gg a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_Start_gg a:hover::before, .btn_Start_gg a:hover::after {
        right: .5em; }
        @media (max-width: 980px) {
          .btn_Start_gg a:hover::before, .btn_Start_gg a:hover::after {
            right: 1.5em; } }
    @media (max-width: 980px) {
      .btn_Start_gg a:active::before, .btn_Start_gg a:active::after {
        right: .5em; } }

.btn_streame {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.1);
  position: relative;
  padding: 0;
  transition: all .3s;
  max-width: 900px; }
  .btn_streame.center {
    margin: 0 auto; }
  .btn_streame:hover {
    background: #ff1a31; }
  @media (max-width: 980px) {
    .btn_streame {
      margin: 0 auto;
      width: 90%; }
      .btn_streame:hover {
        background: rgba(255, 26, 49, 0.3); }
      .btn_streame:active {
        background: #ff1a31; } }
  .btn_streame a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: .05em;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    padding: 20px 20px 20px 30px;
    text-decoration: none;
    transition: all .3s; }
    @media (max-width: 980px) {
      .btn_streame a {
        font-size: 18px;
        letter-spacing: .08em; } }
    .btn_streame a::before {
      content: '';
      position: absolute;
      top: calc(50% - 2px);
      right: 1.5em;
      transform: translateY(calc(-50% - 2px)) rotate(30deg);
      width: 12px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_streame a::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
      width: 50px;
      height: 2px;
      background: #fff;
      transition: all .3s; }
    .btn_streame a:hover {
      text-decoration: none;
      opacity: 1; }
      .btn_streame a:hover::before, .btn_streame a:hover::after {
        right: .5em; }
        @media (max-width: 980px) {
          .btn_streame a:hover::before, .btn_streame a:hover::after {
            right: 1.5em; } }
    @media (max-width: 980px) {
      .btn_streame a {
        padding: 20px 90px 20px 20px; }
        .btn_streame a:active::before, .btn_streame a:active::after {
          right: .5em; } }

.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;
  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: 26vw;
      max-width: 8.5714vw; } }
  @media screen and (max-width: 1400px) {
    .mail_magazine {
      font-size: 1.2857vw;
      right: 26.5vw;
      max-width: 8.5714vw; } }
  @media (max-width: 1280px) {
    .mail_magazine {
      max-height: 38px;
      font-size: 1.40625vw;
      right: 28.5vw;
      max-width: 9.765625vw; } }
  @media screen and (max-width: 1260px) {
    .mail_magazine {
      max-height: 38px;
      font-size: 1.40625vw;
      right: 28.5vw;
      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("https://www.arcsystemworks.jp/awt2024/assets/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%; } }
