body {
  margin: 0;
}

header {
  padding: 15px;
  text-align: right;
  position: absolute;
  top: 0;
  z-index: 999;
}

header a {
  margin-left: 10px;
}

:root {
  --spf-pink: #df237e;
  --spf-purple: #920783;
  --spf-blue: #08468f;
}

@font-face {
  font-family: "koburinaW3";
  src: url("../fonts/koburinaW3.otf");
}

@font-face {
  font-family: "Arial Black";
  src: url("Arial\ Black.ttf");
}

.fixed-background {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(
    30deg,
    var(--spf-pink) 0%,
    var(--spf-purple) 40%,
    var(--spf-blue) 100%
  );
  background-repeat: no-repeat;
  z-index: -1;
}

body {
  margin: 0;
  /* background-color: #FFFFFF80; */
  text-align: center;
  color: white;
  font-family: "koburinaW3", sans-serif;
}

p {
  font-size: 20px;
}

.all-wrapper {
  margin: auto;
  width: 94vw;
  max-width: 1000px;
  z-index: 1;
  overflow-x: clip;
  padding-bottom: 10vh;
}

img {
  max-width: 100%;
}

a {
  color: lightblue;
}

.first-visual {
  display: flex;
  width: max-content;
  max-width: 100%;
  height: 100svh;
  flex-direction: column;
  margin: auto;
  justify-content: center;
}

img.first-view {
  max-height: 70svh;
  margin: 0 auto;

  animation-name: fade-in;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.first-2 {
  margin-top: -40px;
}

.day-venue {
  font-family: "koburinaW3", Arial, Helvetica, sans-serif;
  display: flex;
  width: max-content;
  margin: 0 auto;
  align-items: center;
  font-size: 50px;
  animation-name: fade-in;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 0.5s;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 50px;
}

.sponsor {
  margin-bottom: 50px;
}

.sponsor-caroucel {
  margin-bottom: 50px;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 40px;
}

h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
  margin: 0;
}

.to-top {
  color: white;
}

.movies {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.movies > * {
  width: calc((100% - 60px) / 3);
  aspect-ratio: 9 / 16;
}

.slide-show {
  display: flex;
  justify-content: space-between;
  font-size: 4em;
}

.two-columns {
  display: flex;
  flex-direction: row;
  gap: 2%;
}

.two-columns > * {
  box-sizing: border-box !important;
}

.two-columns > div:not(.digest-photos) {
  width: 65%;
}

.two-columns > .digest-photos {
  width: 33%;
}

.tournaments-wrapper {
  margin-top: 40px;
}

.tournaments.slide {
  transform: translateX(-50%);
}

.tournaments > * {
  width: 100%;
  position: relative;
}

.digest-photos {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

/* .digest-photos > .photo {
    margin-bottom: 250px;
  } */

.tournament-list {
  margin-top: 2rem;
}

.link-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px auto 0;
  align-items: center;
}

.link-buttons > a,
.link-button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  width: 456px;
  height: 70px;
  border: 2px solid white;
  color: white;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  border-radius: 10px;
  min-width: max-content;
  padding: 15px 15px;
  box-shadow: 2px 4px 0 2px white;
}

.link-buttons .disable,
.link-button.disable {
  pointer-events: none;
  opacity: 0.5;
}

.link-buttons > .v-border {
  width: 2px;
  background: white;
  height: 70px;
}

footer {
  padding-top: 10svh;
}

footer p {
  margin: 50px 0;
  font-size: 40px;
}

footer img {
  width: auto;
  height: auto;
}

footer img.smaller-logo {
  width: 50%;
  height: auto;
  margin: 25% auto;
}

.flex-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

footer .img-wrapper {
  width: min(250px, 25vw);
  height: min(250px, 25vw);
  display: flex;
  align-items: center;
}

.flex-horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px min(50px, 5vw);
}

.index-sponsor {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.index-sponsor > .photo {
  width: 25%;
}

.index-sponsor > .photo > iframe {
  height: auto !important;
}

.index-sponsor > .photo > iframe img {
  margin-top: -15px !important;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* for slick */

.slick-slide {
  margin: 1px;
}

/* result-seatdraw */

.event {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
}

.event .title {
  width: 100%;
  /* background-color: red; */
  margin-bottom: 30px;
}

.event .result,
.event .seatdraw {
  width: calc(50% - 2px);
  /* background-color: orange; */
}

.event .v-border {
  width: 4px;
  height: auto;
  background-color: white;
}

header {
  position: absolute;
}

/* campaign */

.news {
  border: 1px solid white;
  margin-bottom: 30px;
}

.news > * {
  margin: 30px auto;
}

.news > img {
  width: 100%;
  margin-top: 0;
}

/* use-ticket */

.use-list {
  text-align: left;
}

/* supporters */

.supporters {
  display: flex;
  flex-wrap: wrap;
}

.supporters .supporter {
  width: 25%;
  padding: 1%;
  box-sizing: border-box;
}

.supporter h4 {
  font-size: 1.5em;
  margin: 0;
}
.supporter .body {
  font-size: 0.8em;
  margin: 0;
}

.supporters .url a {
  color: white;
}


.title{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 2rem;
}
.sub-title{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}
.sub-title-en{
  margin-bottom: 6rem;
}
.sub-title-en p{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.8em;
}

.organizer-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 7rem;
}
.right-organizer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.right-organizer div {
  flex-grow: 1;
  align-items: center;
  display: flex;
}