@import url("https://fonts.googleapis.com/css2?family=Modak&family=Dela+Gothic+One&family=Caveat+Brush&family=Raleway:wght@800&family=Dosis:wght@600&display=swap");

* {
  box-sizing: border-box;
}

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Colors */
  --color-navy: #2b3c4f;
  --color-black: #000000;
  --color-cornflower-blue: #5c96ed;
  --color-dandelion: #fcdf70;
  --color-ebony-clay: #1e1f3c;
  --color-gray: #333333;
  --color-merino: #f3f0e7;
  --color-princess-perfume: #ff89c9;
  --color-tan: #f8a96b;
  --color-white: #ffffff;
  --color-sushi: #85bd2a;

  /* Font sizes */
  --font-size-xs: 10px;
  --font-size-s: 10px;
  --font-size-m: 14px;
  --font-size-l: 16px;
  --font-size-xl: 18px;
  --font-size-xxl: 20px;
  --font-size-xxxl: 24px;
  --font-size-xxxxl: 28px;

  /* Font families */
  --font-caveat-brush: "Caveat Brush", Helvetica;
  --font-dela-gothic: "Dela Gothic One", Helvetica;
  --font-dosis: "Dosis", Helvetica;
  --font-hiragino-r: "Hiragino Kaku Gothic ProN-Regular", Helvetica;
  --font-hiragino-w3: "Hiragino Kaku Gothic ProN-W3", Helvetica;
  --font-hiragino-w6: "Hiragino Kaku Gothic ProN-W6", Helvetica;
  --font-modak: "Modak", Helvetica;
  --font-raleway: "Raleway", Helvetica;
}

/* ============================================================
   Utility
   ============================================================ */
.pc-only {
  display: none;
}
.sp-only {
  display: block;
}

/* グローバルヘッダー / フッターを非表示 */
.page-bgu-now_top .am-header {
  display: none !important;
}
.page-bgu-now_top .footer {
  display: none !important;
}

/* ページ全体の横スクロール防止 */
.page-bgu-now_top { overflow-x: hidden; }

/* ============================================================
   Block: bgu-now-header
   ============================================================ */
.bgu-now-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.bgu-now-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.bgu-now-header__logo {
  width: 108px;
}
.bgu-now-header__logo img {
  width: 100%;
  display: block;
}

/* ハンバーガーボタン: 白背景・黒縁の楕円に横線3本 */
.bgu-now-header__hamburger {
  width: 80px;
  height: 50px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.bgu-now-header__hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ドロワー */
.bgu-now-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 10px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
}

.bgu-now-drawer.is-open {
  transform: translateX(0);
}

.bgu-now-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bgu-now-drawer__close::before,
.bgu-now-drawer__close::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

.bgu-now-drawer__close::before {
  transform: rotate(25deg);
}

.bgu-now-drawer__close::after {
  transform: rotate(-25deg);
}

.bgu-now-drawer__nav {
  width: 100%;
}
.bgu-now-drawer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.bgu-now-drawer__nav-link {
  color: var(--Black, #1b2d33);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 20px 10px;
  border-bottom: 1px dashed #aedc63;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.bgu-now-drawer__nav-link::after {
  content: "";
  flex-shrink: 0;
  width: 31px;
  height: 20px;
  border-radius: 15.71px / 10px;
  background-color: var(--color-sushi);
  background-image: url("/assets/img/bgu-now/union-15.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ドロワーオーバーレイ */
.bgu-now-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bgu-now-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   Block: bgu-now-loading (ローディング画面)
   ============================================================ */
.bgu-now-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-merino); /* #f3f0e7 サイトのベージュ */
  overflow: hidden;
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s ease;
}

.bgu-now-loading.is-hide {
  opacity: 0;
  transform: scale(1.06);
  visibility: hidden;
  pointer-events: none;
}

/* 背景デコ: カラフルな丸 */
.bgu-now-loading__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.bgu-now-loading__deco--1 {
  width: 220px;
  height: 220px;
  background: var(--color-princess-perfume);
  opacity: 0.18;
  top: -70px;
  left: -70px;
}
.bgu-now-loading__deco--2 {
  width: 160px;
  height: 160px;
  background: var(--color-tan);
  opacity: 0.22;
  bottom: -50px;
  right: 8%;
}
.bgu-now-loading__deco--3 {
  width: 110px;
  height: 110px;
  background: var(--color-cornflower-blue);
  opacity: 0.16;
  top: 15%;
  right: -30px;
}
.bgu-now-loading__deco--4 {
  width: 80px;
  height: 80px;
  background: var(--color-dandelion);
  opacity: 0.3;
  bottom: 18%;
  left: 6%;
}
.bgu-now-loading__deco--5 {
  width: 50px;
  height: 50px;
  background: var(--color-sushi);
  opacity: 0.18;
  top: 30%;
  left: 12%;
}

/* ロゴ: バウンシーポップイン */
@keyframes loading-logo-in {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.4) rotate(-12deg);
  }
  55% {
    opacity: 1;
    transform: translateY(-14px) scale(1.18) rotate(5deg);
  }
  75% {
    transform: translateY(6px) scale(0.93) rotate(-2deg);
  }
  90% {
    transform: translateY(-3px) scale(1.04) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

.bgu-now-loading__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.bgu-now-loading__logo {
  width: 220px;
  height: auto;
  animation: loading-logo-in 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

/* ドット: 順番にポンポン弾む */
@keyframes loading-dot-bounce {
  0%,
  70%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-16px) scale(1.2);
  }
  55% {
    transform: translateY(-4px) scale(0.9);
  }
}

.bgu-now-loading__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bgu-now-loading__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: loading-dot-bounce 1.1s ease-in-out infinite;
}

.bgu-now-loading__dot--1 {
  background: var(--color-princess-perfume);
  animation-delay: 0s;
}
.bgu-now-loading__dot--2 {
  background: var(--color-tan);
  animation-delay: 0.18s;
}
.bgu-now-loading__dot--3 {
  background: var(--color-cornflower-blue);
  animation-delay: 0.36s;
}

/* ローディング中: MVアニメーション一時停止 */
html.bgu-now-loading-active .mv__left-image,
html.bgu-now-loading-active .mv__left-character,
html.bgu-now-loading-active .mv__left .mv__logo,
html.bgu-now-loading-active .mv__left-catchcopy,
html.bgu-now-loading-active .mv__left-badge,
html.bgu-now-loading-active .mv__logo-sp {
  animation-play-state: paused;
}

/* ============================================================
   Block: bgu-now (page root)
   ============================================================ */
.bgu-now {
  align-items: center;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bgu-now__main {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

/* ============================================================
   Block: mv
   ============================================================ */

/* スクロールコンテナ: global.js の scroll-container と同じ手法 */
/* height は JS でスライド枚数 × 100vh に設定される */
.mv-scroll-container {
  position: relative;
  width: 100%;
}

.header__band .content {
  padding-top: 0;
  padding-bottom: 0;
}

.mv {
  background-image: url(../../img/bgu-now/mv-1.svg);
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative; /* JS が fixed/absolute に切り替える */
  z-index: 100;
  overflow: hidden;
  padding: 100px 0 0;
}

.mv__movie-list {
  padding: 60px 16px 80px;
  overflow: visible !important;
  width: 100%;
}

.mv__movie-item {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  position: relative;
  width: 80vw;
  border-radius: 12px;
  transform-origin: center bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 6px solid #f3f0e7;
}

/* ===================================================
   MV 動画ローディングドット (bgu-now-loading__dots と同じ見た目)
   =================================================== */
.mv__movie-loading {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mv__movie-item.is-playing .mv__movie-loading {
  opacity: 0;
}
.mv__movie-loading__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: loading-dot-bounce 1.1s ease-in-out infinite;
}
.mv__movie-loading__dot--1 {
  background: var(--color-princess-perfume);
  animation-delay: 0s;
}
.mv__movie-loading__dot--2 {
  background: var(--color-tan);
  animation-delay: 0.18s;
}
.mv__movie-loading__dot--3 {
  background: var(--color-cornflower-blue);
  animation-delay: 0.36s;
}

/* ===================================================
   movie.php 方式のサムネイルカバー (bgu-now 用)
   サムネイル → ブラー解除 → フェードアウトで YouTube の
   初期 UI を完全に隠す
   =================================================== */
.mv__movie-item .movie-elem__thumb,
.circle-modal__video-wrap .movie-elem__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  pointer-events: none;
  filter: blur(20px);
  transform: scale(1.1);
  transition:
    filter 0.8s ease-out,
    opacity 0.5s ease,
    transform 0.8s ease-out;
}
/* ローディング中: ゆらゆらドリフト */
.mv__movie-item:not(.is-initialized) .movie-elem__thumb,
.circle-modal__video-wrap:not(.is-initialized) .movie-elem__thumb {
  animation: bgu-now-thumb-drift 8s ease-in-out infinite alternate;
}
.mv__movie-item.is-initialized .movie-elem__thumb,
.circle-modal__video-wrap.is-initialized .movie-elem__thumb {
  animation: none;
}
/* 初回再生: ブラー解除 */
.mv__movie-item.is-revealed .movie-elem__thumb,
.circle-modal__video-wrap.is-revealed .movie-elem__thumb {
  filter: blur(0);
  transform: scale(1);
}
/* 再生中: サムネイルをフェードアウト */
.mv__movie-item.is-playing .movie-elem__thumb,
.circle-modal__video-wrap.is-playing .movie-elem__thumb {
  opacity: 0;
}

@keyframes bgu-now-thumb-drift {
  from {
    filter: blur(20px);
    transform: scale(1.1);
  }
  to {
    filter: blur(14px);
    transform: scale(1.2) translate(-1%, -1%);
  }
}

/* YT IFrame API が挿入する iframe を 128% サイズに拡大し、
   コンテナの overflow:hidden で YouTube の UI バーを隠す */
.mv__movie-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128%;
  height: 128%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mv__movie-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.mv__left {
  height: 258px;
  left: 50px;
  position: absolute;
  top: calc(50% - 84px);
  width: 340px;
}

.mv__left-image {
  height: 224px;
  left: 165px;
  position: absolute;
  top: -210px;
  width: 182px;
}

.mv__left-character {
  height: 174px;
  left: 2px;
  position: absolute;
  top: 50px;
  width: 180px;
  z-index: 1;
}

.mv__left-badge {
  height: 112px;
  left: 32px;
  position: absolute;
  top: -10px;
  transform: rotate(100.65deg);
  width: 73px;
}

.mv__left-badge-label {
  color: var(--color-gray);
  font-family: var(--font-caveat-brush);
  font-size: var(--font-size-xxl);
  font-weight: 400;
  left: -8px;
  letter-spacing: 2px;
  line-height: normal;
  position: absolute;
  top: 52px;
  transform: rotate(-113.02deg);
  white-space: nowrap;
}

.mv__left-badge-deco {
  height: 112px;
  left: 1px;
  position: absolute;
  top: 0;
  width: 71px;
}

.mv__left-badge-deco-item--1 {
  height: 26px;
  left: 8px;
  position: absolute;
  top: -2px;
  transform: rotate(-100.65deg);
  width: 12px;
}

.mv__left-badge-deco-item--2 {
  height: 10px;
  left: 17px;
  position: absolute;
  top: -1px;
  transform: rotate(-100.65deg);
  width: 10px;
}

.mv__left-badge-deco-item--3 {
  height: 20px;
  left: 43px;
  position: absolute;
  top: 90px;
  transform: rotate(-100.65deg);
  width: 21px;
}

.mv__left-badge-deco-item--4 {
  height: 5px;
  left: 59px;
  position: absolute;
  top: 96px;
  transform: rotate(-100.65deg);
  width: 13px;
}

.mv__left-catchcopy {
  height: 210px;
  left: 3px;
  position: absolute;
  top: 254px;
  width: 238px;
  z-index: 1;
}

/* SP: ロゴを .mv 左下に固定 */
.mv__logo-sp {
  position: absolute;
  bottom: 24px;
  left: 16px;
  width: 160px;
  height: auto;
  z-index: 10;
}

/* ============================================================
   MV left panel: キーフレーム & アニメーション
   ============================================================ */

/* エントリー: バウンシーなポップイン */
@keyframes mv-pop-in {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.18) rotate(5deg);
  }
  75% {
    transform: scale(0.92) rotate(-3deg);
  }
  90% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes mv-slide-pop-in {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.8) rotate(-6deg);
  }
  55% {
    opacity: 1;
    transform: translateX(12px) scale(1.08) rotate(3deg);
  }
  75% {
    transform: translateX(-5px) scale(0.96) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
  }
}

/* アイドル: 控えめな上下 (キャラクター) */
@keyframes mv-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

/* アイドル: 小さく弾む (ロゴ) */
@keyframes mv-bounce-idle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.04) rotate(-1.5deg);
  }
}

/* アイドル: ぷかぷか浮かびながら時々ピタピタ弾む (SP ロゴ) */
@keyframes mv-cloud-snap {
  /* ぷかぷか × 2 */
  0% {
    transform: translateY(0px) scale(1) rotate(0deg);
    animation-timing-function: ease-in-out;
  }
  13% {
    transform: translateY(-7px) scale(1) rotate(0.8deg);
    animation-timing-function: ease-in-out;
  }
  26% {
    transform: translateY(0px) scale(1) rotate(0deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: translateY(-6px) scale(1) rotate(-0.5deg);
    animation-timing-function: ease-in-out;
  }
  52% {
    transform: translateY(0px) scale(1) rotate(0deg);
    animation-timing-function: ease-in-out;
  }
  /* ピタピタ */
  60% {
    transform: translateY(0px) scale(1) rotate(0deg);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  66% {
    transform: translateY(-9px) scale(1.08) rotate(-3deg);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  72% {
    transform: translateY(2px) scale(0.94) rotate(2.5deg);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  78% {
    transform: translateY(-4px) scale(1.05) rotate(-1deg);
    animation-timing-function: ease-in-out;
  }
  84% {
    transform: translateY(0px) scale(1) rotate(0deg);
    animation-timing-function: ease-in-out;
  }
  /* 最後にぷかっと */
  92% {
    transform: translateY(-5px) scale(1) rotate(0.5deg);
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(0px) scale(1) rotate(0deg);
  }
}

/* アイドル: 緩やかに揺れる (キャッチコピー) */
@keyframes mv-sway {
  0%,
  100% {
    transform: rotate(-1.5deg) translateY(0px);
  }
  50% {
    transform: rotate(1.5deg) translateY(-3px);
  }
}

/* SP ロゴ: エントリー → アイドル */
.mv__logo-sp {
  transform-origin: center center;
  animation:
    mv-pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both,
    mv-float 5s ease-in-out 1.1s infinite;
}

/* PC: 人物 ときどきスケールアップ */
@keyframes mv-char-pulse {
  0%,
  60%,
  100% {
    transform: scale(1);
  }
  73% {
    transform: scale(1.07);
  }
  82% {
    transform: scale(0.95);
  }
  91% {
    transform: scale(1.03);
  }
}

/* PC: バッジ 独立してゆらゆら＋ときどきポップ */
@keyframes mv-badge-bob {
  0%,
  100% {
    transform: rotate(100.65deg) translateY(0px) scale(1);
    animation-timing-function: ease-in-out;
  }
  25% {
    transform: rotate(104deg) translateY(-6px) scale(1);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: rotate(98deg) translateY(1px) scale(1);
    animation-timing-function: ease-in-out;
  }
  65% {
    transform: rotate(100.65deg) translateY(0px) scale(1);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  74% {
    transform: rotate(100.65deg) translateY(-5px) scale(1.12);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  83% {
    transform: rotate(100.65deg) translateY(2px) scale(0.94);
    animation-timing-function: ease-in-out;
  }
  92% {
    transform: rotate(100.65deg) translateY(0px) scale(1);
    animation-timing-function: ease-in-out;
  }
}

/* PC 各要素: エントリー → アイドルをチェーン */
.mv__left-image {
  transform-origin: center bottom;
  animation:
    mv-pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both,
    mv-float 5s ease-in-out 0.9s infinite;
}

.mv__left-character {
  transform-origin: center bottom;
  animation: mv-char-pulse 7s ease-in-out 2s infinite;
}

.mv__left-badge {
  transform-origin: center center;
  animation: mv-badge-bob 5.5s linear 1.5s infinite;
}

.mv__left .mv__logo {
  transform-origin: center center;
  animation:
    mv-pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both,
    mv-bounce-idle 4s ease-in-out 1.2s infinite;
}

/* sway + ときどきスケールアップ */
@keyframes mv-catchcopy-idle {
  0%,
  100% {
    transform: rotate(-1.5deg) translateY(0px) scale(1);
    animation-timing-function: ease-in-out;
  }
  25% {
    transform: rotate(1.5deg) translateY(-3px) scale(1);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: rotate(-1.5deg) translateY(0px) scale(1);
    animation-timing-function: ease-in-out;
  }
  62% {
    transform: rotate(0deg) translateY(-1px) scale(1);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  72% {
    transform: rotate(0.5deg) translateY(-2px) scale(1.06);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  81% {
    transform: rotate(-0.5deg) translateY(1px) scale(0.96);
    animation-timing-function: ease-in-out;
  }
  90% {
    transform: rotate(-1deg) translateY(0px) scale(1.02);
    animation-timing-function: ease-in-out;
  }
}

.mv__left-catchcopy {
  transform-origin: center center;
  animation:
    mv-slide-pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both,
    mv-catchcopy-idle 9s ease-in-out 1.5s infinite;
}

/* ============================================================
   Block: calendar
   ============================================================ */
.calendar-scroll-container {
  position: relative;
  width: 100%;
}

.calendar {
  background-color: var(
    --color-merino
  ); /* carender.svg と同色 (#F3F0E7) — fixed→absolute 切替時の白抜け防止 */
  background-image: url(../../img/bgu-now/carender.svg);
  background-position: 50% 50%;
  background-size: cover;
  /* padding-top はヘッダー高さ + 月ラベルの top 絶対値を吸収できる値に */
  padding: 180px 0 32px;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}

/* 水平方向のみクリップ。overflow-y は visible のまま保ち月ラベルが上にはみ出せる */
.calendar__track-clip {
  overflow-x: hidden; /* clip非対応ブラウザ向けフォールバック */
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
}

.calendar__track {
  display: flex;
  align-items: flex-start;
  /* translateX で水平移動を制御（overflow-x: hidden 不要）*/
  gap: 48px;
  /* SP: 最初のスライドを画面中央からスタート */
  padding: 0 16px 0 50vw;
}

.calendar__slide {
  position: relative; /* 月ラベルの absolute 基点 */
  overflow: visible; /* 月ラベルがスライド外にはみ出せるよう */
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  /* SP: slidesPerView 1.3 相当の幅 */
  width: calc((100vw - 30px) / 1.3);
}

/* ---- 上下オフセット モディファイア ----------------------------------------
   calendar__slide--offset-* をスライドに付けて天地位置を調整
   例: class="swiper-slide calendar__slide calendar__slide--april calendar__slide--offset-md"
   -------------------------------------------------------------------------- */
.calendar__slide--offset-0 {
  margin-top: 0;
}
.calendar__slide--offset-xs {
  margin-top: 16px;
}
.calendar__slide--offset-sm {
  margin-top: 32px;
}
.calendar__slide--offset-md {
  margin-top: 56px;
}
.calendar__slide--offset-lg {
  margin-top: 80px;
}
.calendar__slide--offset-xl {
  margin-top: 100px;
}

/* ---- 点線コネクター (::after) ----------------------------------------------
   JS が各スライドの画像中心座標から角度・長さを計算し
   CSS 変数 (--connector-top / --connector-length / --connector-angle) を設定
   -------------------------------------------------------------------------- */
.calendar__slide::after {
  content: "";
  position: absolute;
  top: var(--connector-top, 35%);
  left: 100%;
  width: var(--connector-length, 48px);
  height: 0;
  border-top: 2px dashed #333;
  transform: rotate(var(--connector-angle, 0deg));
  transform-origin: left center;
  pointer-events: none;
}
.calendar__slide:last-child::after {
  display: none;
}

.calendar__slide-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.calendar__slide-body {
  padding: 12px 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ---- 月ラベル (position: absolute) ----------------------------------------
   calendar__slide-month--* を付けて位置を調整
   例: class="calendar__slide-month calendar__slide-month--above-left"
   -------------------------------------------------------------------------- */
.calendar__slide-month {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  /* デフォルト: スライド左上・少し上に浮かせる */
  top: -72px;
  left: 0;
}

/* 位置モディファイア */
.calendar__slide-month--above-left {
  top: -100px;
  left: auto;
  right: -16px;
}
.calendar__slide-month--above-right {
  top: -72px;
  right: -8px;
  left: auto;
}
.calendar__slide-month--above-center {
  top: -72px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.calendar__slide-month--top-left {
  top: -36px;
  left: 0;
  right: auto;
}
.calendar__slide-month--top-right {
  top: -36px;
  right: 0;
  left: auto;
}
.calendar__slide-month--mid-left {
  top: 20%;
  left: -20px;
  right: auto;
}
.calendar__slide-month--mid-right {
  top: 20%;
  right: -20px;
  left: auto;
}

.calendar__slide-month-num {
  font-family: var(--font-modak);
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px var(--color-gray);
  text-shadow: 3px 3px 0 #33333340;
}

.calendar__slide--april .calendar__slide-month-num {
  color: #ff89c8;
}

.calendar__slide--may .calendar__slide-month-num {
  color: #f7803e;
}

.calendar__slide--june .calendar__slide-month-num {
  color: #b886ff;
}

.calendar__slide-month-label {
  font-family: var(--font-dela-gothic);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 3.2px;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #333;
}

/* 月ごとにラベル色を month-num と同色に */
.calendar__slide--april .calendar__slide-month-label {
  color: #ff89c8;
}

.calendar__slide--may .calendar__slide-month-label {
  color: #f7803e;
}

.calendar__slide--june .calendar__slide-month-label {
  color: #b886ff;
}

/* 5月スライド内の6月ラベル用カラー上書き */
.calendar__slide-month--june-color .calendar__slide-month-num,
.calendar__slide-month--june-color .calendar__slide-month-label {
  color: #b886ff;
}

/* 955px〜1070px: 5月と重なり防止のため6月ラベルを右にずらす */
@media (min-width: 768px) and (max-width: 1070px) {
  .calendar__slide-month--june-color.calendar__slide-month--above-right {
    right: -80px;
  }
}

.calendar__slide--july .calendar__slide-month-num {
  color: #99e71a;
}

.calendar__slide--july .calendar__slide-month-label {
  color: #99e71a;
}

.calendar__slide--august .calendar__slide-month-num,
.calendar__slide--august .calendar__slide-month-label {
  color: #2abfff;
}

.calendar__slide--september .calendar__slide-month-num,
.calendar__slide--september .calendar__slide-month-label {
  color: #ffc634;
}

.calendar__slide--october .calendar__slide-month-num,
.calendar__slide--october .calendar__slide-month-label {
  color: #cc6600;
}

.calendar__slide--november .calendar__slide-month-num,
.calendar__slide--november .calendar__slide-month-label {
  color: #ee6078;
}

.calendar__slide--december .calendar__slide-month-num,
.calendar__slide--december .calendar__slide-month-label {
  color: #00a827;
}

.calendar__slide--january .calendar__slide-month-num,
.calendar__slide--january .calendar__slide-month-label {
  color: #b886ff;
}

.calendar__slide--february .calendar__slide-month-num,
.calendar__slide--february .calendar__slide-month-label {
  color: #7a7dff;
}

.calendar__slide--march .calendar__slide-month-num,
.calendar__slide--march .calendar__slide-month-label {
  color: #61e9b9;
}

.calendar__slide-title-wrap {
  display: inline-block;
  width: fit-content;
}

.calendar__slide-title span {
  background: linear-gradient(transparent 45%, #5c97ee 0);
  padding-bottom: 2px;
}

.calendar__slide-title {
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-xxxxl);
  color: var(--color-dandelion);
  -webkit-text-stroke: 1px var(--color-gray);
  letter-spacing: 1.6px;
  line-height: 1.2;
  white-space: nowrap;
  width: fit-content;
  font-weight: 600;
  text-align: center;
}

.calendar__slide-desc {
  font-family: var(--font-hiragino-w3);
  font-size: var(--font-size-m);
  color: var(--color-gray);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: left;
}

/* ============================================================
   Block: circle-list
   ============================================================ */
.circle-list {
  background-image: url(../../img/bgu-now/circle-list.svg);
  background-position: 50% 50%;
  background-size: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 12px;
  max-width: 1032px;
  padding: 50px 12px;
  width: 100%;
}

.circle-list__inner {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 30px 12px;
  position: relative;
  width: 100%;
}

/* ============================================================
   Block: circle-card
   ============================================================ */
.circle-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: calc((100% - 12px) / 2);
  transition: 0.3s all;
}

.circle-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.circle-card__name-circle {
  transition: 0.3s all;
}

.circle-card:hover .circle-card__name-circle {
  background: #ff6ce9;
}

.circle-card:hover .circle-card__video {
  transform: translate(-50%, -50%) scale(1.2);
}

.circle-card__img {
  position: relative;
  margin-top: -12px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
  display: block;
  border: 6px solid #f3f0e7;
}

.circle-card__footer {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  margin-top: -20px;
  padding: 0 10px;
  position: relative;
  width: 100%;
}

.circle-card__name-wrap {
  align-items: center;
  align-self: stretch;
  border-radius: 1000px;
  display: flex;
  gap: 10px;
  height: 60px;
  justify-content: center;
  padding: 10px;
  position: relative;
  width: 100%;
}

.circle-card__name-bg {
  display: none;
}

.circle-card__name-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  filter: url(#circle-border-filter);
}

.circle-card__name-circle {
  display: block;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s;
}

.circle-card__name-circle + .circle-card__name-circle {
  margin-left: -16px;
}

.circle-card__name {
  align-items: center;
  color: var(--color-gray);
  display: flex;
  flex: 1;
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-m);
  justify-content: center;
  letter-spacing: 1.12px;
  line-height: 16.8px;
  position: relative;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.circle-card__name--multiline {
  flex: 1;
  position: relative;
  text-align: center;
}

/* ============================================================
   circle-card: video (replaces img)
   ============================================================ */
.circle-card {
  cursor: pointer;
}

.circle-card__video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1.2;
  width: 100%;
  border: 6px solid #f3f0e7;
}

.circle-card__video {
  position: absolute;
  width: 100%;
  height: calc(100% * 16 / 9);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  transition: transform 0.3s ease;
}

.circle-card__video--thumb {
  object-fit: cover;
}

/* ============================================================
   Block: circle-modal
   ============================================================ */
.circle-modal-overlay {
  position: fixed;
  inset: 0;
  background-image: url(../../img/bgu-now/circle-list.svg);
  background-position: 50% 50%;
  background-size: 300px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.circle-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.circle-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
  padding-top: 130px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  overflow-y: auto;
}

.circle-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.circle-modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.circle-modal__close {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 60px;
  height: 38px;
  border-radius: 50%;
  background: #333;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 0;
}

.circle-modal__close::before,
.circle-modal__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.circle-modal__close::before {
  transform: rotate(25deg);
}

.circle-modal__close::after {
  transform: rotate(-25deg);
}

.circle-modal__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  flex-shrink: 0;
  border-radius: 20px;
  border: 6px solid #f3f0e7;
  overflow: hidden;
}

/* YT IFrame API が挿入する iframe を 128% サイズに拡大 */
.circle-modal__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 128%;
  height: 128%;
  transform: translate(-50%, -50%);
}
.circle-modal__video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.circle-modal__body {
  padding: 30px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.circle-modal__name-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;
}

/* 正円チェーン (JSで生成) */
.circle-modal__name-circles {
  display: flex;
  align-items: center;
  filter: url(#circle-border-filter);
}

.circle-modal__name-circle {
  display: block;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
}

.circle-modal__name-circle + .circle-modal__name-circle {
  margin-left: -30px;
}

.circle-modal__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-primary, #333);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.72px;
  white-space: nowrap;
  text-align: center;
}

.circle-modal__lead {
  color: var(--Gray-1, #333);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.circle-modal__highlight {
  background: linear-gradient(transparent 55%, #5c97ee 55%);
  color: #fff;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text-primary, #333);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.92px;
  display: inline-block;
}

.circle-modal__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.circle-modal__section-label {
  color: var(--Gray-1, #333);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.circle-modal__section-label::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.circle-modal__section--activities .circle-modal__section-label::before {
  width: 16px;
  height: 25px;
  background-image: url("/assets/img/bgu-now/activities-icon.png");
}

.circle-modal__section--events .circle-modal__section-label::before {
  width: 18px;
  height: 25px;
  background-image: url("/assets/img/bgu-now/schedule-icon.png");
}

.circle-modal__section-text {
  color: var(--color-gray);
  font-family: var(--font-hiragino-w3);
  font-size: 13px;
  line-height: 1.6;
}

.circle-modal__detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.circle-modal__detail-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.circle-modal__detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.circle-modal__detail-label {
  font-family: var(--font-hiragino-w6);
  font-size: 12px;
  color: var(--color-princess-perfume);
  letter-spacing: 0.5px;
}

.circle-modal__detail-text {
  color: var(--color-gray);
  font-family: var(--font-hiragino-w3);
  font-size: 13px;
  line-height: 1.6;
}

.circle-modal__more-btn {
  display: inline-flex;
  align-self: center;
  background: var(--color-dandelion);
  border: 2px solid var(--color-gray);
  border-radius: 100px;
  padding: 10px 28px;
  color: var(--color-gray);
  font-family: var(--font-hiragino-w6);
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 3px 3px 0 rgba(51, 51, 51, 0.25);
  transition: box-shadow 0.2s;
  margin-top: 6px;
}

.circle-modal__more-btn:hover {
  box-shadow: 5px 5px 0 rgba(51, 51, 51, 0.4);
}

/* more-btn color override inside modal */
.circle-modal .more-btn__bg {
  background: #cafa7c;
}

/* wysiwyg の太字（bold）をハイライトスタイルとして使用 */
.circle-modal__lead strong {
  display: inline;
  background: linear-gradient(transparent 50%, #5c97ee 0);
  color: var(--color-dandelion);
  font-family: var(--font-hiragino-w6);
  -webkit-text-stroke: 0.5px var(--color-gray);
}

/* ============================================================
   Block: bcrew
   ============================================================ */
.bcrew {
  align-self: stretch;
  background-image: url(../../img/bgu-now/b-crew.svg);
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

/* Element: ticker */
.bcrew__ticker {
  align-items: center;
  align-self: stretch;
  background-color: var(--color-ebony-clay);
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  overflow: hidden;
  padding: 10px;
  position: relative;
  width: 100%;
}

.bcrew__ticker-track {
  animation: movie-heading-scroll 20s linear infinite;
  display: flex;
  gap: 40px;
  width: max-content;
}

.bcrew__ticker-item {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-gray);
  align-items: center;
  -webkit-text-stroke-color: #93baf5;
  display: flex;
  font-family: var(--font-modak);
  font-size: var(--font-size-xxxl);
  font-weight: 400;
  justify-content: center;
  letter-spacing: 1.92px;
  line-height: 24px;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

/* Element: body */
.bcrew__body {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

/* Element: about */
.bcrew__about {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 30px;
  padding: 0 10px;
  position: relative;
  width: 100%;
}

.bcrew__about-heading {
  align-items: flex-end;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bcrew__about-heading-logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.bcrew__about-logo-text {
  -webkit-text-stroke: 1px var(--color-gray);
  color: #ff6be8;
  font-family: var(--font-modak);
  font-size: 62px;
  font-weight: 400;
  letter-spacing: 4.96px;
  line-height: 62px;
  margin-left: -1px;
  margin-top: -2px;
  text-align: center;
  text-shadow: 4px 4px 0px #33333340;
  white-space: nowrap;
  width: fit-content;
}

.bcrew__about-heading-suffix {
  color: #002672;
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-xxxl);
  font-weight: 400;
  letter-spacing: 0.96px;
  line-height: 24px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.bcrew__about-desc {
  color: var(--color-gray);
  font-family: var(--font-hiragino-w3);
  font-size: var(--font-size-m);
  letter-spacing: 0;
  line-height: 1.7;
  text-align: center;
  width: 100%;
}

.bcrew__about-desc-highlight {
  -webkit-text-stroke: 1px var(--color-gray);
  background: linear-gradient(transparent 58%, #5c97ee 0);
  color: var(--color-dandelion);
  display: inline-block;
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-xxl);
  font-weight: 600;
  letter-spacing: 1.6px;
  padding: 0 6px;
}

/* Element: schedule */
.bcrew__schedule {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.bcrew__schedule-illust {
  height: 225.43px;
  position: relative;
  width: 342px;
}

.bcrew__schedule-illust-right {
  height: 177px;
  left: 173px;
  position: absolute;
  top: 55px;
  width: 169px;
}

.bcrew__schedule-illust-right-char,
.bcrew__schedule-illust-right-deco,
.bcrew__schedule-illust-right-deco2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 人物: パチパチ向き変え */
@keyframes bcrew-char-flip {
  0%,
  30% {
    transform: scaleX(1);
  }
  31% {
    transform: scaleX(-1);
  }
  61% {
    transform: scaleX(-1);
  }
  62% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}

.bcrew__schedule-illust-right-char {
  transform-origin: center center;
  animation: bcrew-char-flip 4s step-end 0s infinite;
}

/* 装飾: 人物とずらして独立フロート＋傾き */
@keyframes bcrew-deco-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  30% {
    transform: translateY(-9px) rotate(4deg);
  }
  65% {
    transform: translateY(-4px) rotate(-2.5deg);
  }
}

.bcrew__schedule-illust-right-deco {
  transform-origin: center center;
  animation: bcrew-deco-float 4s ease-in-out 0.7s infinite;
  width: 18px;
  height: 20px;
  left: 36px;
  top: 20px;
}

/* 装飾2: ぴこぴこ拡大縮小 */
@keyframes bcrew-deco-piko {
  0%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.22);
  }
  35% {
    transform: scale(0.88);
  }
  50% {
    transform: scale(1.12);
  }
  65% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
}

.bcrew__schedule-illust-right-deco2 {
  transform-origin: center center;
  animation: bcrew-deco-piko 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0s infinite;
  width: 40px;
  left: 120px;
  top: -12px;
  height: auto;
}

.bcrew__schedule-illust-left {
  height: 225px;
  left: 0;
  position: absolute;
  top: 0;
  width: 166px;
}

/* 影: キャラが浮くと縮む */
@keyframes bcrew-shadow-breathe {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleX(0.78);
    opacity: 0.55;
  }
}

.bcrew__schedule-illust-shadow {
  height: 168px;
  left: 10px;
  position: absolute;
  top: 57px;
  width: 156px;
  transform-origin: center bottom;
  animation: bcrew-shadow-breathe 5s ease-in-out 0s infinite;
}

/* 人物切り抜き: 左右にカチカチ傾く */
@keyframes bcrew-char-tilt {
  0%,
  49% {
    transform: rotate(-7deg);
  }
  50%,
  99% {
    transform: rotate(6deg);
  }
}

.bcrew__schedule-illust-char {
  height: 168px;
  left: 0;
  position: absolute;
  top: 57px;
  width: 156px;
  transform-origin: center bottom;
  animation: bcrew-char-tilt 4s step-end 0.6s infinite;
}

.bcrew__schedule-illust-badge {
  height: 112px;
  left: 32px;
  position: absolute;
  top: -10px;
  width: 73px;
  transform-origin: center center;
  animation: mv-badge-bob 5.5s linear 1.2s infinite;
}

.bcrew__schedule-illust-badge-label {
  color: var(--color-gray);
  font-family: var(--font-caveat-brush);
  font-size: var(--font-size-xxl);
  font-weight: 400;
  left: -8px;
  letter-spacing: 2px;
  line-height: normal;
  position: absolute;
  top: 52px;
  transform: rotate(-113.02deg);
  white-space: nowrap;
}

.bcrew__schedule-illust-badge-deco {
  height: 112px;
  left: 1px;
  position: absolute;
  top: 0;
  width: 71px;
}

.bcrew__schedule-illust-badge-deco-item--1 {
  height: 26px;
  left: 8px;
  position: absolute;
  top: -2px;
  transform: rotate(-100.65deg);
  width: 12px;
}
.bcrew__schedule-illust-badge-deco-item--2 {
  height: 10px;
  left: 17px;
  position: absolute;
  top: -1px;
  transform: rotate(-100.65deg);
  width: 10px;
}
.bcrew__schedule-illust-badge-deco-item--3 {
  height: 20px;
  left: 43px;
  position: absolute;
  top: 90px;
  transform: rotate(-100.65deg);
  width: 21px;
}
.bcrew__schedule-illust-badge-deco-item--4 {
  height: 5px;
  left: 59px;
  position: absolute;
  top: 96px;
  transform: rotate(-100.65deg);
  width: 13px;
}

.bcrew__schedule-body {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  margin-top: -20px;
  padding: 0 10px;
  position: relative;
  width: 100%;
}

.bcrew__schedule-heading {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}

.bcrew__schedule-heading-circles {
  display: flex;
  align-items: center;
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  pointer-events: none;
  filter: url(#circle-border-filter);
}

.bcrew__schedule-heading-circle {
  display: block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
}

.bcrew__schedule-heading-circle + .bcrew__schedule-heading-circle {
  margin-left: -26px;
}

.bcrew__schedule-heading-img {
  display: block;
  z-index: 1;
}

.bcrew__schedule-heading-img--sp {
  width: 100%;
}

.bcrew__schedule-heading-img--pc {
  display: none;
}

.bcrew__schedule-cards-wrap {
  align-items: center;
  align-self: stretch;
  background-color: #6cc8f9;
  border-radius: 20px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-top: -20px;
  overflow: hidden;
  padding: 80px 0 25px;
  position: relative;
  width: 100%;
  z-index: 0;
}

.bcrew__schedule-cards {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  width: 100%;
}

.bcrew__schedule-card-list {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 25px 0 25px 25px;
  scroll-padding-inline-start: 25px;
  width: 100%;
}

.bcrew__schedule-card-list::-webkit-scrollbar {
  display: none;
}

.bcrew__schedule-card-list::after {
  content: "";
  flex-shrink: 0;
  width: 25px;
}

/* Element: schedule-card */
.bcrew__schedule-card {
  align-items: flex-start;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
}

.bcrew__schedule-card-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.bcrew__schedule-card-inner {
  align-items: flex-start;
  align-self: stretch;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 10px 10px 0px #00000040;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  padding: 10px 10px 12px;
  position: relative;
  width: 100%;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.bcrew__schedule-card-link:hover .bcrew__schedule-card-inner {
  box-shadow: 0px 0px 0px #00000040;
  transform: translate(10px, 10px);
}

.bcrew__schedule-card-thumb {
  height: 198px;
  position: relative;
  width: 198px;
}

.bcrew__schedule-card-thumb-img {
  height: 198px;
  position: relative;
  width: 200px;
}

.bcrew__schedule-card-thumb-img--photo {
  background-image: url(../../img/bgu-now/rectangle-4780-1@2x.png);
  background-position: 50% 50%;
  background-size: cover;
  width: 198px;
  border-radius: 10px;
}

.bcrew__schedule-card-thumb-bg {
  aspect-ratio: 1;
  height: 198px;
  left: 152px;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 46px;
}

.bcrew__schedule-card-thumb-label {
  align-items: center;
  color: var(--color-white);
  display: flex;
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-l);
  height: 22px;
  justify-content: center;
  left: 0;
  letter-spacing: 1.28px;
  line-height: 22.4px;
  position: absolute;
  text-align: center;
  top: calc(50% - 11px);
  width: 198px;
}

.bcrew__schedule-card-tag-wrap {
  align-items: center;
  align-self: stretch;
  background-color: var(--color-merino);
  border-radius: 10px;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-content: space-around;
  padding: 10px;
  position: relative;
  width: 100%;
}

.bcrew__schedule-card-tag-wrap--pink {
  background:
    linear-gradient(
      0deg,
      rgba(243, 231, 241, 1) 0%,
      rgba(243, 231, 241, 1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(243, 240, 231, 1) 0%,
      rgba(243, 240, 231, 1) 100%
    );
}

.bcrew__schedule-card-tag {
  align-items: center;
  color: var(--color-gray);
  display: flex;
  font-family: var(--font-hiragino-w6);
  font-size: 12px;
  letter-spacing: 0.96px;
  line-height: 16.8px;
  margin-top: -1px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

.bcrew__schedule-card-tag-arrow {
  aspect-ratio: 1.49;
  height: 10px;
  position: absolute;
  right: 9px;
  top: 14px;
  width: 13px;
}

.bcrew__schedule-card-date {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  left: -8px;
  position: absolute;
  top: -21px;
}

.bcrew__schedule-card-date-num {
  -webkit-text-stroke: 1px var(--color-gray);
  align-items: center;
  color: var(--color-dandelion);
  display: flex;
  font-family: var(--font-modak);
  font-size: 50px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 4px;
  line-height: 50px;
  margin-left: -1px;
  margin-top: -2px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.bcrew__schedule-card-date-unit {
  align-items: center;
  aspect-ratio: 1;
  background-color: var(--color-gray);
  border: 1px solid;
  border-radius: 1000px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 30px;
  justify-content: center;
  padding: 0 0 2px;
  position: relative;
  width: 30px;
}

.bcrew__schedule-card-date-unit-text {
  align-items: center;
  align-self: stretch;
  color: var(--color-princess-perfume);
  display: flex;
  font-family: var(--font-dela-gothic);
  font-size: var(--font-size-xl);
  font-weight: 400;
  justify-content: center;
  letter-spacing: 1.44px;
  line-height: 18px;
  position: relative;
  text-align: center;
}

.bcrew__schedule-card-date-unit-text--sat {
  color: #67d1ff;
}
/* Element: pagination */
.bcrew__schedule-pagination {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 30px;
  width: 100%;
}

.bcrew__schedule-pagination.pc-only {
  display: none;
}

.bcrew__schedule-pagination-btn {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 36px;
  justify-content: center;
  padding: 10px;
  position: relative;
  width: 56px;
  cursor: pointer;
  transition: transform 0.3s;
}

.bcrew__schedule-pagination-btn:hover {
  transform: translate(3px, 3px);
}

.bcrew__schedule-pagination-btn--prev {
}

.bcrew__schedule-pagination-btn-bg {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  height: 36px;
  margin-bottom: -10px;
  margin-left: -10.16px;
  margin-right: -10.16px;
  margin-top: -10px;
  position: relative;
  transform: rotate(180deg);
  width: 56px;
  box-shadow: -5px -5px 0 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s;
}

.bcrew__schedule-pagination-btn:hover .bcrew__schedule-pagination-btn-bg {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
}

.bcrew__schedule-pagination-btn--next .bcrew__schedule-pagination-btn-bg {
  background-color: #333;
}

.bcrew__schedule-pagination-btn-arrow {
  height: 14px;
  left: calc(50% - 10px);
  position: absolute;
  top: calc(50% - 7px);
  width: 20px;
}

/* Decorative elements (PC) */
.bcrew__schedule-deco {
  position: relative;
}

.bcrew__schedule-deco--top-right {
  height: 204px;
  width: 261px;
  transform-origin: center bottom;
  animation: bcrew-char-tilt 4s step-end 0.5s infinite;
}

.bcrew__schedule-deco--top-left {
  height: 215px;
  width: 190px;
  transform-origin: center bottom;
  animation: bcrew-char-tilt 4s step-end 1.5s infinite;
}

/* illust-right: SP右キャラと同じflip */
.bcrew__schedule-deco--illust-right {
  height: 177px;
  width: 169px;
  transform-origin: center center;
  animation: bcrew-char-flip 4s step-end 0.5s infinite;
  top: -50px;
}

/* illust-char: SP左キャラと同じtilt */
.bcrew__schedule-deco--illust-char {
  height: 168px;
  width: 156px;
  transform-origin: center bottom;
  animation: bcrew-char-tilt 4s step-end 1s infinite;
  top: -18px;
}

.bcrew__schedule-deco--center {
  height: 202px;
  position: relative;
  width: 176px;
  right: 10px;
}

.bcrew__schedule-deco-row {
  display: none;
}

.bcrew__schedule-deco-shadow {
  height: 193px;
  left: 2px;
  position: absolute;
  top: 9px;
  width: 164px;
  transform-origin: center bottom;
  animation: bcrew-char-tilt 4s step-end 0s infinite;
}

.bcrew__schedule-deco-char {
  aspect-ratio: 0.79;
  height: 169px;
  left: 9px;
  position: absolute;
  top: 11px;
  width: 134px;
  transform-origin: center bottom;
  animation: bcrew-char-tilt 4s step-end 0s infinite;
}

.bcrew__schedule-deco-item--1 {
  height: 14px;
  left: 122px;
  position: absolute;
  top: 1px;
  width: 13px;
  transform-origin: center center;
  animation: bcrew-deco-piko 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s
    infinite;
}

.bcrew__schedule-deco-item--2 {
  height: 26px;
  left: 3px;
  position: absolute;
  top: 46px;
  width: 16px;
  transform-origin: center center;
  animation: bcrew-deco-float 3.8s ease-in-out 1.1s infinite;
}

/* ============================================================
    Block: movie-section
    ============================================================ */
.movie-section {
  align-items: center;
  align-self: stretch;
  background-image: url(../../img/bgu-now/movie-list.svg);
  background-position: 50% 50%;
  background-size: 300px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  padding: 60px 28px 150px;
  position: relative;
  width: 100%;
}

.movie-section__heading {
  bottom: 40px;
  color: var(--color-tan);
  font-family: var(--font-modak);
  font-size: 96px;
  font-weight: 400;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.movie-section__heading-track {
  animation: movie-heading-scroll 12s linear infinite;
  display: flex;
  gap: 20px;
  width: max-content;
}

.movie-section__heading-text {
  align-items: center;
  display: flex;
  justify-content: center;
  letter-spacing: 0;
  line-height: 96px;
  margin-top: -2px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.movie-section__list-wrap {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  width: 100%;
}

@keyframes movie-heading-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
    Block: movie-card
   ============================================================ */
.movie-card {
  align-items: flex-start;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  position: relative;
}

.movie-card__thumb {
  aspect-ratio: 0.56;
  height: 283.12px;
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
  object-fit: cover;
  position: relative;
  width: 161px;
}

.movie-card__title {
  align-self: stretch;
  color: var(--color-gray);
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-l);
  letter-spacing: 0;
  line-height: 25px;
  position: relative;
}

.movie-card__tags {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 4px;
  position: relative;
  width: 100%;
}

.movie-card__tag {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 1000px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 1px;
  padding: 4px 8px;
  position: relative;
}

.movie-card__tag-hash,
.movie-card__tag-text {
  color: var(--color-gray);
  font-family: var(--font-hiragino-w3);
  font-size: var(--font-size-s);
  letter-spacing: 0;
  line-height: 15px;
  margin-top: -1px;
  position: relative;
  white-space: nowrap;
  width: fit-content;
}

/* ============================================================
Block: more-btn
============================================================ */
.more-btn {
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  min-height: 42px;
  position: relative;
  text-decoration: none;
  transform: rotate(10deg);
  transition: transform 0.3s ease;
}

.more-btn:hover {
  transform: rotate(7deg) scale(1.06);
}

.more-btn__bg {
  background:
    linear-gradient(0deg, rgba(255, 250, 95, 1) 0%, rgba(255, 250, 95, 1) 100%),
    linear-gradient(
      0deg,
      rgba(117, 133, 253, 1) 0%,
      rgba(117, 133, 253, 1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 190, 225, 1) 0%,
      rgba(255, 190, 225, 1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 100%
    );
  border-radius: 118px/35px;
  box-shadow: 4px 4px 0px #33333340;
  height: 70px;
  position: relative;
  transition: box-shadow 0.3s ease;
  width: 236px;
}

.more-btn:hover .more-btn__bg {
  box-shadow: 8px 8px 0px #33333366;
}

.more-btn__bg-ellipse {
  border: 1px solid var(--color-gray);
  border-radius: 110.57px/29.37px;
  height: 59px;
  left: 7px;
  position: relative;
  top: 6px;
  width: 221px;
}

.more-btn__label {
  align-items: center;
  display: inline-flex;
  left: calc(50% - 84px);
  position: absolute;
  top: calc(50% - 5px);
}

.more-btn__label-inner {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  max-width: 212px;
  min-width: 152px;
  padding: 0 4px;
  position: relative;
}

.more-btn__label-text {
  -webkit-text-stroke: 1px var(--color-gray);
  color: var(--color-gray);
  flex: 1;
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-l);
  letter-spacing: 1.28px;
  line-height: 16px;
  margin-left: -1px;
  margin-top: -2px;
  position: relative;
  text-align: center;
}

.more-btn__arrow {
  aspect-ratio: 1.99;
  height: 9.38px;
  margin-right: -0.75px;
}
.more-btn__outbound-icon {
  display: block;
  margin-left: 4px;
  width: 10px;
  position: relative;
  left: -22px;
}

.more-btn:hover .more-btn__arrow {
  transform: rotate(-10deg) translateX(5px);
}

/* ============================================================
   Block: site-footer
   ============================================================ */
.site-footer {
  align-items: flex-start;
  align-self: stretch;
  background-color: transparent;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  margin-top: -40px;
  position: relative;
  width: 100%;
}

/* Element: upper */
.site-footer__upper {
  align-items: center;
  align-self: stretch;
  background-image: url(../../img/bgu-now/frame-5454.svg);
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 40px 40px 0 0;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 50px;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -1px;
  padding: 40px 16px 100px;
  position: relative;
  width: 100%;
}

/* Element: instagram */
.site-footer__instagram {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 32px;
  position: relative;
  width: 100%;
}

.site-footer__instagram-heading {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-content: center;
  position: relative;
  width: 200px;
}

.site-footer__instagram-icon {
  aspect-ratio: 1;
  height: 26px;
  position: relative;
  width: 26px;
}

.site-footer__instagram-label {
  color: var(--color-navy);
  font-family: var(--font-raleway);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.52px;
  line-height: 39px;
  margin-top: -1px;
  white-space: nowrap;
  width: fit-content;
}

.site-footer__instagram-photos {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px 5px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.site-footer__instagram-photo-link {
  display: block;
  flex-shrink: 0;
}

.site-footer__instagram-photo {
  aspect-ratio: 0.8;
  height: 103px;
  object-fit: cover;
  position: relative;
  width: 82px;
}

.site-footer__instagram-link {
  align-items: center;
  background-color: #d93177;
  border-radius: 100px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0 26px;
  position: relative;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.site-footer__instagram-link:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.site-footer__instagram-link-text {
  color: var(--color-white);
  font-family: var(--font-dosis);
  font-size: var(--font-size-m);
  font-weight: 600;
  letter-spacing: 0.7px;
  line-height: 16.8px;
  margin-top: -1px;
}

.site-footer__instagram-link-icon {
  align-items: center;
  align-self: stretch;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-content: center;
  padding: 12px 0 6px;
  position: relative;
}

.site-footer__outbound-icon {
  height: 14px;
  position: relative;
  width: 14px;
}

/* Element: nav */
.site-footer__nav {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  padding: 0 30px;
  position: relative;
  width: 100%;
}

.site-footer__nav-item {
  align-items: center;
  align-self: stretch;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 10px;
  display: flex;
  height: 60px;
  justify-content: space-between;
  padding: 16px 16px 16px 8px;
  position: relative;
  width: 100%;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-footer__nav-item:hover {
  background-color: var(--color-merino);
  transform: translateX(4px);
  box-shadow: -3px 0 0 0 var(--color-sushi);
}

.site-footer__nav-item-inner {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 20px;
  margin-bottom: -8px;
  margin-top: -8px;
  position: relative;
}

.site-footer__nav-item-icon-wrap {
  align-items: center;
  aspect-ratio: 1;
  background-color: var(--color-merino);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
}

.site-footer__nav-item-icon-box {
  height: 28px;
  margin-bottom: -2px;
  margin-left: -0.37px;
  margin-right: -0.37px;
  margin-top: -2px;
  position: relative;
  width: 24.75px;
}

.site-footer__nav-item-icon {
  height: 15px;
  left: 3px;
  position: absolute;
  top: 4px;
  width: 22px;
}

.site-footer__nav-item-icon-deco--bar1 {
  background-color: var(--color-white);
  border: 1px solid var(--color-ebony-clay);
  border-radius: 1000px;
  height: 28px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 5px;
}

.site-footer__nav-item-icon-deco--bar2 {
  background-color: #ffff33;
  border: 1px solid var(--color-ebony-clay);
  border-radius: 1000px;
  height: 7px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 7px;
}

.site-footer__nav-item-icon-img {
  aspect-ratio: 1;
  height: 44px;
  position: relative;
  width: 44px;
}

.site-footer__nav-item-label {
  color: var(--color-navy);
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-l);
  letter-spacing: 0;
  line-height: 24px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.site-footer__nav-item::after {
  content: "";
  flex-shrink: 0;
  width: 31px;
  height: 20px;
  background-image: url("/assets/img/bgu-now/popup-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Element: lower */
.site-footer__lower {
  align-items: center;
  align-self: stretch;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 40px 40px 0 0;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  margin-bottom: -1px;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -40px;
  padding: 30px;
  position: relative;
  width: 100%;
}

/* Element: switchon */
.site-footer__switchon {
  align-items: center;
  border-radius: 20px;
  display: flex;
  height: 162px;
  justify-content: space-around;
  margin-left: -30px;
  margin-right: -28px;
  padding: 16px 16px 16px 8px;
  position: relative;
  width: 390px;
}

.site-footer__switchon-inner {
  height: 135.26px;
  margin-bottom: -2.63px;
  margin-top: -2.63px;
  position: relative;
  width: 349.68px;
  display: block;
  text-decoration: none;
  transform: rotate(-5deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer__switchon-inner:hover {
  transform: rotate(0deg);
}

.site-footer__switchon-ellipse-outer {
  height: 126px;
  left: calc(50% - 174px);
  position: absolute;
  top: calc(50% - 63px);
  width: 349px;
}

.site-footer__switchon-ellipse-inner {
  height: 123px;
  left: calc(50% - 175px);
  position: absolute;
  top: calc(50% - 62px);
  width: 350px;
}

.site-footer__switchon-border {
  border: 1px solid var(--color-gray);
  border-radius: 167.78px/53.21px;
  height: 106px;
  left: calc(50% - 168px);
  position: absolute;
  top: calc(50% - 53px);
  transform: rotate(-5deg);
  width: 336px;
}

.site-footer__switchon-deco {
  height: 26px;
  left: 26px;
  position: absolute;
  top: 1px;
  width: 52px;
}

.site-footer__switchon-btn {
  align-items: center;
  aspect-ratio: 1.56;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 28px;
  justify-content: center;
  padding: 10px;
  position: absolute;
  right: 28px;
  top: calc(50% - 25px);
  transform: rotate(-5deg);
  width: 44px;
}

.site-footer__switchon-btn-bg {
  background: linear-gradient(
    0deg,
    rgba(51, 51, 51, 1) 0%,
    rgba(51, 51, 51, 1) 100%
  );
  border-radius: 22px/14px;
  height: 28px;
  margin-bottom: -10px;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
  position: relative;
  transform: rotate(180deg);
  width: 44px;
}

.site-footer__switchon-btn-icon {
  aspect-ratio: 1;
  height: 22px;
  left: calc(50% - 11px);
  position: absolute;
  top: calc(50% - 11px);
  transform: rotate(5deg);
  width: 22px;
}

.site-footer__switchon-logo {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  left: 98px;
  overflow: hidden;
  padding: 1px 0;
  position: absolute;
  top: 35px;
  transform: rotate(-5deg);
}

.site-footer__switchon-logo-label {
  color: var(--color-navy);
  font-family: var(--font-hiragino-w6);
  font-size: var(--font-size-xl);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 27px;
  margin-top: -1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.site-footer__switchon-logo-img {
  aspect-ratio: 7.28;
  height: 32.62px;
  margin-bottom: -1px;
  margin-left: -0.59px;
  margin-right: -0.6px;
  position: relative;
  transform: rotate(5deg);
  width: 146.81px;
}

.site-footer__switchon-union {
  height: 34px;
  left: 268px;
  position: absolute;
  top: 90px;
  width: 25px;
  transition: 0.3s all;
}

.site-footer__switchon-inner:hover .site-footer__switchon-union {
  display: none;
}

/* Element: copyright */
.site-footer__copyright {
  align-self: stretch;
  color: #646f70;
  font-family: var(--font-dosis);
  font-size: var(--font-size-s);
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 17px;
  position: relative;
  text-align: center;
}

/* ============================================================
   Block: sns-list
   ============================================================ */
.sns-list {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px 15px;
  justify-content: center;
  max-width: 285px;
  padding: 12px;
  position: relative;
  width: 100%;
}

.sns-list__row {
  align-items: flex-start;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 15px;
  justify-content: center;
  position: relative;
}

.sns-list__item {
  height: 48px;
  position: relative;
  width: 48px;
}

.sns-list__icon {
  height: 50px;
  left: calc(50% - 25px);
  position: absolute;
  top: calc(50% - 25px);
  width: 50px;
}

/* ============================================================
   Block: scroll-top
   ============================================================ */
.scroll-top {
  height: 88px;
  left: 297px;
  position: absolute;
  top: 718px;
  width: 88px;
}

.scroll-top__inner {
  box-shadow: 4px 4px 0px #33333340;
  height: 93.66%;
  position: relative;
  width: 93.66%;
}

.scroll-top__icon--circle {
  height: 101.21%;
  left: 0;
  position: absolute;
  top: 0;
  width: 101.21%;
}

.scroll-top__icon--arrow {
  height: 28.08%;
  left: 25.63%;
  position: absolute;
  top: 42.09%;
  width: 49.39%;
}

.scroll-top__icon--dot {
  height: 16.58%;
  left: 42.72%;
  position: absolute;
  top: 18.5%;
  width: 14.56%;
}

.scroll-top__pc-btn {
  aspect-ratio: 1;
  height: 124px;
  left: 1120px;
  position: absolute;
  top: 928px;
  width: 124px;
}

/* ============================================================
   PC (768px+)
   ============================================================ */
@media screen and (min-width: 768px) {
  /* Utility */
  .pc-only {
    display: block;
  }
  .bcrew__schedule-card.pc-only {
    display: inline-flex;
  }
  .bcrew__schedule-pagination.pc-only {
    display: flex;
  }
  .sp-only {
    display: none !important;
  }

  /* loading logo */
  .bgu-now-loading__logo {
    width: 100%;
  }

  /* bgu-now-header PC */
  .bgu-now-header__inner {
    padding: 14px 40px;
  }

  .bgu-now-header__logo {
    width: 142px;
  }

  .bgu-now-header__nav {
    border-radius: 1000px;
    border: 1px solid var(--text-primary, #333);
    background: var(--background-quaternary, #fff);
    padding: 20px 24px;
  }

  .bgu-now-header__nav-list {
    list-style: none;
    display: flex;
    gap: 36px;
  }

  .bgu-now-header__nav-link {
    color: var(--text-primary, #333);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
  }

  .bgu-now-header__nav-link::before {
    content: "";
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 4px #85bd2a;
    margin-right: 10px;
    width: 16px;
    height: 16px;
  }

  .bgu-now-header__nav-link:hover {
    opacity: 0.6;
  }

  /* MV */
  /* padding: 20% 0 は CSS の % 指定が幅基準のため画面幅が広いほど縦方向の表示領域を
   圧迫し、スライドアイテムが下からはみ出てしまう。flex centering に変更 */
  .mv {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .mv__movie-list {
    padding: 80px 0 100px;
    width: 100%;
  }

  .mv__movie-item {
    width: 383px;
  }

  /* PC: .mv__left を flex 列に変更し、スライド高さの天地中央に揃える
   スライドサイズ: width=383px, height=383*16/9≒681px, padding-top=80px */
  .mv__left {
    top: 0;
    bottom: 0;
    margin: auto;
    height: calc(383px * 16 / 9);
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* flex フロー用に absolute → relative に切り替え */
  .mv__left-image {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
  }

  /* PC: .mv__left 内のロゴ */
  .mv__left .mv__logo {
    position: relative;
    bottom: auto;
    left: auto;
    top: auto;
    width: 368px;
    height: auto;
    z-index: 1;
    margin-top: 18px;
  }

  /* PC: キャッチコピー */
  .mv__left-catchcopy {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 28px;
  }

  /* Calendar */
  .calendar {
    background-image: url(../../img/bgu-now/carender-1.svg);
    padding: 190px 0 120px;
  }

  .calendar__track {
    padding: 0 60px;
    gap: 80px;
  }

  .calendar__slide {
    /* PC: slidesPerView 3 相当の幅 */
    width: calc((100vw - 120px - 80px * 2) / 3);
  }

  /* PC: オフセット量を SP より大きく上書き */
  .calendar__slide--offset-0 {
    margin-top: 0;
  }
  .calendar__slide--offset-xs {
    margin-top: 24px;
  }
  .calendar__slide--offset-sm {
    margin-top: 48px;
  }
  .calendar__slide--offset-md {
    margin-top: 80px;
  }
  .calendar__slide--offset-lg {
    margin-top: 120px;
  }
  .calendar__slide--offset-xl {
    margin-top: 160px;
  }

  /* PC: 月ラベルを少し大きく */
  .calendar__slide-month-num {
    font-size: 120px;
  }
  .calendar__slide-month {
    top: -88px;
  }

  /* Circle list */
  .circle-list {
    align-items: center;
    background-image: url(../../img/bgu-now/circle-list-1.svg);
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    max-width: 100%;
    padding: 80px 40px;
  }

  .circle-list__inner {
    align-items: flex-start;
    display: flex;
    flex: 1;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 80px 32px;
    justify-content: center;
    max-width: 90%;
    width: 100%;
  }

  .circle-card {
    width: calc((100% - 32px * 3) / 4); /* 4アイテム横並び */
  }

  .circle-card__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: -24px; /* video 下端に少し被せる */
    padding: 0 8px;
    position: relative;
    z-index: 1;
  }

  .circle-card__img--type-a,
  .circle-card__img--type-b {
    height: 240px;
    margin-right: -14px;
  }

  /* Circle modal overlay PC background */
  .circle-modal-overlay {
    background-image: url(../../img/bgu-now/circle-list-1.svg);
    background-size: cover;
  }

  /* Circle modal PC layout */
  .circle-modal {
    align-items: flex-start;
    padding: 20px;
    padding-top: 142px;
  }

  .circle-modal__inner {
    flex-direction: row;
    padding-top: 0;
  }

  .circle-modal__video-wrap {
    width: 383px;
    aspect-ratio: 9 / 16;
    height: 100%;
  }

  .circle-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 40px 30px;
  }

  .circle-modal__close {
    top: 152px;
    right: 30px;
    width: 80px;
    height: 50px;
    font-size: 22px;
  }

    .circle-modal__close::before,
    .circle-modal__close::after {
        width: 28px;
    }

  .circle-card__name-wrap {
    height: 72px;
    margin-top: 0;
    padding: 12px;
    width: 100%;
  }

  .circle-card__name-circle {
    width: 80px;
    height: 80px;
  }

  .circle-card__name-circle + .circle-card__name-circle {
    margin-left: -20px;
  }

  .circle-card__name {
    font-size: var(--font-size-l);
    letter-spacing: 0.64px;
    line-height: 1.4;
    top: 0;
  }

  /* B-Crew */
  .bcrew {
    background-image: url(../../img/bgu-now/b-crew-1.svg);
    gap: 90px;
  }

  .bcrew__body {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 50px;
  }

  .bcrew__about {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .bcrew__about-logo-text {
    font-size: 82px;
    letter-spacing: 6.56px;
    line-height: 82px;
  }

  .bcrew__about-heading-suffix {
    font-size: 32px;
    letter-spacing: 1.28px;
    line-height: 32px;
  }

  .bcrew__schedule {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
  }

  .bcrew__schedule-deco-row {
    align-items: flex-end;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: -40px;
  }

  .bcrew__schedule-body {
    z-index: 1;
  }

  .bcrew__schedule-cards-wrap {
    border-radius: 40px;
    gap: 40px;
    margin-top: -16px;
    padding: 60px 0 30px;
    width: fit-content;
    margin: 0 auto;
  }

  .bcrew__schedule-cards {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    width: 1000px;
  }

  .bcrew__schedule-card-list {
    align-items: center;
    align-self: stretch;
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    overflow-x: scroll;
    scrollbar-width: none;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .bcrew__schedule-card-list::-webkit-scrollbar {
    display: none;
  }

  /* Movie */
  .movie-section {
    overflow: hidden;
    padding: 100px 28px 226px;
  }

  .movie-section__heading {
    bottom: 72px;
    font-size: 200px;
    left: 0;
    width: 100%;
  }

  .movie-section__heading-track {
    gap: 60px;
  }

  .movie-section__heading-text {
    line-height: 200px;
  }

  .movie-section .short-movie__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }

  /* Footer upper */
  .site-footer__upper {
    align-items: flex-start;
    background-image: url(../../img/bgu-now/frame-45862.svg);
    border-radius: 80px 80px 0 0;
    display: flex;
    flex-direction: row;
    gap: 80px;
    justify-content: center;
    margin-left: -1px;
    margin-right: -1px;
    margin-top: -80px;
    padding: 60px 30px 160px;
  }

  .site-footer__instagram {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 546px;
  }

  .site-footer__instagram-heading {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    width: 100%;
    flex-direction: row;
  }

  .site-footer__instagram-photos {
    gap: 20px 15px;
  }

  .site-footer__instagram-photo {
    height: 215px;
    width: 172px;
  }

  .site-footer__nav {
    align-items: flex-start;
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
    padding: 0;
    max-width: 374px;
  }

  .site-footer__nav-item {
    border-color: var(--color-sushi);
    height: 100px;
    padding: 16px;
  }

  .site-footer__nav-item::after {
    width: 44px;
    height: 28px;
  }

  .site-footer__nav-item-icon-wrap {
    height: 68px;
    width: 68px;
  }

  .site-footer__nav-item-icon-img {
    height: 68px;
    width: 68px;
  }

  .site-footer__nav-item-icon-box {
    height: 40px;
    width: 35.36px;
  }

  .site-footer__nav-item-label {
    line-height: 30px;
  }

  /* Footer lower */
  .site-footer__lower {
    border-radius: 80px 80px 0 0;
    margin-top: -80px;
    padding: 60px 30px 30px;
  }

  .site-footer__copyright {
    font-size: var(--font-size-xs);
    letter-spacing: 1.8px;
  }

  .bcrew__schedule-heading-img--sp {
    display: none;
  }

  .bcrew__schedule-heading-img--pc {
    display: block;
    max-width: 516px;
    width: 100%;
    position: absolute;
    top: -52px;
  }

  .bcrew__schedule-heading-circle {
    width: 70px;
    height: 70px;
  }

  .bcrew__schedule-heading-circle + .bcrew__schedule-heading-circle {
    margin-left: -33px;
  }

  /* circle-modal section icons (PC) */
  .circle-modal__section--activities .circle-modal__section-label::before {
    width: 20px;
    height: 25px;
  }

  .circle-modal__section--events .circle-modal__section-label::before {
    width: 23px;
    height: 26px;
  }

  .circle-modal__name-circle {
    width: 100px;
    height: 100px;
  }

  .bcrew__about-desc-highlight {
    padding: 0 10px;
  }
}

.short-movie__grid-item-movie {
  border-radius: 12px;
  border: 6px solid #f3f0e7;
}

.youtube-player--thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.circle-modal__name--small {
  font-size: 25px;
}

/* ============================================================
   Block: bgu-now-to-top
   ============================================================ */
.bgu-now-to-top {
  background: none;
  border: none;
  bottom: 20px;
  cursor: pointer;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.bgu-now-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.bgu-now-to-top__img {
  display: block;
  width: 64px;
}
@media screen and (min-width: 768px) {
  .bgu-now-to-top__img {
    display: block;
    width: 88px;
  }

  .bcrew__about-desc {
    font-size: 18px;
    letter-spacing: 1.44px;
  }

  .bcrew__about-desc-highlight {
    font-size: 28px;
  }
  .calendar__slide-desc {
    text-align: center;
    }
}
