/* 
* 1分で伝わる製品説明動画サービス LP
* 統一スタイルシート Part 2
*/

/* 電話問い合わせセクションのスタイル */
.phone-contact {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    margin: 0 auto;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 25px;
    height: 25px;
    color: #fff;
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}


/* ===== メリットセクション ===== */
.benefits {
  background-color: var(--light);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  color: var(--primary);
  font-size: 24px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 15px;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
}

.benefits-container .benefit-icon {
  /* サイズはお好みで調整 */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 緑の丸 */
  background-color: var(--primary);
  border-radius: 50%;
  /* 余白やマージンはお好み */
  margin-bottom: 12px;
}

/* 既存の img を非表示に */
.benefits-container .benefit-icon img {
  display: none;
}

/* 白いチェックマーク（Unicode）を中央に */
.benefits-container .benefit-icon::before {
  content: "\2713";        /* ✔ の Unicode */
  font-size: 32px;         /* サイズ調整 */
  color: #fff;             /* 白 */
  line-height: 1;
}


/* ===== 絵コンテ・企画力の強みセクション ===== */
.storyboard-strength {
  background-color: var(--dark);
  color: var(--light);
  position: relative;
}

.storyboard-strength .section-title-alt h2,
.storyboard-strength .section-title h2 {
  color: var(--light);
}

.storyboard-section {
  margin-bottom: 60px;
}

.storyboard-content-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.storyboard-content {
  flex: 1;
}

.storyboard-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.storyboard-catch {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--primary);
}

.storyboard-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.storyboard-points {
  list-style: none;
  margin-bottom: 30px;
}

.storyboard-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.storyboard-point-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 14px;
}

.storyboard-point strong {
  color: var(--primary);
}

.storyboard-footer {
  background-color: rgba(4, 171, 150, 0.15);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 30px;
}

.storyboard-image {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.storyboard-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.storyboard-samples {
  margin: 60px 0;
}

.storyboard-samples h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 30px;
  text-align: center;
}

.storyboard-sample-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

/*.storyboard-sample {
  width: 300px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}*/

.storyboard-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storyboard-samples p {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: var(--light);
}

.planning-section {
  margin-top: 60px;
}

/* 高さを固定して、その中に画像を収める */
.storyboard-sample {
  /*flex: 1;*/
  height: 280px;           /* 必要に応じて高さは調整 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.storyboard-sample img {
  max-height: 100%;        /* 長辺（高さ）に合わせる */
  max-width: 100%;         /* 幅があふれる場合は縮小 */
  object-fit: contain;     /* トリミングなし */
  display: block;
}

/* ───────────────────────────── */
/* ●絵コンテ・企画力セクション：うっすら背景画像 */
/* ───────────────────────────── */
.storyboard-strength {
  position: relative;
  /* 現状の黒背景を維持 */
  background-color: #000;
  /* セクション上下の余白は既存に合わせてください */
  padding: 80px 0;
  overflow: hidden; /* 擬似要素はみ出し防止 */
}

.storyboard-strength::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* あとで画像パスを差し替えてください */
  background-image: url("../img/office-wall-mural.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;        /* うっすら度合い（増減可） */
  pointer-events: none; /* 背景への操作を無効化 */
  z-index: 1;
}

/* 内部コンテンツを前面に */
.storyboard-strength .container {
  position: relative;
  z-index: 2;
}

/* テキストが埋もれないように色を白に */
.storyboard-strength .section-title-alt h2,
.storyboard-strength .storyboard-title,
.storyboard-strength .storyboard-catch,
.storyboard-strength .storyboard-description,
.storyboard-strength .storyboard-points,
.storyboard-strength .storyboard-footer {
  color: #fff;
}


/* ===== 制作フロー ===== */
.production-flow {
  background-color: var(--light);
}

.flow-image {
  display: block;
  max-width: 100%;
  margin: 0 auto 50px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.flow-details {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}


.flow-detail h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.flow-detail h3.highlight::before {
  background-color: var(--primary);
}

.flow-detail p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

.flow-note {
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  font-weight: bold;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
/* カード自体を相対位置に */
/* ─── 制作の流れカード：先頭画像＋本文エリア ─── */
.flow-card {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ① 先頭画像ブロック */
.flow-card-image {
  border-radius: var(--radius-sm); /* 角丸 */
  overflow: hidden;                /* 画像を角丸内に収める */
  margin-bottom: 16px;             /* 画像と h3 の間隔 */
}

.flow-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* 全体を表示 */
  object-position: center;
  display: block;
}


/* ② 本文エリア */
.flow-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* タイトル 2509修正 */
.flow-card-title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
}

/* 丸数字 */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

/* リストリセット */
.flow-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow-card-content li {
  margin-bottom: 8px;
}

/* ステップごとに色を変えたい場合
.step-num[data-step="1"] { background-color: #39b54a; }
.step-num[data-step="2"] { background-color: #00aaff; }
.step-num[data-step="3"] { background-color: #ff9900; }
.step-num[data-step="4"] { background-color: #dd3377; } */
/* ───────────────────────────── */
/* ●制作の流れカード：横並び＆二重枠解除＆リストスタイルなし */
/* ───────────────────────────── */

/* 1. カードコンテナを横並びに */
.flow-card-container {
  display: flex;
  gap: 24px;             /* カード間の余白 */
  flex-wrap: wrap;       /* 必要に応じて折り返し */
}

/* 2. カード自体の枠は白の1本線だけ */
.flow-card {
  border: 1px solid #fff; /* 白枠 */
  box-shadow: none;        /* 余分な影や内側の枠を消す */
  background-color: #fff;  /* 中の背景を白に */
  position: relative;
  padding: 24px;
  flex: 1;                 /* 均等幅にしたい場合 */
  min-width: 220px;        /* カードの最小幅 */
}

/* 3. リストスタイル（●）を消す */
.flow-card ul,
.flow-card li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 4. 見出しの丸数字やアイコンはそのまま表示 */
.flow-card-title {
  margin-bottom: 16px;     /* テキストとの余白調整 */
}

.flow-card-icon {
  /* 右上配置のまま */
}



/* ===== 業界別ユースケース ===== */
.use-cases {
  background-color: var(--white);
}

.use-cases-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.use-case-card {
  width: calc(50% - 15px);
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.use-case-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.use-case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-case-company-bar {
  width: 100%;
  background-color: var(--accent);
  color: var(--dark);
  padding: 15px 20px;
  font-weight: 600;
}

.use-case-content {
  padding: 25px;
}

.use-case-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.use-case-description {
  font-size: 15px;
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.use-case-points {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.use-case-point {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  opacity: 0.8;
}

.use-case-point:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary);
  font-size: 18px;
}

.use-case-detail-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.use-case-detail-link:after {
  content: "→";
  margin-left: 5px;
}

/* ===== 実績セクション ===== */
.cases {
  background-color: var(--light);
}

.cases-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}

.case-card {
  width: 48%;
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.case-image {
  width: 100%;
  height: 220px;
  background-color: var(--light-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  overflow: hidden;
}

.case-content {
  padding: 30px;
}

.case-company {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.case-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--divider);
}

.case-description {
  font-size: 15px;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 25px;
  line-height: 1.7;
}

.case-result {
  background-color: var(--success);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

/* ===== 他社比較 ===== */
.comparison {
  background-color: var(--light);
}

.comparison-table {
  width: 100%;
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-collapse: collapse;
  margin-bottom: 40px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--divider);
}

.comparison-table th {
  background-color: var(--dark);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.comparison-table th:first-child {
  text-align: left;
  width: 30%;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: bold;
  color: var(--dark);
}

.comparison-advantage {
  color: var(--primary);
  font-weight: bold;
}

.comparison-disadvantage {
  color: var(--danger);
}

.comparison-footer {
  background-color: var(--primary-light);
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--dark);
  line-height: 1.7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 他社比較セクション用追加スタイル */
.comparison-table tr.row-even {
  background-color: rgba(248, 249, 250, 0.4);
}

.comparison-table tr.row-odd {
  background-color: #ffffff;
}

.comparison-arrow {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.comparison-strength {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 40px;
}

.comparison-strength strong {
  color: var(--primary);
}

/* ===== よくある質問 ===== */
.faq {
  background-color: var(--light-gray);
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 質問部分のスタイル */
.faq-question {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  color: var(--dark);
  font-size: 16px;
  transition: var(--transition);
  background-color: #fff;
}

.faq-question.active {
  background-color: var(--light);
}

/* Q&Aのアイコン */
.faq-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-question .faq-icon {
  background-color: var(--primary-light);
  color: var(--primary);
}

.faq-answer .faq-icon {
  background-color: var(--primary);
  color: white;
}

.faq-question-text {
  flex: 1;
}

/* トグルボタン(+/-)のスタイル */
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-toggle .close-icon {
  display: none;
}

.faq-question.active .open-icon {
  display: none;
}

.faq-question.active .close-icon {
  display: block;
}

/* 回答部分のスタイル */
.faq-answer {
  padding: 5px 20px 20px;
  background-color: #fff;
  border-top: 1px solid var(--divider);
  
  /* アニメーション用スタイル */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.55, 0, 0.1, 1), 
              padding 0.2s cubic-bezier(0.55, 0, 0.1, 1), 
              opacity 0.2s ease;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  display: flex; /* 表示方法はflexに設定 */
}

.faq-answer.active {
  max-height: 1000px; /* 十分な高さ */
  padding: 20px 20px 20px 20px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.35s cubic-bezier(0, 0, 0.2, 1), 
              opacity 0.25s ease,
              padding 0.25s cubic-bezier(0, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0, 0, 0.2, 1);
}

.faq-answer-text {
  flex: 1;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.8;
  font-size: 15px;
  padding-top: 6px;
}

/* シュッとしたアニメーション効果のスタイル */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.55, 0, 0.1, 1), 
              padding 0.2s cubic-bezier(0.55, 0, 0.1, 1), 
              opacity 0.2s ease;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.faq-answer.active {
  max-height: 1000px; /* 十分な高さ */
  padding: 20px 20px 20px 20px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.35s cubic-bezier(0, 0, 0.2, 1), 
              opacity 0.25s ease,
              padding 0.25s cubic-bezier(0, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0, 0, 0.2, 1);
}

/* フェードイン効果 - シュッと素早く */
.faq-answer-text {
  transition: opacity 0.25s ease;
}

/* +/- アイコンのアニメーション改良 */
.faq-toggle {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-question .open-icon,
.faq-question .close-icon {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 質問項目のホバーエフェクト */
.faq-question:hover {
  background-color: rgba(4, 171, 150, 0.05);
  transition: background-color 0.2s ease;
}


/* レスポンシブ対応 */
@media (max-width: 576px) {
  .contact-info {
    padding: 12px 20px;
  }
  
  .phone-icon {
      width: 40px;
      height: 40px;
      margin-right: 15px;
  }
  
  .phone-icon svg {
      width: 20px;
      height: 20px;
  }
  
  .phone-number {
      font-size: 20px;
  }
  
  .contact-time {
      font-size: 12px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }
  
  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 10px;
  }
    
  .faq-answer-text {
    font-size: 14px;
  }
}

/* ===== フッターCTA ===== */
.footer-cta {
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
}

.footer-cta-text {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 15px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: var(--transition);
}

.footer-cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(4, 171, 150, 0.4);
}

.footer-cta-button-secondary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--dark);
  border: 1px solid var(--accent);
  padding: 15px 40px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: var(--transition);
}

.footer-cta-button-secondary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(254, 240, 0, 0.3);
}

/* ===== フッター ===== */
.footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.service-info .logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-provider {
  color: #666;
  font-size: 14px;
}

.office-list h3,
.company-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.office-item {
  margin-bottom: 16px;
}

.office-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.office-address,
.office-contact {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.office-contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.office-contact a:hover {
  color: var(--primary-dark);
}

.company-logo {
  max-width: 240px;
  height: auto;
  margin-bottom: 15px;
}

.company-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.footer-links {
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.copyright {
  color: #999;
  font-size: 12px;
}

@media (max-width: 968px) {
  .footer-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .company-info {
      grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  .company-info {
      grid-column: span 1;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 16px;
      text-align: center;
  }
  
  .footer-nav {
      flex-direction: column;
      gap: 16px;
      align-items: center;
  }
}

/* ===== 追加のレスポンシブ対応 ===== */
@media (max-width: 992px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .use-case-card {
    width: 100%;
  }
  
  .storyboard-content-wrapper {
    flex-direction: column;
  }
  
  .storyboard-image {
    max-width: 100%;
    margin-top: 30px;
  }
  
  .storyboard-sample-container {
    flex-direction: column;
    align-items: center;
  }
  
  .storyboard-sample {
    width: 100%;
    max-width: 300px;
  }
  
  .cases-container {
    flex-direction: column;
  }
  
  .case-card {
    width: 100%;
  }
  
  .comparison-table {
    font-size: 14px;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: 10px;
  }
  .comparison-strength {
    font-size: 18px;
  }
  .comparison-table th {
    font-size: 14px;
  }
  .comparison-table th,
  .comparison-table td {
    text-align: left !important;
  }
    .comparison-table td,
  .comparison-table th {
    padding: 12px 15px !important;
  }
  
  
  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-cta-button, 
  .footer-cta-button-secondary {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .section-title h2, 
  .section-title-alt h2 {
    font-size: 24px;
  }
  
  .footer-cta-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .flow-detail {
    width: 100%;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 15px;
  }
  
  .faq-answer {
    font-size: 14px;
  }
  
  .footer-link {
    display: block;
    margin: 10px 0;
  }
}