/* ============================================================
   anime-landing.css — アニメ SEO ランディングページ専用スタイル
   archive-anime のカード/グリッド/トールバー系は anime-archive.css
   をそのまま流用。LP固有のヒーロー・リード文・FAQ部分のみ定義。
   ============================================================ */

.anime-landing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

.anime-landing-header .anime-landing-title {
  font-size: 1.75rem;
  line-height: 1.4;
}

@media (max-width: 599px) {
  .anime-landing-header .anime-landing-title {
    font-size: 1.35rem;
  }
}

/* ── ヒーロー帯（掲載作品数 / 最終更新日） ───────── */
.anime-landing__hero {
  margin: 16px 0 20px;
}

.anime-landing-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 24px;
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.18);
}

.anime-landing-hero__primary {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.anime-landing-hero__count {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.anime-landing-hero__count-unit {
  font-size: 1.05rem;
  font-weight: 700;
}

.anime-landing-hero__count-note {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-left: 4px;
}

.anime-landing-hero__meta {
  font-size: 0.9rem;
  opacity: 0.92;
  margin-left: auto;
}

@media (max-width: 599px) {
  .anime-landing-hero {
    padding: 16px 18px;
    gap: 8px 16px;
  }
  .anime-landing-hero__count {
    font-size: 1.9rem;
  }
  .anime-landing-hero__meta {
    margin-left: 0;
    width: 100%;
  }
}

/* ── 料金プラン早見表（折りたたみ） ───────────── */
.anime-landing__pricing {
  margin: 0 0 24px;
}

.anime-landing-pricing {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.anime-landing-pricing__summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-bottom: 1px solid transparent;
  transition: background .15s;
}

.anime-landing-pricing__summary::-webkit-details-marker {
  display: none;
}

.anime-landing-pricing__summary::before {
  content: '¥';
  display: inline-block;
  color: #0ea5e9;
  font-weight: 800;
  margin-right: 10px;
}

.anime-landing-pricing__summary:hover {
  background: #eff6ff;
}

.anime-landing-pricing__hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
}

.anime-landing-pricing[open] .anime-landing-pricing__summary {
  border-bottom-color: #e5e7eb;
}

.anime-landing-pricing[open] .anime-landing-pricing__hint::after {
  content: '（閉じる）';
}

.anime-landing-pricing:not([open]) .anime-landing-pricing__hint::after {
  content: '';
}

.anime-landing-pricing__body {
  padding: 16px 18px 18px;
  overflow-x: auto;
}

.anime-landing-pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.anime-landing-pricing__table th,
.anime-landing-pricing__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.anime-landing-pricing__table thead th {
  background: #f1f5f9;
  font-weight: 700;
  color: #334155;
  font-size: 0.85rem;
  white-space: nowrap;
}

.anime-landing-pricing__name {
  font-weight: 700;
  color: #1f2937;
  white-space: nowrap;
}

.anime-landing-pricing__note {
  font-weight: 400;
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}

.anime-landing-pricing__price {
  font-weight: 600;
  color: #0369a1;
  white-space: nowrap;
}

.anime-landing-pricing__features ul {
  margin: 0;
  padding-left: 18px;
}

.anime-landing-pricing__features li {
  margin-bottom: 2px;
}

.anime-landing-pricing__disclaimer {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

@media (max-width: 599px) {
  .anime-landing-pricing__table {
    font-size: 0.85rem;
  }
  .anime-landing-pricing__table th,
  .anime-landing-pricing__table td {
    padding: 8px 10px;
  }
}

/* ── リード文 ───────────────────────────────────── */
.anime-landing__lead {
  background: #f7fbfd;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 16px 0 24px;
  color: #1f2937;
  line-height: 1.8;
}

.anime-landing__lead p {
  margin: 0 0 12px;
}

.anime-landing__lead p:last-child {
  margin-bottom: 0;
}

.anime-landing__lead strong {
  color: #0369a1;
}

/* ── 一覧（カードグリッドはアーカイブの .anime-grid と共有） ── */
.anime-landing__list {
  margin-bottom: 40px;
}

.anime-landing__grid {
  /* anime-archive.css の .anime-grid を踏襲 */
  margin-top: 16px;
}

/* ── セクション見出し ───────────────────────────── */
.anime-landing__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0369a1;
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 4px solid #0ea5e9;
}

/* ── FAQ アコーディオン ─────────────────────────── */
.anime-landing__faq {
  margin: 32px 0;
}

.anime-landing-faq__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.anime-landing-faq__q {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 600;
  color: #1f2937;
  position: relative;
  padding-right: 40px;
}

.anime-landing-faq__q::-webkit-details-marker {
  display: none;
}

.anime-landing-faq__q::before {
  content: 'Q';
  display: inline-block;
  color: #0ea5e9;
  font-weight: 700;
  margin-right: 8px;
}

.anime-landing-faq__q::after {
  content: '＋';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-weight: 700;
  transition: transform .2s;
}

.anime-landing-faq__item[open] .anime-landing-faq__q::after {
  content: '−';
}

.anime-landing-faq__a {
  padding: 0 18px 16px 36px;
  color: #374151;
  line-height: 1.8;
}

.anime-landing-faq__a::before {
  content: 'A';
  display: inline-block;
  color: #f5b301;
  font-weight: 700;
  margin-right: 8px;
  margin-left: -20px;
}

/* ── 関連リンク ─────────────────────────────────── */
.anime-landing__related {
  margin-top: 32px;
}

.anime-landing__related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anime-landing__related-list li {
  margin-bottom: 8px;
}

.anime-landing__related-list a {
  color: #0369a1;
  text-decoration: underline;
}

.anime-landing__related-list a:hover {
  color: #0ea5e9;
}
