a:hover {
  opacity: 0.8;
}

p {
  margin-bottom: 20px;
  font-weight: 400;
}
p:last-child {
  margin: 0;
}

img {
  vertical-align: middle;
}

.left {
  color: #FFF;
  line-height: 1.8;
}

@-webkit-keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}

@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
section {
  position: relative;
  padding: 100px 20px;
}

.width {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  z-index: 5;
}

.section-title {
  margin-bottom: 50px;
}
.section-title img {
  max-width: 100%;
}

.right {
  text-align: right;
}

.register {
  background: url(/images/lp-info/stripes-light.webp);
  color: #1b1464;
  text-align: center;
  padding: 50px 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.regi {
  -webkit-animation: regi 2s infinite ease;
          animation: regi 2s infinite ease;
  max-width: 100%;
}

.btn-area {
  display: flex;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  gap: 30px;
}
.btn-area img {
  max-width: 100%;
}

.mt50 {
  margin-top: 70px;
}

.for-you {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.for-you .fy-box {
  width: 49%;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #1b1464;
}
.for-you .w-100 {
  width: 100%;
}
.for-you .fy-title {
  padding: 10px;
  background: #1b1464;
  color: #fff;
}
.for-you .fy-ul {
  text-align: left;
  list-style: none;
  padding: 20px;
}
.for-you .fy-ul li {
  padding-left: 30px;
  line-height: 1.8em;
  background: url(/images/lp-info/check.png) left 0 top 6px no-repeat;
  background-size: 20px auto;
  margin-bottom: 5px;
}
.for-you .fy-ul li span {
  display: inline-block;
}

.content {
  width: 300px;
  height: 100px;
  background: #137bc0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content span {
  color: #ff0;
  font-weight: bold;
}

.player:before {
  content: url(/images/lp-info/p.png);
  margin-right: 15px;
  height: 60px;
}

.team:before {
  content: url(/images/lp-info/t.png);
  margin-right: 15px;
  height: 60px;
}

.event:before {
  content: url(/images/lp-info/e.png);
  margin-right: 15px;
  height: 60px;
}

.wrap {
  position: relative;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  padding: 20px 0;
  background: #fff;
  z-index: 3;
}

.slideshow {
  display: flex;
  -webkit-animation: loop-slide 40s infinite linear 1s both;
          animation: loop-slide 40s infinite linear 1s both;
  list-style: none;
}
.slideshow a {
  color: #fff;
  text-decoration: none;
}

.slideshow-rev {
  display: flex;
  -webkit-animation: loop-slide 40s infinite linear 1s both;
          animation: loop-slide 40s infinite linear 1s both;
  list-style: none;
  animation-direction: reverse;
}
.slideshow-rev a {
  color: #fff;
  text-decoration: none;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slide-paused:hover .slideshow, .slide-paused:hover .slideshow-rev {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.content-hover {
  transition: all 0.2s;
  margin-right: 20px;
}
.content-hover:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

@-webkit-keyframes find {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes find {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes gather {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-20px);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px);
  }
  40% {
    transform: translateY(0);
  }
}
@keyframes gather {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-20px);
  }
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px);
  }
  40% {
    transform: translateY(0);
  }
}
@-webkit-keyframes connect {
  0% {
    transform: rotate(0) scale(1);
  }
  10% {
    transform: rotate(-5deg) scale(1.05);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0) scale(1);
  }
}
@keyframes connect {
  0% {
    transform: rotate(0) scale(1);
  }
  10% {
    transform: rotate(-5deg) scale(1.05);
  }
  20% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0) scale(1);
  }
}
@-webkit-keyframes regi {
  0% {
    transform: rotate(0) scale(1);
  }
  10% {
    transform: rotate(-2deg) scale(1.05);
  }
  20% {
    transform: rotate(2deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  40% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0) scale(1);
  }
}
@keyframes regi {
  0% {
    transform: rotate(0) scale(1);
  }
  10% {
    transform: rotate(-2deg) scale(1.05);
  }
  20% {
    transform: rotate(2deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  40% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0) scale(1);
  }
}
@-webkit-keyframes compile {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.05);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes compile {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.05);
  }
  100% {
    transform: scaleY(1);
  }
}
.about {
  background: #f7931e;
  z-index: 2;
  padding: 30px 20px;
  text-align: center;
}
.about .about-area {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about .about-area .feature {
  width: 33.333%;
  text-align: center;
}
.about .about-area .feature img {
  max-width: 100%;
}
.about .no1-area {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.about .no1-area img {
  max-width: 100%;
}

#find {
  background: url(/images/lp-info/find-eng.png) #29abe2;
  background-repeat: repeat-x, repeat;
  background-position: top, center;
}

.find-chara {
  -webkit-animation: find 5s infinite ease;
          animation: find 5s infinite ease;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 150px;
}

#gather {
  background: url(/images/lp-info/gather-eng.png), #137bc0;
  background-repeat: repeat-x, repeat;
  background-position: top, center;
}

.gather-chara {
  -webkit-animation: gather 2s infinite ease;
          animation: gather 2s infinite ease;
  position: absolute;
  left: 40px;
  top: 40px;
  width: 150px;
}

#connect {
  background: url(/images/lp-info/connect-eng.png), #2e3192;
  background-repeat: repeat-x, repeat;
  background-position: top, center;
}

.connect-chara {
  -webkit-animation: connect 3s infinite ease;
          animation: connect 3s infinite ease;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 150px;
}

#compile {
  background: url(/images/lp-info/compile-eng.png), #1b1464;
  background-repeat: repeat-x, repeat;
  background-position: top, center;
}

.compile-chara {
  -webkit-animation: compile 1s infinite ease;
          animation: compile 1s infinite ease;
  position: absolute;
  left: 40px;
  top: 40px;
  width: 150px;
}

h2 {
  margin-bottom: 30px !important;
  font-size: 24px;
  font-weight: bold;
}

.flex {
  display: flex;
  margin-bottom: 70px;
  padding-bottom: 70px;
  gap: 30px;
  border-bottom: 1px dashed #fff;
}
.flex:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.flex-rev {
  flex-direction: row-reverse;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 1100px) {
  body {
    font-size: 0.9em;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .join {
    display: none;
  }

  .bl-sp {
    margin-top: 20px;
    padding: 0 20px 5px;
    width: 100%;
    text-align: center;
  }
  .bl-sp img {
    max-width: 100%;
  }

  .about .about-area .feature {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .about .about-area .feature img {
    width: 200px;
  }
  .about .about-area .feature:last-child {
    margin: 0;
  }
  .about .no1-area img {
    max-width: 100%;
  }

  #find {
    background-size: auto 60px, auto;
  }

  #gather {
    background-size: auto 60px, auto;
  }

  #connect {
    background-size: auto 60px, auto;
  }

  #compile {
    background-size: auto 60px, auto;
  }

  .find-chara {
    right: 10px;
    top: 10px;
    width: 100px;
  }

  .gather-chara {
    left: 10px;
    top: 20px;
    width: 100px;
  }

  .connect-chara {
    right: 10px;
    top: 10px;
    width: 100px;
  }

  .compile-chara {
    left: 10px;
    top: 10px;
    width: 100px;
  }

  .section-title {
    margin-bottom: 30px;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
  }

  h2 {
    margin-bottom: 20px;
  }

  .flex {
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 50px;
    gap: 20px;
  }
  .flex .photo {
    width: 100%;
  }
  .flex .photo img {
    max-width: 100%;
  }
  .flex .text {
    width: 100%;
  }

  .for-you .fy-box {
    width: 100%;
  }
}
