@charset "UTF-8";

/* =========================================================
   ポッドキャスト制作ページ（/service/service-podcast/）
   Figma: Service-podcast (node 1288:2885)

   実装ルール
   - すべて .pd-page 配下にスコープし、クラスは pd- で始める
     （Cocoon本体・VK Blocks・Bootstrap との衝突を避けるため）
   - コンテナ幅 1040px。料金ブロックのみ 1216px
   - 余白の刻み 8 / 12 / 16 / 24 / 32 / 64 / 96
   - 角丸は 8px（カード）のみ。影は --pd-shadow-md のみ
   ========================================================= */

.pd-page {
  --pd-navy: #0c1e35;
  --pd-navy-90: rgba(12, 30, 53, 0.88);
  --pd-ink: #1a1a1a;
  --pd-gray-bg: #f5f5f5;
  --pd-gray-line: #d9d9d9;
  --pd-gray-rule: #c9ccd1;
  --pd-white: #fff;
  --pd-purple: #9e77ed;
  --pd-purple-tint: #f4ebff;

  --pd-container: 1040px;
  --pd-container-wide: 1216px;
  --pd-gutter: 20px;

  --pd-shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.1),
    0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --pd-shadow-accent: 0 4px 16px -2px rgba(158, 119, 237, 0.28),
    0 2px 4px -2px rgba(16, 24, 40, 0.06);

  --pd-font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;

  font-family: var(--pd-font);
  font-size: 16px;
  line-height: 26px;
  color: var(--pd-navy);
  background: var(--pd-navy);
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
}

/* ---------- ローカルリセット（テーマの既定を打ち消す） ----------
   :where() で特異性を0にしてある。こうしないとリセットが
   下の個別指定（margin-top や height）に勝ってしまう             */
.pd-page *,
.pd-page *::before,
.pd-page *::after { box-sizing: border-box; }

:where(.pd-page) :where(img) { display: block; max-width: 100%; height: auto; margin: 0; }
:where(.pd-page) :where(a) { color: inherit; text-decoration: none; }
:where(.pd-page) :where(ul, ol) { margin: 0; padding: 0; }
:where(.pd-page) :where(li) { margin: 0; }
/* リストのマーカーと左インデントの打ち消しだけは特異性を持たせる。
   :where() だとテーマ側の `ul { padding-left:40px; list-style:disc }` に
   負けて、カードの前に「・」が出たりグリッドが右にずれたりする。
   マーカーを出したい箇所は下で個別に戻す */
.pd-page ul,
.pd-page ol,
.pd-page ul > li,
.pd-page ol > li { list-style: none; }
.pd-page ul,
.pd-page ol { padding-left: 0; }
:where(.pd-page) :where(p) { margin: 0; }
:where(.pd-page) :where(h1, h2, h3, h4) {
  margin: 0; padding: 0; font-weight: 700; border: 0; background: none;
}
:where(.pd-page) :where(h2, h3)::before,
:where(.pd-page) :where(h2, h3)::after { content: none; }
:where(.pd-page) :where(table) {
  border-collapse: collapse; width: 100%; margin: 0; border: 0; font-size: inherit;
}
:where(.pd-page) :where(th, td) { border: 0; background: none; }

/* ---------- レイアウト ---------- */
.pd-container,
.pd-container-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pd-gutter);
}
.pd-container      { max-width: calc(var(--pd-container) + var(--pd-gutter) * 2); }
.pd-container-wide { max-width: calc(var(--pd-container-wide) + var(--pd-gutter) * 2); }

.pd-zone-navy  { background: var(--pd-navy); }
.pd-zone-light { background: var(--pd-gray-bg); }
.pd-zone-white { background: var(--pd-white); }

/* セクション見出しブロック（● Label / H2 / リード） */
.pd-sec-head { margin-bottom: 32px; }
.pd-sec-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 16px; font-weight: 700; line-height: 1.4;
  margin-bottom: 8px;
}
.pd-sec-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; flex: none;
}
.pd-sec-title { font-size: 36px; line-height: 1.45; letter-spacing: 0.01em; }
.pd-sec-lead { margin-top: 16px; font-size: 16px; line-height: 26px; }

.pd-on-navy,
.pd-on-navy .pd-sec-title,
.pd-on-navy .pd-sec-lead { color: var(--pd-white); }

/* ---------- ファーストビュー ---------- */
.pd-hero { position: relative; height: min(960px, 66.67vw); overflow: hidden; }
.pd-hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
/* 他のサービスページ（wp:cover）と同じ下から立ち上がるグラデーション */
.pd-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgb(12, 30, 53) 0%, rgba(12, 30, 53, 0) 66%);
}
/* 1440pxで Figma の 496 / 565 / 717px と一致し、幅が縮んでも崩れないよう
   下端からの余白で組む（絶対配置の固定topだと文字が増えたときに重なる） */
.pd-hero__inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: clamp(16px, 2.8vw, 40px);
  padding-bottom: clamp(48px, 13.26vw, 191px);
}
.pd-hero__eyebrow {
  color: var(--pd-white); font-weight: 700; line-height: 1.2;
  font-size: clamp(18px, 1.7vw, 24px);
}
.pd-hero__title {
  color: var(--pd-white); line-height: 1.3;
  font-size: clamp(26px, 3vw, 43px);
}
.pd-hero__lead {
  color: var(--pd-white); font-size: 16px; line-height: 26px;
}

/* ---------- CTAバナー（本文中4箇所） ---------- */
.pd-cta-banner { display: block; }
.pd-cta-banner img { width: 100%; border-radius: 2px; }
.pd-cta-banner--overlap { position: relative; z-index: 5; margin-top: -15.1%; }

/* ---------- Problem ---------- */
.pd-zone-navy-1 { padding-bottom: 32px; }
.pd-problem { padding-top: 32px; }
.pd-problem__cards { display: flex; gap: 16px; margin-top: 24px; }
.pd-problem__card {
  flex: 1 1 0; background: var(--pd-gray-bg); color: var(--pd-navy);
  padding: 16px 0; text-align: center;
}
.pd-problem__card img { width: 160px; max-width: 100%; margin: 0 auto; }
.pd-problem__card h3 { font-size: 24px; line-height: 1.45; padding: 8px; }
.pd-problem__card p { font-size: 16px; line-height: 26px; padding: 8px; text-align: left; }

/* ---------- Solution ---------- */
.pd-zone-light-1 { padding: 32px 0; }
.pd-solution__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pd-solution__item {
  display: flex; align-items: center; gap: 20px; min-width: 0;
  background: var(--pd-white); border-radius: 8px; padding: 12px;
  box-shadow: var(--pd-shadow-md);
}
.pd-solution__item img {
  width: 100px; height: 100px; flex: none;
  border-radius: 50%; border: 1px solid var(--pd-navy); object-fit: cover;
}
.pd-solution__item h3 { font-size: 24px; line-height: 1.45; }
.pd-solution__item p { font-size: 16px; line-height: 26px; margin-top: 2px; }

/* ---------- Feature（3つの理由） ---------- */
.pd-feature { margin-top: 64px; }
.pd-feature__row {
  display: flex; border-top: 1px solid var(--pd-gray-rule); padding: 24px 0 32px;
}
.pd-feature__row:last-child { border-bottom: 1px solid var(--pd-gray-rule); }
.pd-feature__num {
  width: clamp(96px, 12vw, 174px); flex: none;
  font-size: 32px; font-weight: 700; font-style: italic; line-height: 1.2;
}
.pd-feature__body h3 { font-size: 24px; line-height: 1.45; }
.pd-feature__body p { font-size: 16px; line-height: 26px; margin-top: 20px; }

/* ---------- Portfolio ---------- */
.pd-zone-navy-2 { padding: 64px 0 96px; }
.pd-portfolio__list { display: flex; gap: 16px; margin-top: 24px; }
.pd-portfolio__list li { flex: 1 1 0; min-width: 0; }
.pd-portfolio__list img { width: 100%; border-radius: 2px; }

/* ---------- Quality ---------- */
.pd-zone-light-2 { padding: 0 0 32px; }
.pd-quality { padding-top: 24px; }
.pd-quality__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pd-quality__card {
  background: var(--pd-white); border-radius: 8px; box-shadow: var(--pd-shadow-md);
  padding: 22px 13px 24px; text-align: center;
}
.pd-quality__card img { width: 145px; margin: 0 auto 15px; }
.pd-quality__card h3 { font-size: 24px; line-height: 1.45; margin-bottom: 18px; }
.pd-quality__card p { font-size: 16px; line-height: 26px; text-align: left; }

/* ---------- Key indicator（表） ---------- */
.pd-kpi { margin-top: 64px; }
.pd-kpi table { font-size: 16px; line-height: 26px; }
.pd-kpi thead th {
  background: var(--pd-gray-line); font-weight: 700; padding: 13px 16px; text-align: left;
}
.pd-kpi thead th:first-child { text-align: center; }
.pd-kpi tbody th {
  font-weight: 700; text-align: center; width: 15%;
  padding: 13px 16px; border-bottom: 1px solid var(--pd-navy); white-space: nowrap;
}
.pd-kpi tbody td { padding: 13px 16px; border-bottom: 1px solid var(--pd-navy); }
.pd-kpi__col2 { width: 43%; }

/* ---------- Timeline ---------- */
.pd-timeline { margin-top: 64px; }
.pd-timeline__board { background: var(--pd-white); padding: 40px 24px 24px; position: relative; }
.pd-timeline__steps { display: grid; grid-template-columns: repeat(8, 1fr); position: relative; }
.pd-timeline__step { text-align: center; position: relative; }
/* 線は各ステップぶんの線分として引く。こうすると段が増えても
   行ごとに線がつながる（通しの1本だと2段目で消える） */
.pd-timeline__step::before {
  content: ""; position: absolute; left: 0; right: 0; top: 8px;
  height: 1px; background: var(--pd-navy);
}
.pd-timeline__dot {
  display: block; width: 18px; height: 18px; border-radius: 50%;
  background: var(--pd-navy); margin: 0 auto; position: relative; z-index: 2;
}
.pd-timeline__step::after {
  content: ""; position: absolute; left: 50%; top: 18px; width: 1px; height: 26px;
  border-left: 1px dotted var(--pd-navy);
}
.pd-timeline__wk { margin-top: 46px; font-size: 13px; line-height: 1.4; }
.pd-timeline__label { margin-top: 4px; font-size: 13px; line-height: 1.5; }

/* ---------- 継続運用フェーズ ---------- */
.pd-ops { margin-top: 32px; background: var(--pd-gray-line); padding: 14px 13px 24px; }
.pd-ops h3 { font-size: 24px; line-height: 1.45; padding-left: 13px; }
.pd-ops p { font-size: 16px; line-height: 26px; margin-top: 12px; padding-left: 26px; }

/* ---------- How to ---------- */
.pd-howto { margin-top: 64px; }
.pd-howto__list { display: flex; flex-direction: column; gap: 16px; }
.pd-howto__item {
  display: flex; align-items: center; gap: clamp(20px, 3.2vw, 45px);
  background: var(--pd-white); border-radius: 8px; box-shadow: var(--pd-shadow-md);
  padding: 24px 40px 24px 28px;
}
.pd-howto__item img {
  width: 150px; height: 150px; flex: none;
  border-radius: 50%; border: 1px solid var(--pd-navy); object-fit: cover;
}
.pd-howto__item h3 { font-size: 24px; line-height: 1.45; }
.pd-howto__item p { font-size: 16px; line-height: 26px; margin-top: 8px; }
.pd-howto__link {
  display: inline-block; margin-top: 12px;
  font-size: 16px; font-weight: 700; line-height: 26px;
}
.pd-howto__link:hover { text-decoration: underline; }
/* 子ページが未公開の間はリンクにしない。押せないことが分かるよう色を落とす */
.pd-howto__link--pending {
  color: #6d7984; cursor: default; pointer-events: none;
}
.pd-howto__link--pending:hover { text-decoration: none; }

/* ---------- 料金 ---------- */
.pd-zone-white-1 { padding-bottom: 80px; }
.pd-pricing { padding-top: 96px; }
.pd-pricing__head { text-align: center; margin-bottom: 64px; }
.pd-pricing__head h2 { font-size: 32px; line-height: 1.45; }
.pd-pricing__head p { font-size: 16px; line-height: 26px; margin-top: 8px; }

.pd-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.6vw, 32px); }
.pd-plan {
  background: var(--pd-white); border-radius: 8px; box-shadow: var(--pd-shadow-md);
  padding: 24px; display: flex; flex-direction: column; gap: 32px;
}
.pd-plan--recommended { box-shadow: var(--pd-shadow-accent); }
.pd-plan__top { display: flex; flex-direction: column; gap: 16px; }
.pd-plan__name { font-size: 24px; line-height: 1.45; }
.pd-plan__price { display: flex; align-items: baseline; gap: 4px; color: var(--pd-ink); }
.pd-plan__amount { font-size: 27px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.pd-plan__unit { font-size: 12px; line-height: 1.4; }
.pd-plan__divider { height: 1px; background: var(--pd-gray-line); }
.pd-plan__features { display: flex; flex-direction: column; gap: 13px; }
.pd-plan__features li { display: flex; align-items: center; gap: 12px; }
.pd-plan__features li img { width: 28px; flex: none; }
.pd-plan__features li span { font-size: 16px; line-height: 1.4; }

.pd-pricing__platforms {
  margin-top: 64px; border: 1px solid var(--pd-navy); padding: 15px;
  text-align: center; font-size: 16px; font-weight: 700; line-height: 26px;
}
.pd-pricing__initial { margin-top: 64px; border: 1px solid var(--pd-navy); padding: 24px 32px 32px; }
.pd-pricing__initial h3 { font-size: 20px; line-height: 1.45; text-align: center; }
/* 箇条書きのマーカーを出す2箇所だけ、上のリセットより強く指定する */
.pd-page .pd-pricing__initial ul { margin: 16px auto 0; width: 725px; max-width: 100%; padding-left: 1.4em; }
.pd-page .pd-pricing__initial ul > li { font-size: 16px; line-height: 26px; list-style: disc; }
.pd-page .pd-pricing__notes { margin-top: 40px; padding-left: 1.4em; }
.pd-page .pd-pricing__notes > li { font-size: 13px; line-height: 22px; list-style: disc; }

/* ---------- Knowledge ---------- */
.pd-knowledge { padding-top: 80px; }
.pd-knowledge .pd-sec-title { font-size: 32px; }
.pd-knowledge .related-knowledge { margin-top: 32px; }
/* サイト共通のナレッジ部品は生成り地(#f5f5f5)を前提にしているため、
   白地のこのセクションでは見出しの帯が浮く。ここだけ透明に戻す */
.pd-page .related-heading-2,
.pd-page .related-date,
.pd-page .related-meta,
.pd-page .related-tags-2 { background-color: transparent; }
/* 記事の下に大きな余白（related-knowledge の margin-bottom:60px など）が
   入るため、ボタンまでの間隔を詰める */
.pd-page .related-tags-2 { padding-bottom: 0; }
.pd-knowledge .related-knowledge { margin-bottom: 0; }
.pd-knowledge .pd-btn-more { margin-top: 32px; }
.pd-btn-more {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 32px; padding: 12px 24px;
  border: 1px solid var(--pd-navy); border-radius: 999px;
  font-size: 16px; font-weight: 700; line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease;
}
.pd-btn-more img { width: 20px; }
.pd-btn-more:hover { background: var(--pd-navy); color: var(--pd-white); }
.pd-btn-more:hover img { filter: invert(1); }

/* =========================================================
   タブレット〜小さめのPC（1023px以下）
   コンテナは可変なので、詰まりやすい箇所だけ調整する
   ========================================================= */
@media (max-width: 1023px) {
  .pd-sec-title { font-size: 30px; }

  /* Problem：4枚だと1枚あたりが細くなりすぎるので2列 */
  .pd-problem__cards { flex-wrap: wrap; }
  .pd-problem__card { flex: 1 1 calc(50% - 8px); }

  /* Solution・How to：アイコンを少し小さく */
  .pd-solution__item img { width: 84px; height: 84px; }
  .pd-howto__item { padding: 20px 24px; }
  .pd-howto__item img { width: 120px; height: 120px; }

  /* Quality：3列→2列 */
  .pd-quality__grid { grid-template-columns: repeat(2, 1fr); }

  /* 指標表：横詰まりを緩和 */
  .pd-kpi table { font-size: 15px; }
  .pd-kpi thead th,
  .pd-kpi tbody th,
  .pd-kpi tbody td { padding: 12px 10px; }

  /* タイムライン：8列のままだと文字が溢れるので4列×2段 */
  .pd-timeline__board { padding: 32px 20px 24px; }
  .pd-timeline__steps { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
  .pd-timeline__step::after { height: 20px; }
  .pd-timeline__wk { margin-top: 40px; }
  .pd-timeline__label { font-size: 12px; }

  /* 料金：初期費用の内訳は中央寄せをやめて幅いっぱいに */
  .pd-page .pd-pricing__initial ul { width: 100%; }
  .pd-pricing__initial { padding: 24px 20px 28px; }
  .pd-plan { padding: 20px; }
  .pd-plan__name { font-size: 21px; }
}

/* =========================================================
   スマートフォン（767px以下）
   デザイン仕様_v1 §6 の畳み方に準拠
   ========================================================= */
@media (max-width: 767px) {
  .pd-page { --pd-container: 100%; --pd-container-wide: 100%; }

  .pd-container,
  .pd-container-wide { width: 100%; padding-inline: 20px; }

  .pd-sec-title { font-size: 28px; line-height: 1.4; }
  .pd-sec-lead { font-size: 16px; line-height: 1.85; }

  /* hero：重ね置きをやめ、写真 → 紺帯の縦積みにする */
  .pd-hero { height: auto; overflow: visible; }
  .pd-hero__photo { position: relative; height: 260px; }
  .pd-hero__inner { height: auto; background: var(--pd-navy); padding: 24px 20px 32px; }
  .pd-hero__eyebrow,
  .pd-hero__title,
  .pd-hero__lead { position: static; }
  .pd-hero__eyebrow { font-size: 18px; }
  .pd-hero__title { margin-top: 12px; font-size: 28px; line-height: 1.35; }
  .pd-hero__lead { margin-top: 20px; font-size: 15px; line-height: 1.8; }

  .pd-cta-banner--overlap { margin-top: 0; }
  .pd-zone-navy-1 { padding-top: 24px; }

  /* Problem：1列縦積み */
  .pd-problem__cards { flex-direction: column; flex-wrap: nowrap; gap: 12px; }
  .pd-problem__card { flex: 1 1 auto; }
  .pd-problem__card { padding: 20px; }
  .pd-problem__card h3 { font-size: 21px; padding: 8px 0; }
  .pd-problem__card p { padding: 0; }

  /* Solution：1列 */
  .pd-solution__grid { grid-template-columns: 1fr; gap: 12px; }
  .pd-solution__item { gap: 16px; padding: 16px; align-items: flex-start; }
  .pd-solution__item img { width: 72px; height: 72px; }
  .pd-solution__item h3 { font-size: 19px; }

  /* Feature */
  .pd-feature__row { flex-direction: column; padding: 20px 0 24px; }
  .pd-feature__num { width: auto; font-size: 26px; margin-bottom: 8px; }
  .pd-feature__body h3 { font-size: 21px; }
  .pd-feature__body p { margin-top: 12px; }

  /* Portfolio：横スクロールさせず2列 */
  .pd-zone-navy-2 { padding: 48px 0 56px; }
  .pd-portfolio__list { flex-wrap: wrap; gap: 12px; }
  .pd-portfolio__list li { width: calc(50% - 6px); }
  .pd-portfolio__list img { width: 100%; }

  /* Quality：1列 */
  .pd-quality__grid { grid-template-columns: 1fr; gap: 12px; }
  .pd-quality__card { padding: 20px; }
  .pd-quality__card img { width: 120px; }
  .pd-quality__card h3 { font-size: 21px; }

  /* Key indicator：表を定義リストに畳む */
  .pd-kpi { margin-top: 48px; }
  .pd-kpi table,
  .pd-kpi thead,
  .pd-kpi tbody,
  .pd-kpi th,
  .pd-kpi td,
  .pd-kpi tr { display: block; }
  .pd-kpi thead { display: none; }
  .pd-kpi tbody tr { background: var(--pd-white); padding: 16px; margin-bottom: 12px; }
  .pd-kpi tbody th {
    width: auto; text-align: left; padding: 0 0 8px;
    border-bottom: 1px solid var(--pd-gray-line); font-size: 19px;
  }
  .pd-kpi tbody td { padding: 12px 0 0; border-bottom: 0; }
  .pd-kpi tbody td::before {
    display: block; font-size: 13px; font-weight: 700; color: #6d7984; margin-bottom: 2px;
  }
  .pd-kpi tbody td:nth-of-type(1)::before { content: "見るべき指標"; }
  .pd-kpi tbody td:nth-of-type(2)::before { content: "指標の測り方"; }

  /* Timeline：縦並び */
  .pd-timeline { margin-top: 48px; }
  .pd-timeline__board { padding: 24px 20px; }
  .pd-timeline__steps { grid-template-columns: 1fr; row-gap: 20px; position: relative; }
  .pd-timeline__step::before { content: none; }
  .pd-timeline__steps::before {
    content: ""; position: absolute; top: 8px; bottom: 8px; left: 8px; right: auto;
    width: 1px; height: auto; background: var(--pd-navy);
  }
  .pd-timeline__step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .pd-timeline__step::after { display: none; }
  .pd-timeline__dot { margin: 4px 0 0; }
  .pd-timeline__wk { margin-top: 0; width: 48px; flex: none; font-weight: 700; }
  .pd-timeline__label { margin-top: 0; }

  /* 継続運用 */
  .pd-ops { padding: 16px; }
  .pd-ops h3 { font-size: 19px; padding-left: 0; }
  .pd-ops p { padding-left: 0; }

  /* How to */
  .pd-howto { margin-top: 48px; }
  .pd-howto__item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .pd-howto__item img { width: 110px; height: 110px; }
  .pd-howto__item h3 { font-size: 21px; }

  /* 料金：3プランを縦に独立した料金票として積む */
  .pd-pricing { padding-top: 56px; }
  .pd-pricing__head { margin-bottom: 32px; }
  .pd-pricing__head h2 { font-size: 24px; }
  .pd-plans { grid-template-columns: 1fr; gap: 16px; }
  .pd-pricing__platforms,
  .pd-pricing__initial { margin-top: 32px; }
  .pd-pricing__platforms { text-align: left; }
  .pd-pricing__initial { padding: 20px; }
  .pd-pricing__initial h3 { font-size: 18px; text-align: left; }
  .pd-page .pd-pricing__notes { margin-top: 24px; }

  /* Knowledge */
  .pd-knowledge { padding-top: 56px; }
  .pd-knowledge .pd-sec-title { font-size: 24px; }
    
}

/* ============================================================
   FAQ（折りたたみ）
   Q&Aの見た目はナレッジ記事（追加CSSの `.entry-content .faq-section`）に合わせ、
   設問が16件あるため <details>/<summary> で開閉する。このページ限定。
   JavaScriptは使わない。中身はDOMに残るため、検索・AI・構造化データに影響しない。
   ナレッジ側のQ&Aの見た目を変更した場合は、ここも合わせること。
   ============================================================ */
.pd-faq { padding-top: 96px; }

.pd-page .pd-faq-list { margin-top: 40px; border-top: 1px solid var(--pd-gray-line, #d9d9d9); }

.pd-page .pd-faq-item {
  border-bottom: 1px solid var(--pd-gray-line, #d9d9d9);
  background: none;
  margin: 0;
  padding: 0;
  overflow: hidden;   /* 開閉アニメーション中に中身がはみ出さないようにする */
}

/* 設問（クリックで開閉） */
.pd-page .pd-faq-item > summary {
  display: block;               /* Safari の list-item 既定を打ち消す */
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 70px;
  min-height: 56px;
  background: none;
  border: none;
  outline-offset: -2px;
  transition: background-color .15s ease;
}
.pd-page .pd-faq-item > summary::-webkit-details-marker { display: none; }
.pd-page .pd-faq-item > summary:hover { background-color: #fafafa; }

.pd-page .pd-faq-item > summary h3 {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  background: none;
  border: none;
}

/* Q の飾り文字。ナレッジ記事と同じ位置・大きさ・色 */
.pd-page .pd-faq-item > summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 24px;            /* summary の padding-top と同じ＝設問1行目の先頭 */
  height: 1.92rem;      /* 設問1行分（1.2rem × line-height 1.6） */
  display: flex;
  align-items: center;  /* 飾り文字を1行目の中心に合わせる */
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #1c2d5a;
}

/* 開閉インジケーター（シェブロン） */
.pd-page .pd-faq-item > summary::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 34px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1c2d5a;
  border-bottom: 2px solid #1c2d5a;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform .2s ease;
}
.pd-page .pd-faq-item[open] > summary::after {
  transform: rotate(-135deg);
  top: 38px;
}

/* 回答 */
.pd-page .pd-faq-item > p {
  display: block;
  position: relative;
  margin: 0;
  padding: 14px 24px 34px 70px;
  line-height: 1.9;
  color: #333;
}
.pd-page .pd-faq-item > p::before {
  content: "A";
  position: absolute;
  left: 5px;
  top: 14px;            /* p の padding-top と同じ＝回答1行目の先頭 */
  height: 1.9rem;       /* 回答1行分（16px × line-height 1.9） */
  display: flex;
  align-items: center;  /* 飾り文字を1行目の中心に合わせる */
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #999;
}

@media screen and (max-width: 767px) {
  .pd-faq { padding-top: 56px; }
  .pd-faq .pd-sec-title { font-size: 24px; }

  .pd-page .pd-faq-item > summary { padding: 18px 40px 18px 44px; min-height: 40px; }
  .pd-page .pd-faq-item > summary h3 { font-size: 17px; }
  .pd-page .pd-faq-item > summary::before { font-size: 2.2rem; top: 18px; height: 1.7rem; }
  .pd-page .pd-faq-item > summary::after { right: 8px; top: 26px; width: 8px; height: 8px; }
  .pd-page .pd-faq-item[open] > summary::after { top: 29px; }

  .pd-page .pd-faq-item > p { padding: 12px 8px 26px 44px; }
  .pd-page .pd-faq-item > p::before { font-size: 2.2rem; left: 2px; top: 12px; height: 1.9rem; }
}

/* ============================================================
   子ページ（page-service-podcast-child.php）
   /service/service-podcast/{internal,recruit,networking,loyalty}/ の4枚で共有。
   デザインの正は Figma `internal`（node 1332:3348）。
   親ページの色・書体をそのまま使い、色は増やしていない。

   本文はWordPressの編集画面から出力されるため、素の要素セレクタと
   .pd-c-* のユーティリティクラスだけで受ける。
   Figmaは画像とテキストを2分割で置いているが、実装では画像を float して
   テキストを回り込ませる（Figmaで回り込みが表現できなかったため）。
   ============================================================ */

/* テーマの `.container { margin-top: -60px }`（ヘッダーを画像に重ねるための
   サイト共通指定）を打ち消す。この子ページは白地なので重ねない */
.pd-child {
  background: var(--pd-white, #fff);
  padding-top: 60px;
}

/* 本文カラム。Figmaの本文幅 741px にそろえ、コンテナ内で中央に置く */
.pd-child-main {
  max-width: 740px;
  margin-inline: auto;
}

/* ---- タイトルブロック ----
   上余白はFigmaの 211px（固定ヘッダー98px＋113px）にそろえる */
.pd-child-head { padding: 211px 0 0; }

.pd-page .pd-child-head__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.01em;
  color: var(--pd-navy, #0c1e35);
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.pd-child-head__lead {
  margin: 20px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pd-navy, #0c1e35);
}

/* 紺（24%）→ グレーの2色ルール */
.pd-child-head__rule {
  display: block;
  height: 5px;
  margin-top: 20px;
  background: linear-gradient(
    to right,
    var(--pd-navy, #0c1e35) 0 24%,
    var(--pd-gray-line, #d9d9d9) 24% 100%
  );
}

/* ---- サムネイル ---- */
.pd-child-thumb {
  position: relative;
  margin: 32px 0 0;
  padding: 0;
  border: 5px solid #e6e6e6;
}
.pd-child-thumb > img { width: 100%; height: auto; }
/* サムネイル画像にロゴは焼き込まれていないため、Figmaと同じ位置に重ねる */
.pd-page .pd-child-thumb__logo {
  position: absolute;
  left: 3.65%;
  top: 4.8%;
  width: 11.1%;
  height: auto;
}

/* ---- 本文 ---- */
.pd-child-body { padding: 40px 0 0; }

/* 見出し（h2 / h3 とも同じ見え方。Figmaの h3-コンポーネント） */
.pd-page .pd-child-body h2,
.pd-page .pd-child-body h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pd-navy, #0c1e35);
  margin: 64px 0 24px;
  padding: 0 0 0 20px;
  background: none;
  border: none;
  border-left: 5px solid var(--pd-navy, #0c1e35);
}
.pd-page .pd-child-body > h2:first-child,
.pd-page .pd-child-body > h3:first-child { margin-top: 0; }

/* 紺ベタの見出し（「社内で決めておきたい6項目」「よくある確認事項」） */
.pd-page .pd-child-body h2.pd-c-bar,
.pd-page .pd-child-body h3.pd-c-bar {
  background: #1a2851;
  color: #fff;
  padding: 18px 40px;
  border-left: none;
  margin: 72px 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pd-page .pd-child-body h2.pd-c-bar::before,
.pd-page .pd-child-body h3.pd-c-bar::before {
  content: "";
  flex: none;
  width: 5px;
  height: 50px;
  background: #fff;
}

.pd-page .pd-child-body p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 20px;
  color: #333;
}

.pd-page .pd-child-body ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 24px;
}
.pd-page .pd-child-body ul li {
  list-style: disc;
  margin: 0 0 10px;
  line-height: 1.9;
  color: #333;
}

/* ---- 本文中の画像（回り込み） ---------------------------------
   Figmaでは画像200px＋テキスト517pxの2分割だが、実装では画像を左に
   float してテキストを回り込ませる。段落が画像より短い場合に次の
   見出しへ食い込まないよう、節の末尾で clear する            */
.pd-page .pd-child-body .pd-c-fig {
  float: left;
  width: 200px;
  height: auto;
  margin: 6px 24px 16px 0;
  shape-margin: 24px;
}
.pd-page .pd-child-body .pd-c-sec::after {
  content: "";
  display: block;
  clear: both;
}
.pd-page .pd-child-body .pd-c-sec { margin: 0 0 20px; }
.pd-page .pd-child-body .pd-c-sec > p:last-child { margin-bottom: 0; }
/* 回り込みの中にリストが来ると「・」が画像に重なるため、
   リストだけは独立したブロックにして画像の横に並べる */
.pd-page .pd-child-body .pd-c-sec > ul { overflow: hidden; }

/* ---- 「このページで確認できること」のマーカー付きリスト ---- */
.pd-page .pd-child-body ul.pd-c-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px;
}
.pd-page .pd-child-body ul.pd-c-checklist li {
  list-style: none;
  display: table;             /* 文字数ぶんだけ帯を伸ばす */
  position: relative;
  margin: 0 0 9px;
  padding: 4px 20px 4px 34px;
  background: #7a7a7a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}
.pd-page .pd-child-body ul.pd-c-checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

/* ---- 番号つきの確認項目（「社内で決めておきたい6項目」） ---- */
.pd-page .pd-child-body ol.pd-c-steps {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px;
  counter-reset: pd-step;
}
.pd-page .pd-child-body ol.pd-c-steps li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  margin: 0 0 16px;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--pd-navy, #0c1e35);
}
.pd-page .pd-child-body ol.pd-c-steps li::before {
  counter-increment: pd-step;
  content: counter(pd-step);
  flex: none;
  width: 84px;
  height: 84px;
  border: 1px solid var(--pd-navy, #0c1e35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

/* ---- よくある確認事項（Q/A。親ページと違い開閉しない） ---- */
.pd-page .pd-child-body dl.pd-c-qa { margin: 0 0 24px; }
.pd-page .pd-child-body dl.pd-c-qa dt,
.pd-page .pd-child-body dl.pd-c-qa dd {
  position: relative;
  margin: 0;
  padding-left: 60px;
}
.pd-page .pd-child-body dl.pd-c-qa dt {
  padding-top: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #1c2d5a;
}
/* 上下の余白はFigmaの Q→A 71px / A→次のQ 32px にそろえる。
   飾り文字が3.2remと大きく、詰めるとQとAが重なって見えるため */
.pd-page .pd-child-body dl.pd-c-qa dd {
  margin: 38px 0 32px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
.pd-page .pd-child-body dl.pd-c-qa dd:last-child { margin-bottom: 0; }
.pd-page .pd-child-body dl.pd-c-qa dt::before,
.pd-page .pd-child-body dl.pd-c-qa dd::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 1.92rem;
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}
.pd-page .pd-child-body dl.pd-c-qa dt::before { content: "Q"; color: #1c2d5a; }
.pd-page .pd-child-body dl.pd-c-qa dd::before { content: "A"; color: #999; }

/* ---- 他の目的から選ぶ（兄弟ページ） ----
   Figma: Frame 635（node 1352:3447）
   4枚を1ホップの距離に置くための回遊導線。アンカーテキストは
   ページタイトルをそのまま使う。カードの背景・枠は持たせない  */
.pd-child-siblings { margin: 88px 0 0; }

.pd-page .pd-child-siblings__head {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pd-navy, #0c1e35);
  margin: 0 0 32px;
  padding: 0 0 0 20px;
  background: none;
  border: none;
  border-left: 5px solid var(--pd-navy, #0c1e35);
}

.pd-page .pd-child-siblings__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}
.pd-page .pd-child-siblings__list > li { list-style: none; margin: 0; }

.pd-child-siblings__list a {
  display: block;
  text-decoration: none;
  color: var(--pd-navy, #0c1e35);
}

/* サムネイルはページ上部のものと同じ扱い（グレーの枠＋ロゴを重ねる）。
   枠の太さは本文上部の5pxを、カード幅(331px)に合わせて詰めている */
.pd-child-siblings__figure {
  display: block;
  position: relative;
  margin: 0 0 16px;
  border: 3px solid #e6e6e6;
}
.pd-page .pd-child-siblings__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1080;
  object-fit: cover;
  margin: 0;
}
.pd-page .pd-child-siblings__logo {
  position: absolute;
  left: 3.65%;
  top: 4.8%;
  width: 11.1%;
  height: auto;
  margin: 0;
}

.pd-child-siblings__tag {
  display: inline-block;
  padding: 1px 10px;
  border-radius: 40px;
  background: #666;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.pd-child-siblings__title {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pd-navy, #0c1e35);
}
.pd-child-siblings__summary {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 26px;
  color: var(--pd-navy, #0c1e35);
}

.pd-child-siblings__list a:hover .pd-child-siblings__title { text-decoration: underline; }
.pd-child-siblings__list a:hover .pd-child-siblings__figure { opacity: .85; }
.pd-child-siblings__figure { transition: opacity .15s ease; }

/* ---- 親ページへ戻す ---- */
.pd-child-back {
  margin: 40px 0 0;
  padding: 28px 32px;
  background: var(--pd-gray-bg, #f5f5f5);
  border-radius: 8px;
}
.pd-child-back__text { margin: 0 0 14px; font-size: 15px; line-height: 1.9; color: #333; }
.pd-child-back__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--pd-navy, #0c1e35);
  text-decoration: none;
}
.pd-child-back__link:hover { text-decoration: underline; }
.pd-child-back__link img { width: 18px; }

/* ---- CTA・ナレッジ ---- */
.pd-child-cta { margin-top: 72px; }
.pd-child .pd-knowledge { padding: 88px 20px 96px; }

@media screen and (max-width: 767px) {
  /* SPではテーマのパンくず（position:absolute）が上に重なるため、
     その下端（およそ90px）を避ける高さまで空ける */
  .pd-child-head { padding-top: 96px; }
  .pd-page .pd-child-head__title { font-size: 28px; }
  .pd-child-head__lead { font-size: 18px; margin-top: 14px; }
  .pd-child-head__rule { margin-top: 16px; height: 4px; }

  .pd-child-thumb { margin-top: 24px; border-width: 3px; }

  .pd-child-body { padding-top: 32px; }
  .pd-page .pd-child-body h2,
  .pd-page .pd-child-body h3 {
    font-size: 20px; margin: 48px 0 20px; padding-left: 14px; border-left-width: 4px;
  }
  .pd-page .pd-child-body h2.pd-c-bar,
  .pd-page .pd-child-body h3.pd-c-bar {
    padding: 14px 18px; margin: 52px 0 24px; gap: 14px;
  }
  .pd-page .pd-child-body h2.pd-c-bar::before,
  .pd-page .pd-child-body h3.pd-c-bar::before { width: 4px; height: 36px; }

  /* SPは回り込みをやめ、画像を上に置く（1行の文字数が足りなくなるため） */
  .pd-page .pd-child-body .pd-c-fig {
    float: none;
    width: 160px;
    margin: 0 auto 20px;
  }

  .pd-page .pd-child-body ul.pd-c-checklist li {
    display: block; font-size: 16px; padding: 4px 14px 4px 30px;
  }
  .pd-page .pd-child-body ul.pd-c-checklist li::before { left: 14px; top: 15px; }

  .pd-page .pd-child-body ol.pd-c-steps li {
    gap: 16px; padding-left: 0; min-height: 64px; font-size: 17px;
  }
  .pd-page .pd-child-body ol.pd-c-steps li::before {
    width: 64px; height: 64px; font-size: 30px;
  }

  .pd-page .pd-child-body dl.pd-c-qa dt,
  .pd-page .pd-child-body dl.pd-c-qa dd { padding-left: 40px; }
  .pd-page .pd-child-body dl.pd-c-qa dt { font-size: 17px; }
  .pd-page .pd-child-body dl.pd-c-qa dd { margin: 26px 0 26px; }
  .pd-page .pd-child-body dl.pd-c-qa dt::before,
  .pd-page .pd-child-body dl.pd-c-qa dd::before { font-size: 2.2rem; left: 2px; }

  .pd-child-siblings { margin-top: 56px; }
  .pd-page .pd-child-siblings__head {
    font-size: 20px; margin-bottom: 24px; padding-left: 14px; border-left-width: 4px;
  }
  .pd-page .pd-child-siblings__list { grid-template-columns: 1fr; gap: 32px; }
  .pd-child-siblings__figure { margin-bottom: 12px; border-width: 3px; }
  .pd-child-siblings__title { font-size: 20px; }
  .pd-child-siblings__summary { font-size: 15px; line-height: 1.8; }

  .pd-child-back { margin-top: 32px; padding: 22px 20px; }
  .pd-child-cta { margin-top: 48px; }
  .pd-child .pd-knowledge { padding: 56px 20px 64px; }
}
