body {
  background: #002823;
  background: url(../img/bg.gif) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.scroll_inner {
  -webkit-transition: 1000ms -webkit-transform;
  transition: 1000ms -webkit-transform;
  transition: 1000ms transform;
  transition: 1000ms transform, 1000ms -webkit-transform;
  overflow: hidden;
}

.key_visual {
  position: relative;
  padding-top: 85px;
  min-height: 80svh;
  padding-bottom: 100px;
}
.key_visual .menu {
  position: absolute;
  left: 0;
  top: 100;
  width: 250px;
}
.key_visual .result {
  width: calc(100% - 250px);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .key_visual {
    padding-top: 0px;
  }
  .key_visual .menu {
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100svh;
    padding-top: 100px;
    background-color: rgba(0, 40, 35, 0.8);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
  .key_visual .menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(10px);
  }
  .key_visual .result {
    width: 100%;
  }
}
.key_visual .credit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  color: #FFF;
  font-size: 9px;
}
@media screen and (max-width: 768px) {
  .key_visual .credit {
    font-size: 1.5vw;
  }
}

.cartain {
  display: none;
}
@media screen and (max-width: 768px) {
  .cartain {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: blue;
    opacity: 0.5;
    z-index: 1;
  }
}

.menu ul {
  width: 90%;
  margin: 0 auto;
}
.menu ul li {
  color: #ebebe6;
  font-size: 10px !important;
  cursor: pointer;
}
.menu ul li.disable {
  pointer-events: none;
  color: #888;
}
.menu .ui {
  padding-left: 1.5em;
  display: none;
}
.menu .ui.active {
  display: block;
}
.menu .ui li {
  font-size: 14px !important;
  margin-bottom: 10px;
  position: relative;
}
.menu .ui li.active {
  font-weight: bold;
  color: #ffc300;
}
.menu .ui li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: -1.2em;
  top: 6px;
  background: url(../img/r_arrow.svg) no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .menu .ui {
    padding-left: 0;
    position: absolute;
    left: 0;
    bottom: 75px;
    width: 100%;
    max-height: calc(100% - 75px - 60px);
    overflow-y: auto;
    z-index: 2;
  }
  .menu .ui li {
    font-size: 14px !important;
    font-weight: 200;
    letter-spacing: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5em 1.5em;
    width: 80%;
    margin: 0px auto 6px;
    border-radius: 30px;
  }
  .menu .ui li::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 1.2em;
    top: 50%;
    left: auto;
    background: url(../img/r_arrow_w.svg) no-repeat center;
    background-size: contain;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
}
.menu .selector {
  border: #00d2dc solid 1px;
  border-radius: 100px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  margin-bottom: 15px;
}
.menu .selector li {
  width: 50%;
  padding: 0.5em 1em;
  text-align: center;
  cursor: pointer;
}
.menu .selector li.active {
  color: #002823;
  background-color: #ebebe6;
}
@media screen and (max-width: 768px) {
  .menu .selector {
    position: absolute;
    bottom: 15px;
    width: 80%;
    left: 10%;
    z-index: 2;
  }
}

.result .body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(auto-fit, minmax(11vw, 11vw));
  grid-auto-rows: 11vw;
  gap: 15px;
  width: 100%;
  padding: 14px;
}
@media screen and (max-width: 768px) {
  .result .body {
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fit, minmax(23vw, 23vw));
    grid-auto-rows: 23vw;
    gap: 15px;
  }
}
.result .body li {
  border-radius: 10px;
  position: relative;
  opacity: 0;
  -webkit-animation: animete_in 1s ease-in-out forwards;
          animation: animete_in 1s ease-in-out forwards;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
}
.result .body li .player_name {
  opacity: 0;
  color: #FFF;
  text-decoration: none;
}
.result .body li img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.result .body li.dir-0 {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.result .body li.dir-3 {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}
.result .body li.dir-1 {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
.result .body li.dir-2 {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
.result .body li.detect {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  -webkit-animation: animete_out 500ms ease-in-out forwards;
          animation: animete_out 500ms ease-in-out forwards;
}
.result .body.home li:nth-child(1) {
  background: url(../img/home.jpg) no-repeat center;
  background-size: cover;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2/4;
}

@-webkit-keyframes animete_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes animete_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes animete_out {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0.1);
            transform: translate3d(0, 0, 0) scale(0.1);
  }
}
@keyframes animete_out {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0.1);
            transform: translate3d(0, 0, 0) scale(0.1);
  }
}
.contents_fix_button,
.contents_fix_button_origin {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  right: 0;
  bottom: 40px;
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .contents_fix_button,
  .contents_fix_button_origin {
    width: 100%;
    bottom: 40px;
  }
}
.contents_fix_button.active,
.contents_fix_button_origin.active {
  opacity: 1;
  pointer-events: all;
}
.contents_fix_button a,
.contents_fix_button_origin a {
  display: block;
  margin: 0 auto;
  background: url(../img/r_arrow_w.svg) no-repeat center right 15px #e50050;
  background-size: auto 30%;
  width: 200px;
  text-align: center;
  color: #FFF;
  padding: 0.8em 1em;
  width: 80%;
  max-width: 500px;
  border-radius: 100px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contents_fix_button a,
  .contents_fix_button_origin a {
    font-size: 3vw;
    width: 90%;
  }
}

.contents_fix_button {
  position: fixed;
  right: 0;
  bottom: 15px;
  width: calc(100% - 250px);
  left: auto;
}
@media screen and (max-width: 768px) {
  .contents_fix_button {
    width: 100%;
  }
}

.contents_fix_button_origin {
  margin-top: 50px;
}

#introduction {
  background-color: #9c1a5b;
  position: relative;
}
#introduction .inner {
  width: 96%;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #FFF;
  padding: 80px;
}
@media screen and (max-width: 768px) {
  #introduction .inner {
    padding: 40px 10%;
  }
}
#introduction .inner h2 {
  width: 40%;
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  #introduction .inner h2 {
    width: 100%;
    padding-bottom: 40px;
    font-size: 15vw;
  }
}
#introduction .inner div {
  width: 60%;
  padding-left: 60px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #introduction .inner div {
    width: 100%;
    padding-left: 10px;
  }
}
#introduction::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background-color: #00494b;
  z-index: 1;
}

.hamburger {
  cursor: pointer;
}