/* ============================================
   tigermonday-202605 — Tiger Monday Renewal
   Theme entry point. Follows ITCSS architecture
   per HubSpot CMS Theme Boilerplate convention.
   https://github.com/HubSpot/cms-theme-boilerplate
   ============================================ */

/* Generic
   Reset / normalize / cross-cutting print rules.
*/
/* ============================================
   Generic - Reset & Base
   Box-sizing reset, base body & inline element resets.
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: var(--line-height-body);
  padding-top: 72px; /* fixed header offset */
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}
/* ============================================
   Generic - Print
   Cross-cutting print stylesheet.
   ============================================ */

@media print {
  .c-header,
  .c-footer {
    display: none;
  }

  body {
    padding-top: 0;
  }

  .dnd-section.dnd-section {
    padding-top: var(--sp-32);
    padding-bottom: var(--sp-32);
  }
}

/* Objects
   Non-cosmetic design patterns: containers, sections, grid,
   plus HubSpot DnD container overrides.
*/
/* ============================================
   Objects - Layout
   Layout primitives: containers, sections, grid.
   Non-cosmetic — only positioning and structure.
   ============================================ */

/* --- Container --- */
.l-container {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
}

.l-container--narrow {
  max-width: var(--max-w-narrow);
}

/* --- Section ----------------------------------------------
   Vertical rhythm lives on .dnd-section (see _containers-dnd.css).
   .l-section / .l-section--alt etc are background-color hooks only.
   For standalone usage (e.g. service-lp.html dynamic page section
   blocks) modules apply their own padding inside their module.css.
   -------------------------------------------------------- */
.l-section--alt {
  background: var(--c-bg-alt);
}

.l-section--warm {
  background: var(--c-bg-warm);
}

.l-section--dark {
  background: var(--c-bg-dark);
  color: var(--c-white);
}

/* Subtle accent line at top of section（背景リズム補強・うるさくない） */
.l-section--accent-top {
  position: relative;
}
.l-section--accent-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 0 0 2px 2px;
}

/* --- Grid --- */
.g-2 {
  display: grid;
  gap: var(--sp-32);
  grid-template-columns: 1fr 1fr;
}

.g-3 {
  display: grid;
  gap: var(--sp-32);
  grid-template-columns: repeat(3, 1fr);
}

.g-4 {
  display: grid;
  gap: var(--sp-24);
  grid-template-columns: repeat(4, 1fr);
}

.g-2-1 {
  display: grid;
  gap: var(--sp-48);
  grid-template-columns: 2fr 1fr;
}

.g-1-1 {
  align-items: center;
  display: grid;
  gap: var(--sp-64);
  grid-template-columns: 1fr 1fr;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .g-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dnd-section.dnd-section {
    padding-top: var(--sp-32);
    padding-bottom: var(--sp-32);
  }

  .dnd-section.dnd-section--sm {
    padding-top: var(--sp-40, 40px);
    padding-bottom: var(--sp-40, 40px);
  }

  .g-2,
  .g-3,
  .g-4 {
    grid-template-columns: 1fr;
  }

  .g-1-1 {
    gap: var(--sp-32);
    grid-template-columns: 1fr;
  }

  .g-2-1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .l-container {
    padding: 0 var(--sp-16);
  }
}
/* ============================================
   Objects - HubSpot DnD container overrides
   ----------------------------------------------
   Goal:
   - Strip HubSpot's default horizontal max-width / padding so width
     is fully controlled by .l-container inside each module.
   - Provide a single source of vertical rhythm at the dnd-section
     level (the section is the unit of vertical spacing — modules
     only carry content).
   - Allow opt-out via .dnd-section--flush for hero / FV / banners
     that need to be flush against the header or each other.
   - Avoid !important. Use specificity (chained class selectors,
     descendant selectors) so authors can still override per-section
     via HubSpot's `padding="..."` attribute on the dnd_section tag.
   ============================================ */

html,
body {
  overflow-x: hidden;
}

/* ----- 1. dnd-section: standardized vertical rhythm ----- */
/* Doubled class selector boosts specificity above HubSpot's default
   `.dnd-section` (0,1,0) without resorting to !important. */
.dnd-section.dnd-section {
  margin: 0;
  max-width: none;
  padding: var(--sp-48) 0;
  width: 100%;
}

/* Flush variant: opt-out of vertical padding (hero/FV banners). */
.dnd-section.dnd-section--flush {
  padding-top: 0;
  padding-bottom: 0;
}

/* Compact variant for short content sections. */
.dnd-section.dnd-section--sm {
  padding-top: var(--sp-64);
  padding-bottom: var(--sp-64);
}

/* ----- 2. Inner row/column normalization ----- */
.dnd-section > .row-fluid {
  margin: 0;
  max-width: none;
  padding: 0;
}

.dnd-section > .row-fluid > div {
  float: none;
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

/* Row / span (HubSpot grid) — collapse to full width */
.row-fluid .span12,
.row-fluid [class*="span"] {
  float: none;
  margin: 0;
  margin-left: 0;
  width: 100%;
}

/* ----- 3. Wrapper normalization ----- */
.content-wrapper,
.body-container,
.body-wrapper {
  max-width: none;
  padding: 0;
}

.container-fluid {
  padding: 0;
}

.page-center {
  float: none;
  max-width: none;
  padding: 0;
}

.row-fluid-wrapper,
.row-fluid-wrapper .row-fluid {
  max-width: none;
}

/* ----- 4. Built-in module containers ----- */
/* Form module: needs horizontal container constraint (no inner l-container). */
.hs_cos_wrapper_type_form {
  display: block;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
}

/* Rich text module: just enforces width container. Vertical rhythm comes
   from the dnd-section, not the rich text wrapper. */
.dnd-section .hs_cos_wrapper_type_rich_text {
  display: block;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
}

/* Elements
   Base HTML element styling: typography, buttons, etc.
*/
/* ============================================
   Elements - Typography
   Heading scale, body text, and rich text styles.
   Type Scale defined in DESIGN.md (2026-05-12 base 18px に再調整)
   ============================================ */

/* --- Heading scale (PC) --- */
.t-display {
  color: var(--c-text);
  font-size: 2.6875rem; /* 48px - H1/H2-hero (base 18px → 48px) */
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.t-h1 {
  font-size: 2.6875rem; /* 48px */
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.t-h2 {
  font-size: 2rem; /* 36px - H2-standard */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--sp-24);
}

/* TOPページ特例: 強調見出し（リード文・課題提起） */
.t-h2--hero {
  font-size: 2.6875rem; /* 48px - H2-hero */
  line-height: 1.5;
}

.t-h3 {
  font-size: 1.125rem; /* 20px */
  font-weight: 700;
  line-height: 1.5;
}

/* --- Body / inline text --- */
.t-body {
  color: var(--c-text-sub);
  font-size: 1rem; /* 18px (base=18px) */
  line-height: 1.75;
}

/* --- Inline link (本文中のリンクを「リンク」と分かるように下線) ---
   reset.css で `a { color: inherit; text-decoration: none }` を全リンクに適用しているので、
   インラインリンク（カードやボタンでない、文章中のリンク）には .c-link を付与する。 */
.c-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.35);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s, color 0.2s;
}

.c-link:hover {
  color: var(--c-text);
  text-decoration-color: currentColor;
}

.c-link:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ダーク背景上のインラインリンク（CTA, footerなど） */
.c-link--light {
  color: var(--c-white);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.c-link--light:hover {
  color: var(--c-white);
  text-decoration-color: var(--c-white);
}

/* 矢印付きリンク（→を自動付与・hover で前進） */
.c-link--arrow::after {
  content: "\00a0→";
  display: inline-block;
  transition: transform 0.2s;
}

.c-link--arrow:hover::after {
  transform: translateX(3px);
}

.t-small {
  color: var(--c-text-sub); /* a11y: muted(4.34:1) → sub で AA達成 */
  font-size: 0.8333rem; /* 15px */
  line-height: 1.6;
}

.t-label {
  color: var(--c-text-sub);
  font-size: 0.7222rem; /* 13px */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* design-lint: 隣接タイポグラフィ間に最低限のギャップを確保 */
.t-h3 + .t-small,
.t-h3 + .t-body,
.t-h3 + .t-label {
  margin-top: var(--sp-4);
}

.t-h2 + .t-body,
.t-h1 + .t-body {
  margin-top: var(--sp-16);
}

/* ============================================
   Rich Text (blog body, content fields)
   ============================================ */
.t-richtext h1 {
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1.5;
  margin: var(--sp-48) 0 var(--sp-16);
}

.t-richtext h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: var(--sp-48) 0 var(--sp-16);
}

.t-richtext h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin: var(--sp-32) 0 var(--sp-8);
}

.t-richtext p {
  color: var(--c-text-sub);
  margin-bottom: var(--sp-24);
}

.t-richtext ul,
.t-richtext ol {
  margin: 0 0 var(--sp-24) var(--sp-24);
}

.t-richtext li {
  color: var(--c-text-sub);
  margin-bottom: var(--sp-8);
}

.t-richtext ul {
  list-style: disc;
}

.t-richtext ol {
  list-style: decimal;
}

.t-richtext a {
  color: var(--c-text);
  text-decoration: underline;
}

.t-richtext img {
  border-radius: var(--radius);
  margin: var(--sp-32) 0;
}

.t-richtext blockquote {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text-sub);
  font-style: italic;
  margin: var(--sp-32) 0;
  padding: var(--sp-24) var(--sp-32);
}

.t-richtext table {
  border-collapse: collapse;
  margin: var(--sp-32) 0;
  width: 100%;
}

.t-richtext th,
.t-richtext td {
  border: 1px solid var(--c-border);
  font-size: 0.875rem;
  padding: var(--sp-8) var(--sp-16);
}

.t-richtext th {
  background: var(--c-bg-alt);
  font-weight: 700;
}

.t-richtext code {
  background: var(--c-bg-alt);
  border-radius: 2px;
  font-size: 0.875rem;
  padding: 2px 6px;
}

.t-richtext pre {
  background: var(--c-bg-dark);
  border-radius: var(--radius);
  color: var(--c-footer-link);
  margin: var(--sp-32) 0;
  overflow-x: auto;
  padding: var(--sp-24);
}

.t-richtext pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* --- Responsive (Mobile 767px以下) --- */
@media (max-width: 767px) {
  .t-display {
    font-size: 2rem; /* 32px */
  }

  .t-h1 {
    font-size: 2rem; /* 32px */
  }

  .t-h2 {
    font-size: 1.5rem; /* 24px */
  }

  .t-h2--hero {
    font-size: 2rem; /* 32px */
  }

  .t-h3 {
    font-size: 1.125rem; /* 18px */
  }

  .t-body {
    font-size: 0.875rem; /* 16px */
  }

  .t-small {
    font-size: 0.7778rem; /* 14px */
  }
  /* .t-label: 13px固定（変更なし） */
}
/* ============================================
   Elements - Buttons
   Base button styles and variants.
   ============================================ */

/* --- Base button --- */
.c-btn {
  align-items: center;
  background: transparent;
  border: 2px solid var(--c-text);
  border-radius: var(--radius);
  color: var(--c-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: var(--sp-8);
  justify-content: center;
  min-height: 44px; /* WCAG touch target minimum */
  padding: var(--sp-16) var(--sp-40, 40px);
  text-decoration: none;
  transition: all 0.2s;
}

.c-btn:hover {
  background: var(--c-text);
  color: var(--c-white);
}

/* --- Variants --- */
.c-btn--primary {
  background: var(--c-text);
  border-color: var(--c-text);
  color: var(--c-white);
}

.c-btn--primary:hover {
  background: var(--c-text-hover);
}

.c-btn--accent {
  background: var(--c-accent);
  border-color: var(--c-accent);
  box-shadow: 0 2px 8px rgba(255, 200, 0, 0.3);
  color: var(--c-text);
  font-weight: 700;
}

.c-btn--accent:hover {
  background: var(--c-accent-hover);
}

/* --- Sizes --- */
.c-btn--lg {
  font-size: 0.875rem;
  min-height: 62px;
  min-width: 240px;
  padding: 16px 40px;
}

.c-btn--sm {
  font-size: 0.7222rem;
  min-height: 36px;
  padding: var(--sp-12) var(--sp-24);
}

.c-btn--block {
  justify-content: center;
  width: 100%;
}

/* --- Filter buttons (used in seminar list etc.) --- */
.c-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.c-filter__btn {
  background: transparent;
  border: 2px solid var(--c-text);
  border-radius: var(--radius);
  color: var(--c-text);
  cursor: pointer;
  font-size: 0.7222rem;
  font-weight: 700;
  padding: var(--sp-8) var(--sp-16);
  transition: all 0.2s;
}

.c-filter__btn:hover,
.c-filter__btn.is-active {
  background: var(--c-text);
  color: var(--c-white);
}

/* Components
   Reusable UI components shared across multiple modules.
   Module-specific styles live in modules/*/module.css.
*/
/* ============================================
   Components - Header
   Fixed site header with logo, nav, and CTA.
   ============================================ */

.c-header {
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  height: 72px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.c-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
  width: 100%;
}

.c-header__logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* WCAG 2.2 click target minimum */
  padding: 8px 0;
}

.c-header__logo img {
  height: 28px;
  width: auto;
}

.c-header__nav {
  align-items: center;
  display: flex;
  gap: var(--sp-32);
}

.c-header__nav ul {
  display: flex;
  gap: var(--sp-8); /* a11y: クリッカブル要素間の最小ギャップ 8px */
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-header__nav a {
  color: var(--c-text-sub);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* a11y: hover/focus 時のみ控えめなアクセント下線 */
.c-header__nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  background: var(--c-accent, #FFC800);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.c-header__nav a:hover {
  color: var(--c-text);
}

.c-header__nav a:hover::after,
.c-header__nav a:focus-visible::after {
  transform: scaleX(1);
}

.c-header__cta {
  background: var(--c-accent);
  border: 2px solid var(--c-accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(255, 200, 0, 0.3);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  min-width: 140px;
  min-height: 48px;
  padding: 14px 32px;
  transition: all 0.2s;
}

.c-header__cta:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  color: var(--c-text);
}

/* --- Minimal variant (form pages, error pages) --- */
.c-header--minimal {
  justify-content: center;
}

.c-header--minimal .c-header__inner {
  justify-content: center;
}

.c-header--minimal .c-header__logo {
  text-align: center;
}

/* --- Mobile hamburger (hidden by default, shown via responsive) --- */
.c-header__hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.c-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text, #2c2c2c);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.c-header__hamburger span:nth-child(2) {
  margin: 6px 0;
}

/* ハンバーガー → X 変形 (オープン時) */
.c-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* デスクトップでは nav 内 CTA は非表示 */
.c-header__nav-cta {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  body {
    padding-top: 60px;
  }

  .c-header {
    height: 60px;
  }

  .c-header__nav {
    display: none;
  }

  /* モバイルでは外側 CTA は非表示・代わりに nav 内 CTA を使う */
  .c-header__cta {
    display: none;
  }

  .c-header__hamburger {
    display: flex;
    order: 2;
  }

  .c-header__nav.is-open {
    background: rgba(255, 255, 255, 0.98);
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: var(--sp-16) 0;
    position: fixed;
    right: 0;
    top: 60px;
    overflow-y: auto;
  }

  .c-header__nav.is-open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .c-header__nav.is-open ul li {
    width: 100%;
    border-bottom: 1px solid var(--c-border);
  }

  .c-header__nav.is-open a {
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500;
    padding: 16px var(--sp-32);
    display: block;
    width: 100%;
    border-radius: 0;
    text-decoration: none;
  }

  /* モバイル時はホバー下線アクセント無効 */
  .c-header__nav.is-open a::after {
    display: none;
  }

  .c-header__nav.is-open a:hover,
  .c-header__nav.is-open a:focus-visible {
    background-color: var(--c-bg-alt, #f5f5f5);
  }

  /* nav 内 CTA — メニュー末尾にアクセント色で大きく表示（目に付くため最下部に配置） */
  .c-header__nav.is-open .c-header__nav-cta {
    display: block;
    background: var(--c-accent, #FFC800);
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin: var(--sp-24) var(--sp-32) var(--sp-32);
    padding: 16px var(--sp-32);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 200, 0, 0.3);
  }
  .c-header__nav.is-open .c-header__nav-cta::after {
    display: none;
  }
  .c-header__nav.is-open .c-header__nav-cta:hover,
  .c-header__nav.is-open .c-header__nav-cta:focus-visible {
    background: var(--c-accent-hover, #f0b400);
  }

  .c-header--minimal .c-header__hamburger {
    display: none;
  }
}
/* ============================================
   Components - Footer
   Site-wide footer with brand, links, and bottom row.
   ============================================ */

.c-footer {
  background: var(--c-bg-dark);
  color: var(--c-white);
  padding: var(--sp-96) 0 var(--sp-64);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.c-footer__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
}

.c-footer__grid {
  display: grid;
  gap: var(--sp-48);
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: var(--sp-64);
}

.c-footer__brand-name {
  color: var(--c-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--sp-16);
}

/* 岩永FB (5/22): 2色ロゴ (tiger-monday-logo.png 黒+黄色) を白カードに載せて
   認定バッジと統一感のあるスタイルに（ブランド色味を維持） */
.c-footer__brand-logo {
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: var(--sp-12) var(--sp-16);
  height: auto;
  width: auto;
  max-width: 240px;
  max-height: 64px;
  margin-bottom: var(--sp-16);
  box-sizing: content-box; /* padding を高さ計算に含めない（max-height は画像本体に効かせる） */
}

.c-footer__brand-tagline {
  color: var(--c-footer-link, #CCCCCC);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--sp-16);
  margin-top: var(--sp-8);
}

.c-footer__badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-16);
  margin-top: var(--sp-16);
}
/* 岩永FB (5/22 #2): GMP と HubSpot のバッジ高さを 80px に固定して両者の見た目を揃える */
.c-footer__badges img {
  height: 80px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.c-footer__col-title {
  color: var(--c-footer-text);
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-16); /* design-lint: --sp-12 未定義のため --sp-16 に修正 */
}

.c-footer__brand {
  font-size: 1.125rem;
  font-weight: 700;
}

.c-footer__desc {
  color: var(--c-footer-text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: var(--sp-8);
}

.c-footer__heading {
  color: var(--c-footer-text);
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-16);
}

.c-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.c-footer__links li {
  margin-bottom: var(--sp-4);
}

.c-footer__links a {
  color: var(--c-footer-link);
  display: block;
  font-size: 0.875rem;
  padding: 10px 8px;
  margin: 0 -8px;
  border-radius: var(--radius);
  text-decoration: underline; /* a11y: リンク識別性 */
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 4px;
  transition: color 0.2s, background-color 0.2s, text-decoration-color 0.2s;
}

.c-footer__links a:hover {
  color: var(--c-white);
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration-color: currentColor;
}

.c-footer__bottom {
  border-top: 1px solid var(--c-footer-border);
  color: var(--c-footer-bottom-text);
  font-size: 0.7222rem;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: var(--sp-24) var(--sp-32) 0;
}

.c-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.c-footer__bottom-links {
  display: flex;
  gap: var(--sp-24);
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-footer__bottom a {
  color: var(--c-footer-bottom-text);
  transition: color 0.2s;
}

.c-footer__bottom a:hover {
  color: var(--c-footer-link);
}

.c-footer__built {
  color: var(--c-footer-border);
  font-size: 0.625rem;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .c-footer__grid {
    gap: var(--sp-32);
    grid-template-columns: 1fr 1fr;
  }

  .c-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--sp-8);
  }
}

@media (max-width: 480px) {
  .c-footer__grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   Components - Card
   Generic card component used across multiple modules.
   Module-specific cards (.c-svc-card, .c-case-card) live in their own modules.
   ============================================ */

.c-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px; /* 大きめ角丸（2019感の排除・Linear/Vercel風） */
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.c-card:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Make whole card clickable when wrapped in <a> */
.c-card > a {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.c-card__img {
  aspect-ratio: 16 / 9;
  background: var(--c-placeholder);
  object-fit: cover;
  width: 100%;
}

.c-card__body {
  padding: var(--sp-40, 40px) var(--sp-32);
}

.c-card__header {
  margin-bottom: var(--sp-16);
}

.c-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--sp-16);
}

.c-card__text {
  color: var(--c-text-sub);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: var(--sp-20, 20px);
}

.c-card__link {
  display: inline-block;
  margin-top: var(--sp-20, 20px);
}
/* ============================================
   Components - Section Heading
   Shared section title block (label + h1/h2 + description).
   Used by service-cards, before-after, member-profile, pain-points etc.
   ============================================ */

.c-section-heading {
  /* 岩永FB: section-heading + 直下のコンテンツセクションで「妙な隙間」が出ていたため
     64px → 32px に短縮。各dnd_section の padding が支配的になり、bottom 64px+next-top 96px の
     ダブル余白が無くなる。 */
  margin-bottom: var(--sp-32);
  text-align: center;
}

.c-section-heading__label {
  /* a11y: was --c-accent (#FFC800 contrast 1.55) → switched to --c-text-sub */
  color: var(--c-text-sub);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-12);
  text-transform: uppercase;
}

.c-section-heading__title {
  margin-bottom: var(--sp-16);
}

.c-section-heading__desc {
  color: var(--c-text-sub);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: var(--sp-16);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Title slot for h1/h2 inside heading block */
.c-section-heading .t-h1,
.c-section-heading .t-h2 {
  margin-top: var(--sp-4);
}

/* Override .t-label inside heading block (use sub instead of label color override) */
.c-section-heading .t-label {
  color: var(--c-text-sub);
  display: block;
  margin-bottom: var(--sp-8);
}
/* ============================================
   Section Templates — theme8/sections/*.html
   --------------------------------------------
   Section固有のレイアウト・配置調整。
   モジュール本体のスタイルは modules/*/module.css に置く。
   このファイルは "Section組み立て" の段取りを担当する。

   重要: Section template は dnd_section に class 属性を渡せる。
   その class は DOM上 .dnd-section に合流する（実機要確認）。
   既存 _containers-dnd.css の `> .row-fluid > div { width: 100% }`
   と干渉する箇所は、ここで specificity を上げて打ち消す。
   ============================================ */

/* ========================================
   FV 共通: hero-fv 内部パディング打ち消し
   ---------------------------------------
   hero-fv.module.css は単体利用時の「ヘッダー直下160px」
   を担保するため padding-top 64px を持っている。
   Section template 側で padding を指定する場合はこれを
   打ち消す必要がある（二重パディング防止）。
   ======================================== */
.s-fv .c-fv {
  padding-top: 0;
}

/* ========================================
   FV Pattern 1: プロダクトUI中央配置 (Togglベース)
   ======================================== */
.s-fv--product {
  text-align: center;
}
.s-fv--product .c-fv {
  max-width: 100%;
  margin: 0 auto;
}
.s-fv--product .c-fv__tagline {
  font-size: 2.6875rem; /* 48px - H1/H2-hero（FV product） */
  line-height: 1.25;
  letter-spacing: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
}
.s-fv--product .c-fv__sub {
  font-size: 1.125rem; /* 20px - サブ */
  line-height: 1.9;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--c-text-sub);
}
.s-fv--product .c-fv__cta-row {
  justify-content: center;
}
.s-fv--product .c-fv__cta-row .c-btn {
  min-width: 240px;
}

/* FV下のプロダクトUIモックアップ画像 (rich_text で埋めた .c-fv__visual) */
.s-fv--product .c-fv__visual {
  max-width: 960px;
  margin: var(--sp-64) auto 0;
  padding: 0 var(--sp-32);
  text-align: center;
}
.s-fv--product .c-fv__visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ========================================
   FV Pattern 4: 左右2カラム (home-v8 — span7 タイポ + span5 画像)
   theme の `.row-fluid [class*="span"] { width: 100% }` を上書きして実カラム化
   ======================================== */
.s-fv--two-col > .row-fluid {
  display: flex;
  align-items: center;
  gap: var(--sp-32);
  max-width: var(--max-w);
  margin: 0 auto;
}
.s-fv--two-col > .row-fluid > .span7 {
  width: 58.33%;
  flex: 0 0 58.33%;
  float: none;
  margin: 0;
}
.s-fv--two-col > .row-fluid > .span5 {
  width: 41.66%;
  flex: 0 0 41.66%;
  float: none;
  margin: 0;
}
@media (max-width: 767px) {
  .s-fv--two-col > .row-fluid {
    flex-direction: column;
    gap: var(--sp-24);
  }
  .s-fv--two-col > .row-fluid > .span7,
  .s-fv--two-col > .row-fluid > .span5 {
    width: 100%;
    flex: 1 1 100%;
  }
}
.s-fv--two-col {
  text-align: left;
  align-items: center;
}
.s-fv--two-col .c-fv {
  text-align: left;
  padding: var(--sp-48) 0;
  border-bottom: 0;
}
.s-fv--two-col .c-fv .l-container,
.s-fv--two-col .c-fv .l-container--narrow {
  padding: 0 var(--sp-32);
}
.s-fv--two-col .c-fv__badge {
  margin-bottom: var(--sp-24);
}
.s-fv--two-col .c-fv__tagline {
  font-size: 2.6875rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 800;
  margin-left: 0;
  margin-right: 0;
}
.s-fv--two-col .c-fv__sub {
  font-size: 1.0625rem;
  line-height: 1.9;
  max-width: 480px;
  margin-left: 0;
  margin-right: 0;
  color: var(--c-text-sub);
}
.s-fv--two-col .c-fv__cta-row {
  justify-content: flex-start;
}
.s-fv--two-col .c-fv__cta-row .c-btn {
  min-width: 180px;
}
.s-fv--two-col .hs_cos_wrapper_type_linked_image {
  display: block;
  text-align: center;
}
.s-fv--two-col .hs_cos_wrapper_type_linked_image img {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .s-fv--two-col {
    text-align: center;
  }
  .s-fv--two-col .c-fv {
    text-align: center;
  }
  .s-fv--two-col .c-fv__tagline {
    font-size: 2rem;
  }
  .s-fv--two-col .c-fv__cta-row {
    justify-content: center;
  }
}

/* ========================================
   FV Pattern 2: 左見出し+右フォーム (Waveベース)
   FV Pattern 3: 左タイポ+右ショーケース (AMSベース)
   -------------------------------------
   2カラムレイアウトを CSS Grid で強制。
   _containers-dnd.css が `> .row-fluid > div { width: 100% }`
   をかけているので、ここで .dnd-section > .row-fluid を
   grid化して上書きする。
   ======================================== */
.dnd-section.s-fv--form > .row-fluid,
.dnd-section.s-fv--showcase > .row-fluid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-64);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-32);
}

/* 2カラム FV では hero-fv の container を無効化 */
.s-fv--form .c-fv,
.s-fv--showcase .c-fv {
  background: transparent;
  border-bottom: none;
}
.s-fv--form .c-fv .l-container,
.s-fv--form .c-fv .l-container--narrow,
.s-fv--showcase .c-fv .l-container,
.s-fv--showcase .c-fv .l-container--narrow {
  max-width: none;
  padding: 0;
}

/* FV2 見出し: 43px (白黒プロト準拠) */
.s-fv--form .c-fv__tagline {
  font-size: 2.6875rem; /* 43px */
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* FV3 見出し: 43px (白黒プロト準拠) */
.s-fv--showcase .c-fv__tagline {
  font-size: 2.6875rem; /* 43px */
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ========================================
   Logo Bar Section
   ======================================== */
.s-logo-bar {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

/* ========================================
   モバイル対応
   ======================================== */
@media (max-width: 767px) {
  .s-fv--product .c-fv__tagline {
    font-size: 2rem; /* 36px */
  }
  .dnd-section.s-fv--form > .row-fluid,
  .dnd-section.s-fv--showcase > .row-fluid {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
    padding: 0 var(--sp-24);
  }
  .s-fv--form .c-fv__tagline,
  .s-fv--showcase .c-fv__tagline {
    font-size: 2rem; /* 32px */
  }
}
/* ============================================
   Components - Misc
   Smaller shared components: tag, divider, stat, table, page-hero,
   testimonial, member, blog-author, placeholder.
   Note: .c-pain, .c-faq, .c-cta-section, .c-hero, .c-blog-author live in
   their respective module.css to avoid cascade conflicts.
   ============================================ */

/* --- Tag / Badge --- */
.c-tag {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text-sub);
  display: inline-block;
  font-size: 0.7222rem;
  font-weight: 700;
  padding: var(--sp-4) var(--sp-16);
}

.c-tag--accent {
  background: rgba(255, 200, 0, 0.1);
  border-color: var(--c-accent);
  color: var(--c-text);
}

.c-tag--dark {
  background: var(--c-bg-dark);
  border-color: transparent;
  color: var(--c-white);
}

/* --- Divider --- */
.c-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-48) 0;
}

/* --- CTA Section (global; also used inline in templates that don't drop cta-section.module) --- */
.c-cta-section {
  background: var(--c-bg-dark);
  color: var(--c-white);
  padding: var(--sp-96) var(--sp-32);
  text-align: center;
}

/* Linear/Vercel風: ダーク背景内にカード状CTAを「浮かせる」 */
.c-cta-section--float {
  background: var(--c-bg-alt);
  color: var(--c-text);
  padding: var(--sp-120) var(--sp-32);
}
.c-cta-section--float .c-cta-section__inner {
  background: var(--c-bg-dark);
  color: var(--c-white);
  border-radius: 24px;
  padding: var(--sp-80) var(--sp-48);
  max-width: 880px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}
/* Subtle accent line（うるさくない強さ） */
.c-cta-section--float .c-cta-section__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 0 0 2px 2px;
}
.c-cta-section--float .c-cta-section__title,
.c-cta-section--float .c-cta-section__desc {
  color: var(--c-white);
}
.c-cta-section--float .c-cta-section__desc {
  color: var(--c-footer-link);
}
@media (max-width: 767px) {
  .c-cta-section--float {
    padding: var(--sp-64) var(--sp-24);
  }
  .c-cta-section--float .c-cta-section__inner {
    padding: var(--sp-48) var(--sp-24);
    border-radius: 16px;
  }
}
.dnd-section:has(.c-cta-section) {
  padding-top: 0;
  padding-bottom: 0;
}
.c-cta-section__inner {
  margin: 0 auto;
  max-width: 640px;
}
.c-cta-section__title {
  color: var(--c-white);
  font-size: 2rem; /* 36px - t-h2と統一 */
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--sp-24);
}
.c-cta-section__desc {
  color: var(--c-footer-link);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--sp-48);
}
.c-cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-16);
  justify-content: center;
}
.c-cta-section .c-btn {
  border-color: var(--c-white);
  color: var(--c-white);
}
.c-cta-section .c-btn:hover {
  background: var(--c-white);
  color: var(--c-text);
}
.c-cta-section .c-btn--accent {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-text);
}
.c-btn--outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--c-white);
}
.c-btn--outline-light:hover {
  border-color: var(--c-white);
}
@media (max-width: 767px) {
  .c-cta-section__title {
    font-size: 1.5rem; /* 27px - mobile */
  }
}

/* --- c-hero (service-lp dynamic page hero) --- */
/* 岩永FB: FVと続くセクションの間隔を縮める → padding-bottom 64→24 */
.c-hero {
  padding: var(--sp-120) 0 var(--sp-24);
  background: var(--c-bg);
}
.c-hero__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
}
.c-hero__label {
  margin-bottom: var(--sp-16);
}
.c-hero__title {
  margin-bottom: var(--sp-24);
}
.c-hero__subtitle {
  margin-bottom: var(--sp-32);
  max-width: 720px;
}
.c-hero__ctas {
  display: flex;
  gap: var(--sp-16);
  margin-bottom: var(--sp-32);
  flex-wrap: wrap;
}
.c-hero__badges {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-16);
  flex-wrap: wrap;
}

/* --- c-hero with B2 integration diagram (service-lp) --- */
.c-hero--with-visual {
  position: relative;
}
.c-hero--with-visual .c-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-48);
  align-items: center;
}
.c-hero--with-visual .c-hero__visual {
  display: block;
}
.c-hero--with-visual .c-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 900px) {
  .c-hero--with-visual .c-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
  }
}

/* --- B1 dashboard mock figure (solution-cards 末尾) --- */
.c-solution-cards__output {
  margin: var(--sp-48) auto 0;
  max-width: 880px;
  text-align: center;
}
.c-solution-cards__output img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.c-solution-cards__output figcaption {
  margin-top: var(--sp-16);
  color: var(--c-text-sub);
  font-size: 0.875rem;
}

/* --- c-fv with hero image (home-v8 hero-fv module, 2-col layout) --- */
.c-fv--with-image .l-container,
.c-fv--with-image .l-container--narrow {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--sp-48);
  align-items: center;
}
.c-fv--with-image .c-fv__tagline {
  white-space: nowrap;
}
.c-fv--with-image .c-fv__body {
  min-width: 0;
  text-align: left;
}
.c-fv--with-image .c-fv__sub {
  margin-left: 0;
  margin-right: 0;
}
.c-fv--with-image .c-fv__cta-row {
  justify-content: flex-start;
}
.c-fv--with-image .c-fv__visual {
  display: block;
}
.c-fv--with-image .c-fv__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
@media (max-width: 900px) {
  .c-fv--with-image .l-container,
  .c-fv--with-image .l-container--narrow {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
  }
  .c-fv--with-image .c-fv__body {
    text-align: center;
  }
  .c-fv--with-image .c-fv__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .c-fv--with-image .c-fv__cta-row {
    justify-content: center;
  }
}

/* --- Page Hero (subpages) --- */
.c-page-hero {
  padding: var(--sp-120) 0 var(--sp-64);
}

.c-page-hero__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 var(--sp-32);
}

/* --- Generic Before/After (case-cards uses its own .c-case-ba) --- */
.c-ba {
  align-items: stretch;
  display: grid;
  gap: var(--sp-24);
  grid-template-columns: 1fr 48px 1fr;
}

.c-ba__box {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-24);
}

.c-ba__box--before {
  background: var(--c-bg-alt);
}

.c-ba__arrow {
  align-items: center;
  color: var(--c-text-muted);
  display: flex;
  font-size: 1.5rem;
  justify-content: center;
}

/* --- Table --- */
.c-table {
  border-collapse: collapse;
  font-size: 0.875rem;
  width: 100%;
}

.c-table th,
.c-table td {
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-16) var(--sp-24);
  text-align: left;
}

.c-table th {
  color: var(--c-text-muted);
  font-weight: 700;
  vertical-align: top;
  width: 160px;
}

/* --- Testimonial --- */
.c-testimonial__quote {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: var(--sp-24);
  padding-left: var(--sp-32);
  position: relative;
}

.c-testimonial__quote::before {
  color: var(--c-accent);
  content: "\201C";
  font-size: 2.6875rem;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  top: -8px;
}

.c-testimonial__author {
  align-items: center;
  display: flex;
  gap: var(--sp-16);
}

.c-testimonial__avatar {
  background: var(--c-placeholder);
  border-radius: 50%;
  flex-shrink: 0;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.c-testimonial__name {
  font-size: 0.875rem;
  font-weight: 700;
}

.c-testimonial__company {
  color: var(--c-text-muted);
  font-size: 0.7222rem;
}

/* --- Member --- */
.c-member__photo {
  aspect-ratio: 3 / 4;
  background: var(--c-placeholder);
  border-radius: var(--radius);
  max-width: 360px;
  object-fit: cover;
}

.c-member__role {
  margin-bottom: var(--sp-8);
}

.c-member__name {
  margin-bottom: var(--sp-24);
}

.c-member__bio {
  margin-bottom: var(--sp-24);
}

.c-member__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

/* --- Placeholder (wireframe mode) --- */
.ph {
  align-items: center;
  background: var(--c-placeholder);
  border-radius: var(--radius);
  color: var(--c-text-sub); /* a11y: muted(3.23:1) → sub で AA */
  display: flex;
  font-size: 0.7222rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.05em;
}

.ph--img {
  aspect-ratio: 16 / 9;
}

.ph--avatar {
  border-radius: 50%;
  height: 56px;
  width: 56px;
}

.ph--logo {
  height: 40px;
  width: 120px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .c-ba {
    grid-template-columns: 1fr;
  }

  .c-ba__arrow {
    transform: rotate(90deg);
  }
}
/* ============================================
   Components — Seminar Detail
   --------------------------------------------
   templates/seminar-detail.html の Dynamic Page で
   インラインレンダリングされる各セクションのスタイル。
   モジュール側 (modules/seminar-*.module) と同じクラス名を使い、
   DnD 用モジュールとビジュアル統一を保つ。

   含まれるブロック:
     - .c-seminar-hero / .c-seminar-info / .c-seminar-detail-badge
     - .c-seminar-info-card
     - .c-seminar-agenda
     - .c-seminar-speakers
     - .c-seminar-related
     - .c-seminar-archive
   ============================================ */


/* --------------------------------------------
   Hero
   -------------------------------------------- */
.c-seminar-hero {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-64);
  background: var(--c-bg);
}
.dnd-section .c-seminar-hero {
  padding-top: 0;
  padding-bottom: 0;
}

.c-seminar-hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
  max-width: 880px;
  margin: 0 auto;
}

.c-seminar-hero__head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.c-seminar-hero__badges {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.c-seminar-hero__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

.c-seminar-hero__lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--c-text-sub);
  margin: 0;
  max-width: 720px;
}

.c-seminar-hero__cover {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-placeholder);
  aspect-ratio: 16 / 9;
}
.c-seminar-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-seminar-hero__info {
  background: var(--c-bg-alt, #f7f5f0);
  border-radius: 16px;
  padding: var(--sp-32) var(--sp-32);
}

.c-seminar-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-16) var(--sp-32);
  margin: 0;
}

.c-seminar-info__row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin: 0;
}

.c-seminar-info__label {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-text-sub);
  margin: 0;
}

.c-seminar-info__icon {
  flex-shrink: 0;
  color: var(--c-text-sub);
}

.c-seminar-info__value {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

.c-seminar-hero__cta {
  display: flex;
  gap: var(--sp-16);
  flex-wrap: wrap;
  justify-content: center;
}
.c-seminar-hero__cta .c-btn {
  min-width: 280px;
}

/* badges — seminar-list.module の .c-seminar-badge と衝突しないよう --detail- で namespacing */
.c-seminar-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.c-seminar-detail-badge--accepting {
  background: var(--c-accent);
  color: var(--c-text);
}
.c-seminar-detail-badge--closed {
  background: var(--c-bg-alt, #f7f5f0);
  color: var(--c-text-sub);
  border: 1px solid var(--c-border);
}
.c-seminar-detail-badge--archive {
  background: var(--c-bg-alt, #f7f5f0);
  color: var(--c-text-sub);
  border: 1px solid var(--c-border);
}
.c-seminar-detail-badge--archive-available {
  background: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-text);
}

@media (max-width: 767px) {
  .c-seminar-hero {
    padding-top: var(--sp-48);
    padding-bottom: var(--sp-32);
  }
  .c-seminar-hero__inner { gap: var(--sp-24); }
  .c-seminar-info {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
  }
  .c-seminar-hero__info { padding: var(--sp-24); }
  .c-seminar-hero__cta .c-btn { min-width: 0; width: 100%; }
}


/* --------------------------------------------
   Info Card (学べる / 対象者)
   -------------------------------------------- */
.c-seminar-info-card {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-96);
}
.dnd-section .c-seminar-info-card {
  padding-top: 0;
  padding-bottom: 0;
}

.c-seminar-info-card__bullets {
  list-style: none;
  padding: 0;
  margin: var(--sp-48) auto 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.c-seminar-info-card__bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-16);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: var(--sp-24) var(--sp-32);
  transition: box-shadow 0.2s, transform 0.2s;
}

.c-seminar-info-card__bullet:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.c-seminar-info-card__check {
  flex-shrink: 0;
  color: var(--c-accent);
  margin-top: 2px;
}

.c-seminar-info-card__bullet-text { flex: 1; }

.c-seminar-info-card__bullet-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  color: var(--c-text);
}

.c-seminar-info-card__bullet-body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-sub);
  margin: var(--sp-4) 0 0;
}

.l-section--alt .c-seminar-info-card__bullet,
.l-section--warm .c-seminar-info-card__bullet {
  background: var(--c-bg);
}

@media (max-width: 767px) {
  .c-seminar-info-card {
    padding-top: var(--sp-48);
    padding-bottom: var(--sp-48);
  }
  .c-seminar-info-card__bullets {
    gap: var(--sp-12);
    margin-top: var(--sp-32);
  }
  .c-seminar-info-card__bullet {
    padding: var(--sp-16) var(--sp-20);
    gap: var(--sp-12);
  }
}


/* --------------------------------------------
   Agenda
   -------------------------------------------- */
.c-seminar-agenda {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-96);
}
.dnd-section .c-seminar-agenda {
  padding-top: 0;
  padding-bottom: 0;
}

.c-seminar-agenda__list {
  list-style: none;
  padding: 0;
  margin: var(--sp-48) auto 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--c-border);
  padding-left: var(--sp-32);
}

.c-seminar-agenda__item {
  position: relative;
  padding: var(--sp-16) 0 var(--sp-24) 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--sp-24);
  align-items: baseline;
}

.c-seminar-agenda__item::before {
  content: "";
  position: absolute;
  left: calc(var(--sp-32) * -1 - 7px);
  top: var(--sp-24);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 2px solid var(--c-bg);
}

.l-section--alt .c-seminar-agenda__item::before,
.l-section--warm .c-seminar-agenda__item::before {
  border-color: var(--c-bg-alt, #f7f5f0);
}

.c-seminar-agenda__time {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-text);
  font-feature-settings: "tnum";
}
.c-seminar-agenda__time--num {
  color: var(--c-text-muted);
  font-size: 0.7222rem;
}
.c-seminar-agenda__time--num::before { content: "STEP "; }

.c-seminar-agenda__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.c-seminar-agenda__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  color: var(--c-text);
}

.c-seminar-agenda__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-sub);
  margin: 0;
}

@media (max-width: 767px) {
  .c-seminar-agenda {
    padding-top: var(--sp-48);
    padding-bottom: var(--sp-48);
  }
  .c-seminar-agenda__list {
    margin-top: var(--sp-32);
    padding-left: var(--sp-20);
  }
  .c-seminar-agenda__item {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .c-seminar-agenda__item::before {
    left: calc(var(--sp-20) * -1 - 7px);
    top: var(--sp-20);
  }
  .c-seminar-agenda__time { color: var(--c-text-muted); }
}


/* --------------------------------------------
   Speakers
   -------------------------------------------- */
.c-seminar-speakers {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-96);
}
.dnd-section .c-seminar-speakers {
  padding-top: 0;
  padding-bottom: 0;
}

.c-seminar-speakers__grid {
  display: grid;
  gap: var(--sp-24);
  margin: var(--sp-48) auto 0;
  max-width: 880px;
}
.c-seminar-speakers__grid--1,
.c-seminar-speakers__grid--2,
.c-seminar-speakers__grid--3 { grid-template-columns: 1fr; }

.c-seminar-speakers__card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--sp-32);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--sp-32);
  align-items: flex-start;
}

.c-seminar-speakers__photo-wrap {
  width: 140px;
  height: 140px;
}

.c-seminar-speakers__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-placeholder);
  display: block;
}
.c-seminar-speakers__photo--placeholder {
  background: var(--c-placeholder);
}

.c-seminar-speakers__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.c-seminar-speakers__title-text {
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-text-sub);
  margin: 0;
  text-transform: uppercase;
}

.c-seminar-speakers__name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: var(--c-text);
}

.c-seminar-speakers__company {
  font-size: 0.875rem;
  color: var(--c-text-sub);
  margin: 0 0 var(--sp-12);
}

.c-seminar-speakers__bio {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-text-sub);
  margin: 0;
}

@media (max-width: 767px) {
  .c-seminar-speakers {
    padding-top: var(--sp-48);
    padding-bottom: var(--sp-48);
  }
  .c-seminar-speakers__grid { margin-top: var(--sp-32); }
  .c-seminar-speakers__card {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
    padding: var(--sp-24);
    text-align: left;
  }
  .c-seminar-speakers__photo-wrap,
  .c-seminar-speakers__photo {
    width: 96px;
    height: 96px;
  }
}


/* --------------------------------------------
   Related Seminars
   -------------------------------------------- */
.c-seminar-related {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-96);
}
.dnd-section .c-seminar-related {
  padding-top: 0;
  padding-bottom: 0;
}

.c-seminar-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

.c-seminar-related__card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-seminar-related__card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.c-seminar-related__img-wrap {
  aspect-ratio: 16 / 9;
  background: var(--c-placeholder);
  overflow: hidden;
}
.c-seminar-related__img-wrap--placeholder {
  background: linear-gradient(135deg, var(--c-bg-alt, #f7f5f0), #ececec);
}
.c-seminar-related__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-seminar-related__body {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  flex: 1;
}

.c-seminar-related__badges {
  display: flex;
  gap: var(--sp-4);
}

.c-seminar-related__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--c-text);
}

.c-seminar-related__date {
  font-size: 0.7222rem;
  color: var(--c-text-sub);
  margin: 0;
}

.c-seminar-related__footer {
  text-align: center;
  margin-top: var(--sp-32);
}

@media (max-width: 1024px) {
  .c-seminar-related__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .c-seminar-related {
    padding-top: var(--sp-48);
    padding-bottom: var(--sp-48);
  }
  .c-seminar-related__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
    margin-top: var(--sp-32);
  }
}


/* --------------------------------------------
   Archive (YouTube 埋め込み)
   -------------------------------------------- */
.c-seminar-archive {
  padding-top: var(--sp-96);
  padding-bottom: var(--sp-96);
}
.dnd-section .c-seminar-archive {
  padding-top: 0;
  padding-bottom: 0;
}

.c-seminar-archive__player-wrap {
  max-width: 880px;
  margin: var(--sp-48) auto 0;
}

.c-seminar-archive__player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.c-seminar-archive__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.c-seminar-archive__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-16);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.c-seminar-archive__fallback:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.c-seminar-archive__fallback-thumb { display: flex; }

.c-seminar-archive__fallback-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.c-seminar-archive__nudge {
  max-width: 880px;
  margin: var(--sp-32) auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8) var(--sp-16);
  text-align: center;
}

.c-seminar-archive__nudge-text {
  font-size: 0.875rem;
  color: var(--c-text-sub);
  margin: 0;
}

@media (max-width: 767px) {
  .c-seminar-archive {
    padding-top: var(--sp-48);
    padding-bottom: var(--sp-48);
  }
  .c-seminar-archive__player-wrap { margin-top: var(--sp-32); }
  .c-seminar-archive__nudge { margin-top: var(--sp-24); }
}
/* ============================================
   Member Detail Page (Dynamic Page for HubDB people)
   /member/{slug}
   - Hero (photo + name + tagline)
   - Tag blocks (expertise / interests / certifications)
   - Seminar list
   ============================================ */

.c-member-detail-hero {
  padding-top: var(--sp-48);
  padding-bottom: var(--sp-48);
  background: var(--c-bg);
}
@media (max-width: 767px) {
  .c-member-detail-hero {
    padding-top: var(--sp-64);
    padding-bottom: var(--sp-32);
  }
}

.c-mdh__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-64);
  align-items: center;
}

.c-mdh__photo {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-mdh__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-mdh__photo span {
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-text-muted);
}

.c-mdh__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
.c-mdh__name {
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0;
  letter-spacing: -0.01em;
}
.c-mdh__name-en {
  font-size: 0.8333rem;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  margin: 0;
}
.c-mdh__tagline {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--c-text);
  margin: var(--sp-12) 0 0;
  font-weight: 500;
}
.c-mdh__sns {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-16);
}

.c-mdt-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-48);
}
.c-mdt-block h2 {
  margin-bottom: var(--sp-16);
}
.c-mdt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.c-mdt-seminars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  margin-top: var(--sp-32);
}
.c-mdt-seminar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-24);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.c-mdt-seminar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: var(--c-text);
}
.c-mdt-seminar__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .c-mdh__inner {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-48);
  }
  .c-mdh__photo {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 640px) {
  .c-mdh__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-24);
  }
  .c-mdh__photo {
    width: 160px;
    height: 160px;
    border-radius: 16px;
  }
  .c-mdh__name {
    font-size: 2rem;
  }
}
/* ============================================
   Components — Service Detail (service-lp Dynamic Page)
   --------------------------------------------
   templates/service-lp.html の Dynamic Page で
   インラインレンダリングされる各セクションのスタイル。
   モジュール側 (modules/solution-cards / strengths / case-results / flow-steps)
   と同じクラス名を使い、DnD 用モジュールとビジュアル統一を保つ。

   理由: HubL のモジュール埋め込みタグは Dynamic Page の prerender 文脈で
   row.xxx を解決できず、モジュール内では fields.json default に
   フォールバックする既知挙動があるため、テンプレ側でインライン展開している。

   含まれるブロック:
     - .c-solution-cards / .c-solution-card
     - .c-strengths / .c-strengths__card
     - .c-case-results / .c-case-result
     - .c-flow-section / .c-flow / .c-flow__step
   ============================================ */


/* --------------------------------------------
   Solution Cards
   -------------------------------------------- */
.c-solution-cards {
  padding-top: var(--sp-120);
  padding-bottom: var(--sp-120);
}
.dnd-section .c-solution-cards {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .c-solution-cards {
    padding-top: var(--sp-64);
    padding-bottom: var(--sp-64);
  }
}

.c-solution-cards__grid {
  display: grid;
  gap: var(--sp-32);
  margin-top: var(--sp-64);
}

.c-solution-cards__grid--1 { grid-template-columns: 1fr; }
.c-solution-cards__grid--2 { grid-template-columns: repeat(2, 1fr); }
.c-solution-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.c-solution-cards__grid--4 { grid-template-columns: repeat(2, 1fr); }
.c-solution-cards__grid--5,
.c-solution-cards__grid--6,
.c-solution-cards__grid--7,
.c-solution-cards__grid--8 {
  grid-template-columns: repeat(2, 1fr);
}

.c-solution-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--sp-48);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.c-solution-card:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.c-solution-card__num {
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  /* a11y: 元は --c-accent (#FFC800・1.55:1) で AA未達 → text-sub (#5c5b58・7.74:1) に変更 */
  color: var(--c-text-sub);
  font-feature-settings: "tnum";
}

.c-solution-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0;
}

.c-solution-card__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}

.c-solution-card__body p {
  margin: 0;
}
.c-solution-card__body p + p,
.c-solution-card__body ul,
.c-solution-card__body ol {
  margin-top: var(--sp-8);
}

/* legacy `solution` 直挿しレイアウト (h3 区切りでない <ol>/<ul> 形式) */
.c-solution-cards__legacy {
  margin-top: var(--sp-48);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--sp-48);
}
.c-solution-cards__legacy ol,
.c-solution-cards__legacy ul {
  margin: 0;
  padding-left: 1.5em;
}
.c-solution-cards__legacy li + li {
  margin-top: var(--sp-16);
}

@media (max-width: 1024px) {
  .c-solution-cards__grid--3,
  .c-solution-cards__grid--5,
  .c-solution-cards__grid--6,
  .c-solution-cards__grid--7,
  .c-solution-cards__grid--8 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .c-solution-cards__grid,
  .c-solution-cards__grid--2,
  .c-solution-cards__grid--3,
  .c-solution-cards__grid--4,
  .c-solution-cards__grid--5,
  .c-solution-cards__grid--6,
  .c-solution-cards__grid--7,
  .c-solution-cards__grid--8 {
    grid-template-columns: 1fr;
    gap: var(--sp-24);
    margin-top: var(--sp-48);
  }
  .c-solution-card,
  .c-solution-cards__legacy {
    padding: var(--sp-32) var(--sp-24);
  }
}


/* --------------------------------------------
   Strengths
   -------------------------------------------- */
.c-strengths {
  position: relative;
  padding-top: var(--sp-120);
  padding-bottom: var(--sp-120);
}
.dnd-section .c-strengths {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .c-strengths {
    padding-top: var(--sp-64);
    padding-bottom: var(--sp-64);
  }
}

.c-strengths__grid {
  display: grid;
  gap: var(--sp-32);
  margin-top: var(--sp-64);
}

.c-strengths__grid--4 { grid-template-columns: repeat(2, 1fr); }
.c-strengths__grid--3 { grid-template-columns: repeat(3, 1fr); }
.c-strengths__grid--2 { grid-template-columns: repeat(2, 1fr); }
.c-strengths__grid--1 { grid-template-columns: 1fr; }
.c-strengths__grid--5,
.c-strengths__grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.c-strengths__card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--sp-48) var(--sp-48) var(--sp-48);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  transition: box-shadow 0.2s, transform 0.2s;
}

.c-strengths__card:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.c-strengths__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 0 0 2px 2px;
}

.c-strengths__num {
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  font-feature-settings: "tnum";
}
.c-strengths__num::before {
  content: "STRENGTH ";
}

.c-strengths__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0;
}

.c-strengths__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}
.c-strengths__body p {
  margin: 0;
}
.c-strengths__body p + p {
  margin-top: var(--sp-8);
}

.l-section--alt .c-strengths__card,
.l-section--warm .c-strengths__card {
  background: var(--c-bg);
}

@media (max-width: 1024px) {
  .c-strengths__grid--4,
  .c-strengths__grid--5,
  .c-strengths__grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .c-strengths__grid,
  .c-strengths__grid--4,
  .c-strengths__grid--3,
  .c-strengths__grid--5,
  .c-strengths__grid--6 {
    grid-template-columns: 1fr;
    gap: var(--sp-24);
    margin-top: var(--sp-48);
  }
  .c-strengths__card {
    padding: var(--sp-32) var(--sp-24);
  }
}


/* --------------------------------------------
   Case Results
   -------------------------------------------- */
.c-case-results {
  padding-top: var(--sp-120);
  padding-bottom: var(--sp-120);
}
.dnd-section .c-case-results {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .c-case-results {
    padding-top: var(--sp-64);
    padding-bottom: var(--sp-64);
  }
}

.c-case-results__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
  margin-top: var(--sp-64);
}

.c-case-result {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-48);
  align-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--sp-48);
  transition: box-shadow 0.2s, transform 0.2s;
}

.c-case-result:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.c-case-result__metric {
  border-right: 1px solid var(--c-border);
  padding-right: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.c-case-result__number {
  font-size: 2.6875rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text);
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
}

.c-case-result__label {
  font-size: 0.8333rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
}

.c-case-result__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.c-case-result__head {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

.c-case-result__client {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.c-case-result__row {
  display: flex;
  gap: var(--sp-16);
  align-items: baseline;
}

.c-case-result__row-label {
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  flex-shrink: 0;
  min-width: 2.5em;
  padding-top: 4px;
}

.c-case-result__row-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-text-sub);
  margin: 0;
}

.c-case-results__empty {
  color: var(--c-text-muted);
  text-align: center;
  padding: var(--sp-48) 0;
}

@media (max-width: 1024px) {
  .c-case-result {
    grid-template-columns: 240px 1fr;
    gap: var(--sp-32);
    padding: var(--sp-32);
  }
  .c-case-result__number {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .c-case-result {
    grid-template-columns: 1fr;
    gap: var(--sp-24);
    padding: var(--sp-24);
  }
  .c-case-result__metric {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding-right: 0;
    padding-bottom: var(--sp-16);
  }
  .c-case-result__number {
    font-size: 2rem;
  }
}


/* --------------------------------------------
   Flow Steps
   -------------------------------------------- */
.c-flow-section {
  padding-top: var(--sp-120);
  padding-bottom: var(--sp-120);
}
.dnd-section .c-flow-section {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .c-flow-section {
    padding-top: var(--sp-64);
    padding-bottom: var(--sp-64);
  }
}

.c-flow {
  display: flex;
  gap: 0;
  counter-reset: flow-counter;
  margin-top: var(--sp-48);
}

.c-flow__step {
  flex: 1;
  counter-increment: flow-counter;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.c-flow__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.c-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--c-text, #2c2c2c);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  background: var(--c-bg, #fff);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.c-flow__number::before {
  content: "STEP " counter(flow-counter);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.c-flow__connector {
  position: absolute;
  top: 50%;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: var(--c-border, #E0E0E0);
  transform: translateY(-50%);
  z-index: 1;
}

.c-flow__connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--c-border, #E0E0E0);
}

.c-flow__content {
  padding: 0 16px;
}

.c-flow__step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.c-flow__step-text {
  font-size: 0.875rem;
  color: var(--c-text-sub, #5c5b58);
  line-height: 1.6;
}

.l-section--alt .c-flow__number {
  background: var(--c-bg-alt, #F5F5F5);
}

/* legacy `flow` 直挿しレイアウト (h3 区切りでない <ol>/<ul> 形式) */
.c-flow-section__legacy {
  margin-top: var(--sp-48);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--sp-48);
}
.c-flow-section__legacy ol,
.c-flow-section__legacy ul {
  margin: 0;
  padding-left: 1.5em;
}
.c-flow-section__legacy li + li {
  margin-top: var(--sp-16);
}

@media (max-width: 767px) {
  .c-flow {
    flex-direction: column;
    gap: 0;
  }

  .c-flow__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .c-flow__marker {
    width: auto;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    margin-right: 24px;
  }

  .c-flow__connector {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 2px;
    height: 32px;
    transform: none;
  }

  .c-flow__connector::after {
    right: auto;
    top: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid var(--c-border, #E0E0E0);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: none;
  }

  .c-flow__content {
    padding: 8px 0 32px;
  }
  .c-flow-section__legacy {
    padding: var(--sp-32) var(--sp-24);
  }
}


/* --------------------------------------------
   Richtext card-like blocks (service-lp Dynamic Page)
   --------------------------------------------
   背景: HubL h3-split parse が Dynamic Page 文脈で破綻
   (parts[0]|striptags|trim が "null" 文字列を返す) ため、
   service-lp.html では solution_cards / strengths / flow_steps を
   `` の生出力に切替。
   ここでは h3+p の組み合わせを縦並びの "カード風 / ステップ風" に装飾する。
   既存の .c-solution-card / .c-strengths__card / .c-flow__step CSS は
   モジュール経由の他ページ用に温存（破壊しない）。
   -------------------------------------------- */

/* 共通: h3 連番 (counter-increment) */
.c-solution-cards__richtext,
.c-strengths__richtext,
.c-flow__richtext {
  counter-reset: tmcards;
  margin-top: var(--sp-64);
}
/* h3 (カード上半分) は前のカードとの間にだけ margin-top を取る。
   gap で h3 ↔ p の間まで分断していたバグ修正 (岩永FB)。 */
.c-solution-cards__richtext > h3,
.c-strengths__richtext > h3,
.c-flow__richtext > h3 {
  counter-increment: tmcards;
  position: relative;
  margin: var(--sp-24) 0 0;
  padding: var(--sp-32) var(--sp-32) var(--sp-8);
  background: var(--c-bg, #fff);
  border: 1px solid var(--c-border, #E0E0E0);
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  /* design-lint: 他 h3 (20px) と統一 — 22.5px → 20px */
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-text);
}
.c-solution-cards__richtext > h3:first-of-type,
.c-strengths__richtext > h3:first-of-type,
.c-flow__richtext > h3:first-of-type {
  margin-top: 0;
}
.c-solution-cards__richtext > h3::before,
.c-strengths__richtext > h3::before,
.c-flow__richtext > h3::before {
  content: counter(tmcards, decimal-leading-zero);
  display: block;
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-accent, #E8A23B);
  font-feature-settings: "tnum";
  margin-bottom: var(--sp-8);
}

/* h3 直後の p を本文として: bottom 角丸でカード閉じる */
.c-solution-cards__richtext > h3 + p,
.c-strengths__richtext > h3 + p,
.c-flow__richtext > h3 + p {
  margin: 0;
  padding: 0 var(--sp-32) var(--sp-32);
  background: var(--c-bg, #fff);
  border: 1px solid var(--c-border, #E0E0E0);
  border-top: none;
  border-radius: 0 0 16px 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}

/* 連続する p (2文目以降) も本文側のカードに含める */
.c-solution-cards__richtext > h3 + p + p,
.c-strengths__richtext > h3 + p + p,
.c-flow__richtext > h3 + p + p {
  border-radius: 0 0 16px 16px;
  border-top: none;
  padding-top: var(--sp-16);
  margin-top: calc(-1 * var(--sp-24));
}

/* ul / ol が h3 直後に来る場合のフォロー */
.c-solution-cards__richtext > h3 + ul,
.c-solution-cards__richtext > h3 + ol,
.c-strengths__richtext > h3 + ul,
.c-strengths__richtext > h3 + ol,
.c-flow__richtext > h3 + ul,
.c-flow__richtext > h3 + ol {
  margin: 0;
  padding: 0 var(--sp-32) var(--sp-32) calc(var(--sp-32) + 1.25em);
  background: var(--c-bg, #fff);
  border: 1px solid var(--c-border, #E0E0E0);
  border-top: none;
  border-radius: 0 0 16px 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-sub);
}

/* Strengths は warm 背景なのでカードは白を維持（変更なし） */
/* Flow は Step 連番をアクセントカラーに合わせて少し強調 */
.c-flow__richtext > h3::before {
  letter-spacing: 0.16em;
}

@media (max-width: 767px) {
  .c-solution-cards__richtext,
  .c-strengths__richtext,
  .c-flow__richtext {
    margin-top: var(--sp-48);
    gap: var(--sp-16);
  }
  .c-solution-cards__richtext > h3,
  .c-strengths__richtext > h3,
  .c-flow__richtext > h3 {
    padding: var(--sp-24) var(--sp-24) var(--sp-8);
    font-size: 1.125rem;
  }
  .c-solution-cards__richtext > h3 + p,
  .c-strengths__richtext > h3 + p,
  .c-flow__richtext > h3 + p,
  .c-solution-cards__richtext > h3 + ul,
  .c-solution-cards__richtext > h3 + ol,
  .c-strengths__richtext > h3 + ul,
  .c-strengths__richtext > h3 + ol,
  .c-flow__richtext > h3 + ul,
  .c-flow__richtext > h3 + ol {
    padding-left: var(--sp-24);
    padding-right: var(--sp-24);
    padding-bottom: var(--sp-24);
  }
}
/* =====================================================================
   Blog Post Body & Lead — 記事本文・リード文・PCサイドバー
   モジュールではなくテンプレ直接マークアップ用のスタイル
   ===================================================================== */

/* ------ Blog Lead ------ */
.c-blog-lead {
  background: var(--c-bg);
  padding: var(--sp-32) 0 var(--sp-48);
}
.c-blog-lead__inner {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 var(--sp-32);
}
.c-blog-lead__intro {
  color: var(--c-text-muted);
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: var(--sp-16);
  text-transform: uppercase;
}
.c-blog-lead__text {
  border-left: 3px solid var(--c-accent);
  color: var(--c-text);
  font-size: 1.0625rem;
  line-height: 2;
  margin: 0;
  padding: var(--sp-8) 0 var(--sp-8) var(--sp-24);
}
@media (max-width: 767px) {
  .c-blog-lead__text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}

/* ------ Blog Body 2-column layout (PC) ------ */
.c-blog-content {
  padding: var(--sp-48) 0 var(--sp-80);
}
.c-blog-content__grid {
  display: grid;
  gap: var(--sp-48);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 var(--sp-32);
}
/* 2026-05-25 改修: 1カラムレイアウト（右カラム目次を廃止し本文上に移動） */
.c-blog-content--single .c-blog-content__main--single {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-32);
}
/* 目次セクション（本文の上） */
.c-blog-toc-section {
  padding: var(--sp-32) 0;
}
.c-blog-toc-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-32);
}
/* アイキャッチ画像（タイトル下・toggle表示） */
.c-blog-hero__figure {
  margin: var(--sp-32) auto 0;
  max-width: 800px;
  padding: 0 var(--sp-32);
}
.c-blog-hero__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
/* 関連記事 3列グリッド（2026-05-25 岩永さん再指摘・3つ横並び） */
.c-blog-related__grid--3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-blog-related__grid--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 961px) {
  .c-blog-content__grid {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: var(--sp-64);
  }
}
.c-blog-content__main {
  min-width: 0;
}
.c-blog-content__aside {
  min-width: 0;
}
@media (max-width: 960px) {
  .c-blog-content__aside {
    order: -1;
  }
}

/* ------ Blog Body Rich Text (HubSpot post_body output) ------ */
.c-blog-body {
  margin: 0 auto;
  max-width: 720px;
}
.c-blog-body .t-richtext {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.95;
}
.c-blog-body .t-richtext > * {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.c-blog-body .t-richtext > *:first-child {
  margin-top: 0;
}
.c-blog-body .t-richtext > *:last-child {
  margin-bottom: 0;
}

/* Headings */
.c-blog-body .t-richtext h2 {
  color: var(--c-text);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-top: 3em;
  margin-bottom: 1em;
  scroll-margin-top: 96px;
}
.c-blog-body .t-richtext h2:first-child {
  margin-top: 0;
}
.c-blog-body .t-richtext h3 {
  color: var(--c-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  scroll-margin-top: 96px;
}
.c-blog-body .t-richtext h3::before {
  background: var(--c-accent);
  content: "";
  display: inline-block;
  height: 14px;
  margin-right: 10px;
  vertical-align: -1px;
  width: 4px;
}
.c-blog-body .t-richtext h4 {
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

/* Paragraphs */
.c-blog-body .t-richtext p {
  color: var(--c-text);
  line-height: 1.95;
  margin-bottom: 1.8em;
}

/* Strong — minimum boldness (avoid SEO-style bold spam) */
.c-blog-body .t-richtext strong,
.c-blog-body .t-richtext b {
  background: linear-gradient(transparent 60%, rgba(255, 200, 0, 0.4) 60%);
  font-weight: 700;
  padding: 0 2px;
}

/* Lists */
.c-blog-body .t-richtext ul,
.c-blog-body .t-richtext ol {
  margin-bottom: 1.8em;
  padding-left: 1.5em;
}
.c-blog-body .t-richtext li {
  line-height: 1.9;
  margin-bottom: 0.5em;
}
.c-blog-body .t-richtext ul > li {
  list-style: none;
  position: relative;
}
.c-blog-body .t-richtext ul > li::before {
  background: var(--c-accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: -1.2em;
  position: absolute;
  top: 0.75em;
  width: 6px;
}

/* Links */
/* リンクの inline style は main.js で除去 → ここは !important なしで OK */
.c-blog-body .t-richtext a {
  color: #1e6ef0;
  text-decoration: underline;
  text-decoration-color: #1e6ef0;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  border-bottom: none;
  background-color: transparent;
  transition: opacity 0.2s;
}
.c-blog-body .t-richtext a * {
  color: inherit;
  text-decoration: inherit;
  background-color: transparent;
}
.c-blog-body .t-richtext a:hover {
  opacity: 0.7;
}

/* Inline code */
.c-blog-body .t-richtext code {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-text);
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.85em;
  padding: 0.1em 0.45em;
}

/* Code block */
.c-blog-body .t-richtext pre {
  background: var(--c-bg-dark);
  border-radius: 8px;
  color: var(--c-white);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 2em 0;
  overflow-x: auto;
  padding: var(--sp-24);
}
.c-blog-body .t-richtext pre code {
  background: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  padding: 0;
}

/* Blockquote — 実務例・引用 */
.c-blog-body .t-richtext blockquote {
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 8px 8px 0;
  color: var(--c-text);
  font-size: 0.9375rem;
  line-height: 1.9;
  margin: 2em 0;
  padding: var(--sp-24) var(--sp-32);
}
.c-blog-body .t-richtext blockquote p:last-child {
  margin-bottom: 0;
}

/* Images & figures — 図解前提 */
.c-blog-body .t-richtext img {
  background: var(--c-bg-alt);
  border-radius: 8px;
  display: block;
  height: auto;
  margin: 2em auto;
  max-width: 100%;
}
.c-blog-body .t-richtext figure {
  margin: 2em 0;
}
.c-blog-body .t-richtext figure img {
  margin: 0 auto 12px;
}
.c-blog-body .t-richtext figcaption {
  color: var(--c-text-muted);
  font-size: 0.8125rem;
  line-height: 1.7;
  text-align: center;
}

/* Tables — 実務例の比較表用 */
.c-blog-body .t-richtext table {
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 2em 0;
  width: 100%;
}
.c-blog-body .t-richtext th,
.c-blog-body .t-richtext td {
  border: 1px solid var(--c-border);
  line-height: 1.7;
  padding: var(--sp-12) var(--sp-16);
  text-align: left;
  vertical-align: top;
}
.c-blog-body .t-richtext th {
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-weight: 700;
}

/* HR divider */
.c-blog-body .t-richtext hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 3em auto;
  max-width: 80px;
}

/* Lead paragraph mark (allow editors to mark <p class="lead"> in HubSpot editor) */
.c-blog-body .t-richtext p.lead,
.c-blog-body .t-richtext .lead {
  border-left: 3px solid var(--c-accent);
  color: var(--c-text);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 2;
  padding: var(--sp-12) 0 var(--sp-12) var(--sp-24);
}

@media (max-width: 767px) {
  .c-blog-content {
    padding: var(--sp-24) 0 var(--sp-48);
  }
  .c-blog-content__grid {
    gap: var(--sp-32);
  }
  .c-blog-body .t-richtext {
    font-size: 0.9375rem;
    line-height: 1.9;
  }
  .c-blog-body .t-richtext h2 {
    font-size: 1.25rem;
    margin-top: 2.5em;
  }
  .c-blog-body .t-richtext h3 {
    font-size: 1.0625rem;
  }
  .c-blog-body .t-richtext pre {
    padding: var(--sp-16);
  }
  .c-blog-body .t-richtext blockquote {
    padding: var(--sp-16) var(--sp-20, 20px);
  }
}

/* ------ Blog Post Author Card (記事末の著者カード) ------ */
.c-blog-post-author {
  background: var(--c-bg-alt);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-24);
  margin: var(--sp-64) auto 0;
  max-width: 720px;
  padding: var(--sp-32);
}
.c-blog-post-author__photo {
  flex-shrink: 0;
}
.c-blog-post-author__photo img,
.c-blog-post-author__photo--ph {
  background: var(--c-bg-warm);
  border-radius: 50%;
  height: 72px;
  object-fit: cover;
  width: 72px;
}
.c-blog-post-author__photo--ph {
  align-items: center;
  color: var(--c-text);
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
}
.c-blog-post-author__info {
  flex: 1;
  min-width: 0;
}
.c-blog-post-author__label {
  color: var(--c-text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.c-blog-post-author__name {
  color: var(--c-text);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 var(--sp-8);
}
.c-blog-post-author__bio {
  color: var(--c-text-sub);
  font-size: 0.875rem;
  line-height: 1.85;
  margin: 0 0 var(--sp-16);
}
.c-blog-post-author__more {
  color: var(--c-text);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.c-blog-post-author__more:hover {
  text-decoration: underline;
}

/* ------ Related Articles section ------ */
.c-blog-related {
  background: var(--c-bg);
  padding: var(--sp-80) 0 var(--sp-120);
}
.c-blog-related__head {
  border-top: 1px solid var(--c-border);
  margin: 0 auto var(--sp-48);
  max-width: 1056px;
  padding: var(--sp-48) var(--sp-32) 0;
}
.c-blog-related__label {
  color: var(--c-text-muted);
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: var(--sp-8);
  text-transform: uppercase;
}
.c-blog-related__title {
  color: var(--c-text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Utilities
   Helper classes that override anything that comes before.
*/
/* ============================================
   Utilities - Helper classes
   Single-purpose utility classes that override anything before them.
   Loaded last in main.css.
   ============================================ */

/* --- Text alignment --- */
.u-text-center {
  text-align: center;
}

/* --- Margin bottom --- */
.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-8 {
  margin-bottom: var(--sp-8);
}

.u-mb-16 {
  margin-bottom: var(--sp-16);
}

.u-mb-24 {
  margin-bottom: var(--sp-24);
}

.u-mb-32 {
  margin-bottom: var(--sp-32);
}

.u-mb-48 {
  margin-bottom: var(--sp-48);
}

.u-mb-64 {
  margin-bottom: var(--sp-64);
}

/* --- Margin top --- */
.u-mt-48 {
  margin-top: var(--sp-48);
}