/* リセット */
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

a.button {
  font-family: "oswald";
  background: linear-gradient(to right, #e6002d 50%, #000 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #fff;
  padding: 0.5em 1em;
  font-size: 1vw;
  border: none;
  cursor: pointer;
  transition: background-position 0.5s ease;
}

@media screen and (max-width: 768px) {
  a.button {
    font-size: 14px;
    padding: 0.5em 1em;
  }
}

.sp-premier a.button {
  background: linear-gradient(to right, #848484 50%, #000 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.tournament a.button {
  background: linear-gradient(to right, #11a84e 50%, #000 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.game a.button {
  background: linear-gradient(to right, #ef9f05 50%, #000 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

a.button:hover {
  background-position: left bottom;
}

.premier a.button {
  border-left: 5px solid #e6002d;
}

.sp-premier a.button {
  border-left: 5px solid #848484;
}

.tournament a.button {
  border-left: 5px solid #11a84e;
}

.game a.button {
  border-left: 5px solid #ef9f05;
}


.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OswaldStencil";
  src: url("/font/Oswald-Stencil.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.section {
  padding: 3.5vw 10px;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 20px 16px;
  }
}

.section:first-of-type {
  padding-top: 0;
}

#kv.section {
  padding: 0;
}

h2 {
  text-align: center;
  font-family: "Oswald";
  text-transform: none;
  font-size: 2vw;
  margin: 20px 0;
  margin-top: 0;
  line-height: 1;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
}

.brand__link__wrapper h2 {
  font-size: 2.6vw;
  margin: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .brand__link__wrapper h2 {
    font-size: 24px;
  }
}

.premier h3 {
  border-bottom: 2px solid #e6002d;
}

.sp-premier h3 {
  border-bottom: 2px solid #848484;
}

.tournament h3 {
  border-bottom: 2px solid #11a84e;
}

.game h3 {
  border-bottom: 2px solid #ef9f05;
}

.brand__link__wrapper .text_wrapper {
  text-align: left;
}

.brand__link__wrapper .text_wrapper p {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .brand__link__wrapper .text_wrapper p {
    font-size: 14px;
    margin-bottom: 1.5vw;
  }
}

.brand__link__wrapper h3 {
  font-size: 1.5vw;
  margin: 0;
  line-height: 1.5;
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .brand__link__wrapper h3 {
    font-size: 16px;
    text-align: center;
  }
}

.brand__link__wrapper p {
  font-size: 1vw;
}

/* デバイスに応じた表示制御 */
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

/* ヘッダースタイル */
header {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

header .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header a,
nav ul li {
  color: #fff;
  font-family: "oswald";
}

nav ul {
  display: flex;
  gap: 0 30px;
}

@media screen and (max-width: 768px) {
  nav ul {
    gap: 0 1em;
  }

  nav ul li a {
    font-size: 12px;
  }
}

.logo__wrapper {
  width: 200px;
}

@media screen and (max-width: 768px) {
  .logo__wrapper {
    width: 120px;
    display: flex;
  }
}

img {
  width: 100%;
  height: auto;
}

main {
  margin-top: 84px;
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 64px;
  }
}

section {
  padding: 60px 0;
}

ul.brand__link__wrapper {
  margin: 0;
  padding: 0;
}

ul.brand__link__wrapper li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5vw 0;
  margin: 0;
}

ul.brand__link__wrapper li:first-of-type {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  ul.brand__link__wrapper li {
    padding: 14px 0;
  }
}

ul.brand__link__wrapper li .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  ul.brand__link__wrapper li .inner {
    gap: 0;
  }
}

ul.brand__link__wrapper li .text_wrapper {
  width: 84%;
  padding: 0 20px;
}

ul.brand__link__wrapper li:nth-of-type(odd) .text_wrapper {
  padding-left: 0;
}

ul.brand__link__wrapper li:nth-of-type(even) .text_wrapper {
  padding-right: 0;
}

ul.brand__link__wrapper li .images_wrapper {
  width: 100vw;
  /* 画面の幅いっぱい */
  margin-left: calc(50% - 50vw);
  /* 中央揃えと左右いっぱい表示を実現 */
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 768px) {
  ul.brand__link__wrapper li .images_wrapper {
    margin-top: 14px;
    margin-bottom: 14px;
  }
}

ul.brand__link__wrapper li .image_wrapper {
  width: 100%;
  /* コンテナの幅に合わせる */
  aspect-ratio: 761 / 300;
  overflow: hidden;
}

ul.brand__link__wrapper li .image_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  height: 100%;
  object-fit: cover;
  /* 縦横比を保ちながらコンテナに収める */
}

@media screen and (min-width: 769px) {
  ul.brand__link__wrapper li:nth-of-type(odd) .inner {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 768px) {
  ul.brand__link__wrapper li .inner {
    flex-direction: column;
    align-items: center;
  }

  ul.brand__link__wrapper li .text_wrapper {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    margin-bottom: 10px;
  }
}

#about.section {
  padding-top: 5vw;
  padding-bottom: 6vw;
}

@media screen and (max-width: 768px) {
  #about.section {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

#about h2 {
  margin-bottom: 0;
}

#about .image__wrapper {
  max-width: 25vw;
  margin: 2vw auto;
}

@media screen and (max-width: 768px) {
  #about .image__wrapper {
    max-width: 200px;
    margin: 30px auto;
  }
}

#about p {
  text-align: center;
  font-size: 1.3vw;
  line-height: 2;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #about p {
    font-size: 14px;
  }
}

#about p:last-of-type {
  margin-bottom: 0;
}

#kv .image__wrapper img {
  height: 60vh;
  object-fit: cover;
  /* 画像をコンテナ全体に収める */
}

@media (max-width: 768px) {
  #kv .image__wrapper img {
    height: 40vh;
    /* 画面が小さい場合、少し高さを減らす */
  }
}

/* ローディング */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
}

#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading .kvArea {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading .kvArea .img_box {
  text-align: center;
  width: 300px;
  margin: 0 auto;
}

#loading .kvArea .img_box img {
  max-width: 100%;
  height: auto;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/* ここまでローディング */
footer {
  background: #000;
  color: #fff;
  margin-top: 3vw;
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 20px;
  }
}

footer a {
  color: #fff;
  font-family: "oswald";
}

footer .inner {
  margin: 0 auto;
  max-width: 1080px;
  padding: 60px;
}

@media screen and (max-width: 768px) {
  footer .inner {
    padding: 30px;
  }
}

.flex__wrapper {
  display: flex;
}

@media screen and (max-width: 768px) {
  .flex__wrapper {
    flex-direction: column;
  }
}

footer .flex__wrapper {
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  footer .flex__wrapper {
    align-items: center;
  }
}

footer .flex__wrapper p {
  margin: 0;
}

ul.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

ul.sns li {
  width: 20px;
  height: 20px;
}

ul.sns li:hover {
  cursor: pointer;
  opacity: 0.7;
}

.youtube_icon img {
  width: 27px;
  height: 100%;
}

.follow__text {
  text-align: center;
}

.copyright {
  font-size: 11px;
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 30px;
  }
}

.sp__privacy__text {
  font-size: 11px;
}

.slider {
  margin-inline: auto;
  overflow: hidden;
  /* 画像がはみ出ないようにする */
  width: 100vw;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

#about p.logo__text {
  font-weight: 800;
  margin-top: -44px;
  font-size: 1vw;
}

@media screen and (max-width: 768px) {
  #about p.logo__text {
    font-size: 11px;
    margin-top: -23px;
  }
}