@charset "UTF-8";
/* ========================================
   共通アニメーション
======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* 戻るボタン */
/* ========================================
   TOPへ戻るボタン
======================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* 表示 */
.back-to-top.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ホバー */
.back-to-top:hover {
  background: #fff;
  color: #000;
}

/* ========================================
   HERO
======================================== */
.hero__title-image {
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s ease-out;
}

.hero__date-image {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.hero__read-sentence-sp span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
}

.hero.is-active .hero__title-image {
  opacity: 1;
  transform: scale(1);
}

.hero.is-active .hero__date-image {
  opacity: 1;
  transform: translateY(0);
}

/* コピー順番 */
.hero.is-active .hero__read-sentence-sp span:nth-child(1) {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.6s;
}

.hero.is-active .hero__read-sentence-sp span:nth-child(2) {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.9s;
}

.hero.is-active .hero__read-sentence-sp span:nth-child(3) {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 1.2s;
}

.hero.is-active .hero__read-sentence-sp span:nth-child(4) {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 1.5s;
}

/* ロゴ浮遊 */
.hero__side-logo {
  animation: float 6s ease-in-out infinite;
}

.hero__side-logo--left-1 {
  animation-delay: 0s;
}

.hero__side-logo--left-2 {
  animation-delay: 1s;
}

.hero__side-logo--left-3 {
  animation-delay: 2s;
}

.hero__side-logo--left-4 {
  animation-delay: 3s;
}

.hero__side-logo--left-5 {
  animation-delay: 4s;
}

.hero__side-logo--right-1 {
  animation-delay: 0.5s;
}

.hero__side-logo--right-2 {
  animation-delay: 1.5s;
}

.hero__side-logo--right-3 {
  animation-delay: 2.5s;
}

.hero__side-logo--right-4 {
  animation-delay: 3.5s;
}

/* ========================================
   NEWS
======================================== */
.news-section__text {
  opacity: 0;
  transform: translateX(-30px);
}

.news-section.is-active .news-section__text {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease-out;
}

/* h2があるのでnth-of-type */
.news-section.is-active .news-section__text:nth-of-type(1) {
  transition-delay: 0.2s;
}

.news-section.is-active .news-section__text:nth-of-type(2) {
  transition-delay: 0.4s;
}

.news-section.is-active .news-section__text:nth-of-type(3) {
  transition-delay: 0.6s;
}

/* ========================================
   共通ブロック（.js-animate）
======================================== */
/* タイトル */
.js-animate .section__title-image {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(10px);
}

.js-animate.is-active .section__title-image {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

/* ========================================
   DETAIL LIST
======================================== */
.js-animate .detail-list__item {
  opacity: 0;
  transform: translateY(20px);
}

.js-animate.is-active .detail-list__item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.js-animate.is-active .detail-list__item:nth-of-type(1) {
  transition-delay: 0.2s;
}

.js-animate.is-active .detail-list__item:nth-of-type(2) {
  transition-delay: 0.3s;
}

.js-animate.is-active .detail-list__item:nth-of-type(3) {
  transition-delay: 0.4s;
}

.js-animate.is-active .detail-list__item:nth-of-type(4) {
  transition-delay: 0.5s;
}

.js-animate.is-active .detail-list__item:nth-of-type(5) {
  transition-delay: 0.6s;
}

/* ========================================
   ORGANIZATIONS
======================================== */
.js-animate .org-list--item {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  letter-spacing: 0.05em;
}

.js-animate.is-active .org-list--item {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.5s ease-out;
}

.js-animate.is-active .org-list--item:nth-of-type(1) {
  transition-delay: 0.2s;
}

.js-animate.is-active .org-list--item:nth-of-type(2) {
  transition-delay: 0.3s;
}

.js-animate.is-active .org-list--item:nth-of-type(3) {
  transition-delay: 0.4s;
}

.js-animate.is-active .org-list--item:nth-of-type(4) {
  transition-delay: 0.5s;
}

.js-animate.is-active .org-list--item:nth-of-type(5) {
  transition-delay: 0.6s;
}

.js-animate.is-active .org-list--item:nth-of-type(6) {
  transition-delay: 0.7s;
}

.js-animate.is-active .org-list--item:nth-of-type(7) {
  transition-delay: 0.8s;
}

.js-animate.is-active .org-list--item:nth-of-type(8) {
  transition-delay: 0.9s;
}

.js-animate.is-active .org-list--item:nth-of-type(9) {
  transition-delay: 1s;
}

/* 注釈 */
.js-animate .org-list-noto {
  opacity: 0;
  transform: translateY(10px);
}

.js-animate.is-active .org-list-noto {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-out;
  transition-delay: 1.1s;
}

/* ========================================
   PRELIMINARY
======================================== */
/* テキスト */
.js-animate .split-card__body {
  opacity: 0;
  transform: translateY(30px);
}

.js-animate.is-active .split-card__body {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease-out;
  transition-delay: 0.2s;
}

/* ========================================
   PRELIMINARY：match-card（クラス制御）
   ※ 旧 .js-animate .split-card__match img 系は削除済み
======================================== */
.split-card__match {
  overflow: hidden;
}

.match-card {
  opacity: 0;
  will-change: transform, opacity;
}

.match-card--left {
  transform: translateX(-50vw);
}

.match-card--right {
  transform: translateX(50vw);
}

.match-card.is-active {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease-out;
}

/* ========================================
   ABOUT
======================================== */
.js-animate .about-flex__text {
  opacity: 0;
  transform: translateX(-40px);
}

.js-animate.is-active .about-flex__text {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s ease-out;
  transition-delay: 0.2s;
}

.js-animate .placeholder-media img {
  opacity: 0;
  transform: scale(1.05);
}

.js-animate.is-active .placeholder-media img {
  opacity: 1;
  transform: scale(1);
  transition: all 1s ease-out;
  transition-delay: 0.4s;
}

/* ========================================
   CTA
======================================== */
.cta-section {
  opacity: 0;
}

.cta-section.is-active {
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.cta-section__catch,
.cta-section__title,
.cta-section__lead,
.cta-section__lead-sub {
  opacity: 0;
  transform: translateY(20px);
}

.cta-section.is-active .cta-section__catch {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

.cta-section.is-active .cta-section__title {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

.cta-section.is-active .cta-section__lead {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.6s;
}

.cta-section.is-active .cta-section__lead-sub {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 0.8s;
}

.cta-card__image {
  opacity: 0;
  transform: scale(0.95);
}

.cta-section.is-active .cta-card__image {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease-out;
}

.cta-section.is-active .cta-card__image--text {
  transition-delay: 1s;
}

.cta-section.is-active .cta-card__image--banner {
  transition-delay: 1.2s;
}

.cta-button {
  opacity: 0;
  transform: translateY(20px);
}

.cta-section.is-active .cta-button {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
  transition-delay: 1.4s;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  transition: all 0.2s ease;
}/*# sourceMappingURL=animation.css.map */
