/* ============================================================
 * page-website-production-cases.css
 * 料金プラン参考事例ページ（/website-production/cases/）専用スタイル
 *
 * 当面は「準備中」表示の暫定実装。本格実装（10業種ペルソナ展開）に
 * 入る際は、このファイルにカードレイアウト等を増築するか別ファイル
 * に切り出す。
 *
 * 既存トークン --atb-olive / --atb-olive-dark / --atb-beige /
 * --atb-terracotta のみで構成（header.css / footer.css の :root に
 * 定義済みのものを参照）。
 * ============================================================ */

.atb-cases-page {
  color: var(--atb-olive);
  background: var(--atb-beige);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ------------------------------------------------------------
 * ヒーロー（他ページの atb-faq-hero と同じ olive-dark + beige 系）
 * ------------------------------------------------------------ */

.atb-cases-hero {
  background: var(--atb-olive-dark);
  color: var(--atb-beige);
  padding: 96px 24px 80px;
}

.atb-cases-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.atb-cases-hero__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
  color: var(--atb-beige-dim);
  text-transform: uppercase;
}

.atb-cases-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  line-height: 1.3;
}

.atb-cases-hero__lead {
  font-size: 0.95rem;
  line-height: 1.95;
  color: rgba(237, 237, 220, 0.85);
  margin: 0;
}

@media (max-width: 768px) {
  .atb-cases-hero {
    padding: 80px 20px 64px;
  }
}

/* ------------------------------------------------------------
 * 準備中メッセージ
 *
 * 中央寄せ + 余白たっぷり + opacity で控えめなトーン。
 * 「Coming Soon」の eyebrow は他ページの label 表現と統一。
 * ------------------------------------------------------------ */

.atb-cases-placeholder {
  padding: 96px 24px 120px;
}

.atb-cases-placeholder__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.atb-cases-placeholder__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--atb-terracotta);
  margin: 0 0 24px;
  opacity: 0.85;
}

.atb-cases-placeholder__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--atb-olive);
  margin: 0 0 40px;
}

.atb-cases-placeholder__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--atb-olive);
  opacity: 0.8;
  margin: 0 0 24px;
  text-align: left;
}

.atb-cases-placeholder__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--atb-olive);
  opacity: 0.72;
  margin: 0 0 48px;
  text-align: left;
  padding-top: 24px;
  border-top: 1px dashed rgba(63, 59, 0, 0.18);
}

@media (max-width: 768px) {
  .atb-cases-placeholder {
    padding: 64px 20px 88px;
  }
  .atb-cases-placeholder__heading {
    margin-bottom: 32px;
  }
  .atb-cases-placeholder__body,
  .atb-cases-placeholder__note {
    font-size: 0.88rem;
  }
}

/* ------------------------------------------------------------
 * CTA ボタン群
 *
 * AtoBoo の他ページ（404.php / page-faq.php の atb-faq-cta__link）と
 * 同じ意匠：primary は olive 背景 + beige 文字、secondary は枠線のみ。
 * ------------------------------------------------------------ */

.atb-cases-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.atb-cases-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.atb-cases-cta__link--primary {
  background: var(--atb-olive);
  color: var(--atb-beige);
  border: 1px solid var(--atb-olive);
}

.atb-cases-cta__link--primary:hover {
  background: var(--atb-olive-dark);
  border-color: var(--atb-olive-dark);
  transform: translateY(-2px);
}

.atb-cases-cta__link--secondary {
  background: transparent;
  color: var(--atb-olive);
  border: 1px solid var(--atb-olive);
}

.atb-cases-cta__link--secondary:hover {
  background: var(--atb-olive);
  color: var(--atb-beige);
}

.atb-cases-cta__link-arrow {
  font-family: 'Outfit', sans-serif;
  transition: transform 0.2s ease;
}

.atb-cases-cta__link:hover .atb-cases-cta__link-arrow {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .atb-cases-cta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .atb-cases-cta__link {
    padding: 16px 22px;
  }
}
