@charset "utf-8";

.fixed-bannar {
  display: none;
}

.content {
  overflow: hidden;
}

.check-also {
  display: none;
}

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

.container {
  position: relative;
}

/* ============================================================
  MV
  ============================================================ */
.b-crew__mv {
  position: relative;
  padding: 0 0 120px;
}

.b-crew__mv__title {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.b-crew__mv__title-sub {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.b-crew__mv__title-img {
  display: block;
  width: 154px;
}

.b-crew__mv-video {
  position: relative;
  z-index: 1;
}

.b-crew__mv-video::before {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/bg__mv-movie.png);
  background-repeat: no-repeat;
  background-size: contain;
  width:100px ;
  height: 100px;
  position: absolute;
  top: -35px;
  left: 10px;
  z-index: -1;
}

.b-crew__mv-video::after {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/bg__mv-movie.png);
  background-repeat: no-repeat;
  background-size: contain;
  width:100px ;
  height: 100px;
  position: absolute;
  bottom: -40px;
  right: 10px;
  z-index: -1;
}

.b-crew__mv-video-wrap {
  position: relative;
  overflow: hidden;
  width: 90%;
  aspect-ratio: 3/4;
  margin: 0 auto;
}

.b-crew__mv-img {
  display: block;
  width: 100%;
}

.b-crew__mv-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.b-crew__mv-video-wrap.is-playing .b-crew__mv-video-player {
  opacity: 1;
}

.b-crew__mv-video-butoon {
  color: #8B0B1F;
  text-align: center;
  font-family: Barlow;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.64px;
  border-radius: 60px;
  border: 1px solid #8B0B1F;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #8B0B1F;
  padding: 2px 5px 2px 13px;
  width: fit-content;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.b-crew__mv-video-butoon::after {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/icon_mv-video-butoon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

@keyframes b-crew-staff-pop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.b-crew__mv-staff-img {
  display: block;
  width: 74px;
  position: absolute;
  z-index: 10;
}

.b-crew__mv-staff--01 {
  top: -50px;
  left: 7px;
  animation: b-crew-staff-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.3s;
}

.b-crew__mv-staff--02 {
  bottom: 36px;
  left: 7px;
  animation: b-crew-staff-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.5s;
}

.b-crew__mv-staff--03 {
  bottom: 120px;
  right: 4px;
  animation: b-crew-staff-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.7s;
}

.b-crew__scroll-down {
  color: #8B0B1F;
  text-align: center;
  font-family: Barlow;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.64px;
  writing-mode: vertical-rl;
  position: absolute;
  right: -23px;
  top: -2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.b-crew__scroll-down::before {
  content: "";
  display: block;
  background-color: #8B0B1F;
  width: 1px;
  height: 40px;
}

@media (min-width: 1000px) {
  .b-crew__mv__title-sub {
    font-size: 18px;
  }

  .b-crew__mv__title-img {
    width: 185px;
  }

  .b-crew__mv-video::before {
    width:200px ;
    height: 200px;
    top: -54px;
    left: 20px;
  }

  .b-crew__mv-video::after {
    width:200px ;
    height: 200px;
    bottom: -73px;
    right: 20px;
  }

  .b-crew__mv-video-wrap {
    width: 80%;
  }

  .b-crew__mv-video-butoon {
    font-size: 18px;
    letter-spacing: 0.72px;
  }

  .b-crew__mv-staff-img {
    width: 120px;
  }

  .b-crew__mv-staff--01 {
    top: -102px;
    left: 14px;  
  }

  .b-crew__mv-staff--02 {
    bottom: -49px;
    left: 12px;
  }

  .b-crew__mv-staff--03 {
    bottom: 116px;
    right: 4px;
  }

  .b-crew__scroll-down {
    right: 34px;
    top: -2px;
    font-size: 20px;
    letter-spacing: 0.8px;
  }

  .b-crew__scroll-down::before {
    content: "";
    display: block;
    background-color: #8B0B1F;
    width: 1px;
    height: 40px;
  }

}

/* ============================================================
   INTRO
   ============================================================ */
.b-crew__intro {
  background-image: url(../../img/event/b-crew/bg_intro.png);
  background-repeat: no-repeat;
  background-size: 100% 449px;
  padding: 60px 0 160px;
  position: relative;
}

.b-crew__intro__title {
  width: 108px;
  margin-bottom: 6px;
  position: absolute;
  top: -2px;
  left: 30px;
}

.b-crew__intro__title-img {
  display: block;
  width: 100%;
}

.b-crew__intro__staff-img-01 {
  display: block;
  width: 128px;
  position: absolute;
  top: -113px;
  right: 14px;
  z-index: 1;
  opacity: 0;
}

.b-crew__intro__staff-img-01.is-animated {
  animation: b-crew-staff-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.1s;
}

.b-crew__intro__staff-img-02 {
  display: block;
  width: 345px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  opacity: 0;
}

.b-crew__intro__staff-img-02.is-animated {
  animation: b-crew-staff-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.5s;
}

.bcrew__about-desc {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.56px;
}

.bcrew__about-desc-highlight {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.56px;
  background-image: linear-gradient(#FFF, #FFF);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 3px 5px;
  transition: background-size 0.4s ease;
}

.bcrew__about-desc-highlight.is-revealed {
  background-size: 100% 100%;
}

@media (min-width: 1000px) {
  .b-crew__intro {
    background-size: 100% 620px;
    padding: 100px 0 250px;
  }

  .b-crew__intro__title {
    width: 185px;
    margin-bottom: 4px;
    top: -7px;
  }

  .b-crew__intro__staff-img-01 {
    width: 160px;
    top: -113px;
    right: 40px;
  }

  .b-crew__intro__staff-img-02 {
    width: 500px;
  }

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

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

/* ============================================================
   POSITION
   ============================================================ */
.b-crew__position {
  padding: 50px 0;
}

.b-crew__contents-title {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.b-crew__contents-title::before {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/icon_quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 17px;
  margin-right: 10px;
}

.b-crew__contents-title::after {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/icon_quote.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 17px;
  margin-left: 10px;
  transform: rotate(180deg);
}

.b-crew__contents-title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b-crew__contents-title-text::after {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/icon_down.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 16px;
  margin-top: 10px;
}

.b-crew__contents-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-crew__contents-head-img {
  display: block;
  width: 100%;
}

.b-crew__position-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.b-crew__position-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.b-crew__position-item-info {
  padding: 0 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 51%;
}

.b-crew__position-item:nth-child(2n) .b-crew__position-item-info {
  order: 2;
  padding: 0 10px 0 0;
}

.b-crew__position-item-staff-img {
  display: block;
  width: 100%;
}

.b-crew__position-item-name {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.72px;
}

.b-crew__position-item-desc {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.56px;
}

.b-crew__position-item-photo {
  display: block;
  width: 50%;
}

@media (min-width: 1000px) {
  .b-crew__position {
    padding: 100px 0;
  }

  .b-crew__contents-title {
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 1.28px;
  }

  .b-crew__contents-title::before {
    width: 20px;
  }

  .b-crew__contents-title::after {
    width: 20px;
  }

  .b-crew__position-item-name {
    font-size: 24px;
    letter-spacing: 0.96px;
  }

  .b-crew__position-item-desc {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

/* ============================================================
   DESCRIPTION
   ============================================================ */
.b-crew__description {
  padding: 50px 0;
  background-image: url(../../img/event/b-crew/bg_description.png);
  background-size: 20px;
}

.b-crew__description-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 1000px) {
  .b-crew__description {
    padding: 100px 0;
  }

  .b-crew__description-inner {
    gap: 100px;
  }
}

/* ============================================================
   TORISETSU
   ============================================================ */
.b-crew__torisetsu {
  padding: 0 10px;
}

.b-crew__torisetsu-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.b-crew__torisetsu-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.b-crew__torisetsu-item-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.b-crew__torisetsu-item-img {
  display: block;
  width: 100%;
}

.b-crew__torisetsu-item-label {
  color: var(--text-primary, #333);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.b-crew__torisetsu-item-label::before {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/icon_check.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0;
}

.b-crew__torisetsu-item-desc {
  color: var(--text-primary, #333);
  font-size: 14px;
  font-weight: 300;
}

.b-crew__torisetsu-item-highlight {
  color: #8B0B1F;
  font-weight: 600;
}

@media (min-width: 1000px) {
  .b-crew__torisetsu {
    padding: 0 40px;
  }

  .b-crew__torisetsu-item-label {
    font-size: 24px;
    letter-spacing: 0.96px;
  }

  .b-crew__torisetsu-item-desc {
    font-size: 18px;
    line-height: 1.7;
  }
}

/* ============================================================
    COURSE
   ============================================================ */
.b-crew__course {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 10px;
}

.b-crew__course-lead {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

.b-crew__course-lead-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.b-crew__course-lead-highlight::after {
  content: "";
  display: block;
  background-image: url(../../img/event/b-crew/icon_beginner.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 20px;
}

.b-crew__course-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-crew__course-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}

.b-crew__course-list::before {
  content: "";
  display: block;
  background-color: #8B0B1F;
  width: 8px;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.b-crew__course-item {
  border-radius: 10px;
  border: 4px solid #8B0B1F;
  background: var(--color-main-White, #FFF);
  position: relative;
}

.b-crew__course-item-wrap {
  padding: 42px 10px 30px;
}

.b-crew__course-item:first-child .b-crew__course-item-wrap {
  padding-top: 62px;
}

.b-crew__course-item-index {
  color: #8B0B1F;
  font-family: Barlow;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 10px;
  border: 4px solid #8B0B1F;
  background: var(--color-main-White, #FFF);
  padding: 8px 20px 12px;
  width: fit-content;
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  margin: auto;
}

.b-crew__course-item-title {
  color: var(--text-primary, #333);
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.b-crew__course-item-title-span {
  background-image: linear-gradient(transparent 75%, #C8ECE2 0);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  display: block;
  width: fit-content;
  transition: background-size 0.4s ease;
}

.b-crew__course-item-title-span.is-revealed {
  background-size: 100% 100%;
}

.b-crew__course-item-title-span--small {
  font-size: 14px;
}

.b-crew__course-item-title-img {
  display: block;
  width: 68px;
  position: absolute;
  left: -65px;
  top: -27px;
}

.b-crew__course-item-img-wrap {
  background-color: #FFE5ED;
  border-radius: 0 0 10px 10px;
}

.b-crew__course-item-img {
  display: block;
  width: 100%;
}

.b-crew__course-annotation {
  color: var(--text-primary, #333);
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 12px;
  font-weight: 300;
  display: flex;
  gap: 4px;
}

.b-crew__course-annotation::before {
  content: "※";
  display: block;
  color: var(--text-primary, #333);
  font-size: 12px;
  font-weight: 300;
}

.b-crew__course-item__bubble-img {
  display: block;
  width: 82px;
  position: absolute;
  left: 0;
  top: -50px;
}

.b-crew__course-item__staff-img {
  display: block;
  width: 125px;
  position: absolute;
  z-index: 1;
}

.b-crew__course-item:nth-child(2) .b-crew__course-item__staff-img {
  right: -27px;
  top: -132px;
}

.b-crew__course-item:nth-child(4) .b-crew__course-item__staff-img {
  left: -29px;
  top: -69px;
}

.b-crew__course-item:nth-child(6) .b-crew__course-item__staff-img {
  right: -30px;
  top: -108px;
}

.b-crew__course-item:nth-child(7) .b-crew__course-item__staff-img {
  left: -52px;
  top: -171px;
}

@media (min-width: 1000px) {
  .b-crew__course {
    padding: 40px;
  }

  .b-crew__course-lead {
    font-size: 18px;
  }

  .b-crew__course-item {
    border-radius: 20px;
  }

  .b-crew__course-item-index {
    font-size: 24px;
  }

  .b-crew__course-item-title {
    font-size: 28px;
    font-weight: 700;
  }

  .b-crew__course-item-img-wrap {
    border-radius: 0 0 16px 16px;
  }

  .b-crew__course-annotation {
    font-size: 14px;
  }

  .b-crew__course-annotation::before {
    font-size: 14px;
  }

  .b-crew__course-item__staff-img {
    width: 149px;
  }

  .b-crew__course-item:nth-child(2) .b-crew__course-item__staff-img {
    right: -56px;
    top: -170px;
  }

  .b-crew__course-item:nth-child(4) .b-crew__course-item__staff-img {
    left: -61px;
    top: -82px;
  }

  .b-crew__course-item:nth-child(6) .b-crew__course-item__staff-img {
    right: -47px;
    top: -152px;
  }

  .b-crew__course-item:nth-child(7) .b-crew__course-item__staff-img {
    left: -84px;
    top: -187px;
  }
}

/* ============================================================
   CTA
   ============================================================ */
.b-crew__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.b-crew__cta-text {
  color: #8B0B1F;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.b-crew__cta-text-highlight {
  color: var(--text-inverse, #FFF);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.64px;
  display: block;
  background: #8B0B1F;
  padding: 2px 16px;
  width: fit-content;
}

.b-crew__cta-link {
  display: block;
  width: 82%;
}

.b-crew__cta-img {
  display: block;
  width: 100%;
}

@media (min-width: 1000px) {
  .b-crew__cta-text {
    font-size: 18px;
  }

  .b-crew__cta-text-highlight {
    font-size: 20px;
    letter-spacing: 0.8px;
  }

  .b-crew__cta-link {
    width: 70%;
  }
}

/* ============================================================
   PC: SPサイズのコンテンツをセンタリング、左右は背景のみ
   ============================================================ */
@media (min-width: 1000px) {
  html {
    background-color: #FFFFFF;
    background-image: url(../../img/event/b-crew/bg_description.png);
    background-size: 80px;
    overflow: hidden;
    height: 100%;
  }

  #b-crew-intro,
  #b-crew-position,
  #b-crew-torisetsu {
    scroll-margin-top: 142px;
  }

  body.page-b-crew {
    width: 32%;
    min-width: 600px;
    margin-right: auto;
    margin-left: auto;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    border-right: 3px solid #8B0B1F;
    border-left: 3px solid #8B0B1F;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }

  body.page-b-crew::-webkit-scrollbar {
    display: none;
  }

  .sns-block__inner {
    flex-direction: column;
    gap: 60px;
  }

  .sns__ig {
    width: 100%;
  }

  .sns-block__tiktok {
    width: 100%;
  }
}

/* ============================================================
   ANCHOR LINK
   ============================================================ */
.b-crew__anchor-link {
  display: none;
}

@media (min-width: 1200px) {
  .b-crew__anchor-link {
    display: block;
    position: fixed;
    left: max(calc(50% + 300px), 66%);
    top: 192px;
    width: 227px;
    z-index: 100;
  }

  .b-crew__anchor-link-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .b-crew__anchor-link-item {
    border-radius: 0 30px 10px 0;
    background: #8B0B1F;
    width: 100%;
  }

  .b-crew__anchor-link-item--position {
    background: #34AD8B;
  }

  .b-crew__anchor-link-item--torisetsu {
    background: #F8B83A;
  }

  .b-crew__anchor-link-item--voice {
    background: #FFBBD0;
  }

  .b-crew__anchor-link-btn {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(0);
    transition: transform 0.25s ease;
  }

  .b-crew__anchor-link-item.is-active {
    background: #fff;
    border: 2px solid ;
    border-width: 2px 2px 2px 0;
  }

  .b-crew__anchor-link-item--intro.is-active {
    border-color: #8B0B1F;
  }

  .b-crew__anchor-link-item--position.is-active {
    border-color: #34AD8B;
  }

  .b-crew__anchor-link-item--torisetsu.is-active {
    border-color: #F8B83A;
  }

  .b-crew__anchor-link-item.is-active .b-crew__anchor-link-text,
  .b-crew__anchor-link-item.is-active .b-crew__anchor-link-english {
    color: var(--text-primary, #333);
  }

  .b-crew__anchor-link-text {
    color: var(--text-inverse, #FFF);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    width: fit-content;
    position: relative;
  }

  .b-crew__anchor-link-text::after {
    content: "";
    display: block;
    background-image: url(../../img/event/b-crew/icon_quote-white.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 8px;
    position: absolute;
    right: -13px;
    top: -2px;
  }

  .b-crew__anchor-link-small-text {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    display: block;
  }

  .b-crew__anchor-link-english {
    color: var(--text-inverse, #FFF);
    font-family: Barlow;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }

  .b-crew__anchor-link-item--torisetsu .b-crew__anchor-link-text {
    color: var(--text-primary, #333);
    font-size: 16px;
    letter-spacing: 0.8px;
    text-align: left;
  }

  .b-crew__anchor-link-item--voice .b-crew__anchor-link-text {
    color: var(--text-primary, #333);
  }

  .b-crew__anchor-link-item--torisetsu .b-crew__anchor-link-english {
    color: var(--text-primary, #333);
  }

  .b-crew__anchor-link-item--voice .b-crew__anchor-link-english {
    color: var(--text-primary, #333);
  }

}

/* ============================================================
   SP追従ボタン
   ============================================================ */
.b-crew__sp-fixed-btn {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.b-crew__sp-fixed-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.b-crew__sp-fixed-btn-img {
  display: block;
  width: 192px;
  filter: drop-shadow(0 11.394px 22.788px rgba(0, 0, 0, 0.25));
}

@media (min-width: 1000px) {
  .b-crew__sp-fixed-btn {
    right: 22%;
  }
}

/* ============================================================
   PC背景装飾
   ============================================================ */
.b-crew__bg-deco {
  display: none;
}

@media (min-width: 1000px) {
  .b-crew__bg-deco {
    display: block;
  }

  .b-crew__bg-deco-left-block {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 5%;
    margin: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 20%;
  }

  .b-crew__bg-deco-side-logo {
    display: block;
    width: 100%;
    max-width: 280px;
  }

  .b-crew__bg-deco-oc-btn-img {
    display: block;
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 11.394px 22.788px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
  }

  .b-crew__bg-deco-oc-link:hover .b-crew__bg-deco-oc-btn-img {
    transform: scale(1.1);
  }

  .b-crew__bg-deco-staff-bl {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 20%;
    max-width: 300px;
  }

  .b-crew__bg-deco-staff-br {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 20%;
    max-width: 300px;
  }
}

@media (min-width: 1200px) {
  .b-crew__sp-fixed-btn {
    display: none;
  }

  .b-crew__bg-deco-left-block {
    display: flex;
  }
}


/* ============================================================
   スクロール入場アニメーション（position-item / contents-head / cta-link）
   ============================================================ */
.b-crew__position-item-staff-img,
.b-crew__contents-head-img,
.b-crew__cta-link {
  opacity: 0;
}

.b-crew__position-item-staff-img.is-animated,
.b-crew__contents-head-img.is-animated,
.b-crew__cta-link.is-animated {
  animation: b-crew-staff-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ============================================================
   カタカタアニメーション（course-item staff images）
   ============================================================ */
@keyframes b-crew-katakta {
  0%, 49% {
      transform: rotate(-1deg);
  }
  50%, 99% {
      transform: rotate(3deg);
  }
}

.b-crew__course-item__staff-img {
  transform-origin: center bottom;
  animation: b-crew-katakta 2s step-end infinite;
}

.b-crew__course-item:nth-child(2) .b-crew__course-item__staff-img { animation-delay: 0.5s; }
.b-crew__course-item:nth-child(3) .b-crew__course-item__staff-img { animation-delay: 1.0s; }
.b-crew__course-item:nth-child(4) .b-crew__course-item__staff-img { animation-delay: 1.5s; }
.b-crew__course-item:nth-child(5) .b-crew__course-item__staff-img { animation-delay: 2.0s; }
.b-crew__course-item:nth-child(6) .b-crew__course-item__staff-img { animation-delay: 2.5s; }

/* ============================================================
   文字送りアニメーション（torisetsu-item-label）
   ============================================================ */
@keyframes b-crew-char-reveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.b-crew__torisetsu-item-label .b-crew__char {
  display: inline-block;
  opacity: 0;
}

.b-crew__torisetsu-item-label.is-animating .b-crew__char {
  animation: b-crew-char-reveal 0.2s ease forwards;
}

/* ============================================================
   動画モーダル
   ============================================================ */
.b-crew__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
}

.b-crew__modal.is-open {
  display: flex;
}

.b-crew__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.b-crew__modal-inner {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 260px;
}

@media (min-width: 1000px) {
  .b-crew__modal {
    padding-top: 0;
  }

  .b-crew__modal-inner {
    max-width: 480px;
  }
}

.b-crew__modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.b-crew__modal-close::before,
.b-crew__modal-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.b-crew__modal-close::before {
  transform: translateY(-50%) rotate(45deg);
}

.b-crew__modal-close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.b-crew__modal-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.b-crew__modal-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   MV動画ローダー（bgu-now スタイル）
   ============================================================ */

/* ローディングドット */
@keyframes b-crew-loading-dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%            { transform: scale(1.0); opacity: 1; }
}

.b-crew__mv-video-loading {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.b-crew__mv-video-wrap.is-playing .b-crew__mv-video-loading {
  opacity: 0;
}

.b-crew__mv-video-loading__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: b-crew-loading-dot-bounce 1.1s ease-in-out infinite;
}

.b-crew__mv-video-loading__dot--1 {
  background: #8B0B1F;
  animation-delay: 0s;
}

.b-crew__mv-video-loading__dot--2 {
  background: #34AD8B;
  animation-delay: 0.18s;
}

.b-crew__mv-video-loading__dot--3 {
  background: #F8B83A;
  animation-delay: 0.36s;
}

/* サムネイルカバー */
@keyframes b-crew-thumb-drift {
  from {
    filter: blur(20px);
    transform: scale(1.1);
  }
  to {
    filter: blur(14px);
    transform: scale(1.2) translate(-1%, -1%);
  }
}

/* YouTubeのUI（ボタン類）を遮断するオーバーレイ */
.b-crew__mv-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
}
