@charset "UTF-8";
/*==================================================*/
/* 前提css */
/*==================================================*/
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Koulen&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Road+Rage&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Staatliches&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 */
/*==================================================*/
/*==================================================*/
/*==============================================================*/
/* アニメーション */
/*==============================================================*/
@keyframes bright {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  90% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(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%);
  }
}
@keyframes text_on {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-eff_on {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
.bright {
  animation: bright 1s ease;
  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 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.eary {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(25%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.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 {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ===== 共通 ===== */
.fadeUp,
.fade-block_L,
.fade-block_R {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===== 下から ===== */
.fadeUp {
  transform: translateY(30px);
}

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 左から ===== */
.fade-block_L {
  transform: translateX(-40px);
}

.fade-block_L.is-inview {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 右から ===== */
.fade-block_R {
  transform: translateX(40px);
}

.fade-block_R.is-inview {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 順番表示（自動ディレイ） ===== */
.is-inview:nth-child(1) {
  transition-delay: 0.1s;
}

.is-inview:nth-child(2) {
  transition-delay: 0.2s;
}

.is-inview:nth-child(3) {
  transition-delay: 0.3s;
}

.is-inview:nth-child(4) {
  transition-delay: 0.4s;
}

.is-inview:nth-child(5) {
  transition-delay: 0.5s;
}

h2.cont_ttl {
  height: 4.9479166667vw;
  width: auto;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media (max-width: 1280px) {
  h2.cont_ttl {
    height: 7.421875vw;
  }
}
@media (max-width: 980px) {
  h2.cont_ttl {
    height: 9.693877551vw;
  }
}
h2.cont_ttl > img {
  height: 100% !important;
  width: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
h2.cont_ttl::before {
  content: "";
  background: linear-gradient(90deg, #00a6ff 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 55%, #ff6b00 100%);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -1px auto 0;
  height: 2px;
  width: 100%;
  max-width: 72.9166666667vw;
  text-align: center;
  z-index: 1;
}
@media (max-width: 980px) {
  h2.cont_ttl::before {
    max-width: 90%;
  }
}

/*==================================================*/
/* nav */
/*==================================================*/
#nav {
  position: fixed;
  background: #404539;
  height: 3.125vw;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1280px) {
  #nav {
    height: 4.6875vw;
  }
}
@media (max-width: 980px) {
  #nav {
    background: none;
  }
}
#nav nav {
  box-sizing: border-box;
  padding: 0 2.6041666667vw;
}
@media screen and (max-width: 1580px) {
  #nav nav {
    padding: 0 2.6041666667vw;
  }
}
@media (max-width: 1280px) {
  #nav nav {
    box-sizing: border-box;
    padding: 0 3.90625vw;
  }
}
#nav nav ul {
  height: 3.125vw;
  display: flex;
  align-items: center;
}
@media (max-width: 1280px) {
  #nav nav ul {
    height: 4.6875vw;
  }
}
@media (max-width: 980px) {
  #nav nav ul {
    flex-direction: column;
  }
}
#nav nav ul li {
  font-family: "Anton", sans-serif;
  font-size: 1.3541666667vw;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  #nav nav ul li {
    font-size: 2.03125vw;
  }
}
@media (max-width: 980px) {
  #nav nav ul li {
    font-size: 2.6530612245vw;
    margin-left: 0;
    margin-top: 30px;
    white-space: normal;
  }
  #nav nav ul li:first-child {
    margin-left: 0;
  }
}
#nav nav ul li:nth-child(n+2) {
  margin-left: 1.5625vw;
}
@media (max-width: 1280px) {
  #nav nav ul li:nth-child(n+2) {
    font-size: 2.03125vw;
    margin-left: 2.34375vw;
  }
}
@media (max-width: 980px) {
  #nav nav ul li:nth-child(n+2) {
    font-size: 2.6530612245vw;
    margin-left: 0;
  }
}
#nav nav ul li:nth-last-child(2) {
  margin-left: 0;
  margin-left: auto;
}
@media (max-width: 980px) {
  #nav nav ul li:nth-last-child(2) {
    margin-left: 0;
  }
}
#nav nav ul li.hd_sns_area {
  display: flex;
  align-items: center;
}
#nav nav ul li.hd_sns_area .hd_sns_btn {
  margin-left: auto;
}
@media (max-width: 980px) {
  #nav nav ul li.hd_sns_area .hd_sns_btn {
    margin-left: 0;
    margin: 0 auto;
    height: 100% !important;
    flex-direction: row !important;
  }
}
#nav nav ul li.hd_sns_area .hd_sns_btn li {
  height: 1.8229166667vw;
  width: auto;
  margin: 0;
  padding: 0;
}
@media (max-width: 1280px) {
  #nav nav ul li.hd_sns_area .hd_sns_btn li {
    height: 2.734375vw;
  }
}
@media (max-width: 980px) {
  #nav nav ul li.hd_sns_area .hd_sns_btn li {
    height: 50px;
  }
}
#nav nav ul li.hd_sns_area .hd_sns_btn li:nth-child(n+2) {
  margin-left: 10px;
}
@media (max-width: 980px) {
  #nav nav ul li.hd_sns_area .hd_sns_btn li:nth-child(n+2) {
    margin-left: 20px;
  }
}
#nav nav ul li.hd_sns_area .hd_sns_btn li img {
  height: 100% !important;
  width: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
}
#nav nav ul li a {
  color: #fff;
  transition: all 0.3s;
}
@media (max-width: 980px) {
  #nav nav ul li a {
    color: #fff;
    font-size: 16px;
  }
}
#nav nav ul li a:hover {
  opacity: 0.5;
}
@media (max-width: 980px) {
  #nav nav ul li a:hover {
    opacity: 1;
  }
}
@media (max-width: 980px) {
  #nav nav ul li a:active {
    opacity: 0.5;
  }
}
#nav nav .acd-check {
  display: none;
}
#nav nav .acd-label {
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  display: block;
  /*margin-bottom: 1px;*/
  padding: 10px;
  transition: all 0.3s;
}
#nav nav .acd-label:hover {
  opacity: 0.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 0.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 0.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 0.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 0.3s;
}
#nav nav .acd-content.box p a:hover {
  color: #ff6900;
  opacity: 1;
}
#nav nav .acd-check:checked + .acd-label + .acd-content {
  box-sizing: border-box;
  height: auto;
  opacity: 1;
  padding: 10px 0;
  visibility: visible;
}

@media (max-width: 980px) {
  .openbtn {
    position: absolute; /*ボタン内側の基点となるためrelativeを指定*/
    background: #404539;
    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 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 3px;
    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 {
    background: #ff6b00;
  }
  .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: #404539;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
  }
  .open nav {
    left: 0;
  }
}
@media (max-width: 980px) and (max-width: 480px) {
  .openbtn {
    width: 12.5vw;
    height: 12.5vw;
  }
  .openbtn span:nth-of-type(1) {
    top: 3.75vw;
    width: 45%;
  }
  .openbtn span:nth-of-type(2) {
    top: 5.8333333333vw;
    width: 35%;
  }
  .openbtn span:nth-of-type(3) {
    top: 7.9166666667vw;
    width: 20%;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    left: 6.25vw;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    left: 6.25vw;
  }
}
@media screen and (max-width: 980px) and (max-width: 767px) {
  nav {
    left: -100%;
    width: 100%;
  }
}
.ranking_list {
  position: relative;
}
.ranking_list:hover .ranking-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}
.ranking_list a:hover {
  opacity: 1 !important;
}
.ranking_list a {
  align-items: center;
  color: #fff; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 3.125vw;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
}
@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 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: -moz-max-content;
  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 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}
.awt_list:hover span {
  color: #ff6b00;
  transition: all 0.3s;
}
@media (max-width: 980px) {
  .awt_list:hover span {
    color: #fff;
  }
}
.awt_list a {
  align-items: center;
  color: #404539; /* メニューアイテム内のリンクテキストの色 */
  cursor: pointer;
  display: flex;
  height: 3.125vw;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
}
@media (max-width: 980px) {
  .awt_list a {
    height: auto;
  }
}
.awt_list a::before {
  content: "";
  background: url("../img/icon_arrow.svg");
  background-size: 100%;
  position: absolute;
  right: 1.0416666667vw;
  top: 50%;
  margin-top: -0.5208333333vw;
  height: 1.0416666667vw;
  width: 1.0416666667vw;
}
@media (max-width: 1280px) {
  .awt_list a::before {
    right: 1.5625vw;
    margin-top: -0.78125vw;
    height: 1.5625vw;
    width: 1.5625vw;
  }
}
@media (max-width: 980px) {
  .awt_list a::before {
    display: none;
  }
}
.awt_list a:hover {
  opacity: 1 !important;
}
.awt_list a span {
  transition: all 0.3s;
  background: #fff;
  box-sizing: border-box;
  border-radius: 1.5625vw;
  font-family: "Anton", sans-serif;
  font-size: 1.0416666667vw;
  color: #404539;
  padding: 0.4166666667vw 2.6041666667vw 0.4166666667vw 1.0416666667vw;
}
@media (max-width: 1280px) {
  .awt_list a span {
    font-size: 1.5625vw;
    padding: 0.625vw 3.90625vw 0.625vw 1.5625vw;
  }
}
@media (max-width: 980px) {
  .awt_list a span {
    color: #ff6b00;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .awt_list a span {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .awt_list a span {
    background: none;
    border: 0;
    padding: 0;
  }
}

/* ドロップダウンメニュー */
.awt-menu {
  position: relative;
}
.awt-menu-list {
  background: #ff6b00;
  right: -20px;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  padding: 0.2604166667vw 1.0416666667vw;
  top: 4.1666666667vw;
  transition: opacity 0.3s, visibility 0.3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
}
.awt-menu-list::before {
  content: "";
  position: absolute;
  top: -28px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1280px) {
  .awt-menu-list {
    padding: 0.390625vw 1.5625vw;
    top: 4.6875vw;
  }
}
@media (max-width: 980px) {
  .awt-menu-list {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    margin-top: 10px !important;
    padding-top: 0 !important;
    position: static;
    opacity: 1;
    visibility: visible !important;
  }
}
.awt-menu-list > li {
  box-sizing: border-box;
}
@media (max-width: 1280px) {
  .awt-menu-list > li {
    padding: 0.78125vw 0.78125vw;
  }
}
@media (max-width: 980px) {
  .awt-menu-list > li {
    margin: 0 !important;
    padding: 0;
  }
}
.awt-menu-list > li:nth-child(n+2) {
  margin-left: 1.0416666667vw !important;
}
@media (max-width: 1280px) {
  .awt-menu-list > li:nth-child(n+2) {
    margin-left: 0 !important;
  }
}
@media (max-width: 980px) {
  .awt-menu-list > li:nth-child(n+2) {
    margin: 0 !important;
    margin-left: 20px !important;
    padding: 0 !important;
  }
}
.awt-menu-list > li a {
  color: #111;
  border: 0;
}
@media (max-width: 980px) {
  .awt-menu-list > li a {
    color: #fff !important;
  }
}
.awt-menu-list > li a::before {
  display: none;
}
.awt-menu-list > li a:hover {
  opacity: 0.6 !important;
}
@media (max-width: 980px) {
  .awt-menu-list > li a:hover {
    opacity: 0.6 !important;
  }
}
.awt-menu-list > li a:active {
  color: #111 !important;
}
@media (max-width: 980px) {
  .awt-menu-list > li a:active {
    color: #e4ff00 !important;
  }
}

/*==================================================*/
/* contents */
/*==================================================*/
body {
  background: #fff;
  background-size: cover;
  font-family: "Noto Sans JP", "Koulen", cursive, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  position: relative;
}

header {
  background: url("../img/header_bg.jpg") no-repeat;
  background-position: bottom;
  background-size: contain;
  box-sizing: border-box;
  padding: 4.2708333333vw 0 4.53125vw;
  width: 100%;
}
@media (max-width: 1280px) {
  header {
    padding: 6.40625vw 0 6.796875vw;
  }
}
@media (max-width: 980px) {
  header {
    padding: 14.2857142857vw 0 8.8775510204vw;
  }
}
header h1 {
  margin: 0 auto;
  width: 44.375vw;
  max-width: 550px;
}
@media (max-width: 1280px) {
  header h1 {
    width: 66.5625vw;
  }
}
header h1 > img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
header .header_gamettl {
  margin: 1.6666666667vw auto 3.125vw;
  text-align: center;
  width: 57.2916666667vw;
  max-width: 860px;
}
@media (max-width: 1280px) {
  header .header_gamettl {
    margin: 2.5vw auto 4.6875vw;
    width: 85.9375vw;
  }
}
@media (max-width: 980px) {
  header .header_gamettl {
    margin: 8.1632653061vw auto 4.0816326531vw;
    width: 81.6326530612vw;
  }
}
header .header_txt {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 67.1875vw;
}
@media (max-width: 1280px) {
  header .header_txt {
    max-width: 85.9375vw;
  }
}
@media (max-width: 980px) {
  header .header_txt {
    max-width: 85%;
  }
}

footer {
  box-sizing: border-box;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 4.1666666667vw 0 2.0833333333vw;
}
@media (max-width: 1280px) {
  footer {
    padding: 6.25vw 0 3.125vw;
  }
}
@media (max-width: 980px) {
  footer {
    padding: 6.1224489796vw 0 4.0816326531vw;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 4.0816326531vw 0 2.0408163265vw;
  }
}
footer .company {
  width: 100%;
  max-width: 5.2083333333vw;
}
@media (max-width: 1280px) {
  footer .company {
    max-width: 7.8125vw;
  }
}
@media (max-width: 980px) {
  footer .company {
    max-width: 8.1632653061vw;
  }
}
@media (max-width: 480px) {
  footer .company {
    max-width: 12.5vw;
  }
}
footer .company:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
@media (max-width: 980px) {
  footer .company:hover {
    opacity: 1;
  }
}
footer .company:active {
  transition: all 0.3s;
  opacity: 1;
}
@media (max-width: 980px) {
  footer .company:active {
    opacity: 0.5;
  }
}
footer .copy {
  color: #404539;
  font-size: 0.7291666667vw;
  margin-top: 2.6041666667vw;
  text-align: center;
  line-height: 1.6;
  width: 100%;
}
@media (max-width: 1280px) {
  footer .copy {
    font-size: 1.09375vw;
    margin-top: 3.90625vw;
  }
}
@media (max-width: 980px) {
  footer .copy {
    font-size: 1.4285714286vw;
    margin-top: 3.0612244898vw;
  }
}
@media (max-width: 480px) {
  footer .copy {
    font-size: 12px;
    margin-top: 6.25vw;
  }
}

/*==================================================*/
/* rules */
/*==================================================*/
#rules {
  width: 100%;
}
#rules .rules_area {
  box-sizing: border-box;
  margin-top: 3.6458333333vw;
  padding-bottom: 5.2083333333vw;
}
@media (max-width: 1280px) {
  #rules .rules_area {
    margin-top: 5.46875vw;
    padding-bottom: 7.8125vw;
  }
}
@media (max-width: 980px) {
  #rules .rules_area {
    margin-top: 5.1020408163vw;
    padding-bottom: 8.1632653061vw;
  }
}
@media (max-width: 480px) {
  #rules .rules_area {
    margin-top: 8.3333333333vw;
    padding-bottom: 12.5vw;
  }
}
#rules .rules_area .official_rule {
  margin: 40px auto;
  width: 100%;
  max-width: 34.6875vw;
}
@media (max-width: 1280px) {
  #rules .rules_area .official_rule {
    max-width: 52.03125vw;
  }
}
@media (max-width: 980px) {
  #rules .rules_area .official_rule {
    margin: 4.0816326531vw auto;
    max-width: 67.9591836735vw;
  }
}
@media (max-width: 480px) {
  #rules .rules_area .official_rule {
    margin: 8.3333333333vw auto;
    max-width: 90%;
  }
}
#rules .rules_area p.canvas {
  margin: 0 auto;
  width: 100%;
  max-width: 56.25vw;
}
@media (max-width: 1280px) {
  #rules .rules_area p.canvas {
    max-width: 84.375vw;
  }
}
@media (max-width: 980px) {
  #rules .rules_area p.canvas {
    max-width: 90%;
  }
}
#rules .rules_area .rule_btn {
  display: flex;
  justify-content: center;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn {
    flex-direction: column;
    align-items: center;
    margin-top: auto;
  }
}
#rules .rules_area .rule_btn > .btn_white {
  border: 1px solid #404539;
  background: #fff;
  position: relative;
  padding: 0;
  transition: all 0.3s;
  width: 100%;
  max-width: 350px;
}
#rules .rules_area .rule_btn > .btn_white:nth-child(n+2) {
  margin-left: 30px;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white:nth-child(n+2) {
    margin-left: 0;
    margin: 20px auto 0;
  }
}
#rules .rules_area .rule_btn > .btn_white:hover {
  opacity: 0.6;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white:hover {
    opacity: 0.6;
  }
  #rules .rules_area .rule_btn > .btn_white:active {
    background: #fff;
  }
  #rules .rules_area .rule_btn > .btn_white {
    margin: 0 auto;
    width: 90%;
  }
}
#rules .rules_area .rule_btn > .btn_white > a {
  color: #404539;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  padding: 20px 20px 20px 70px;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white > a {
    font-size: 24px;
    padding: 2.0408163265vw 2.0408163265vw 2.0408163265vw 7.1428571429vw;
  }
}
@media (max-width: 480px) {
  #rules .rules_area .rule_btn > .btn_white > a {
    font-size: 24px;
    padding: 4.1666666667vw 4.1666666667vw 4.1666666667vw 14.5833333333vw;
  }
}
#rules .rules_area .rule_btn > .btn_white > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 80px;
  height: 18px;
  margin-top: -9px;
  background: url("../img/rules/btn_arrow.svg");
  background-size: cover;
  transform: none;
  transition: all 0.3s;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white > a::before {
    width: 8.1632653061vw;
    height: 1.8367346939vw;
    margin-top: -0.9183673469vw;
  }
}
@media (max-width: 480px) {
  #rules .rules_area .rule_btn > .btn_white > a::before {
    width: 16.6666666667vw;
    height: 3.75vw;
    margin-top: -1.875vw;
  }
}
#rules .rules_area .rule_btn > .btn_white > a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  width: 28px;
  height: 30px;
  margin-top: -13px;
  background: url("../img/rules/icon_pdf.svg");
  background-size: cover;
  transform: none;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white > a::after {
    width: 2.8571428571vw;
    height: 3.0612244898vw;
    margin-top: -1.3265306122vw;
  }
}
@media (max-width: 480px) {
  #rules .rules_area .rule_btn > .btn_white > a::after {
    width: 5.8333333333vw;
    height: 6.25vw;
    margin-top: -2.7083333333vw;
  }
}
#rules .rules_area .rule_btn > .btn_white > a:hover {
  text-decoration: none;
  opacity: 1;
}
#rules .rules_area .rule_btn > .btn_white > a:hover::before {
  right: 1em;
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white > a:hover::before {
    right: 1.5em;
  }
}
@media (max-width: 980px) {
  #rules .rules_area .rule_btn > .btn_white > a:active::before {
    right: 1em;
  }
}

.rules_notice {
  text-align: center;
  font-size: 26px;
  margin-top: 60px;
  margin-bottom: 60px;
  font-weight: bold;
  padding: 0 20px;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .rules_notice {
    font-size: 2.03125vw;
    margin-top: 4.6875vw;
    margin-bottom: 4.6875vw;
  }
}
@media (max-width: 980px) {
  .rules_notice {
    font-size: 2.6530612245vw;
    margin-top: 6.1224489796vw;
    margin-bottom: 6.1224489796vw;
  }
}
@media (max-width: 480px) {
  .rules_notice {
    font-size: 5.4166666667vw;
    margin-top: 12.5vw;
    margin-bottom: 12.5vw;
  }
}

/*==================================================*/
/* sched-tour */
/*==================================================*/
#sched-tour {
  box-sizing: border-box;
  width: 100%;
  padding-top: 0;
  position: relative;
}
#sched-tour::before {
  content: "";
  position: absolute;
  background-image: url(../img/paper_bg.jpg);
  bottom: -13.4895833333vw;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media (max-width: 1280px) {
  #sched-tour::before {
    bottom: -12.5vw;
    height: 86%;
  }
}
@media (max-width: 980px) {
  #sched-tour::before {
    bottom: -12.2448979592vw;
    height: 91%;
  }
}
@media (max-width: 480px) {
  #sched-tour::before {
    bottom: -12.2448979592vw;
  }
}
@media (max-width: 1280px) {
  #sched-tour {
    padding-top: 9.375vw;
    padding-bottom: 9.375vw;
  }
}
@media (max-width: 980px) {
  #sched-tour {
    padding-top: 10.2040816327vw;
    padding-bottom: 10.2040816327vw;
  }
}
#sched-tour > .btn_schedule {
  margin: 4.1666666667vw auto 5.2083333333vw;
}
@media (max-width: 1280px) {
  #sched-tour > .btn_schedule {
    margin: 6.25vw auto 7.8125vw;
  }
}
@media (max-width: 980px) {
  #sched-tour > .btn_schedule {
    margin: 6.1224489796vw auto 8.1632653061vw;
  }
}
@media (max-width: 480px) {
  #sched-tour > .btn_schedule {
    margin: 8.3333333333vw auto 12.5vw;
  }
}
#sched-tour .sched-tour_area {
  box-sizing: border-box;
  width: 62.5vw;
  margin: 0 auto;
  padding-bottom: 6.25vw;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.6458333333vw;
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area {
    width: 82.1875vw;
    margin-top: 5.46875vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area {
    margin-top: 5.1020408163vw;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area {
    margin-top: 8.3333333333vw;
  }
}
#sched-tour .sched-tour_area dl {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 6.25vw auto;
  width: 44%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl {
    width: 100%;
  }
}
#sched-tour .sched-tour_area dl div {
  width: 100%;
  max-width: 26.7708333333vw;
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area dl div {
    max-width: 34.21875vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area dl div {
    max-width: 52.4489795918vw;
    margin: 0 auto 6.1224489796vw auto;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl div {
    max-width: 58.3333333333vw;
  }
}
#sched-tour .sched-tour_area dl div dt {
  border: 3px solid #c49245;
  width: 100%;
  box-sizing: border-box;
}
#sched-tour .sched-tour_area dl div dd.tour_ttl {
  display: flex;
  align-items: center;
  color: #404539;
  font-family: "Anton", sans-serif;
  font-size: 2.0833333333vw;
  margin-top: 0.7291666667vw;
  flex-direction: column;
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area dl div dd.tour_ttl {
    font-size: 3.125vw;
    margin-top: 1.40625vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area dl div dd.tour_ttl {
    font-size: 4.0816326531vw;
    margin-top: 1.8367346939vw;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl div dd.tour_ttl {
    font-size: 20px;
  }
}
#sched-tour .sched-tour_area dl div dd.tour_ttl span {
  display: inline-block;
  box-sizing: border-box;
  background: #ff6b00;
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 1.875vw;
  padding: 0.625vw;
  width: 100%;
  text-align: center;
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area dl div dd.tour_ttl span {
    font-size: 2.8125vw;
    padding: 0.9375vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area dl div dd.tour_ttl span {
    font-size: 3.6734693878vw;
    padding: 1.2244897959vw;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl div dd.tour_ttl span {
    display: block;
    font-size: 20px;
    margin-right: 0;
    padding: 2.0833333333vw 4.1666666667vw;
  }
}
#sched-tour .sched-tour_area dl div dd.tour_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3541666667vw;
  margin-top: 1.3020833333vw;
  text-align: center;
  line-height: 1.4;
  color: #404539;
}
#sched-tour .sched-tour_area dl div dd.tour_txt::before, #sched-tour .sched-tour_area dl div dd.tour_txt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#sched-tour .sched-tour_area dl div dd.tour_txt::before {
  margin-top: calc((1 - 1.4) * 0.5em);
}
#sched-tour .sched-tour_area dl div dd.tour_txt::after {
  margin-bottom: calc((1 - 1.4) * 0.5em);
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area dl div dd.tour_txt {
    font-size: 2.03125vw;
    margin-top: 1.953125vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area dl div dd.tour_txt {
    font-size: 2.6530612245vw;
    margin-top: 2.5510204082vw;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl div dd.tour_txt {
    font-size: 16px;
    margin-top: 15px;
  }
}
#sched-tour .sched-tour_area dl div dd.tour_txt span {
  font-weight: bold;
}
#sched-tour .sched-tour_area dl div dd.tour_txt span.platinum {
  color: #8957a1;
}
#sched-tour .sched-tour_area dl div dd.tour_info {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3541666667vw;
  font-weight: bold;
  margin-top: 1.0416666667vw;
  line-height: 1.4;
  color: #404539;
}
#sched-tour .sched-tour_area dl div dd.tour_info::before, #sched-tour .sched-tour_area dl div dd.tour_info::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#sched-tour .sched-tour_area dl div dd.tour_info::before {
  margin-top: calc((1 - 1.4) * 0.5em);
}
#sched-tour .sched-tour_area dl div dd.tour_info::after {
  margin-bottom: calc((1 - 1.4) * 0.5em);
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area dl div dd.tour_info {
    font-size: 2.03125vw;
    margin-top: 1.953125vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area dl div dd.tour_info {
    font-size: 2.6530612245vw;
    margin-top: 2.5510204082vw;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl div dd.tour_info {
    font-size: 16px;
    margin-top: 15px;
  }
}
#sched-tour .sched-tour_area dl div dd.tour_info .border {
  font-family: "Anton", sans-serif;
  color: #fff;
  background-color: #404539;
  padding: 0.3645833333vw 0.5208333333vw;
  display: inline-block;
  margin-right: 0.5208333333vw;
  font-weight: 100;
  width: 5.46875vw;
  text-align: center;
}
@media (max-width: 1280px) {
  #sched-tour .sched-tour_area dl div dd.tour_info .border {
    font-size: 2.03125vw;
    width: 8.203125vw;
    margin-right: 0.78125vw;
  }
}
@media (max-width: 980px) {
  #sched-tour .sched-tour_area dl div dd.tour_info .border {
    font-size: 2.6530612245vw;
    width: 10.7142857143vw;
    margin-right: 1.0204081633vw;
  }
}
@media (max-width: 480px) {
  #sched-tour .sched-tour_area dl div dd.tour_info .border {
    font-size: 16px;
    width: 90px;
    margin-right: 10px;
  }
}

.sched_link {
  transition: 0.3s ease;
  display: block;
}
.sched_link:hover {
  transform: translateY(-10px);
}

/*==================================================*/
/* finalist */
/*==================================================*/
#finalist {
  background-color: #fff;
  box-sizing: border-box;
  padding-top: 6.25vw;
  width: 100%;
}
@media (max-width: 1280px) {
  #finalist {
    padding-top: 9.375vw;
  }
}
@media (max-width: 980px) {
  #finalist {
    padding-top: 10.2040816327vw;
  }
}
#finalist .finalist_area {
  /*background: linear-gradient( to bottom, #000 40%, #fff 40%);*/
  box-sizing: border-box;
  width: 100%;
}
#finalist .finalist_area ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 80px auto 0;
  width: 100%;
  max-width: 72.9166666667vw;
}
@media (max-width: 1280px) {
  #finalist .finalist_area ol {
    max-width: 109.375vw;
  }
}
@media (max-width: 980px) {
  #finalist .finalist_area ol {
    margin-top: 40px;
    max-width: 90%;
  }
}
#finalist .finalist_area ol li {
  border: 1px solid #111;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 34.6875vw;
}
@media (max-width: 1280px) {
  #finalist .finalist_area ol li {
    max-width: 52.03125vw;
  }
}
@media (max-width: 980px) {
  #finalist .finalist_area ol li {
    max-width: 67.9591836735vw;
  }
}
@media (max-width: 480px) {
  #finalist .finalist_area ol li {
    max-width: 90%;
  }
}

/*==================================================*/
/* lower */
/*==================================================*/
.lower {
  background: #000;
  background-image: url("../img/schedule/header_bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top;
  background-size: 100%;
  height: 100%;
  width: 100%;
}
.lower header {
  display: none;
}
.lower > #sched-tour {
  box-sizing: border-box;
  padding: 9.375vw 0 5.2083333333vw;
}
@media (max-width: 1280px) {
  .lower > #sched-tour {
    padding: 14.0625vw 0 7.8125vw;
  }
}
.lower > #sched-tour > .sched-tour_txt {
  margin: 0 auto;
  text-align: center;
}
.lower > #sched-tour > .sched-tour_txt > span {
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  margin: 50px auto 40px;
  padding: 20px;
  text-align: center;
}
.lower > #sched-tour > .sched-tour_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 1280px) {
  .lower > #sched-tour > .sched-tour_wrap {
    max-width: 85.9375vw;
  }
}
@media (max-width: 980px) {
  .lower > #sched-tour > .sched-tour_wrap {
    overflow-x: visible;
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .lower > #sched-tour > .sched-tour_wrap {
    margin-right: 0;
  }
}
.lower > #sched-tour > .sched-tour_wrap_test {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 1280px) {
  .lower > #sched-tour > .sched-tour_wrap_test {
    max-width: 85.9375vw;
  }
}
@media (max-width: 980px) {
  .lower > #sched-tour > .sched-tour_wrap_test {
    overflow-x: visible;
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .lower > #sched-tour > .sched-tour_wrap_test {
    margin-right: 0;
  }
}
.lower > #sched-tour .sched-tour_list {
  margin-top: -0.5em;
  margin-left: -1em;
  border-spacing: 1em 0.5em;
  border-collapse: separate;
  width: 1100px;
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list {
    width: 1100px;
  }
}
.lower > #sched-tour .sched-tour_list td, .lower > #sched-tour .sched-tour_list th {
  white-space: nowrap;
}
.lower > #sched-tour .sched-tour_list th {
  background: #e4ff00;
  box-sizing: border-box;
  color: #1b1b1b;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}
.lower > #sched-tour .sched-tour_list th:first-child {
  background: none;
  width: 70px;
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list th:first-child {
    width: 40px;
  }
}
.lower > #sched-tour .sched-tour_list th:nth-child(2) {
  width: 440px;
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list th:nth-child(2) {
    width: 360px;
  }
}
.lower > #sched-tour .sched-tour_list th:nth-child(3) {
  background: #1b1b1b;
  color: #e4ff00;
  width: 200px;
}
.lower > #sched-tour .sched-tour_list th:last-child {
  width: 220px;
}
.lower > #sched-tour .sched-tour_list td {
  box-sizing: border-box;
  color: #fff;
  font-family: "Anton", sans-serif;
  vertical-align: middle;
}
.lower > #sched-tour .sched-tour_list td.tournament_name a {
  margin-bottom: 8px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}
.lower > #sched-tour .sched-tour_list td.tournament_name a:hover {
  transition: all 0.3s;
  color: #e4ff00;
  text-decoration: underline;
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list td.tournament_name a:hover {
    color: #fff;
    text-decoration: none;
  }
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list td.tournament_name a {
    color: #fff;
  }
  .lower > #sched-tour .sched-tour_list td.tournament_name a:active {
    transition: all 0.3s;
    color: #e4ff00;
    text-decoration: underline;
  }
}
.lower > #sched-tour .sched-tour_list td.tournament_name a.nolink:hover {
  color: #fff;
  text-decoration: none;
}
.lower > #sched-tour .sched-tour_list td.tournament_name > span {
  display: flex;
  flex-direction: column;
  position: relative;
}
.lower > #sched-tour .sched-tour_list td.tournament_name > span.premium_plus::after {
  content: "Platinum+";
  color: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  background: #8957a1;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 20px;
  width: -moz-min-content;
  width: min-content;
  /*margin-top: -15px;
  position: absolute;
  right: -125px;
  top: 50%;*/
}
.lower > #sched-tour .sched-tour_list td.tournament_name > span.premium::after {
  content: "Platinum";
  color: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  background: #8957a1;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 20px;
  width: -moz-min-content;
  width: min-content;
  /*margin-top: -15px;
  position: absolute;
  right: -115px;
  top: 50%;*/
}
.lower > #sched-tour .sched-tour_list td.tournament_name > span.gold::after {
  content: "Gold";
  color: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  background: #ff6900;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 20px;
  width: -moz-min-content;
  width: min-content;
  /*margin-top: -15px;
  position: absolute;
  right: -85px;
  top: 50%;*/
}
.lower > #sched-tour .sched-tour_list td.tournament_name > span.gold_plus::after {
  content: "Gold+";
  color: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  background: #ff6900;
  border-radius: 30px;
  display: flex;
  padding: 5px 20px;
  width: -moz-min-content;
  width: min-content;
  /*margin-top: -15px;
  position: absolute;
  right: -90px;
  top: 50%;*/
}
.lower > #sched-tour .sched-tour_list td:first-child {
  background: rgba(27, 27, 27, 0.4);
}
.lower > #sched-tour .sched-tour_list td:nth-child(2) {
  font-size: 1.7708333333vw;
}
@media (max-width: 1280px) {
  .lower > #sched-tour .sched-tour_list td:nth-child(2) {
    font-size: 2.65625vw;
  }
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list td:nth-child(2) {
    font-size: 26px;
  }
}
.lower > #sched-tour .sched-tour_list td:nth-child(3), .lower > #sched-tour .sched-tour_list td:nth-child(4) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list td:nth-child(3), .lower > #sched-tour .sched-tour_list td:nth-child(4) {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .lower > #sched-tour .sched-tour_list.set, .lower > #sched-tour .sched-tour_list.test {
    border-spacing: 0.4em 0.5em;
    width: 100% !important;
  }
  .lower > #sched-tour .sched-tour_list.set td,
  .lower > #sched-tour .sched-tour_list.set th, .lower > #sched-tour .sched-tour_list.test td,
  .lower > #sched-tour .sched-tour_list.test th {
    white-space: normal !important;
  }
  .lower > #sched-tour .sched-tour_list.set th:first-child, .lower > #sched-tour .sched-tour_list.test th:first-child {
    width: 7%;
  }
  .lower > #sched-tour .sched-tour_list.set th:nth-child(2), .lower > #sched-tour .sched-tour_list.set th:nth-child(3), .lower > #sched-tour .sched-tour_list.set th:last-child, .lower > #sched-tour .sched-tour_list.test th:nth-child(2), .lower > #sched-tour .sched-tour_list.test th:nth-child(3), .lower > #sched-tour .sched-tour_list.test th:last-child {
    vertical-align: middle;
    font-size: 1.6326530612vw;
    width: auto !important;
  }
  .lower > #sched-tour .sched-tour_list.set td.tournament_name a, .lower > #sched-tour .sched-tour_list.test td.tournament_name a {
    margin-bottom: 0.8163265306vw;
  }
  .lower > #sched-tour .sched-tour_list.set td.tournament_name > span.premium_plus::after, .lower > #sched-tour .sched-tour_list.test td.tournament_name > span.premium_plus::after {
    content: "Platinum+";
    font-size: 1.4285714286vw !important;
    border-radius: 3.0612244898vw;
    padding: 0.5102040816vw 2.0408163265vw;
  }
  .lower > #sched-tour .sched-tour_list.set td.tournament_name > span.premium::after, .lower > #sched-tour .sched-tour_list.test td.tournament_name > span.premium::after {
    content: "Platinum";
    font-size: 1.4285714286vw !important;
    border-radius: 3.0612244898vw;
    padding: 0.5102040816vw 2.0408163265vw;
  }
  .lower > #sched-tour .sched-tour_list.set td.tournament_name > span.gold::after, .lower > #sched-tour .sched-tour_list.test td.tournament_name > span.gold::after {
    content: "Gold";
    font-size: 1.4285714286vw !important;
    border-radius: 3.0612244898vw;
    padding: 0.5102040816vw 2.0408163265vw;
  }
  .lower > #sched-tour .sched-tour_list.set td.tournament_name > span.gold_plus::after, .lower > #sched-tour .sched-tour_list.test td.tournament_name > span.gold_plus::after {
    content: "Gold+";
    font-size: 1.4285714286vw !important;
    border-radius: 3.0612244898vw;
    padding: 0.5102040816vw 2.0408163265vw;
  }
  .lower > #sched-tour .sched-tour_list.set td:nth-child(2), .lower > #sched-tour .sched-tour_list.test td:nth-child(2) {
    font-size: 2.6530612245vw;
  }
  .lower > #sched-tour .sched-tour_list.set td:nth-child(3), .lower > #sched-tour .sched-tour_list.set td:nth-child(4), .lower > #sched-tour .sched-tour_list.test td:nth-child(3), .lower > #sched-tour .sched-tour_list.test td:nth-child(4) {
    font-size: 1.8367346939vw;
  }
}
.lower > #ranking {
  box-sizing: border-box;
  padding: 9.375vw 0 5.2083333333vw;
}
@media (max-width: 1280px) {
  .lower > #ranking {
    padding: 14.0625vw 0 7.8125vw;
  }
}
.lower > #ranking .ranking_inr {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 980px) {
  .lower > #ranking .ranking_inr {
    flex-direction: column;
  }
}
.lower > #ranking .ranking_ggst {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 3.125vw 1.0416666667vw 3.125vw;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .lower > #ranking .ranking_ggst {
    padding: 4.6875vw 1.5625vw 4.6875vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .ranking_ggst {
    margin-left: 0;
    margin: 0 auto;
    margin-top: 3.0612244898vw;
    padding: 6.1224489796vw 2.0408163265vw 6.1224489796vw;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .ranking_ggst {
    margin: 0 auto;
    margin-top: 8.3333333333vw;
    padding: 8.3333333333vw 4.1666666667vw 8.3333333333vw;
  }
}
.lower > #ranking .ranking_txt {
  color: #fff;
  margin: 20px auto 0;
  text-align: left;
  line-height: 1.8;
}
.lower > #ranking .ranking_txt::before, .lower > #ranking .ranking_txt::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.lower > #ranking .ranking_txt::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.lower > #ranking .ranking_txt::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.lower > #ranking .ranking_txt {
  width: 100%;
  max-width: 46.875vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .ranking_txt {
    max-width: 70.3125vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .ranking_txt {
    font-size: 1.6326530612vw;
    max-width: 61.2244897959vw;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .ranking_txt {
    font-size: 3.3333333333vw;
    max-width: 100%;
  }
}
.lower > #ranking .point_area {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 1.5625vw auto 0;
  width: 100%;
  max-width: 46.875vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area {
    margin: 2.34375vw auto 0;
    max-width: 70.3125vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area {
    margin: 3.0612244898vw auto 0;
    max-width: 61.2244897959vw;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area {
    margin: 6.25vw auto 0;
    max-width: 100%;
  }
}
.lower > #ranking .point_area tr.tq td {
  border-top: 5px solid #000;
  border-bottom: 5px solid transparent;
}
.lower > #ranking .point_area tr.tq td.rank, .lower > #ranking .point_area tr.tq td.point, .lower > #ranking .point_area tr.tq td.name {
  background: rgba(208, 0, 8, 0.5);
  border-bottom: 5px solid transparent !important;
}
.lower > #ranking .point_area tr.tq.gbvsr:nth-child(n+3), .lower > #ranking .point_area tr.tq.ggst:nth-child(n+3) {
  border-top: 6px solid #000 !important;
}
.lower > #ranking .point_area tr.tq.gbvsr td.name, .lower > #ranking .point_area tr.tq.ggst td.name {
  background: rgba(208, 0, 8, 0.5);
  border-bottom: 2px solid #111;
}
.lower > #ranking .point_area tr.tq.gbvsr td.rank_two, .lower > #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) {
  .lower > #ranking .point_area tr.tq.gbvsr td.rank_two, .lower > #ranking .point_area tr.tq.ggst td.rank_two {
    width: 31.25vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr.tq.gbvsr td.rank_two, .lower > #ranking .point_area tr.tq.ggst td.rank_two {
    width: 40.8163265306vw;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr.tq.gbvsr td.rank_two, .lower > #ranking .point_area tr.tq.ggst td.rank_two {
    width: 83.3333333333vw;
  }
}
.lower > #ranking .point_area tr.ptq {
  color: #ffff00 !important;
}
.lower > #ranking .point_area tr th {
  background: #111;
  box-sizing: border-box;
  font-size: 1.0416666667vw;
  padding: 0.9375vw 0;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr th {
    font-size: 1.5625vw;
    padding: 1.40625vw 0;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr th {
    font-size: 2.0408163265vw;
    padding: 1.8367346939vw 0;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr th {
    font-size: 4.1666666667vw;
    padding: 3.75vw 0;
  }
}
.lower > #ranking .point_area tr th.rank {
  width: 5.2083333333vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr th.rank {
    width: 7.8125vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr th.rank {
    width: 25%;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr th.rank {
    width: 25%;
  }
}
.lower > #ranking .point_area tr th.point {
  background: #222;
  margin: 0 5px;
  border-left: 5px solid #000;
  border-right: 5px solid #000;
  width: 5.2083333333vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr th.point {
    width: 7.8125vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr th.point {
    width: 25%;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr th.point {
    width: 25%;
  }
}
.lower > #ranking .point_area tr th.name {
  box-sizing: border-box;
  padding-left: 0.5208333333vw;
  padding-right: 0.5208333333vw;
  width: 36.4583333333vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr th.name {
    padding-left: 0.78125vw;
    padding-right: 0.78125vw;
    width: 46.875vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr th.name {
    padding-left: 1.0204081633vw;
    padding-right: 1.0204081633vw;
    width: 50%;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr th.name {
    padding-left: 2.0833333333vw;
    padding-right: 2.0833333333vw;
    width: 50%;
  }
}
.lower > #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) {
  .lower > #ranking .point_area tr td {
    font-size: 1.40625vw;
    padding: 1.5625vw 0;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr td {
    font-size: 1.8367346939vw;
    padding: 2.0408163265vw 0;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr td {
    font-size: 3.75vw;
    padding: 4.1666666667vw 0;
  }
}
.lower > #ranking .point_area tr td.rank {
  width: 10.4166666667vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr td.rank {
    width: 15.625vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr td.rank {
    width: 20.4081632653vw;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr td.rank {
    width: 41.6666666667vw;
  }
}
.lower > #ranking .point_area tr td.point {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 10.4166666667vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr td.point {
    width: 15.625vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr td.point {
    width: 20.4081632653vw;
  }
}
@media (max-width: 480px) {
  .lower > #ranking .point_area tr td.point {
    width: 41.6666666667vw;
  }
}
.lower > #ranking .point_area tr td.name {
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
  text-align: left;
  width: 26.0416666667vw;
}
@media (max-width: 1280px) {
  .lower > #ranking .point_area tr td.name {
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
    width: 39.0625vw;
  }
}
@media (max-width: 980px) {
  .lower > #ranking .point_area tr td.name {
    padding-left: 2.0408163265vw;
    padding-right: 2.0408163265vw;
    width: 51.0204081633vw;
  }
}
@media (max-width: 480px) {
  .lower > #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 0.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: 0.6;
  transition: all 0.3s;
}
@media (max-width: 980px) {
  .remodal_close:hover {
    opacity: 1;
  }
}
@media (max-width: 980px) {
  .remodal_close:active {
    opacity: 0.6;
    transition: all 0.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 0.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 0.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.center {
  margin: 0 auto;
}
.btn_org.center.top {
  margin-top: 50px;
}
@media (max-width: 980px) {
  .btn_org.center.top {
    margin-top: 30px;
  }
}
.btn_org {
  border: 1px solid #ff6900;
  background: rgba(255, 105, 0, 0.3);
  position: relative;
  padding: 0;
  transition: all 0.3s;
  max-width: 380px;
}
.btn_org:hover {
  background: rgb(255, 105, 0);
}
@media (max-width: 980px) {
  .btn_org:hover {
    background: rgba(255, 105, 0, 0.3);
  }
  .btn_org:active {
    background: #ff6900;
  }
  .btn_org {
    margin: 0 auto;
    width: 90%;
  }
}
.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 0.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 0.3s;
}
.btn_org a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
  transition: all 0.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.center {
  margin: 0 auto;
}
.btn_red {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.3);
  position: relative;
  padding: 0;
  transition: all 0.3s;
  max-width: 280px;
}
.btn_red:hover {
  background: rgb(255, 26, 49);
}
@media (max-width: 980px) {
  .btn_red:hover {
    background: rgba(255, 26, 49, 0.3);
  }
  .btn_red:active {
    background: #ff1a31;
  }
  .btn_red {
    margin: 0 auto;
    width: 90%;
  }
}
.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 0.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 0.3s;
}
.btn_red a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
  transition: all 0.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: 0.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 0.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 0.3s;
}
.btn_red.off a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
  transition: all 0.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.center {
  margin: 0 auto;
}
.btn_twitch {
  border: 1px solid #6441a5;
  background: rgba(100, 65, 165, 0.3);
  position: relative;
  padding: 0;
  transition: all 0.3s;
  max-width: 280px;
}
.btn_twitch:hover {
  background: rgb(100, 65, 165);
}
@media (max-width: 980px) {
  .btn_twitch:hover {
    background: rgba(100, 65, 165, 0.3);
  }
  .btn_twitch:active {
    background: #6441a5;
  }
  .btn_twitch {
    margin: 0 auto;
    width: 90%;
  }
}
.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 0.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 0.3s;
}
.btn_twitch a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
  transition: all 0.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.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 {
  border: 1px solid #ff1a31;
  background: rgba(255, 26, 49, 0.1);
  position: relative;
  padding: 0;
  transition: all 0.3s;
  max-width: 480px;
}
.btn_ticket:hover {
  background: rgb(255, 26, 49);
}
@media (max-width: 1280px) {
  .btn_ticket {
    width: 100%;
    max-width: 385px;
  }
}
@media (max-width: 980px) {
  .btn_ticket:hover {
    background: rgba(255, 26, 49, 0.3);
  }
  .btn_ticket:active {
    background: #ff1a31;
  }
  .btn_ticket {
    margin: 0 auto;
    width: 100%;
    max-width: 365px;
  }
  .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: 0.05em;
  font-weight: 700;
  position: relative;
  margin: 0 auto;
  padding: 20px 20px 20px 30px;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .btn_ticket a {
    font-size: 1.875vw;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 980px) {
  .btn_ticket a {
    font-size: 2.2448979592vw;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 480px) {
  .btn_ticket a {
    padding: 20px 20px 20px 20px;
    font-size: 3.75vw;
    letter-spacing: 0.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 0.3s;
}
@media (max-width: 980px) {
  .btn_ticket a::before {
    top: 50%;
  }
}
.btn_ticket a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.btn_ticket a:hover {
  text-decoration: none;
  opacity: 1;
}
.btn_ticket a:hover::before, .btn_ticket a:hover::after {
  right: 0.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: 0.5em;
  }
}

.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 {
  border: 1px solid #3870e0;
  background: rgba(56, 112, 224, 0.1);
  position: relative;
  margin-top: 30px;
  padding: 0;
  transition: all 0.3s;
  max-width: 320px;
}
.btn_Start_gg:hover {
  background: rgb(56, 112, 224);
}
@media (max-width: 1280px) {
  .btn_Start_gg {
    width: 100%;
    max-width: 385px;
  }
}
@media (max-width: 980px) {
  .btn_Start_gg:hover {
    background: rgba(56, 112, 224, 0.3);
  }
  .btn_Start_gg:active {
    background: #ff1a31;
  }
  .btn_Start_gg {
    margin: 0 auto;
    width: 100%;
    max-width: 365px;
  }
  .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: 0.05em;
  font-weight: 700;
  position: relative;
  margin: 0 auto;
  padding: 20px 20px 20px 30px;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .btn_Start_gg a {
    font-size: 1.875vw;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 980px) {
  .btn_Start_gg a {
    font-size: 2.2448979592vw;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 480px) {
  .btn_Start_gg a {
    padding: 20px 20px 20px 20px;
    font-size: 3.75vw;
    letter-spacing: 0.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 0.3s;
}
@media (max-width: 980px) {
  .btn_Start_gg a::before {
    top: 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 0.3s;
}
.btn_Start_gg a:hover {
  text-decoration: none;
  opacity: 1;
}
.btn_Start_gg a:hover::before, .btn_Start_gg a:hover::after {
  right: 0.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: 0.5em;
  }
}

.btn_schedule {
  margin: 4.1666666667vw auto 5.2083333333vw;
}
@media (max-width: 1280px) {
  .btn_schedule {
    margin: 6.25vw auto 7.8125vw;
  }
}
@media (max-width: 980px) {
  .btn_schedule {
    margin: 6.1224489796vw auto 8.1632653061vw;
  }
}
@media (max-width: 480px) {
  .btn_schedule {
    margin: 8.3333333333vw auto 12.5vw;
  }
}
.btn_schedule.center {
  margin: 0 auto;
}
.btn_schedule {
  border: 2px solid #222;
  background: rgba(34, 34, 34, 0.6);
  position: relative;
  padding: 0;
  transition: all 0.3s;
  max-width: 650px;
}
.btn_schedule:hover {
  background: #e4ff00;
}
@media (max-width: 980px) {
  .btn_schedule:hover {
    background: rgba(34, 34, 34, 0.6);
  }
  .btn_schedule:active {
    background: #e4ff00;
  }
  .btn_schedule {
    margin: 0 auto;
    width: 90%;
  }
}
.btn_schedule a {
  color: #e4ff00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  font-size: 32px;
  font-family: "Staatliches", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  margin: 0 auto;
  padding: 20px 20px 20px 40px;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .btn_schedule a {
    font-size: 32px;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 980px) {
  .btn_schedule a {
    font-size: 23px;
    letter-spacing: 0.08em;
  }
}
.btn_schedule a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  margin-top: -0.6770833333vw;
  width: 7.8125vw;
  height: 0.9375vw;
  background-image: url("../img/schedule/btn_arrow.svg");
  background-size: cover;
  transition: all 0.3s;
}
@media (max-width: 1280px) {
  .btn_schedule a::before {
    margin-top: -1.015625vw;
    width: 11.71875vw;
    height: 1.40625vw;
  }
}
@media (max-width: 980px) {
  .btn_schedule a::before {
    background-image: url("../img/schedule/btn_arrow_sp.svg");
    margin-top: -6px;
    width: 50px;
    height: 11px;
  }
}
.btn_schedule a:hover {
  color: #222;
  text-decoration: none;
  opacity: 1;
}
.btn_schedule a:hover::before, .btn_schedule a:hover::after {
  background-image: url("../img/schedule/btn_arrow_gray.svg");
  right: 0.5em;
}
@media (max-width: 980px) {
  .btn_schedule a:hover::before, .btn_schedule a:hover::after {
    background-image: url("../img/schedule/btn_arrow_sp.svg");
    right: 1.5em;
  }
}
@media (max-width: 980px) {
  .btn_schedule a {
    padding: 20px 90px 20px 20px;
  }
  .btn_schedule a:active {
    color: #222;
  }
  .btn_schedule a:active::before, .btn_schedule a:active::after {
    color: #e4ff00;
    background-image: url("../img/schedule/btn_arrow_gray.svg");
    right: 1.5em;
  }
}

/*==================================================*/
/* @keyframes */
/*==================================================*/
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes equalizer01 {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
@keyframes equalizer02 {
  0% {
    width: 30%;
  }
  10% {
    width: 20%;
  }
  20% {
    width: 40%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 20%;
  }
  50% {
    width: 30%;
  }
  60% {
    width: 20%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 40%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 30%;
  }
}/*# sourceMappingURL=style.css.map */