@charset "UTF-8";
/* =========================================================
# mv
========================================================= */
/*
# スライドショー
---------------------------------- */
#imageSlide {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

#imageSlide::before {
  content: "";
  display: block;
  padding-top: 51.59722%;
}

#imageSlide div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.mv-slide__bg01 {
  background-image: url(https://sub4.fighters2023.com/wp-content/uploads/2026/02/mv1.jpg);
}

.mv-slide__bg02 {
  background-image: url(https://sub4.fighters2023.com/wp-content/uploads/2026/01/news2.jpg);
}

.mv-slide__bg03 {
  background-image: url(https://sub4.fighters2023.com/wp-content/uploads/2026/02/whyus2.jpg);
}

/*
# 640以下で画像を切り替え
---------------------------------- */
@media screen and (max-width: 640px) {
  #imageSlide::before {
    content: "";
    display: block;
    padding-top: 157.8666%;
  }
  .mv-slide__bg01 {
    background-image: url(https://sub4.fighters2023.com/wp-content/uploads/2026/02/mv1.jpg);
  }
  .mv-slide__bg02 {
    background-image: url(https://sub4.fighters2023.com/wp-content/uploads/2026/01/news2.jpg);
  }
  .mv-slide__bg03 {
    background-image: url(https://sub4.fighters2023.com/wp-content/uploads/2026/02/whyus2.jpg);
  }
}
.mv-slide {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv-slide {
    height: 100vh;
  }
}

.mv-slide__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv-slide__title {
    top: 20%;
    transform: translateY(0);
    left: 0%;
    transform: translateX(0%);
    padding: 50px 10px;
  }
}
.mv-slide__title h2 {
  font-size: 44px !important;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv-slide__title h2 {
    font-size: 24px !important;
  }
}
.mv-slide__title p {
  font-size: 20px !important;
  font-weight: normal;
  color: #fff;
  margin-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
  .mv-slide__title p {
    font-size: 16px !important;
  }
}
.mv-slide__title a {
  font-size: 20px !important;
  text-decoration: none !important;
  color: #000 !important;
  background-color: #D4B037 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 2px solid #D4B037 !important;
  width: 180px !important;
  height: 60px !important;
  margin: 0 auto !important;
  transition: all 0.7s;
}
.mv-slide__title a:hover {
  color: #D4B037 !important;
  background-color: #fff !important;
}/*# sourceMappingURL=style.css.map */

/* オープニングレイヤー */
.opening-overlay {
    position: fixed; /* absoluteではなくfixedで画面全体を覆う */
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    background-color: #000;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; /* アニメ中も下の要素を触らせない */
}
.opening_bg1, .opening_bg2 {
    position: absolute; top: 0; left: 50%;
    width: 0; height: 100%;
    transform: translateX(-50%);
}
.opening_bg1 { background: #0047ff; z-index: 1; }
.opening_bg2 { background: #fff; z-index: 2; }

.opening_wrap { position: relative; z-index: 3; text-align: center; opacity: 0; }
.opening_h2 { font-size: 60px; font-weight: bold; color: #000; margin: 0; }
.opening_txt { font-size: 16px; color: #000; letter-spacing: 0.2em; margin-top: 10px; }

/* 案A：品のあるフェード用（クラスを付けた要素が最初は透明） */
.js-fade-up {
    opacity: 0;
    transform: translateY(30px);
}



/* テキスト・スプリット(段落ブロック内のみ。画像が入るブロックには使えない) */
/* アニメーション対象の基本設定 */
.js-split-text {
  /* 実行前に一瞬文字が見えてしまうのを防ぐ（任意） */
  opacity: 1;
}

/* 文字単体の設定 */
.js-split-text .char {
  /* 親要素の行間や文字間を維持するための設定 */
  will-change: transform, opacity;
  perspective: 1000px; /* 3D的な回転を綺麗に見せる */
}

/* Snow Monkeyの標準レイアウトを崩さないための調整 */
.c-section__title .js-split-text,
.c-entry__title .js-split-text {
  display: block;
  line-height: 1.4;
}


/* 見出しの文字単位アニメーション */
/* 見出し自体のレイアウトは一切変更しない */
.sm-split-heading {
  display: inline-block;
  overflow: hidden;
}

/* 文字単位 */
.sm-split-heading .sm-char {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform, opacity;
}