@charset "UTF-8";
:root {
  --color-bg: #fff;
  --color-primary: #c00;
  --color-text: #333;
  --color-black: #050711;
  --font-base: "Yu Gothic", "游ゴシック体", "YuGothic", "游ゴシック", sans-serif;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.col-1 {
  width: calc(8.3333333333% - 1.5rem * 11 / 12);
}

.col-2 {
  width: calc(16.6666666667% - 1.5rem * 11 / 12);
}

.col-3 {
  width: calc(25% - 1.5rem * 11 / 12);
}

.col-4 {
  width: calc(33.3333333333% - 1.5rem * 11 / 12);
}

.col-5 {
  width: calc(41.6666666667% - 1.5rem * 11 / 12);
}

.col-6 {
  width: calc(50% - 1.5rem * 11 / 12);
}

.col-7 {
  width: calc(58.3333333333% - 1.5rem * 11 / 12);
}

.col-8 {
  width: calc(66.6666666667% - 1.5rem * 11 / 12);
}

.col-9 {
  width: calc(75% - 1.5rem * 11 / 12);
}

.col-10 {
  width: calc(83.3333333333% - 1.5rem * 11 / 12);
}

.col-11 {
  width: calc(91.6666666667% - 1.5rem * 11 / 12);
}

.col-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-1 {
    width: calc(8.3333333333% - 1.5rem * 11 / 12);
  }
  .col-md-2 {
    width: calc(16.6666666667% - 1.5rem * 11 / 12);
  }
  .col-md-3 {
    width: calc(25% - 1.5rem * 11 / 12);
  }
  .col-md-4 {
    width: calc(33.3333333333% - 1.5rem * 11 / 12);
  }
  .col-md-5 {
    width: calc(41.6666666667% - 1.5rem * 11 / 12);
  }
  .col-md-6 {
    width: calc(50% - 1.5rem * 11 / 12);
  }
  .col-md-7 {
    width: calc(58.3333333333% - 1.5rem * 11 / 12);
  }
  .col-md-8 {
    width: calc(66.6666666667% - 1.5rem * 11 / 12);
  }
  .col-md-9 {
    width: calc(75% - 1.5rem * 11 / 12);
  }
  .col-md-10 {
    width: calc(83.3333333333% - 1.5rem * 11 / 12);
  }
  .col-md-11 {
    width: calc(91.6666666667% - 1.5rem * 11 / 12);
  }
  .col-md-12 {
    width: 100%;
  }
}
.cover {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.preloader-bg {
  background: #111;
  height: 100vh;
  inset: 0;
  opacity: 1;
  overscroll-behavior: none;
  position: fixed;
  top: 0;
  touch-action: none;
  transition: opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1);
  width: 100%;
  z-index: 600;
}

.preloader-bg.is-fadeout {
  opacity: 0;
  pointer-events: none;
}

.cover-logo-wrapper {
  align-items: center;
  aspect-ratio: 1.1274/1;
  display: flex;
  height: auto;
  justify-content: center;
  position: relative;
  width: 83vw;
}
@media (min-width: 768px) {
  .cover-logo-wrapper {
    width: 35vw;
  }
}

.cover-logo {
  display: block;
  height: 100%;
  max-height: unset;
  max-width: unset;
  opacity: 0;
  pointer-events: none;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1);
  user-select: none;
  width: 100%;
  z-index: 700;
}

.cover-logo.is-in,
.cover-logo.is-fix {
  opacity: 1;
}

.cover-logo.is-fix {
  z-index: 300;
  /* 必要なら他の固定用styleもここに追加 */
}

.cover-logo img {
  display: block;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  width: 100%; /* 各imgのサイズはidで上書き */
}

/* fireworks */
#logo-fireworks {
  height: 41.9606484523%;
  left: 0;
  top: 8.4617%;
  width: 61.6849064%;
}

/* show */
#logo-show {
  height: 26.5270526957%;
  left: 49.8575%;
  top: 28.5603%;
  width: 41.6342659787%;
}

/* brunomars */
#logo-brunomars {
  height: 10.1150441421%;
  left: 12.6103%;
  top: 75.4692%;
  width: 66.175800659%;
}

#logo-2025 {
  height: 18.9327057474%;
  left: 1.0319%;
  top: 53.8963%;
  width: 15.8987615345%;
}

/* bg（全体背景） */
#logo-bg {
  height: 100%;
  left: 11.4174%;
  top: 0%;
  width: 88.5825979172%;
  z-index: -1;
}

.logo-animate-bg {
  animation: fadeInHere 1s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

/* --- Animation Keyframes --- */
@keyframes fadeInFromLeftTop {
  from {
    opacity: 0;
    transform: translate(-30px, -30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInFromRightTop {
  from {
    opacity: 0;
    transform: translate(30px, -30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInHere {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --- Animation Classes --- */
#logo-fireworks,
#logo-show,
#logo-brunomars,
#logo-bg,
#logo-2025 {
  opacity: 0;
}

.logo-animate-brunomars {
  animation: fadeInFromBottom 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  animation-delay: 0s;
}

.logo-animate-fireworks {
  animation: fadeInFromLeftTop 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.logo-animate-show {
  animation: fadeInFromRightTop 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

.logo-animate-2025 {
  animation: fadeInHere 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

.logo-animate-bg {
  animation: fadeInHere 0.8s cubic-bezier(0.8, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}/*# sourceMappingURL=preloader.min.css.map */