
/* =========================================
   迷路ページ専用 CSS
   /css/maze.css
========================================= */

/* 全体の基本レイアウト */
.maze-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.2rem;
  font-family: 'Segoe UI', sans-serif;
}

/* -----------------------------
   ページタイトル
----------------------------- */
.page-title {
  font-size: 1.9rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
}

.page-lead {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* -----------------------------
   各セクション共通スタイル
----------------------------- */
.section {
  margin-bottom: 3.5rem;
}

.section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}

/* -----------------------------
   制作ストーリー
----------------------------- */
.story-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.story-section p {
  font-size: 0.7rem;
}

/* --- モバイル（基本） --- */
.story-block {
  display: flex;
  flex-direction: column;  /* スマホは縦並び */
  gap: 20px;
  margin-bottom: 50px;
}

.story-text {
  font-size: 1rem;
  line-height: 1.8;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* --- PC版（768px以上で横並び） --- */
@media (min-width: 768px) {
  .story-section p {
    font-size: 1rem;
  }

  .story-block {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  /* 反転させたいブロックだけ reverse を適用 */
  .story-block.reverse {
    flex-direction: row-reverse;
  }

  .story-text, .story-image {
    flex: 1;
  }
}

/* =========================
   TV取材レポート・レイアウト調整
   ========================= */

/* 見出し下の説明文 */
.tv-lead {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #333;
}

/* モバイル：縦並び */
.tv-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tv-item {
  text-align: center;
}

.tv-thumb img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.tv-caption {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: #222;
}

/* PC：横並びに変更 */
@media (min-width: 768px) {

  .tv-items {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .tv-item {
    width: 45%;
    text-align: center;
  }

  .tv-thumb img {
    max-width: 100%;
  }

  .tv-caption {
    font-size: 1.1rem;
  }
}

/* -----------------------------
   CTAボタン
----------------------------- */
.cta {
  text-align: center;
}

.cta-btn {
  background: dodgerblue;
  color: #fff;
  padding: 1rem 2rem;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cta-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}