/* ===========================
   HERO（動画）
=========================== */
.movie-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.movie-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.35);
}

.movie-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.movie-hero-text p {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.9;
}

/* SP */
@media (max-width: 900px) {
  .movie-hero {
    height: 50vh;
  }
  .movie-hero-text h1 {
    font-size: 28px;
  }
  .movie-hero-text p {
    font-size: 16px;
  }
}


/* ===========================
   サービス紹介
=========================== */
.movie-service {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.movie-service h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.2s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0,0,0,0.12);
}

.service-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-item h3 {
  margin-top: 15px;
  font-size: 22px;
}

.service-item p {
  margin: 10px 20px 20px;
  opacity: 0.8;
}

/* SP */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   セクション共通
=============================== */
.video-card-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  color: #fff;
}

.video-card-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

/* ===============================
   上段：実写・アニメーション・3DCG
   PC：横並び
   スマホ：縦並び
=============================== */
/* 上段：実写・アニメーション・3DCG */

.video-expression-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  color: #fff;
}

.video-expression-grid {
  display: flex;
  justify-content: center;  /* 中央寄せ */
  gap: 24px;
}



/* スマホは縦並び＋中央寄せ */
@media (max-width: 900px) {
  .video-expression-grid {
    flex-direction: column;
    align-items: center; /* 中央寄せ */
    gap: 20px;
  }

  .video-expression-grid .video-card {
    width: 100%;
    max-width: 360px;
  }
}


/* ===============================
   カード共通デザイン
=============================== */
.video-card {
  background: rgba(10,10,15,0.9);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  width: 100%;
}

/* カード上部の画像 */
.video-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.video-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.video-card p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
}

/* スクロールアニメ */
.js-video-card.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   下段：動画制作・映像制作の種類
   PC：4列
   スマホ：2列
=============================== */
.video-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* スマホ：2列 */
@media (max-width: 900px) {
  .video-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .video-card-img {
    height: 90px;
  }

  .video-card h3 {
    font-size: 14px;
  }

  .video-card p {
    font-size: 11px;
  }
}

/* セクション全体 */
.video-flow-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  color: #fff;
}

.video-flow-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}

/* PC：3列 × 2段 */
.video-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* カード */
.video-flow-card {
  background: rgba(10,10,15,0.9);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

/* カード画像 */
.video-flow-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* 番号バッジ */
.flow-number {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #e6007e;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.video-flow-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.video-flow-card p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
}

/* スマホ：縦並び */
@media (max-width: 900px) {
  .video-flow-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-flow-img {
    height: 120px;
  }
}


/* ===========================
   料金プラン
=========================== */
.movie-price {
  background: #fafafa;
  padding: 100px 20px;
}

.movie-price h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.price-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.price-item {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.price-item:hover {
  transform: translateY(-6px);
}

.price-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.price-item .price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d9534f;
}

.price-item p {
  opacity: 0.8;
}

/* SP */
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   実績紹介
=========================== */
.movie-works {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.movie-works h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.works-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  text-align: center;
}

.works-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.works-item p {
  padding: 15px;
  font-size: 18px;
  opacity: 0.8;
}

/* SP */
@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   お問い合わせバナー
=========================== */
.movie-contact-banner {
  margin: 100px 0;
  padding: 0 20px;
}

.movie-contact-banner a {
  display: block;
  background: url("../images/movie-contact.jpg") center/cover no-repeat;
  padding: 70px 20px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
}

/* 黒レイヤー */
.movie-contact-banner a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 16px;
}

.movie-contact-banner a:hover {
  opacity: 0.9;
}

.movie-contact-banner a span {
  position: relative;
  z-index: 2;
}

/* ============================
   バナー全体
============================ */
.recruit-banner {
  width: 100%;
  background: #1a1f2e;
  padding: 40px 20px;
  border-radius: 14px;
  margin: 60px auto;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* ============================
   タイトル
============================ */
.banner-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* ============================
   説明文（ここが表示されないと言っていた部分）
============================ */
.banner-text4 {
  font-size: 16px;
  margin-bottom: 22px;
  color: #dfe4ff;
  text-align: center;
}

/* ============================
   ボタン
============================ */
.banner-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #3f7bff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
}

/* ============================
   スマホ最適化
============================ */
@media (max-width: 600px) {

  .recruit-banner {
    padding: 32px 16px;
  }

  .banner-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .banner-text4 {
    font-size: 14px;
    line-height: 1.6;
  }

  .banner-btn {
    width: 100%;
    max-width: 260px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

