/*
Theme Name: iCLAW Criminal
Theme URI: https://iclaw.jp/criminal/
Author: 稲葉セントラル法律事務所
Author URI: https://iclaw.jp/
Description: 刑事事件専門サイト用WordPressテーマ。ネイビー×ゴールドのリーガルデザイン。犯罪種類・状況・不安・流れ・被害者・用語集の各ディレクトリ構成に対応。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: iclaw-criminal
Tags: legal, japanese, criminal-law

================================================================
  iCLAW Criminal Theme – Design Tokens
  ネイビー #152540 × ゴールド #9e7c3a × クリーム #f7f4ee
================================================================
*/

/* ================================================================
   0. CSS CUSTOM PROPERTIES
================================================================ */
:root {
  /* Brand Colors */
  --ink:      #0e1c2f;
  --navy:     #152540;
  --navy-md:  #1e3558;
  --navy-lt:  #2a4870;
  --gold:     #9e7c3a;
  --gold-lt:  #c4a05a;
  --gold-xl:  #e2c47e;
  --cream:    #f7f4ee;
  --cream-d:  #ede9e0;
  --stone:    #d6d1c4;
  --text:     #1a1a1a;
  --text-s:   #4a4a4a;
  --text-m:   #7a7a7a;
  --white:    #ffffff;
  --red:      #8b1a1a;

  /* Typography */
  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Cormorant Garamond', serif;

  /* Spacing */
  --section-pad: 72px 64px;
  --section-pad-sm: 48px 32px;
  --max-w: 1080px;
  --max-w-narrow: 760px;

  /* Borders & Shadows */
  --border: 1px solid var(--stone);
  --radius: 2px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

/* ================================================================
   1. RESET & BASE
================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

/* ================================================================
   2. HEADER / GLOBAL NAV
================================================================ */
.site-header {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  flex-shrink: 0;
}

.site-header__logo-en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.site-header__logo-ja {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.site-header__nav {
  display: flex;
  align-items: center;
}

.site-header__nav ul {
  display: flex;
  gap: 0;
}

.site-header__nav li a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 20px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}

.site-header__nav li a:hover,
.site-header__nav li.current-menu-item a {
  color: var(--gold-lt);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.12);
  margin-left: 8px;
}

.site-header__tel {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--gold-xl);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-header__tel-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  display: block;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
  font-family: var(--font-sans);
}

.btn-contact:hover { background: var(--gold-lt); color: var(--white); }

/* ================================================================
   3. BREADCRUMB
================================================================ */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  font-size: 11px;
  color: var(--text-m);
}

.breadcrumb__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 1100px) {
  .breadcrumb__inner { padding: 9px 32px; }
}
@media (max-width: 680px) {
  .breadcrumb__inner { padding: 7px 20px; }
}

.breadcrumb a { color: var(--text-m); }
.breadcrumb a:hover { color: var(--navy); }

.breadcrumb__sep {
  color: var(--stone);
  font-size: 10px;
  margin: 0 2px;
}

.breadcrumb__current { color: var(--text-s); }

/* ================================================================
   4. PAGE HERO (Sub-page FV)
================================================================ */
.page-hero {
  background: var(--navy);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(158,124,58,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(158,124,58,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-hero__lead {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

/* ================================================================
   5. CRIMINAL TOP – Full-width HERO (1st layer)
================================================================ */
.criminal-hero {
  background: var(--navy);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 64px;
}

.criminal-hero__bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 200px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.criminal-hero__circle-lg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(158,124,58,0.12);
  pointer-events: none;
}

.criminal-hero__circle-sm {
  position: absolute;
  right: 80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(158,124,58,0.07);
  pointer-events: none;
}

.criminal-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.criminal-hero__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.criminal-hero__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.criminal-hero__title {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.criminal-hero__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 2.1;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.criminal-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-lt);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 15px 28px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

/* ================================================================
   6. NAVIGATION CARDS (2nd layer hub pages)
================================================================ */
.nav-cards {
  padding: var(--section-pad);
  background: var(--cream);
}

.nav-cards__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header { margin-bottom: 52px; }

.section-eyebrow {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
}

/* カテゴリーナビグリッド */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nav-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: block;
  transition: box-shadow 0.2s, transform 0.15s;
  color: inherit;
}

.nav-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.nav-card__en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nav-card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.nav-card__desc {
  font-size: 12px;
  color: var(--text-m);
  line-height: 1.8;
  margin-bottom: 14px;
}

.nav-card__arrow {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-card__arrow::after {
  content: '→';
}

/* ================================================================
   7. ARTICLE SECTIONS
================================================================ */
.art-sec {
  padding: 56px 64px;  /* = var(--section-pad) 相当（type TOPに合わせ統一） */
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.art-sec.alt { background: var(--cream); }

.art-sec__header,
.art-sec__hd { margin-bottom: 36px; }

.art-sec__label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.art-sec__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stone);
}

/* 記事グリッド：左大1 + 右小4 */
.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* メイン記事（大） */
.art-main {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--shadow-sm) 0.2s;
  color: inherit;
}

.art-sec.alt .art-main { background: var(--white); }
.art-main:hover { box-shadow: var(--shadow-md); }

.art-main__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream-d);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-main__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.art-main:hover .art-main__thumb img { transform: scale(1.04); }

.art-main__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.art-main__title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* サブ記事（小） */
.art-sub-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.art-sub {
  display: flex;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
  color: inherit;
}

.art-sec.alt .art-sub { background: var(--white); }
.art-sub:hover { box-shadow: var(--shadow-sm); }

.art-sub__thumb {
  width: 90px;
  flex-shrink: 0;
  background: var(--cream-d);
  overflow: hidden;
}

.art-sub__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-sub__body {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.art-sub__title {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* 記事タグ */
.art-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-radius: 1px;
}

.art-date {
  font-size: 11px;
  color: var(--text-m);
  letter-spacing: 0.04em;
}

/* 記事カード（横並び・リスト） */
.art-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 16px;
  color: inherit;
  transition: box-shadow 0.2s;
}

.art-card:hover { box-shadow: var(--shadow-sm); }

.art-card__thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  background: var(--cream-d);
  border-radius: 1px;
  overflow: hidden;
}

.art-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  flex: 1;
}

.art-card__title {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* 記事グリッド（全幅） */
.art-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ================================================================
   8. CATEGORY NAV (3rd layer hub – type/case/worry categories)
================================================================ */
.cat-nav {
  padding: var(--section-pad);
  background: var(--white);
}

.cat-nav__inner { max-width: var(--max-w); margin: 0 auto; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-item {
  background: var(--cream);
  border: var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: block;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.15s;
}

.cat-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cat-item__icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.cat-item__name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.cat-item__count {
  font-size: 11px;
  color: var(--text-m);
}

/* ================================================================
   9. FLOW SECTION (流れTOP専用)
================================================================ */
.flow-section {
  padding: var(--section-pad);
  background: var(--white);
}

.flow-section__inner { max-width: var(--max-w); margin: 0 auto; }

.flow-wrapper {
  position: relative;
  padding-left: 56px;
}

.flow-line {
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--stone);
}

.flow-step {
  position: relative;
  margin-bottom: 20px;
}

.flow-step:last-child { margin-bottom: 0; }

.flow-node {
  position: absolute;
  left: -48px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  z-index: 2;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--navy);
}

.flow-step__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}

.flow-step__inner:hover { box-shadow: var(--shadow-md); }

.flow-phase {
  background: var(--navy);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-phase__en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 8px;
}

.flow-phase__ja {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.flow-phase__period {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.flow-content {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-content__desc {
  font-size: 13px;
  color: var(--text-s);
  line-height: 1.8;
}

.flow-content__points {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-content__point {
  font-size: 12px;
  color: var(--text-m);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.flow-content__point::before {
  content: '▶';
  font-size: 8px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.flow-content__link {
  font-size: 12px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.flow-content__link::after { content: ' →'; }
.flow-content__link:hover { color: var(--gold-lt); }

/* ================================================================
   10. SINGLE ARTICLE
================================================================ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-pad);
  background: var(--cream);
}

.single-content {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
}

.single-content__header {
  padding: 40px 48px 32px;
  border-bottom: var(--border);
}

.single-content__cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.single-content__title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.single-content__meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-m);
  letter-spacing: 0.04em;
}

.single-content__body {
  padding: 40px 48px;
}

/* 本文スタイル */
.entry-content h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  background: var(--navy);
  padding: 16px 20px;
  margin: 40px 0 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-left: 4px solid var(--gold);
}

.entry-content h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  padding: 12px 0 12px 16px;
  margin: 32px 0 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-left: 3px solid var(--gold);
}

.entry-content h4 {
  font-size: 15px;
  color: var(--navy);
  margin: 24px 0 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.entry-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-s);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.entry-content ul,
.entry-content ol {
  margin: 16px 0 24px 20px;
}

.entry-content ul { list-style: none; }
.entry-content ul li { position: relative; padding-left: 14px; margin-bottom: 8px; }
.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.entry-content ol { list-style: decimal; }
.entry-content ol li { margin-bottom: 8px; }

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.entry-content table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.entry-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--stone);
  color: var(--text-s);
}

.entry-content table tr:nth-child(even) td { background: var(--cream); }

/* 注意書きボックス */
.entry-content .note-box {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-s);
}

.entry-content .important-box {
  background: #fff8f0;
  border: 1px solid #e8c870;
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 13px;
  line-height: 1.8;
}

/* ================================================================
   11. SIDEBAR
================================================================ */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-widget__title {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-widget__body { padding: 16px; }

/* 目次 */
.toc-list { display: flex; flex-direction: column; gap: 0; }

.toc-list li a {
  display: block;
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-s);
  border-bottom: 1px solid var(--cream-d);
  transition: color 0.2s, padding-left 0.15s;
  letter-spacing: 0.04em;
}

.toc-list li a:hover { color: var(--gold); padding-left: 4px; }

/* 関連記事 */
.related-list { display: flex; flex-direction: column; gap: 12px; }

.related-item {
  display: flex;
  gap: 10px;
  color: inherit;
  transition: opacity 0.2s;
}

.related-item:hover { opacity: 0.75; }

.related-item__thumb {
  width: 64px;
  height: 48px;
  flex-shrink: 0;
  background: var(--cream-d);
  border-radius: 1px;
  overflow: hidden;
}

.related-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-item__title {
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* CTAウィジェット */
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.sidebar-cta__title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.sidebar-cta__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}

.sidebar-cta__tel {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  color: var(--gold-xl);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}

.sidebar-cta__tel-label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

/* ================================================================
   12. FAQ SECTION
================================================================ */
.faq-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.faq-section__inner { max-width: var(--max-w); margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--stone);
}

.faq-q {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover .faq-q__text { color: var(--navy); }

.faq-letter {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
  width: 28px;
}

.faq-a-letter { color: var(--navy-lt); }

.faq-q__text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  flex: 1;
  padding-top: 4px;
}

.faq-q__icon {
  font-size: 12px;
  color: var(--text-m);
  flex-shrink: 0;
  padding-top: 6px;
  transition: transform 0.25s;
}

.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 22px 44px;
  font-size: 14px;
  color: var(--text-s);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.faq-item.is-open .faq-a { display: block; }

/* ================================================================
   13. CTA BAR
================================================================ */
.cta-bar {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-bar__text-main {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.cta-bar__text-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}

.cta-bar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cta-bar__tel {
  text-align: right;
}

.cta-bar__tel-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}

.cta-bar__tel-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  color: var(--gold-xl);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ================================================================
   14. FOOTER
================================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.site-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 64px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand__label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-brand__address {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  letter-spacing: 0.04em;
  font-style: normal;
}

.footer-nav__title {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-nav__list { display: flex; flex-direction: column; gap: 10px; }

.footer-nav__list a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-nav__list a:hover { color: var(--gold-lt); }

.site-footer__copy {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 64px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* ================================================================
   15. PAGINATION
================================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0 0;
}

.pagination a,
.pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-s);
  transition: background 0.15s, color 0.15s;
}

.pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ================================================================
   16. UTILITY
================================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }

.inner-wrap { max-width: var(--max-w); margin: 0 auto; }
.inner-narrow { max-width: var(--max-w-narrow); margin: 0 auto; }

/* ================================================================
   17. RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .site-header__inner,
  .cta-bar,
  .site-footer__main,
  .site-footer__copy { padding-left: 32px; padding-right: 32px; }

  .criminal-hero { padding: 60px 40px; }
  .page-hero { padding: 56px 40px 64px; }
  .art-sec,
  .nav-cards,
  .cat-nav,
  .flow-section,
  .faq-section { padding: 56px 40px; }

  /* breadcrumbはinnerで管理 */
  .single-layout { padding: 40px; gap: 28px; }
}

@media (max-width: 900px) {
  .nav-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .art-grid { grid-template-columns: 1fr; }
  .art-sub-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .art-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; }
  /* SP: article=2行目, sidebar全体は分割して目次=1行目・CTA+関連=3行目 */
  .single-layout .sidebar { order: 2; }
  .single-layout article { order: 1; }
  /* 目次widgetだけ記事の上へ */
  .single-layout .sidebar { display: contents; }
  .single-layout .sidebar .sidebar-widget:first-child { order: 0; }
  .single-layout .sidebar .sidebar-cta { order: 3; }
  .single-layout .sidebar .sidebar-widget:not(:first-child) { order: 4; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .flow-step__inner { grid-template-columns: 180px 1fr; }
}

@media (max-width: 680px) {
  :root { --section-pad: 40px 20px; --section-pad-sm: 32px 16px; }

  .site-header__inner { padding: 0 20px; flex-wrap: wrap; }
  .site-header__nav { display: none; } /* → ハンバーガー対応 */
  .criminal-hero { padding: 48px 20px; min-height: auto; }
  .criminal-hero__title { font-size: 34px; }
  .page-hero { padding: 48px 20px; }
  .page-hero__title { font-size: 26px; }
  /* breadcrumbはinnerで管理 */

  .nav-grid,
  .cat-grid,
  .art-cards-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .art-sub-list { grid-template-columns: 1fr; }
  .flow-step__inner { grid-template-columns: 1fr; }
  .flow-phase { padding: 16px 18px; }
  .cta-bar { flex-direction: column; padding: 24px 20px; text-align: center; }
  .cta-bar__actions { flex-direction: column; }
  .site-footer__main { grid-template-columns: 1fr; }
  .single-layout { padding: 24px 20px; gap: 24px; }
  .single-content__header,
  .single-content__body { padding: 24px 20px; }
  .entry-content h2 { font-size: 17px; padding: 12px 16px; }
  .entry-content h3 { font-size: 15px; }
}

/* ================================================================
   18. HUB PAGE（ハブページ専用スタイル）
================================================================ */

/* セクション背景 */
.hub-sec { padding: 48px; }
.sec-white  { background: #ffffff; }
.sec-cream  { background: #f7f4ee; }
.sec-stone  { background: #ede9e0; }
.sec-dot    { background-image: radial-gradient(circle,rgba(158,124,58,0.1) 1px,transparent 1px); background-size: 24px 24px; }
.sec-line   { background-image: repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(158,124,58,0.07) 39px,rgba(158,124,58,0.07) 40px); }

/* セクション共通 */
.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
}
.sec-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.sec-h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
}

/* ハブ本文 */
.hub-body p { margin-bottom: 16px; }
.hub-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  margin: 24px 0 12px;
  font-weight: 500;
}
.hub-body table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.hub-body table th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 400; }
.hub-body table td { padding: 10px 14px; border-bottom: 0.5px solid var(--stone); color: var(--text-s); }
.hub-body table tr:nth-child(even) td { background: rgba(255,255,255,0.6); }

/* 2×2グリッド */
.hub-grid22 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hub-g22-card { background: var(--white); border: 0.5px solid var(--stone); border-radius: 2px; padding: 20px 18px; }
.hub-g22-num { font-size: 36px; color: rgba(158,124,58,0.18); font-family: var(--font-en); line-height: 1; margin-bottom: 10px; }
.hub-g22-title { font-size: 13px; color: var(--navy); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 10px; line-height: 1.55; }
.hub-g22-body { font-size: 12px; color: var(--text-s); line-height: 1.9; font-family: var(--font-sans); }

/* FAQ（ネイビー背景） */
.hub-sec.sec-navy { background: var(--navy); }
.hub-sec.sec-navy .sec-h2 { color: var(--white); border-bottom-color: rgba(255,255,255,0.12); }

@media (max-width: 680px) {
  .hub-sec { padding: 36px 20px; }
  .hub-grid22 { grid-template-columns: 1fr; }
}

/* ================================================================
   19. REVIEWER BOX（監修者ボックス）
================================================================ */
.reviewer-box {
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0 0;
  background: var(--white);
}

.reviewer-box__header {
  background: var(--navy);
  padding: 10px 20px;
  border-bottom: 2px solid var(--gold);
}

.reviewer-box__label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
}

.reviewer-box__body {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  align-items: flex-start;
}

.reviewer-box__photo {
  flex-shrink: 0;
}

.reviewer-box__photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--stone);
}

.reviewer-box__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviewer-box__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reviewer-box__org,
.reviewer-box__role {
  font-size: 11px;
  color: var(--text-m);
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
}

.reviewer-box__org::after {
  content: '|';
  margin-left: 10px;
  color: var(--stone);
}

.reviewer-box__name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.reviewer-box__title {
  font-size: 12px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.06em;
  background: rgba(158,124,58,0.1);
  padding: 2px 8px;
  border-radius: 1px;
}

.reviewer-box__belong {
  font-size: 11px;
  color: var(--text-m);
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
}

.reviewer-box__desc {
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.85;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  margin-top: 4px;
}

.reviewer-box__link {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  transition: color 0.2s;
  align-self: flex-start;
}

.reviewer-box__link:hover { color: var(--gold-lt); }

@media (max-width: 680px) {
  .reviewer-box__body { flex-direction: column; }
  .reviewer-box__photo img { width: 64px; height: 64px; }
}

/* ================================================================
   20. HERO ILLUSTRATION
================================================================ */
.criminal-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.criminal-hero__content {
  flex: 1;
  min-width: 0;
}

.criminal-hero__illustration {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.criminal-hero__illustration img {
  width: 420px;
  max-width: 42vw;
  height: auto;
  display: block;
  /* 画像は透明PNG化済みのため mix-blend-mode 不要 */
  filter: drop-shadow(0 0 40px rgba(158,124,58,0.15));
}

/* 背景テキストをイラストの後ろに */
.criminal-hero__bg-text {
  z-index: 0;
}

@media (max-width: 900px) {
  .criminal-hero__illustration img {
    width: 280px;
    max-width: 38vw;
  }
}

@media (max-width: 680px) {
  .criminal-hero {
    flex-direction: column-reverse;
    gap: 0;
  }
  .criminal-hero__illustration {
    width: 100%;
    margin-bottom: -20px;
  }
  .criminal-hero__illustration img {
    width: 220px;
    max-width: 70vw;
    margin: 0 auto;
  }
}


/* ================================================================
   21b. HUB ページヒーロー
================================================================ */
.hub-hero {
  background: var(--navy);
  padding: 48px 48px 44px;
  position: relative;
  overflow: hidden;
}

.hub-hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hub-hero__deco--lg {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(158,124,58,0.15);
}

.hub-hero__deco--sm {
  right: 40px;
  top: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(158,124,58,0.08);
}

/* ================================================================
   21. FV（ファーストビュー）リデザイン
================================================================ */
.fv {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

/* コンテンツ幅ラッパー：左右余白を生み出す */
.fv__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  position: relative;
  z-index: 2;
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,28,47,0.9) 0%, rgba(14,28,47,0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.fv__bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 160px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* 左：テキスト */
.fv__body {
  flex: 0 0 55%;
  padding: 64px 0 64px 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-lt);
  margin-bottom: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fv__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.fv__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.fv__title em {
  font-style: normal;
  color: var(--gold-xl);
  border-bottom: 1px solid rgba(226,196,126,0.4);
}

.fv__lead {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 380px;
  font-weight: 300;
  font-family: var(--font-sans);
}

.fv__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-red {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  font-family: var(--font-sans);
  border-radius: var(--radius);
}

.btn-primary-red:hover { background: #a82020; color: var(--white); }

/* 右：イラスト */
.fv__photo {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 24px 0;
}

.fv__photo img {
  width: 95%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ================================================================
   22. シチュエーションナビ
================================================================ */
.sit-nav {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border-bottom: 2px solid var(--gold);
}

.sit-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.18s;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans);
}

.sit-nav__item:last-child { border-right: none; }
.sit-nav__item:hover { background: rgba(158,124,58,0.12); color: var(--gold-xl); }

.sit-nav__label {
  font-size: 10px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
}

/* ================================================================
   23. 被害者バナー
================================================================ */
.victim-banner {
  background: var(--cream);
  padding: 16px 64px;
  border-bottom: 1px solid var(--stone);
}

.victim-banner__inner {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.victim-banner__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.victim-banner__en {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold-lt);
  text-transform: uppercase;
}

.victim-banner__title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.victim-banner__sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.victim-banner__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.7;
  font-family: var(--font-sans);
  flex: 1;
}

.victim-banner__btn {
  flex-shrink: 0;
  background: var(--gold);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.victim-banner__btn:hover { background: var(--gold-lt); color: var(--white); }

/* ================================================================
   24. TOPナビカード（背景をcreamに）
================================================================ */
.top-nav-cards {
  padding: var(--section-pad);
  background: var(--cream);
}

.top-nav-cards__inner { max-width: var(--max-w); margin: 0 auto; }

/* ================================================================
   25. レスポンシブ（FV系）
================================================================ */
@media (max-width: 1100px) {
  .victim-banner { padding: 16px 32px; }
  .top-nav-cards { padding: var(--section-pad-sm); }
}

@media (max-width: 900px) {
  .fv { flex-direction: column; }
  .fv__body { flex: none; padding: 48px 32px; }
  .fv__photo { flex: none; min-height: 260px; }
  .fv__photo img { width: 70%; height: auto; }
  .fv__bg-text { font-size: 100px; }
  .sit-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .fv__body { padding: 40px 20px; }
  .fv__title { font-size: 24px; }
  .fv__photo { min-height: 200px; }
  .fv__photo img { width: 80%; }
  .sit-nav { grid-template-columns: repeat(3, 1fr); }
  .sit-nav__label { font-size: 9px; }
  .victim-banner { padding: 12px 20px; }
  .victim-banner__inner { flex-wrap: wrap; }
  .victim-banner__sep { display: none; }
}

/* ================================================================
   26. SUB-FV（2階層目TOPのヒーロー）
================================================================ */
.sub-fv {
  background: var(--navy);
  padding: 64px 64px 56px;
  position: relative;
  overflow: hidden;
}

.sub-fv::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(158,124,58,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.sub-fv__en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-fv__en::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sub-fv__title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.sub-fv__lead {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
}

/* ================================================================
   27. TYPE CARD GRID（4カラムカード）
================================================================ */
.type-card-section {
  padding: 56px 64px;
  background: var(--cream);
}

.type-card-section__inner { max-width: var(--max-w); margin: 0 auto; }

.tc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone);
}

.tc {
  background: var(--white);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: background 0.25s;
}

.tc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--stone);
  transition: background 0.25s;
}

.tc:hover::before { background: var(--gold); }
.tc:hover { background: var(--cream); }

.tc__num {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 300;
}

.tc__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.25s;
  color: var(--gold);
}

.tc:hover .tc__icon { background: rgba(158,124,58,0.06); }

.tc__name {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.tc__ex {
  font-size: 11px;
  color: var(--text-m);
  line-height: 1.8;
  flex: 1;
  font-family: var(--font-sans);
}

.tc__link {
  margin-top: 16px;
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
}

/* ================================================================
   28. ART-SEC type TOP 追加スタイル
   ※ .art-sec 基本定義はセクション7を参照
================================================================ */

/* art-sub-grid（2×2サムネイルグリッド） */
.art-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.art-sub-grid .art-sub {
  flex-direction: column;
}

.art-sub-grid .art-sub__thumb {
  width: 100%;
  height: 100px;
  background: var(--cream-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-m);
  overflow: hidden;
}

.art-sub-grid .art-sub__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-sub-grid .art-sub__body { padding: 10px 12px; }

/* レスポンシブ */
@media (max-width: 1100px) {
  .sub-fv { padding: 56px 40px; }
  .type-card-section { padding: 48px 40px; }
  .art-sec { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .tc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .sub-fv { padding: 40px 20px; }
  .sub-fv__title { font-size: 24px; }
  .type-card-section { padding: 36px 20px; }
  .tc-grid { grid-template-columns: repeat(2, 1fr); }
  .art-sec { padding: 36px 20px; }
  .art-sub-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   29. art-main / art-sub クラス名統一パッチ
   （HTMLデザインのケバブ記法とBEM記法の両方に対応）
================================================================ */
.art-main__thumb,
.art-main-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream-d);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-m);
  letter-spacing: 0.06em;
}

.art-main__thumb img,
.art-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.art-main:hover .art-main__thumb img,
.art-main:hover .art-main-img img { transform: scale(1.04); }

.art-main__body,
.art-main-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.art-main__title,
.art-main-ttl {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.art-sub__thumb,
.art-sub-img {
  width: 90px;
  flex-shrink: 0;
  background: var(--cream-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-m);
  overflow: hidden;
}

.art-sub__thumb img,
.art-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-sub__body,
.art-sub-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.art-sub__title,
.art-sub-ttl {
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* victim-bannerのpaddingを他ページでも適用 */
.victim-banner {
  padding: 16px 64px;
}

@media (max-width: 1100px) {
  .victim-banner { padding: 16px 40px; }
}
@media (max-width: 680px) {
  .victim-banner { padding: 12px 20px; }
}

/* ================================================================
   30. 全体修正パッチ
================================================================ */

/* ① ヘッダーの電話番号フォント改善 */
.site-header__tel-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.site-header__tel-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  display: block;
}

.site-header__tel-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  color: var(--gold-xl);
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.2;
}

.site-header__tel-num:hover { color: var(--gold-lt); }

/* ② FVイラストの黒背景を完全除去 */
.fv__photo {
  flex: 0 0 42%;
  position: relative;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: visible;
}

.fv__photo img {
  width: 138%; /* 92% × 1.5 = イラスト1.5倍 */
  height: auto;
  object-fit: contain;
}

/* ── FV検察官バー ── */
.fv__prosecutor {
  border-top: 1px solid rgba(158,124,58,0.35);
  padding-top: 18px;
  margin-top: 28px;
}

.fv__prosecutor-headline {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-xl);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  overflow: hidden;
}

.fv__prosecutor-headline::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  animation: fv-shine 3s ease-in-out infinite;
}

@keyframes fv-shine {
  0%   { left: -100%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}

.fv__prosecutor-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fv__prosecutor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(158,124,58,0.4);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.fv__prosecutor-badge svg {
  color: var(--gold-lt);
  flex-shrink: 0;
}

/* ③ FV・ヘッダー・パンくず・ナビを画面幅いっぱいに */
/* ヘッダーは全幅のまま、inner で幅を制御 */
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ④ FVは全幅、内部コンテンツも全幅でOK（設計通り） */
.fv {
  width: 100%;
  max-width: 100%;
}

/* sit-navを全幅に（inner不要） */
.sit-nav {
  width: 100%;
}

/* victim-banner: クリーム背景は全幅、innerで制限 */
.victim-banner {
  background: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}

.victim-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.victim-banner__inner-content {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ⑤ パンくず（→ 冒頭のセクション3で一括管理） */

/* パンくず内テキストをmaxwidthで中央揃え（廃止：top-sec__innerで管理） */

/* ⑥ ナビカードセクション */
.top-nav-cards {
  background: var(--cream);
  padding: 64px 0;
}

.top-nav-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* art-secも全幅 */
.art-sec .inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ⑦ victim-bannerのinner-contentを追加 */
/* （PHPで.victim-banner__inner直下に配置する形に合わせる） */
.victim-banner__inner {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .site-header__inner,
  .top-nav-cards__inner,
  .art-sec .inner-wrap { padding: 0 32px; }
  .victim-banner__inner { margin: 0 32px; }
  .breadcrumb > * { padding: 0 32px; }
}

@media (max-width: 680px) {
  .site-header__inner,
  .top-nav-cards__inner,
  .art-sec .inner-wrap { padding: 0 20px; }
  .victim-banner__inner { margin: 0 20px; flex-wrap: wrap; }
  .victim-banner__sep { display: none; }
  /* .fv__photo img: 透明PNG化済みのため mix-blend-mode 設定不要 */
}

/* ================================================================
   31. （削除：冒頭セクション3に統合済み）
================================================================ */


/* ================================================================
   TOPページ専用スタイル (front-page.php)
   デザインモック準拠 / 2025リニューアル
================================================================ */

/* ── CSS変数（デザインモックと同一） ── */
:root {
  --ink:     #0e1c2f;
  --navy:    #152540;
  --navy-md: #1e3558;
  --navy-lt: #2a4870;
  --gold:    #9e7c3a;
  --gold-lt: #c4a05a;
  --gold-xl: #e2c47e;
  --cream:   #f7f4ee;
  --cream-d: #ede9e0;
  --stone:   #d6d1c4;
  --text-s:  #4a4a4a;
  --text-m:  #7a7a7a;
  --red:     #8b1a1a;
}

/* ── セクション共通 ── */
.top-sec {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--stone);
}
.top-sec--alt { background: var(--cream); }
.top-sec--articles { padding-top: 40px; padding-bottom: 40px; }

/* 各セクション内コンテンツをmax-width内に収めるラッパー */
.top-sec__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.top-sec__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-sec__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.top-sec__ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 18px;
}
.top-sec__ttl::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.top-sec__more { text-align: right; margin-top: 16px; }
.top-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-family: 'Noto Serif JP', serif;
  border-bottom: 1px solid rgba(158,124,58,0.3);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.top-more-link:hover { opacity: 0.75; }

/* ── シチュエーションナビ ── */
.top-sit-nav {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border-bottom: 2px solid var(--gold);
}
.top-sit-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  gap: 5px;
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.top-sit-nav__item:last-child { border-right: none; }
.top-sit-nav__item svg { opacity: 0.6; transition: opacity 0.2s; }
.top-sit-nav__item:hover { background: rgba(158,124,58,0.15); color: var(--gold-xl); }
.top-sit-nav__item:hover svg { opacity: 1; }

/* ── 被害者バナー（コンパクト） ── */
.top-victim-banner {
  background: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}
.top-victim-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 40px 14px 24px;
  display: flex;
  align-items: center;
  background: var(--navy);
  border-left: 3px solid var(--gold);
  gap: 20px;
}
.top-victim-banner__left { flex-shrink: 0; }
.top-victim-banner__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold-lt);
  margin-bottom: 3px;
}
.top-victim-banner__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.top-victim-banner__sep {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.top-victim-banner__desc {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}
.top-victim-banner__btn {
  flex-shrink: 0;
  background: var(--gold);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
}
.top-victim-banner__btn:hover { background: var(--gold-lt); }

/* ── 刑事事件とは ── */
.top-sec__body--2col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
}
.top-sec__text {
  font-size: 13px;
  color: var(--text-s);
  line-height: 2.1;
  font-weight: 300;
}
.top-sec__text strong { color: var(--navy); font-weight: 500; }
.top-infobox {
  background: var(--navy);
  padding: 28px;
  border-left: 2px solid var(--gold);
}
.top-infobox__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold-lt);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}
.top-infobox__body {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 2.2;
  font-weight: 300;
}

/* ── 犯罪種類カード（4列グリッド） ── */
.top-crime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone);
  margin-bottom: 0;
}
.top-tc {
  background: #fff;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.top-tc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--stone);
  transition: background 0.25s;
}
.top-tc:hover::before { background: var(--gold); }
.top-tc:hover { background: var(--cream); }
.top-tc__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 300;
}
.top-tc__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.25s;
  color: var(--gold);
}
.top-tc:hover .top-tc__icon { background: rgba(158,124,58,0.06); }
.top-tc__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.top-tc__ex {
  font-size: 11px;
  color: var(--text-m);
  line-height: 1.8;
  flex: 1;
}
.top-tc__link {
  margin-top: 16px;
  font-size: 11px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.04em;
}

/* ── 状況カード（3列）── */
.top-cc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.top-cc {
  background: var(--navy);
  padding: 24px 24px 24px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  display: block;
}
.top-cc::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: var(--gold);
}
.top-cc:hover { background: var(--navy-md); border-color: rgba(158,124,58,0.3); }
.top-cc__tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold-lt);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  font-weight: 300;
}
.top-cc__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.top-cc__kw {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
}

/* ── 不安カード（3列） ── */
.top-wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.top-wc {
  background: #fff;
  border: 1px solid var(--stone);
  padding: 24px 22px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.top-wc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}
.top-wc:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.top-wc:hover::after { background: var(--gold); }
.top-wc__icon {
  margin-bottom: 14px;
  color: var(--navy);
  opacity: 0.5;
}
.top-wc__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.top-wc__desc {
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.9;
  font-weight: 300;
}

/* ── 流れステップ ── */
.top-flow-steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}
.top-fstep {
  flex: 1;
  background: var(--navy);
  color: #fff;
  padding: 20px 8px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.top-fstep:last-child { border-right: none; }
.top-fstep::after {
  content: '›';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 16px;
  z-index: 1;
}
.top-fstep:last-child::after { display: none; }
.top-fstep__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold-lt);
  margin-bottom: 6px;
  letter-spacing: 0.15em;
}
.top-fstep__title { font-size: 12px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 4px; }
.top-fstep__time { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 300; }
.top-flow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  padding: 12px 28px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s;
}
.top-flow-btn:hover { background: var(--navy-md); }

/* ── 選ばれる理由カード ── */
.top-pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.top-pc {
  background: #fff;
  border: 1px solid var(--stone);
  padding: 28px 24px;
  position: relative;
}
.top-pc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.top-pc__icon {
  width: 100%; height: 100px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.top-pc__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.top-pc__desc { font-size: 12px; color: var(--text-s); line-height: 1.9; font-weight: 300; }

/* ── 犯罪被害者セクション ── */
.top-victim-sec {
  background: #f5f0e8;
  padding: 60px 0;
  border-bottom: 1px solid var(--stone);
  border-left: 3px solid var(--gold);
}
.top-victim-sec .top-sec__ttl { color: var(--navy); }
.top-victim-lead-box {
  background: var(--navy);
  padding: 28px 32px;
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
}
.top-victim-lead-box__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.top-victim-lead-box__body { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 2; font-weight: 300; }
.top-sub-hd {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stone);
  letter-spacing: 0.04em;
}
.top-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.top-service-card {
  background: #fff;
  border: 1px solid var(--stone);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.top-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.top-service-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.top-service-card__desc { font-size: 12px; color: var(--text-s); line-height: 1.8; font-weight: 300; }

/* ── QA ── */
.top-victim-qa { margin-bottom: 28px; }
.top-qa-item { border: 1px solid var(--stone); overflow: hidden; margin-bottom: 1px; }
.top-qa__q {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.top-qa__a {
  padding: 16px 20px;
  background: var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.9;
  font-weight: 300;
  border-top: 1px solid var(--stone);
}
.top-qa__badge {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 600;
  margin-top: 1px;
}
.top-qa__badge--q { background: var(--gold); color: var(--navy); }
.top-qa__badge--a { background: var(--navy); color: #fff; }
.top-victim-more { text-align: center; margin-top: 8px; }

/* ── CTAバンド ── */
.top-cta-band {
  background: var(--navy);
  padding: 0;
  border-top: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.top-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt), var(--gold));
}
.top-cta-band__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.top-cta-band__left h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.top-cta-band__left p { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300; margin: 0; }
.top-cta-band__tel { text-align: center; flex-shrink: 0; }
.top-cta-band__tel-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  color: var(--gold-xl);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-cta-band__tel-hrs { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 4px; letter-spacing: 0.06em; }
.top-cta-band__mail-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.top-cta-band__mail-btn:hover { background: var(--gold-lt); }

/* ── 記事グリッド（大1+小4） ── */
.top-art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.top-art-main {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.top-art-main:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.top-art-main__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--cream-d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-art-main__thumb img { width: 100%; height: 100%; object-fit: cover; }
.top-art-main__nothumb { font-size: 11px; color: var(--text-m); letter-spacing: 0.06em; }
.top-art-main__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.top-art-main__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.top-art-date { font-size: 11px; color: var(--text-m); letter-spacing: 0.04em; }
.top-art-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.top-art-sub-list { display: flex; flex-direction: column; gap: 12px; }
.top-art-sub {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.top-art-sub:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.top-art-sub__thumb {
  width: 90px;
  flex-shrink: 0;
  background: var(--cream-d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.top-art-sub__thumb img { width: 100%; height: 100%; object-fit: cover; }
.top-art-sub__body { padding: 10px 12px; display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.top-art-sub__title { font-size: 12px; color: var(--navy); font-weight: 500; line-height: 1.6; letter-spacing: 0.02em; }



/* ================================================================
   ヘッダー 2段構造
================================================================ */

/* Row1: 本体サイトナビ帯 */
.site-header__row1 {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__row1-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__global-nav {
  display: flex;
  gap: 0;
}
.site-header__global-nav a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 9px 14px;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-header__global-nav a:hover { color: var(--gold-lt); }

/* Row1 右側CTA */
.site-header__row1-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-header__tel-block { display: flex; flex-direction: column; align-items: flex-end; }
.site-header__tel-label { font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; line-height: 1; }
.site-header__tel-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--gold-xl);
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.3;
}
.site-header__tel-num:hover { color: var(--gold-lt); }

/* Row2: 刑事サイトナビ */
.site-header__row2 {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
}
.site-header__row2-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ */
.site-header__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  flex-shrink: 0;
  text-decoration: none;
}
.site-header__logo-en {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.site-header__logo-ja {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* 刑事サイト内ナビ */
.site-header__criminal-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__criminal-nav li a,
.site-header__criminal-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 18px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-header__criminal-nav li a:hover,
.site-header__criminal-nav a:hover { color: var(--gold-lt); }

/* ハンバーガーボタン（PC時は非表示） */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  border-radius: 2px;
  flex-shrink: 0;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

/* ================================================================
   SPドロワーナビ
================================================================ */
.sp-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
}
.sp-nav-drawer[hidden] { display: none; }
.sp-nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.sp-nav-drawer__panel {
  position: relative;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--navy);
  overflow-y: auto;
  padding: 0 0 40px;
  box-shadow: 4px 0 24px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}
.sp-nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
}
.sp-nav-drawer__close:hover { color: #fff; }
.sp-nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.sp-nav-drawer__list li a {
  display: block;
  padding: 13px 28px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.15s;
}
.sp-nav-drawer__list li a:hover { color: var(--gold-xl); background: rgba(255,255,255,0.04); }
.sp-nav-drawer__sec-hd {
  padding: 16px 28px 8px;
  font-size: 10px;
  color: var(--gold-lt);
  letter-spacing: 0.15em;
  font-family: var(--font-en);
  border-bottom: none !important;
  margin-top: 8px;
}
.sp-nav-drawer__cta {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-nav-drawer__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold-xl);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.sp-nav-drawer__contact {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s;
}
.sp-nav-drawer__contact:hover { background: var(--gold-lt); }

/* ================================================================
   ② sit-nav 8項目対応（グリッド→auto）
================================================================ */
.top-sit-nav {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-bottom: 2px solid var(--gold);
}
.top-sit-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  gap: 5px;
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.top-sit-nav__item:last-child { border-right: none; }
.top-sit-nav__item svg { opacity: 0.6; transition: opacity 0.2s; flex-shrink: 0; }
.top-sit-nav__item:hover { background: rgba(158,124,58,0.15); color: var(--gold-xl); }
.top-sit-nav__item:hover svg { opacity: 1; }

/* ③ インフォボックスを横長に（1行改行なし） */
.top-infobox__body {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 2.1;
  font-weight: 300;
  white-space: nowrap;
}
/* 左マージン縮小でボックスを横長に */
.top-sec__body--2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}
.top-infobox {
  background: var(--navy);
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
}

/* ⑨ 不安・お悩み5項目対応 */
.top-wc-grid--5 {
  grid-template-columns: repeat(3, 1fr);
}
.top-wc-grid--5 .top-wc:nth-child(4),
.top-wc-grid--5 .top-wc:nth-child(5) {
  /* 4・5番目：2カラム中央寄せ */
}
/* 最後の行を中央に */
.top-wc-grid--5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================================================================
   ⑪ 犯罪被害者セクション（完全版）
================================================================ */
.top-victim-full-sec {
  background: #f5f0e8;
  padding: 60px 0;
  border-bottom: 1px solid var(--stone);
  border-left: 3px solid var(--gold);
}
.top-victim-full-sec .top-sec__ttl { color: var(--navy); }

/* 担当弁護士グリッド */
.top-lawyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.top-lawyer-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.top-lawyer-card__photo {
  flex-shrink: 0;
  width: 100px;
  overflow: hidden;
  border-radius: 2px;
}
.top-lawyer-card__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.top-lawyer-card__body { flex: 1; }
.top-lawyer-card__name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.top-lawyer-card__role {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-weight: 500;
}
.top-lawyer-card__desc {
  font-size: 12px;
  color: var(--text-s);
  line-height: 1.9;
  font-weight: 300;
}

/* 在籍弁護士バナー */
.top-attorney-banner {
  background: var(--navy);
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.top-attorney-banner__en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.top-attorney-banner__text {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
}
.top-attorney-banner__text span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.top-attorney-banner__btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.top-attorney-banner__btn:hover { background: var(--gold-lt); }

/* ================================================================
   SP対応（既存のmedia query補完）
================================================================ */
@media (max-width: 900px) {
  /* ヘッダーRow1：Row1に非表示、Row2を縮小 */
  .site-header__row1 { display: none; }
  .site-header__row2-inner { padding: 0 20px; }
  .site-header__criminal-nav { display: none; }
  .site-header__hamburger { display: flex; }
  .site-header__logo-ja { font-size: 11px; }

  /* FV */
  .fv__inner { flex-direction: column; padding: 0 20px; min-height: auto; }
  .fv__body { padding: 40px 0 24px; }
  .fv__photo { display: none; }
  .fv__title { font-size: 22px; }

  /* sit-nav: 4列×2行 */
  .top-sit-nav { grid-template-columns: repeat(4, 1fr); }
  .top-sit-nav__item { font-size: 8.5px; padding: 10px 4px; }

  /* セクション余白 */
  .top-sec { padding: 40px 0; }
  .top-sec__inner { padding: 0 20px; }
  .top-victim-banner { padding: 10px 0; }
  .top-victim-banner__inner { flex-wrap: wrap; padding: 14px 20px; max-width: none; margin: 0 20px; }
  .top-victim-banner__sep { display: none; }
  .top-victim-banner__desc { display: none; }

  /* 刑事事件とは */
  .top-sec__body--2col { grid-template-columns: 1fr; }
  .top-infobox { padding: 18px 20px; }
  .top-infobox__body { white-space: normal; }

  /* 犯罪種類グリッド */
  .top-crime-grid { grid-template-columns: repeat(2, 1fr); }

  /* 状況カード */
  .top-cc-grid { grid-template-columns: 1fr; }

  /* 不安カード */
  .top-wc-grid--5 { grid-template-columns: repeat(2, 1fr); }

  /* 流れステップ */
  .top-flow-steps { flex-direction: column; }
  .top-fstep::after { content: '↓'; right: auto; left: 50%; transform: translateX(-50%); top: auto; bottom: -12px; }

  /* 弁護士カード */
  .top-lawyer-grid { grid-template-columns: 1fr; }

  /* 選ばれる理由 */
  .top-pc-grid { grid-template-columns: 1fr; }

  /* CTAバンド */
  .top-cta-band__inner { flex-direction: column; padding: 32px 20px; gap: 20px; }
  .top-cta-band__tel-num { font-size: 22px; }
}

@media (max-width: 600px) {
  .top-sit-nav { grid-template-columns: repeat(2, 1fr); }
  .top-sit-nav__item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .top-crime-grid { grid-template-columns: 1fr; }
  .top-wc-grid--5 { grid-template-columns: 1fr; }
  .top-service-grid { grid-template-columns: 1fr; }
  .top-lawyer-card { flex-direction: column; }
  .top-lawyer-card__photo { width: 80px; }
  .top-attorney-banner { flex-direction: column; gap: 14px; align-items: flex-start; }
}


/* ================================================================
   L2 (第二階層) アーカイブTOP 専用スタイル  ※.l2page スコープ
   犯罪種類 / 状況 / 不安 / 被害者 共通 + 流れ専用(.l2flow)
   ================================================================ */
.l2page { max-width: 1140px; margin: 0 auto; background: var(--white); }
.l2page img { max-width: 100%; height: auto; }
.l2page a { text-decoration: none; }
.l2flow {
  --navy: #1a2d4e; --navy-dark: #0e1e34; --gold: #b8973a; --gold-light: #c9a84c; --cream: #f5f2ec; --cream-dark: #ede9e0; --white: #ffffff; --gray-100: #f0ede6; --gray-200: #ddd9d0; --gray-400: #b0aba0; --gray-600: #6b6860; --gray-800: #2c2b28; --font-serif: 'Noto Serif JP', serif; --font-sans: 'Noto Sans JP', sans-serif; --font-en: 'EB Garamond', serif;
}
.l2page *::before, .l2page *::after {box-sizing: border-box; margin: 0; padding: 0;}
.l2page .sub-fv {background: var(--navy);
  padding: 72px 64px 64px;
  position: relative;
  overflow: hidden;}
.l2page .sub-fv::after {content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(158,124,58,0.15);
  border-radius: 50%;
  pointer-events: none;}
.l2page .sub-fv-en {font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;}
.l2page .sub-fv-en::before {content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);}
.l2page .sub-fv-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 32px; color: var(--white);
  font-weight: 400; letter-spacing: 0.04em;
  line-height: 1.5; margin-bottom: 20px;}
.l2page .sub-fv-lead {font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 2; font-weight: 300; letter-spacing: 0.04em;}
.l2page .art-sec {padding: 64px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--stone);}
.l2page .art-sec.alt {background: var(--cream);}
.l2page .art-sec-hd {margin-bottom: 36px;}
.l2page .art-sec-label {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 6px;}
.l2page .art-sec-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 20px; color: var(--navy);
  font-weight: 500; letter-spacing: 0.04em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--stone);}
.l2page .art-grid {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;}
.l2page .art-main {display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: 2px; overflow: hidden;
  transition: box-shadow 0.2s; color: inherit;}
.l2page .art-sec.alt .art-main {background: var(--white);}
.l2page .art-main:hover {box-shadow: 0 4px 20px rgba(0,0,0,0.08);}
.l2page .art-main-img {width: 100%; aspect-ratio: 16/9;
  background: var(--cream-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text-m); letter-spacing: 0.06em;}
.l2page .art-main-body {padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1;}
.l2page .art-main-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: var(--navy);
  font-weight: 500; line-height: 1.7; letter-spacing: 0.02em;}
.l2page .art-date {font-size: 11px; color: var(--text-m); letter-spacing: 0.04em;}
.l2page .art-tag {display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: 10px; padding: 2px 8px;
  letter-spacing: 0.06em; font-weight: 500;}
.l2page .art-sub-list {display: flex; flex-direction: column; gap: 12px;}
.l2page .art-sub {display: flex; gap: 0;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: 2px; overflow: hidden;
  transition: box-shadow 0.2s; color: inherit;}
.l2page .art-sec.alt .art-sub {background: var(--white);}
.l2page .art-sub:hover {box-shadow: 0 2px 10px rgba(0,0,0,0.07);}
.l2page .art-sub-img {width: 90px; flex-shrink: 0;
  background: var(--cream-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--text-m);}
.l2page .art-sub-body {padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px; justify-content: center;}
.l2page .art-sub-ttl {font-size: 12px; color: var(--navy);
  font-weight: 500; line-height: 1.6; letter-spacing: 0.02em;}
.l2page .faq-list {display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--stone);}
.l2page .faq-item {border-bottom: 1px solid var(--stone);}
.l2page .faq-q {display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  font-size: 14px; color: var(--navy);
  font-weight: 500; letter-spacing: 0.02em; line-height: 1.7;
  background: var(--white);}
.l2page .faq-q-lbl {flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--navy); color: var(--gold-xl);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; margin-top: 2px;}
.l2page .faq-a {display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 24px 20px;
  font-size: 13px; color: var(--text-s);
  line-height: 1.9; font-weight: 300; letter-spacing: 0.02em;
  background: var(--cream);}
.l2page .faq-a-lbl {flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gold); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; margin-top: 2px;}
.l2page .sw {position: sticky; top: 0; z-index: 9000;
  background: #060f1c;
  display: flex; align-items: stretch;
  border-bottom: 1px solid rgba(158,124,58,0.4);
  height: 38px;}
.l2page .sw-lbl {padding: 0 16px; font-size: 9px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25); display: flex; align-items: center;
  border-right: 1px solid rgba(255,255,255,0.06); white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;}
.l2page .sw a {display: flex; align-items: center; padding: 0 20px;
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 11px;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,255,255,0.05); transition: all 0.2s;}
.l2page .sw a.on {background: var(--gold); color: #fff; letter-spacing: 0.06em;}
.l2page .sw a:hover:not(.on) {color: var(--gold-xl); background: rgba(255,255,255,0.04);}
.l2page .hdr-ph-lbl {font-size: 12px; color: var(--text-m); letter-spacing: 0.06em;}
.l2page .hdr-ph-sub {font-size: 10px; color: #bbb;}
.l2page .gnav-ph-lbl {font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em;}
.l2page .bc {background: var(--cream); padding: 10px 48px;
  font-size: 11px; color: var(--text-m); letter-spacing: 0.04em;
  border-bottom: 1px solid var(--stone);
  display: flex; align-items: center; gap: 6px;}
.l2page .bc a {color: var(--navy-lt); text-decoration: none; transition: color 0.2s;}
.l2page .bc a:hover {color: var(--gold);}
.l2page .bc .sep {color: var(--stone); font-size: 10px;}
.l2page .fv {background: var(--navy);
  display: flex; min-height: 400px; position: relative; overflow: hidden;}
.l2page .fv::before {content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,28,47,0.85) 0%, rgba(14,28,47,0.2) 100%);
  z-index: 1;}
.l2page .fv::after {display: none;}
.l2page .fv-body {padding: 64px 48px 64px 48px;
  flex: 0 0 58%; z-index: 3; display: flex; flex-direction: column; justify-content: center;}
.l2page .fv-en {font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.3em; color: var(--gold-lt);
  margin-bottom: 20px; font-weight: 300;
  display: flex; align-items: center; gap: 12px;}
.l2page .fv-en::before {content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--gold);}
.l2page .fv h1 {font-family: 'Noto Serif JP', serif;
  font-size: 32px; font-weight: 400; color: var(--white);
  line-height: 1.65; margin-bottom: 20px; letter-spacing: 0.04em;}
.l2page .fv h1 em {font-style: normal; color: var(--gold-xl);
  border-bottom: 1px solid rgba(226,196,126,0.4);}
.l2page .fv-lead {font-size: 13px; color: rgba(255,255,255,0.68);
  line-height: 2; margin-bottom: 36px; max-width: 380px;
  font-weight: 300;}
.l2page .fv-btns {display: flex; gap: 14px; flex-wrap: wrap;}
.l2page .btn-primary {background: var(--red);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 14px 30px; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s; cursor: pointer;
  border: none;}
.l2page .btn-primary:hover {background: #a82020;}
.l2page .btn-outline {color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 300;
  padding: 13px 24px; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s; cursor: pointer; background: transparent;}
.l2page .btn-outline:hover {border-color: var(--gold-lt); color: var(--gold-xl);}
.l2page .fv-photo {flex: 0 0 42%; position: relative; overflow: hidden;
  background: var(--navy);}
.l2page .fv-photo img {position: absolute;
  width: 100%; height: 100%; object-fit: contain; object-position: center center;
  mix-blend-mode: lighten;
  transform: scale(0.9);}
.l2page .fv-photo-ph {position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  font-size: 11px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em; text-align: center; line-height: 2;}
.l2page .fv-photo::before {display: none;}
.l2page .sit-nav {background: var(--ink);
  display: grid; grid-template-columns: repeat(9, 1fr);
  border-bottom: 2px solid var(--gold);}
.l2page .sit-nav-item {display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 10px 4px; gap: 5px;
  font-size: 9px; color: rgba(255,255,255,0.65);
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; text-align: center; line-height: 1.4;
  transition: all 0.2s; letter-spacing: 0.02em;}
.l2page .sit-nav-item:last-child {border-right: none;}
.l2page .sit-nav-item:hover {background: rgba(158,124,58,0.15); color: var(--gold-xl);}
.l2page .sit-nav-item svg {opacity: 0.6; transition: opacity 0.2s; width: 14px !important; height: 14px !important;}
.l2page .sit-nav-item:hover svg {opacity: 1;}
.l2page .victim-banner {background: var(--cream); padding: 28px 48px;
  border-bottom: 1px solid var(--stone);}
.l2page .victim-banner-inner {display: flex; align-items: stretch; overflow: hidden;
  border: 1px solid rgba(158,124,58,0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);}
.l2page .victim-banner-left {flex: 1; padding: 24px 32px;
  background: var(--navy);
  border-left: 4px solid var(--gold);
  display: flex; flex-direction: column; justify-content: center;}
.l2page .victim-banner-tag {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.25em; color: var(--gold-lt);
  margin-bottom: 8px; font-weight: 300;}
.l2page .victim-banner-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 18px; color: var(--white); font-weight: 400;
  margin-bottom: 8px; letter-spacing: 0.04em;}
.l2page .victim-banner-desc {font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.9; font-weight: 300;}
.l2page .victim-banner-cta {flex: 0 0 auto; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  padding: 0 36px; cursor: pointer; transition: background 0.2s;
  gap: 8px; text-decoration: none;}
.l2page .victim-banner-cta:hover {background: var(--gold-lt);}
.l2page .victim-banner-cta-text {font-size: 12px; font-weight: 500; color: var(--navy);
  letter-spacing: 0.08em; white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; gap: 4px;}
.l2page .victim-banner-cta-arr {font-size: 18px; color: var(--navy);}
.l2page .sec {padding: 60px 48px; border-bottom: 1px solid var(--stone);}
.l2page .sec.alt {background: var(--cream);}
.l2page .sec.dark {background: var(--navy);}
.l2page .sec-label {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 10px; font-weight: 300;
  display: flex; align-items: center; gap: 12px;}
.l2page .sec-label::before {content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);}
.l2page .sec-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 24px; font-weight: 400; color: var(--navy);
  margin-bottom: 36px; letter-spacing: 0.04em;
  position: relative; padding-bottom: 18px;}
.l2page .sec-ttl::after {content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 1px; background: var(--gold);}
.l2page .sec.dark .sec-ttl {color: var(--white);}
.l2page .sec.dark .sec-label {color: var(--gold-xl);}
.l2page .grid-4 {display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--stone);}
.l2page .grid-3 {display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;}
.l2page .grid-2 {display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;}
.l2page .grid-21 {display: grid; grid-template-columns: 1fr 280px; gap: 28px;}
.l2page .tc {background: var(--white);
  padding: 24px 20px;
  position: relative; overflow: hidden;
  cursor: pointer; transition: all 0.25s;
  display: flex; flex-direction: column;}
.l2page .tc::before {content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--stone); transition: background 0.25s;}
.l2page .tc:hover::before {background: var(--gold);}
.l2page .tc:hover {background: var(--cream);}
.l2page .tc-num {font-family: 'Cormorant Garamond', serif;
  font-size: 11px; color: var(--stone); letter-spacing: 0.1em;
  margin-bottom: 16px; font-weight: 300;}
.l2page .tc-icon {width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all 0.25s;
  color: var(--gold);}
.l2page .tc:hover .tc-icon {border-color: var(--gold); background: rgba(158,124,58,0.06);}
.l2page .tc-name {font-family: 'Noto Serif JP', serif;
  font-size: 14px; color: var(--navy); font-weight: 500;
  margin-bottom: 8px; letter-spacing: 0.02em;}
.l2page .tc-ex {font-size: 11px; color: var(--text-m); line-height: 1.8; flex: 1;}
.l2page .tc-link {margin-top: 16px; font-size: 11px; color: var(--gold);
  display: flex; align-items: center; gap: 4px; letter-spacing: 0.04em;
  transition: gap 0.2s;}
.l2page .tc-icon svg {color: var(--gold); stroke: var(--gold);}
.l2page .cc {background: var(--navy);
  padding: 24px 24px 24px 28px;
  position: relative; overflow: hidden;
  cursor: pointer; transition: background 0.2s;
  border: 1px solid transparent;}
.l2page .cc::before {content: ''; position: absolute;
  left: 0; top: 0; width: 2px; height: 100%;
  background: var(--gold);}
.l2page .cc:hover {background: var(--navy-md); border-color: rgba(158,124,58,0.3);}
.l2page .cc-tag {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; color: var(--gold-lt); letter-spacing: 0.2em;
  margin-bottom: 8px; font-weight: 300;}
.l2page .cc-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 400; color: var(--white);
  margin-bottom: 12px; line-height: 1.5; letter-spacing: 0.02em;
  display: flex; align-items: flex-start; gap: 10px;}
.l2page .cc-kw {font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.8; font-weight: 300;}
.l2page .wc {background: var(--white);
  border: 1px solid var(--stone);
  padding: 24px 22px;
  cursor: pointer; transition: all 0.2s;
  position: relative; overflow: hidden;}
.l2page .wc::after {content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.2s;}
.l2page .wc:hover {box-shadow: 0 4px 20px rgba(0,0,0,0.08);}
.l2page .wc:hover::after {background: var(--gold);}
.l2page .wc-icon {margin-bottom: 14px;}
.l2page .wc-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 14px; color: var(--navy); font-weight: 500;
  margin-bottom: 8px; letter-spacing: 0.02em; line-height: 1.5;}
.l2page .wc-desc {font-size: 12px; color: var(--text-s); line-height: 1.9; font-weight: 300;}
.l2page .flow-steps {display: flex; gap: 0; margin-bottom: 28px;}
.l2page .fstep {flex: 1; background: var(--navy); color: var(--white);
  padding: 20px 8px; text-align: center; position: relative;
  border-right: 1px solid rgba(255,255,255,0.06);}
.l2page .fstep:last-child {border-right: none;}
.l2page .fstep::after {content: '›'; position: absolute;
  right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 16px; z-index: 1;}
.l2page .fstep:last-child::after {display: none;}
.l2page .fstep-num {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; color: var(--gold-lt); margin-bottom: 6px; letter-spacing: 0.15em;}
.l2page .fstep-ttl {font-size: 12px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 4px;}
.l2page .fstep-time {font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 300;}
.l2page .pc {background: var(--white); border: 1px solid var(--stone);
  padding: 28px 24px; position: relative;}
.l2page .pc-num {display: none;}
.l2page .pc-img {width: 100%; height: 100px;
  background: var(--cream); border: 1px dashed var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--text-m); margin-bottom: 20px;}
.l2page .pc-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: var(--navy); font-weight: 500;
  margin-bottom: 10px; letter-spacing: 0.02em;}
.l2page .pc-desc {font-size: 12px; color: var(--text-s); line-height: 1.9; font-weight: 300;}
.l2page .infobox {background: var(--navy);
  padding: 28px 28px;
  border-left: 2px solid var(--gold);}
.l2page .infobox-lbl {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; color: var(--gold-lt); letter-spacing: 0.2em;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px; font-weight: 300;}
.l2page .infobox-body {font-size: 13px; color: rgba(255,255,255,0.78); line-height: 2.2; font-weight: 300;}
.l2page .sb {border: 1px solid var(--stone);}
.l2page .sb-hd {background: var(--navy); color: var(--white);
  padding: 12px 18px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; border-bottom: 1px solid rgba(255,255,255,0.08);}
.l2page .sb-item {padding: 12px 18px; border-bottom: 1px solid var(--stone);
  font-size: 12px; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: background 0.15s; font-weight: 300;}
.l2page .sb-item:last-child {border-bottom: none;}
.l2page .sb-item::before {content: '—'; color: var(--gold); font-size: 10px;}
.l2page .sb-item:hover {background: var(--cream);}
.l2page .sit {border: 1px solid var(--stone); overflow: hidden;}
.l2page .sit-hd {background: var(--navy); color: var(--white);
  padding: 12px 20px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;}
.l2page .sit-row {padding: 14px 20px; border-bottom: 1px solid var(--stone);
  font-size: 13px; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: background 0.15s;}
.l2page .sit-row:last-child {border-bottom: none;}
.l2page .sit-row:hover {background: var(--cream);}
.l2page .sit-kw {font-size: 10px; color: var(--text-m); margin-top: 3px; font-weight: 300;}
.l2page .sit-arr {color: var(--gold); font-size: 14px; flex-shrink: 0;}
.l2page .lb {background: var(--cream); border: 1px solid var(--stone); padding: 20px;}
.l2page .lb-ttl {font-size: 11px; color: var(--navy); font-weight: 500;
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--stone); letter-spacing: 0.04em;}
.l2page .pills {display: flex; flex-wrap: wrap; gap: 8px;}
.l2page .pill {background: var(--white); border: 1px solid var(--navy-lt);
  color: var(--navy); padding: 5px 14px;
  font-size: 11px; border-radius: 20px; cursor: pointer;
  transition: all 0.15s; font-weight: 300;}
.l2page .pill:hover {background: var(--navy); color: var(--white);}
.l2page .wr {border: 1px solid var(--stone); overflow: hidden; margin-bottom: 12px;}
.l2page .wr:last-child {margin-bottom: 0;}
.l2page .wr-hd {background: var(--navy); padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;}
.l2page .wr-hd-title {font-size: 14px; color: var(--white); font-weight: 500; letter-spacing: 0.02em;}
.l2page .wr-hd-sub {font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; font-weight: 300;}
.l2page .wr-body {padding: 14px 20px; background: var(--white);}
.l2page .cta-band-left h2 {font-family: 'Noto Serif JP', serif;
  font-size: 18px; color: var(--white); font-weight: 400;
  margin-bottom: 8px; letter-spacing: 0.04em;}
.l2page .cta-band-left p {font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300;}
.l2page .cta-tel {text-align: center; flex-shrink: 0;}
.l2page .cta-tel-num {font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px; color: var(--gold-xl); font-weight: 500;
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px;}
.l2page .cta-tel-hrs {font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 4px; letter-spacing: 0.06em;}
.l2page .cta-btn-mail {background: var(--gold); color: var(--navy);
  padding: 14px 28px; font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; letter-spacing: 0.06em; transition: background 0.2s;
  flex-shrink: 0;}
.l2page .cta-btn-mail:hover {background: var(--gold-lt);}
.l2page .victim-sec {background: #f5f0e8;
  padding: 48px 48px;
  border-bottom: 1px solid var(--stone);
  border-left: 3px solid var(--gold);}
.l2page .victim-lead-box {background: var(--navy); padding: 28px 32px;
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);}
.l2page .victim-lead-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 17px; color: var(--white); font-weight: 400;
  margin-bottom: 10px; letter-spacing: 0.04em; line-height: 1.7;}
.l2page .victim-lead-body {font-size: 12px; color: rgba(255,255,255,0.65); line-height: 2; font-weight: 300;}
.l2page .lawyer-card {border: 1px solid var(--stone); background: var(--white);
  padding: 22px; display: flex; gap: 18px; align-items: flex-start;}
.l2page .lawyer-photo {width: 120px; height: 120px; flex-shrink: 0;
  background: var(--cream-d); border: 1px dashed var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--text-m);}
.l2page .lawyer-name {font-family: 'Noto Serif JP', serif;
  font-size: 16px; color: var(--navy); font-weight: 500;
  margin-bottom: 4px; letter-spacing: 0.04em;}
.l2page .lawyer-role {font-size: 11px; color: var(--gold); margin-bottom: 10px; letter-spacing: 0.04em;}
.l2page .lawyer-desc {font-size: 12px; color: var(--text-s); line-height: 1.9; font-weight: 300;}
.l2page .service-card {background: var(--white); border: 1px solid var(--stone);
  padding: 20px; position: relative; overflow: hidden;}
.l2page .service-card::before {content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px; background: var(--gold);}
.l2page .service-card-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 14px; color: var(--navy); font-weight: 500;
  margin-bottom: 8px; letter-spacing: 0.02em;}
.l2page .service-card-desc {font-size: 12px; color: var(--text-s); line-height: 1.8; font-weight: 300;}
.l2page .qa-item {border: 1px solid var(--stone); overflow: hidden; margin-bottom: 1px;}
.l2page .qa-q {padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white);
  font-size: 13px; color: var(--navy); font-weight: 500; line-height: 1.6;}
.l2page .qa-badge-q {flex-shrink: 0; width: 22px; height: 22px; background: var(--gold);
  color: var(--navy); font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; margin-top: 1px;}
.l2page .qa-a {padding: 16px 20px; background: var(--cream);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 12px; color: var(--text-s); line-height: 1.9; font-weight: 300;
  border-top: 1px solid var(--stone);}
.l2page .qa-badge-a {flex-shrink: 0; width: 22px; height: 22px; background: var(--navy);
  color: var(--white); font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; margin-top: 1px;}
.l2page .matrix-tbl {width: 100%; border-collapse: collapse; font-size: 12px;}
.l2page .matrix-tbl thead tr {background: var(--navy);}
.l2page .matrix-tbl th {padding: 12px 14px; color: var(--white); font-weight: 400;
  border: 1px solid rgba(255,255,255,0.08); letter-spacing: 0.04em;
  font-family: 'Noto Serif JP', serif;}
.l2page .matrix-tbl th:first-child {text-align: left;}
.l2page .matrix-tbl td {padding: 12px 14px; border: 1px solid var(--stone);
  text-align: center; color: var(--navy); background: var(--white);
  transition: background 0.15s; cursor: pointer; font-weight: 300;}
.l2page .matrix-tbl td:first-child {background: var(--navy); color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em; font-size: 11px; font-style: italic;
  cursor: default;}
.l2page .matrix-tbl td.note {background: var(--cream); color: var(--text-m); font-size: 10px; cursor: default;}
.l2page .matrix-tbl td:not(:first-child):not(.note):hover {background: var(--cream);}
.l2page .flow-card {border: 1px solid var(--stone); background: var(--white);
  padding: 28px 24px; position: relative; overflow: hidden;
  cursor: pointer; transition: all 0.2s;}
.l2page .flow-card:hover {box-shadow: 0 4px 20px rgba(0,0,0,0.08);}
.l2page .flow-card::before {content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;}
.l2page .flow-card.gold::before {background: var(--gold);}
.l2page .flow-card.navy::before {background: var(--navy);}
.l2page .flow-card-tag {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.2em; margin-bottom: 10px; font-weight: 300;}
.l2page .flow-card.gold .flow-card-tag {color: var(--gold);}
.l2page .flow-card.navy .flow-card-tag {color: var(--navy-lt);}
.l2page .flow-card-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 16px; color: var(--navy); font-weight: 400;
  margin-bottom: 8px; letter-spacing: 0.02em;}
.l2page .flow-card-sub {font-size: 12px; color: var(--text-s); margin-bottom: 14px; font-weight: 300; line-height: 1.7;}
.l2page .flow-card-kw {font-size: 11px; color: var(--text-m); line-height: 1.9; margin-bottom: 14px; font-weight: 300;}
.l2page .flow-card-note {font-size: 11px; color: var(--text-s);
  border-top: 1px solid var(--stone); padding-top: 12px; line-height: 1.8; font-weight: 300;}
.l2page .s-ft {background: var(--ink); color: rgba(255,255,255,0.3);
  padding: 24px 48px; font-size: 11px;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: 0.04em;}
.l2page .s-ft-brand {font-family: 'Cormorant Garamond', serif; font-weight: 300;
  color: rgba(255,255,255,0.45);}
.l2page .sub-hd {font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: var(--navy); font-weight: 500;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--stone); letter-spacing: 0.04em;}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.l2page .art-sub-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 12px;}
.l2page .art-sub-grid .art-sub {flex-direction: column;}
.l2page .art-sub-grid .art-sub-img {width: 100%; height: 100px;}
.l2page .art-sub-grid .art-sub-body {padding: 10px 12px;}
.l2page .art-tag {display: inline-block !important; width: fit-content !important;}
.l2page .art-grid-row {display: flex; align-items: flex-start; gap: 24px;}
.l2page .art-grid-row .art-grid {flex: 1;}
.l2page .art-grid-row .art-sec-cta {flex: 0 0 220px; margin-top: 0; padding-top: 0; border-top: none; border-left: 1px solid var(--stone); padding-left: 24px; display: flex; align-items: flex-end; justify-content: flex-start;}
.l2page .art-sec-cta-link {display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--navy); font-weight: 500; letter-spacing: 0.04em; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: color 0.2s;}
.l2page .art-sec-cta-link:hover {color: var(--gold);}
.l2page .victim-fv {background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 380px;}
.l2page .victim-fv::before {content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(158,124,58,0.12);
  border-radius: 50%;
  pointer-events: none;}
.l2page .victim-fv::after {content: '';
  position: absolute;
  right: -20px; bottom: -120px;
  width: 280px; height: 280px;
  border: 1px solid rgba(158,124,58,0.08);
  border-radius: 50%;
  pointer-events: none;}
.l2page .victim-fv-accent {flex: 0 0 4px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-lt) 100%);
  align-self: stretch;}
.l2page .victim-fv-body {flex: 1;
  padding: 72px 56px 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;}
.l2page .victim-fv-label {font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold-lt); text-transform: uppercase;
  margin-bottom: 24px; font-weight: 300;
  display: flex; align-items: center; gap: 14px;}
.l2page .victim-fv-label::before {content: ''; display: block;
  width: 36px; height: 1px; background: var(--gold);}
.l2page .victim-fv-catch {font-family: 'Noto Serif JP', serif;
  font-size: 36px; font-weight: 400;
  color: var(--white);
  line-height: 1.6; letter-spacing: 0.04em;
  margin-bottom: 10px;}
.l2page .victim-fv-catch em {font-style: normal;
  color: var(--gold-xl);
  position: relative;
  display: inline;}
.l2page .victim-fv-divider {width: 40px; height: 1px;
  background: var(--gold);
  margin: 20px 0 24px;}
.l2page .victim-fv-lead {font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.04em;
  max-width: 560px;
  padding-left: 1px;
  border-left: 2px solid rgba(158,124,58,0.4);
  padding-left: 20px;}
.l2page .victim-fv-quote {flex: 0 0 420px;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;}
.l2page .victim-fv-quote-inner {background: rgba(158,124,58,0.13);
  border-left: 3px solid var(--gold);
  border-right: none;
  padding: 48px 36px 44px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;}
.l2page .victim-fv-quote-inner::before {content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(158,124,58,0.2));}
.l2page .victim-fv-quote-inner::after {content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(158,124,58,0.1));}
.l2page .victim-fv-quote-mark {font-family: 'Cormorant Garamond', serif;
  font-size: 52px; color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.9;}
.l2page .victim-fv-quote-text {font-family: 'Noto Serif JP', serif;
  font-size: 14px; color: rgba(255,255,255,0.9);
  line-height: 2.4; font-weight: 400;
  letter-spacing: 0.04em;}
.l2page .victim-fv-quote-text strong {color: var(--gold-xl);
  font-weight: 500;}
.l2page .victim-fv-quote-note {margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(158,124,58,0.3);
  font-size: 11px; color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.15em;}
.l2page .attorney-sec {background: var(--white);
  padding: 64px 48px;
  border-bottom: 1px solid var(--stone);}
.l2page .sec-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 22px; font-weight: 400; color: var(--navy);
  margin-bottom: 36px; letter-spacing: 0.04em;
  position: relative; padding-bottom: 18px;}
.l2page .attorney-grid {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;}
.l2page .attorney-card {border: 1px solid var(--stone);
  background: var(--white);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;}
.l2page .attorney-card:hover {box-shadow: 0 4px 20px rgba(0,0,0,0.07);}
.l2page .attorney-photo {width: 110px; height: 110px;
  flex-shrink: 0;
  background: var(--cream-d);
  border: 1px dashed var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--text-m); letter-spacing: 0.04em;}
.l2page .attorney-info {flex: 1;}
.l2page .attorney-name {font-family: 'Noto Serif JP', serif;
  font-size: 17px; color: var(--navy); font-weight: 500;
  margin-bottom: 4px; letter-spacing: 0.04em;}
.l2page .attorney-role {font-size: 11px; color: var(--gold); margin-bottom: 12px;
  letter-spacing: 0.04em; font-weight: 400;}
.l2page .attorney-desc {font-size: 12px; color: var(--text-s);
  line-height: 1.9; font-weight: 300;}
.l2page .attorney-more {background: var(--navy);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 56px;}
.l2page .attorney-more-left {display: flex; flex-direction: column; gap: 5px;}
.l2page .attorney-more-label {font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--gold-lt); font-weight: 300;}
.l2page .attorney-more-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 16px; color: var(--white); font-weight: 400;
  letter-spacing: 0.04em;}
.l2page .attorney-more-sub {font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 300;
  margin-top: 3px;}
.l2page .attorney-more-btn {flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s;}
.l2page .attorney-more-btn:hover {background: var(--gold-lt);}
.l2page .sub-hd {font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: var(--navy); font-weight: 500;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--stone); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 12px;}
.l2page .sub-hd::before {content: ''; display: block;
  width: 3px; height: 18px; background: var(--gold);
  flex-shrink: 0;}
.l2page .service-grid {display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;}
.l2page .service-card {background: var(--white);
  border: 1px solid var(--stone);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;}
.l2page .service-card:hover {box-shadow: 0 4px 20px rgba(0,0,0,0.08);}
.l2page .service-card-icon {width: 40px; height: 40px;
  border: 1px solid rgba(158,124,58,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--gold);}
.l2page .service-card-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 14px; color: var(--navy); font-weight: 500;
  margin-bottom: 10px; letter-spacing: 0.02em;
  line-height: 1.5;}
.l2page .service-card-desc {font-size: 12px; color: var(--text-s);
  line-height: 1.9; font-weight: 300;}
.l2page .strengths-sec {background: var(--cream);
  padding: 64px 48px;
  border-bottom: 1px solid var(--stone);}
.l2page .strengths-grid {display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;}
.l2page .strength-card {background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;}
.l2page .strength-card:hover {box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);}
.l2page .strength-card-img {background: var(--navy);
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;}
.l2page .strength-card-img::after {content: '';
  position: absolute;
  right: -20px; bottom: -20px;
  width: 80px; height: 80px;
  border: 1px solid rgba(158,124,58,0.2);
  border-radius: 50%;}
.l2page .strength-card-img svg {color: var(--gold);
  position: relative; z-index: 1;}
.l2page .strength-card-body {padding: 22px 20px;}
.l2page .strength-card-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 15px; color: var(--navy); font-weight: 500;
  margin-bottom: 10px; letter-spacing: 0.02em;}
.l2page .strength-card-desc {font-size: 12px; color: var(--text-s);
  line-height: 1.9; font-weight: 300;}
.l2page .articles-sec {background: var(--white);
  padding: 64px 48px 0;
  border-bottom: none;}
.l2page .article-top-grid {display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;}
.l2page .art-main {display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: 2px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;}
.l2page .art-main-ttl {font-family: 'Noto Serif JP', serif;
  font-size: 16px; color: var(--navy);
  font-weight: 500; line-height: 1.7; letter-spacing: 0.02em;}
.l2page .art-tag {display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: 10px; padding: 2px 10px;
  letter-spacing: 0.06em; font-weight: 500;
  width: fit-content;}
.l2page .art-sub-grid {display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;}
.l2page .art-sub {display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: 2px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;}
.l2page .art-sub-img {width: 100%; height: 90px;
  background: var(--cream-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--text-m);}
.l2page .art-sub-body {padding: 10px 12px; display: flex; flex-direction: column; gap: 4px;}
.l2page .art-sub-ttl {font-size: 12px; color: var(--navy); font-weight: 500; line-height: 1.6;}
.l2page .art-grid-4 {display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;}
.l2page .art-card {display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--stone);
  border-radius: 2px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s;}
.l2page .art-card:hover {box-shadow: 0 2px 10px rgba(0,0,0,0.07);}
.l2page .art-card-img {width: 100%; aspect-ratio: 4/3;
  background: var(--cream-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--text-m);}
.l2page .art-card-body {padding: 12px; display: flex; flex-direction: column; gap: 5px;}
.l2page .art-card-ttl {font-size: 12px; color: var(--navy); font-weight: 500; line-height: 1.6;}
.l2page .faq-sec {padding: 64px 48px;
  background: var(--cream);
  border-top: 1px solid var(--stone);}
.l2page .faq-list {border-top: 1px solid var(--stone);}
.l2page .faq-q {display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  font-size: 14px; color: var(--navy);
  font-weight: 500; line-height: 1.7;
  background: var(--white);
  cursor: pointer;}
.l2page .faq-ql {flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--navy); color: var(--gold-xl);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; margin-top: 2px;}
.l2page .faq-a {display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 24px 20px;
  font-size: 13px; color: var(--text-s);
  line-height: 1.9; font-weight: 300; letter-spacing: 0.02em;
  background: #f0ece3;
  border-top: 1px solid var(--stone);}
.l2page .faq-al {flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--gold); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; margin-top: 1px;}
.l2page .cta-tel-num {font-size: 28px; color: var(--gold-xl); font-weight: 500;
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px;}
.l2page .cta-btn-mail {background: var(--gold); color: var(--navy);
  padding: 14px 28px; font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; letter-spacing: 0.06em; transition: background 0.2s;
  flex-shrink: 0; text-decoration: none;}
.l2flow .page-hero {background: var(--navy);
    padding: 72px 48px 80px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;}
.l2flow .page-hero::after {content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.07);
    pointer-events: none;}
.l2flow .page-hero .eyebrow {display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 20px;}
.l2flow .page-hero .eyebrow::before {content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);}
.l2flow .page-hero h1 {font-family: var(--font-serif);
    font-size: 42px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.02em;}
.l2flow .page-hero .subtitle {font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    max-width: 560px;}
.l2flow .section {padding: 72px 48px;}
.l2flow .section-inner {max-width: 1080px; margin: 0 auto;}
.l2flow .section-eyebrow {display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;}
.l2flow .section-eyebrow::before {content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);}
.l2flow .section-title {font-family: var(--font-serif);
    font-size: 30px;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.02em;}
.l2flow .section-title-line {width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 14px;}
.l2flow .section-header {margin-bottom: 52px;}
.l2flow .flow-section {background: var(--white);}
.l2flow .timeline-bar {display: flex;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 52px;}
.l2flow .tbar-item {flex: 1;
    padding: 14px 10px;
    text-align: center;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    font-size: 12px;}
.l2flow .tbar-item:last-child {border-right: none;}
.l2flow .tbar-item .tbar-label {font-size: 11px; color: var(--gray-400); margin-bottom: 5px; letter-spacing: 0.05em;}
.l2flow .tbar-item .tbar-val {font-family: var(--font-serif); font-size: 13px; font-weight: 700; color: var(--navy);}
.l2flow .tbar-item.highlight {background: var(--navy);}
.l2flow .tbar-item.highlight .tbar-label {color: rgba(255,255,255,0.55);}
.l2flow .tbar-item.highlight .tbar-val {color: var(--gold-light);}
.l2flow .flow-wrapper {position: relative; padding-left: 56px;}
.l2flow .flow-line {position: absolute;
    left: 16px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: var(--gray-200);}
.l2flow .flow-step {position: relative; margin-bottom: 20px;}
.l2flow .flow-step:last-child {margin-bottom: 0;}
.l2flow .flow-node {position: absolute;
    left: -48px;
    top: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    z-index: 2;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--navy);}
.l2flow .flow-step-inner {display: grid;
    grid-template-columns: 220px 1fr;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;}
.l2flow .flow-step-inner:hover {box-shadow: 0 4px 24px rgba(26,45,78,0.1);}
.l2flow .flow-phase {background: var(--navy);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;}
.l2flow .flow-phase .phase-en {font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;}
.l2flow .flow-phase .phase-ja {font-family: var(--font-serif);
    font-size: 19px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 0.02em;}
.l2flow .phase-tags {display: flex; flex-wrap: wrap; gap: 5px;}
.l2flow .phase-tag {font-size: 10px;
    padding: 2px 9px;
    border: 1px solid rgba(184,151,58,0.4);
    color: var(--gold-light);
    letter-spacing: 0.04em;
    border-radius: 1px;}
.l2flow .flow-content {padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;}
.l2flow .flow-content h3 {font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
    padding-left: 12px;
    border-left: 2px solid var(--gold);}
.l2flow .flow-content p {font-size: 13.5px; color: var(--gray-600); line-height: 1.85;}
.l2flow .flow-content ul {list-style: none; display: flex; flex-direction: column; gap: 4px;}
.l2flow .flow-content ul li {font-size: 13px;
    color: var(--gray-600);
    padding-left: 14px;
    position: relative;
    line-height: 1.7;}
.l2flow .flow-content ul li::before {content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);}
.l2flow .flow-arrow {text-align: center;
    margin: 8px 0;
    font-size: 18px;
    color: var(--gray-400);
    display: block;}
.l2flow .points-section {background: var(--cream);}
.l2flow .points-section .section-title {text-align: center;}
.l2flow .points-section .section-lead {text-align: center;
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 52px;}
.l2flow .points-section .section-eyebrow {justify-content: center;}
.l2flow .points-section .section-eyebrow::before {display: none;}
.l2flow .olympic-wrap {display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 64px;}
.l2flow .olympic-row {display: flex;
    justify-content: center;}
.l2flow .olympic-row-top {margin-bottom: -20px;}
.l2flow .olympic-ring {width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    margin: 0 -6px;
    box-shadow: 0 2px 12px rgba(26,45,78,0.15);
    position: relative;
    z-index: 1;
    cursor: default;
    gap: 4px;}
.l2flow .olympic-ring.navy-ring {background: var(--navy);}
.l2flow .olympic-ring.gold-ring {background: var(--gold); z-index: 0;}
.l2flow .olympic-ring .ring-num {font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.1em;
    opacity: 0.7;}
.l2flow .olympic-ring.navy-ring .ring-num {color: var(--gold-light);}
.l2flow .olympic-ring.gold-ring .ring-num {color: rgba(255,255,255,0.75);}
.l2flow .olympic-ring .ring-title {font-family: var(--font-serif);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;}
.l2flow .olympic-ring.navy-ring .ring-title {color: var(--white);}
.l2flow .olympic-ring.gold-ring .ring-title {color: var(--white);}
.l2flow .point-list-vert {display: flex; flex-direction: column; gap: 24px;}
.l2flow .point-item {background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    transition: box-shadow 0.2s;}
.l2flow .point-item:hover {box-shadow: 0 4px 24px rgba(26,45,78,0.08);}
.l2flow .point-num {width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 2px;}
.l2flow .point-num.n {background: var(--navy); color: var(--white);}
.l2flow .point-num.g {background: var(--navy); color: var(--white);}
.l2flow .point-item-body {}
.l2flow .point-item-body h3 {font-family: var(--font-serif);
    font-size: 17px;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.5;}
.l2flow .point-item-body p {font-size: 13.5px; color: var(--gray-600); line-height: 1.9;}
.l2flow .articles-section {background: var(--white);}
.l2flow .articles-main-grid {display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;}
.l2flow .art-featured {display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;}
.l2flow .art-featured:hover {box-shadow: 0 4px 20px rgba(26,45,78,0.1);}
.l2flow .art-featured .thumb {aspect-ratio: 16/9;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 13px;
    letter-spacing: 0.05em;
    position: relative;}
.l2flow .art-cat-badge {position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    letter-spacing: 0.05em;
    border-radius: 1px;}
.l2flow .art-featured .info {padding: 20px 22px; flex: 1;}
.l2flow .art-featured .art-title {font-family: var(--font-serif);
    font-size: 16px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 8px;}
.l2flow .art-featured .art-excerpt {font-size: 12.5px; color: var(--gray-600); line-height: 1.8;}
.l2flow .art-featured .art-date {font-size: 11px; color: var(--gray-400); margin-top: 12px;}
.l2flow .art-sub-grid {display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;}
.l2flow .art-sub {display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;}
.l2flow .art-sub:hover {box-shadow: 0 4px 20px rgba(26,45,78,0.1);}
.l2flow .art-sub .thumb-sm {background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 12px;
    aspect-ratio: 16/9;
    width: 100%;}
.l2flow .art-sub .info {padding: 12px 14px; display: flex; flex-direction: column; gap: 4px;}
.l2flow .art-sub .art-cat {font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em;}
.l2flow .art-sub .art-title {font-family: var(--font-serif); font-size: 13px; color: var(--navy); font-weight: 500; line-height: 1.5;}
.l2flow .art-sub .art-date {font-size: 11px; color: var(--gray-400);}
.l2flow .articles-grid {display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;}
.l2flow .art-card {border: 1px solid var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;}
.l2flow .art-card:hover {box-shadow: 0 4px 20px rgba(26,45,78,0.1);}
.l2flow .art-card .thumb-card {aspect-ratio: 16/9;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 12px;}
.l2flow .art-card .info {padding: 12px 14px;}
.l2flow .art-card .art-cat {font-size: 10px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 4px;}
.l2flow .art-card .art-title {font-family: var(--font-serif); font-size: 13px; color: var(--navy); font-weight: 500; line-height: 1.5;}
.l2flow .art-card .art-date {font-size: 11px; color: var(--gray-400); margin-top: 6px;}
.l2flow .art-cat-badge-inline {display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    letter-spacing: 0.04em;
    border-radius: 1px;
    margin-bottom: 6px;
    white-space: nowrap;
    width: fit-content;}
.l2flow .faq-section {background: var(--cream);}
.l2flow .faq-list {display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: 2px; overflow: hidden;}
.l2flow .faq-item {border-bottom: 1px solid var(--gray-200);}
.l2flow .faq-item:last-child {border-bottom: none;}
.l2flow .faq-q-row {display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 28px;
    background: var(--white);}
.l2flow .faq-letter {width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;}
.l2flow .faq-letter.a-letter {background: var(--gold);}
.l2flow .faq-q-text {flex: 1;
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
    padding-top: 6px;}
.l2flow .faq-a-row {display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 28px 20px;
    background: var(--cream);}
.l2flow .faq-a-row .faq-letter {margin-top: 0; flex-shrink: 0;}
.l2flow .faq-a-row p {font-size: 14px; color: var(--gray-600); line-height: 1.9;}
.l2flow .cta-bar-text {}
.l2flow .cta-bar-text .main {font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 4px; letter-spacing: 0.02em;}
.l2flow .cta-bar-text .sub {font-size: 12px; color: rgba(255,255,255,0.55);}
.l2flow .cta-bar-right {display: flex; align-items: center; gap: 20px;}
.l2flow .cta-tel {display: flex;
    flex-direction: column;
    align-items: center;}
.l2flow .cta-tel .icon-tel {font-size: 11px; color: rgba(255,255,255,0.55); margin-bottom: 2px;}
.l2flow .cta-tel .num {font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: 0.05em;}
.l2flow .cta-tel .hours {font-size: 11px; color: rgba(255,255,255,0.5);}
.l2flow .cta-btn {background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    white-space: nowrap;}
.l2flow .footer-main {background: var(--navy);
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    gap: 48px;}
.l2flow .footer-brand .label {font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 8px; letter-spacing: 0.08em;}
.l2flow .footer-brand .name {font-family: var(--font-serif); font-size: 18px; color: var(--white); font-weight: 400; line-height: 1.5; margin-bottom: 16px;}
.l2flow .footer-brand address {font-style: normal; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8;}
.l2flow .footer-nav h4 {font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-bottom: 14px; text-transform: uppercase;}
.l2flow .footer-nav ul {list-style: none; display: flex; flex-direction: column; gap: 8px;}
.l2flow .footer-nav ul li a {font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px;}
.l2flow .footer-nav ul li a::before {content: '›'; color: var(--gold); font-size: 14px;}
.l2flow .footer-nav ul li a:hover {color: var(--white);}
.l2flow .footer-copy {background: #0a1525;
    text-align: center;
    padding: 16px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(184,151,58,0.15);}
@media (max-width: 900px) {
  .l2flow .section {padding: 48px 20px;}
  .l2flow .page-hero {padding: 52px 20px;}
  .l2flow .page-hero h1 {font-size: 28px;}
  .l2flow .flow-step-inner {grid-template-columns: 1fr;}
  .l2flow .flow-phase {padding: 16px 18px;}
  .l2flow .articles-main-grid {grid-template-columns: 1fr;}
  .l2flow .articles-grid {grid-template-columns: repeat(2, 1fr);}
  .l2flow .olympic-ring {width: 88px; height: 88px;}
  .l2flow .footer-main {grid-template-columns: 1fr; gap: 32px;}
  .l2flow .timeline-bar {flex-wrap: wrap;}
  .l2flow .tbar-item {min-width: calc(33.33% - 1px);}
}

/* ── L2 FAQ: 固定ページTOPは静的表示（アコーディオン無効・常時開く）── */
.l2page .faq-q { cursor: default; transition: none; }
.l2page .faq-q:hover { color: var(--navy); }
.l2page .faq-a { display: flex !important; }
.l2page .faq-sec .faq-a { display: flex !important; }
/* ── 担当弁護士 写真 ── */
.l2page .attorney-photo { overflow: hidden; border-style: solid; background: var(--cream-d); }
.l2page .attorney-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }

/* ================================================================
   用語集（knowledge）一覧：番号付きリスト  ※.l2page スコープ
   ================================================================ */
.l2page .know-list { padding: 8px 0 0; }
.l2page .know-item {
  display: flex; align-items: center; gap: 28px;
  padding: 26px 40px;
  border-bottom: 1px solid var(--stone);
  text-decoration: none;
  transition: background 0.2s ease;
}
.l2page .know-item:first-child { border-top: 1px solid var(--stone); }
.l2page .know-item:hover { background: var(--cream); }
.l2page .know-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; line-height: 1;
  color: var(--gold);
  min-width: 46px; text-align: left; flex-shrink: 0;
  letter-spacing: 0.02em;
}
.l2page .know-body { flex: 1; min-width: 0; }
.l2page .know-ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; font-weight: 600; color: var(--navy);
  line-height: 1.6; margin-bottom: 6px;
  text-decoration: underline; text-decoration-color: transparent;
  text-underline-offset: 4px; transition: text-decoration-color 0.2s ease;
}
.l2page .know-item:hover .know-ttl { text-decoration-color: var(--gold); }
.l2page .know-ex {
  font-size: 13px; color: var(--text-m);
  line-height: 1.7; letter-spacing: 0.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.l2page .know-arrow { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }
@media (max-width: 600px) {
  .l2page .know-item { gap: 16px; padding: 20px 20px; }
  .l2page .know-num { font-size: 24px; min-width: 36px; }
  .l2page .know-ttl { font-size: 15px; }
}

/* ================================================================
   記事本文の普遍化（コラムの表・箇条書き・各種要素を確実に表示）
   ================================================================ */
.entry-content figure.wp-block-table { margin: 24px 0; overflow-x: auto; }
.entry-content figure.wp-block-table > table { margin: 0; }
.entry-content figure { margin: 24px 0; }
.entry-content figure img,
.entry-content img { max-width: 100%; height: auto; }
.entry-content figcaption { font-size: 12px; color: var(--text-m); text-align: center; margin-top: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px; margin: 24px 0;
  background: var(--cream); color: var(--text-m);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content pre {
  background: var(--navy); color: var(--white);
  padding: 16px; overflow-x: auto; border-radius: 4px;
  margin: 24px 0; font-size: 13px; line-height: 1.7;
}
.entry-content code { background: var(--cream); padding: 2px 6px; border-radius: 3px; font-size: 0.92em; }
.entry-content pre code { background: none; padding: 0; }
.entry-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.entry-content hr { border: none; border-top: 1px solid var(--stone); margin: 32px 0; }
.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul { margin: 8px 0 8px 20px; }

/* ================================================================
   被害者向けLP（.vlp）  ストーカー/刑事告訴/性被害/詐欺被害
   ================================================================ */
.vlp { max-width: 1140px; margin: 0 auto; background: var(--white); color: var(--text); }
.vlp p { margin: 0; }
.vlp a { text-decoration: none; }

/* breadcrumb */
.vlp-bc { font-size: 11px; color: var(--text-m); padding: 16px 48px; letter-spacing: 0.04em; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--stone); }
.vlp-bc a { color: var(--text-m); } .vlp-bc a:hover { color: var(--gold); }
.vlp-bc span { color: var(--stone); } .vlp-bc em { color: var(--navy); font-style: normal; }

/* ---- FV ---- */
.vlp-fv { position: relative; overflow: hidden; background: var(--navy); padding: 80px 56px 76px; }
.vlp-fv-ring { position: absolute; border: 1px solid rgba(158,124,58,0.13); border-radius: 50%; pointer-events: none; }
.vlp-fv-ring--1 { width: 460px; height: 460px; right: -120px; top: -120px; }
.vlp-fv-ring--2 { width: 300px; height: 300px; right: 60px; bottom: -160px; border-color: rgba(158,124,58,0.08); }
.vlp-fv-inner { position: relative; z-index: 2; max-width: 760px; }
.vlp-fv-eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-lt); display: flex; align-items: center; gap: 14px; margin-bottom: 26px; font-weight: 300; }
.vlp-fv-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.vlp-fv-title { font-family: 'Noto Serif JP', serif; font-size: 30px; font-weight: 500; color: var(--white); line-height: 1.7; letter-spacing: 0.03em; margin: 0 0 22px; }
.vlp-fv-hook { font-family: 'Noto Serif JP', serif; font-size: 18px; color: var(--gold-xl); line-height: 1.7; margin-bottom: 18px; padding-left: 16px; border-left: 2px solid var(--gold); }
.vlp-fv-lead { font-size: 13.5px; color: rgba(255,255,255,0.74); line-height: 2.2; font-weight: 300; letter-spacing: 0.03em; margin-bottom: 30px; }
.vlp-fv-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 14px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); }
.vlp-btn { display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%); color: var(--white); font-size: 14px; letter-spacing: 0.08em; padding: 15px 38px; border-radius: 2px; font-weight: 500; transition: opacity 0.2s; }
.vlp-btn:hover { opacity: 0.9; }
.vlp-btn--lg { padding: 17px 48px; font-size: 15px; }
.vlp-fv-tel { display: flex; flex-direction: column; color: var(--white); }
.vlp-fv-tel span { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.vlp-fv-tel strong { font-family: 'Noto Sans JP', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: 0.02em; }

/* ---- sections ---- */
.vlp-sec { padding: 72px 56px; }
.vlp-sec--cream { background: var(--cream); }
.vlp-sec--navy { background: var(--navy); }
.vlp-wrap { max-width: 980px; margin: 0 auto; }
.vlp-wrap--narrow { max-width: 800px; }
.vlp-eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 400; }
.vlp-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.vlp-eyebrow--light { color: var(--gold-lt); }
.vlp-h2 { font-family: 'Noto Serif JP', serif; font-size: 25px; font-weight: 500; color: var(--navy); line-height: 1.6; letter-spacing: 0.02em; margin: 0 0 24px; }
.vlp-h2--light { color: var(--white); }
.vlp-rule { width: 44px; height: 2px; background: var(--gold); margin: -8px 0 24px; }
.vlp-lead { font-size: 14.5px; color: var(--text); line-height: 2.1; margin-bottom: 36px; letter-spacing: 0.02em; }
.vlp-lead--light { color: rgba(255,255,255,0.78); }
.vlp-p { font-size: 14.5px; color: var(--text); line-height: 2.15; letter-spacing: 0.02em; margin-bottom: 20px; }
.vlp-p:last-child { margin-bottom: 0; }
.vlp-p strong, .vlp-card-p strong, .vlp-flow-p strong, .vlp-point-p strong { color: var(--navy); font-weight: 600; }
.vlp-sec--navy .vlp-p strong { color: var(--gold-xl); }

/* ---- reason cards (2x2) ---- */
.vlp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vlp-card { position: relative; background: var(--white); border: 1px solid var(--stone); padding: 34px 32px 30px; border-radius: 2px; }
.vlp-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--gold), rgba(158,124,58,0.2)); }
.vlp-card-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--gold); font-weight: 400; line-height: 1; margin-bottom: 14px; }
.vlp-card-ttl { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.7; margin: 0 0 16px; padding-bottom: 16px; border-bottom: 1px solid var(--stone); }
.vlp-card-p { font-size: 13px; color: var(--text-m); line-height: 2; margin-bottom: 14px; }
.vlp-card-p:last-child { margin-bottom: 0; }

/* ---- activities (vertical flow on navy) ---- */
.vlp-flow { position: relative; }
.vlp-flow-item { position: relative; display: flex; gap: 28px; padding: 0 0 36px 0; }
.vlp-flow-item:not(:last-child) .vlp-flow-num::after { content: ''; position: absolute; left: 50%; top: 52px; transform: translateX(-50%); width: 1px; height: calc(100% - 52px); background: rgba(158,124,58,0.3); }
.vlp-flow-num { position: relative; flex-shrink: 0; width: 52px; height: 52px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold-xl); }
.vlp-flow-body { flex: 1; padding-top: 4px; }
.vlp-flow-ttl { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 500; color: var(--white); line-height: 1.6; margin: 0 0 14px; }
.vlp-flow-p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 2; margin-bottom: 12px; }
.vlp-flow-p:last-child { margin-bottom: 0; }

/* ---- fee table ---- */
.vlp-table-wrap { overflow-x: auto; border: 1px solid var(--stone); border-radius: 2px; }
.vlp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; background: var(--white); }
.vlp-table th { background: var(--navy); color: var(--white); font-weight: 500; text-align: left; padding: 14px 18px; letter-spacing: 0.04em; white-space: nowrap; }
.vlp-table td { padding: 14px 18px; border-bottom: 1px solid var(--stone); color: var(--text); line-height: 1.7; vertical-align: top; }
.vlp-table tbody tr:last-child td { border-bottom: none; }
.vlp-table tbody tr:nth-child(even) td { background: var(--cream); }
.vlp-table td:first-child { font-weight: 500; color: var(--navy); white-space: nowrap; }
.vlp-note { font-size: 12.5px; color: var(--text-m); line-height: 2; margin-top: 20px; }

/* ---- how to choose (points) ---- */
.vlp-points { display: flex; flex-direction: column; gap: 4px; }
.vlp-point { display: flex; gap: 26px; padding: 28px 0; border-top: 1px solid var(--stone); }
.vlp-point:last-child { border-bottom: 1px solid var(--stone); }
.vlp-point-num { flex-shrink: 0; font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--gold); font-weight: 300; line-height: 1; width: 50px; }
.vlp-point-body { flex: 1; }
.vlp-point-ttl { font-family: 'Noto Serif JP', serif; font-size: 17px; font-weight: 600; color: var(--navy); line-height: 1.6; margin: 0 0 14px; }
.vlp-point-p { font-size: 13.5px; color: var(--text-m); line-height: 2; margin-bottom: 12px; }
.vlp-point-p:last-child { margin-bottom: 0; }

/* ---- FAQ (static) ---- */
.vlp-faq { display: flex; flex-direction: column; gap: 16px; }
.vlp-faq-item { background: var(--white); border: 1px solid var(--stone); border-radius: 2px; overflow: hidden; }
.vlp-faq-q { display: flex; gap: 14px; align-items: flex-start; padding: 20px 24px; background: var(--white); font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.7; }
.vlp-faq-a { display: flex; gap: 14px; align-items: flex-start; padding: 20px 24px; border-top: 1px solid var(--stone); background: #fcfaf6; }
.vlp-faq-a p { font-size: 13.5px; color: var(--text); line-height: 2.05; margin-bottom: 14px; }
.vlp-faq-a p:last-child { margin-bottom: 0; }
.vlp-faq-badge { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600; background: var(--navy); color: var(--gold-xl); }
.vlp-faq-badge--a { background: var(--gold); color: var(--white); }

/* ---- closing CTA ---- */
.vlp-cta { background: var(--navy); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.vlp-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.vlp-cta-eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.vlp-cta-ttl { font-family: 'Noto Serif JP', serif; font-size: 26px; font-weight: 500; color: var(--white); line-height: 1.7; margin: 0 0 18px; }
.vlp-cta-sub { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 2; margin-bottom: 34px; }
.vlp-cta-actions { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.vlp-cta-tel { display: flex; flex-direction: column; color: var(--white); }
.vlp-cta-tel span { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.vlp-cta-tel strong { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; }

/* ---- responsive ---- */
@media (max-width: 820px) {
  .vlp-fv, .vlp-sec, .vlp-cta { padding-left: 24px; padding-right: 24px; }
  .vlp-fv { padding-top: 56px; padding-bottom: 52px; }
  .vlp-sec { padding-top: 52px; padding-bottom: 52px; }
  .vlp-fv-title { font-size: 23px; }
  .vlp-h2 { font-size: 21px; }
  .vlp-cards { grid-template-columns: 1fr; gap: 16px; }
  .vlp-bc { padding: 14px 24px; }
  .vlp-fv-actions, .vlp-cta-actions { gap: 16px; }
}

/* ---- 被害者向けLP: FV 画像分割（アイキャッチ） ---- */
.vlp-fv--media { display: flex; align-items: stretch; padding: 0; }
.vlp-fv--media .vlp-fv-inner { flex: 1; padding: 72px 48px; min-width: 0; }
.vlp-fv-media { width: 40%; min-width: 300px; background-size: cover; background-position: center 22%; position: relative; }
.vlp-fv-media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy) 0%, rgba(21,37,64,0.62) 34%, rgba(21,37,64,0.10) 100%); }
@media (max-width: 820px) {
  .vlp-fv--media { flex-direction: column; padding: 0; }
  .vlp-fv--media .vlp-fv-inner { padding: 52px 24px; }
  .vlp-fv-media { width: 100%; min-width: 0; min-height: 200px; order: -1; }
  .vlp-fv-media::before { background: linear-gradient(to top, var(--navy) 0%, rgba(21,37,64,0.35) 100%); }
}

/* ---- 被害者向けLP: 関連コラム（用語集風リスト） ---- */
.vlp-list { border-top: 1px solid var(--stone); }
.vlp-list-item { display: flex; align-items: center; gap: 24px; padding: 22px 6px; border-bottom: 1px solid var(--stone); text-decoration: none; transition: background 0.2s ease; }
.vlp-list-item:hover { background: var(--cream); }
.vlp-list-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--gold); font-weight: 400; min-width: 40px; line-height: 1; flex-shrink: 0; }
.vlp-list-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.vlp-list-ttl { font-family: 'Noto Serif JP', serif; font-size: 15.5px; font-weight: 600; color: var(--navy); line-height: 1.6; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: text-decoration-color 0.2s ease; }
.vlp-list-item:hover .vlp-list-ttl { text-decoration-color: var(--gold); }
.vlp-list-ex { font-size: 12.5px; color: var(--text-m); line-height: 1.6; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vlp-list-arrow { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }
@media (max-width: 600px) {
  .vlp-list-item { gap: 14px; }
  .vlp-list-num { font-size: 20px; min-width: 30px; }
  .vlp-list-ttl { font-size: 14px; }
}

/* ---- flow（刑事手続きの流れ）関連記事カード：サムネ画像のはみ出し/タイトル重なり修正 ---- */
.l2flow .art-featured .thumb,
.l2flow .art-sub .thumb-sm,
.l2flow .art-card .thumb-card { position: relative; overflow: hidden; }
.l2flow .art-featured .thumb img,
.l2flow .art-sub .thumb-sm img,
.l2flow .art-card .thumb-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.l2flow .art-cat-badge { z-index: 2; }

/* ================================================================
   WLP — Worry Landing Page
   /criminal/worry/{term}/ LP専用スタイル
================================================================ */

/* ---- Hero ---- */
.wlp-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 72px 64px 64px;
}

.wlp-hero__deco {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(158,124,58,0.12);
  pointer-events: none;
}

.wlp-hero__deco::before {
  content: '';
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  border: 1px solid rgba(158,124,58,0.07);
}

.wlp-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wlp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-lt);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border: 1px solid rgba(158,124,58,0.3);
  padding: 6px 14px 6px 10px;
}

.wlp-hero__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin-bottom: 24px;
}

.wlp-hero__lead {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.95;
  margin-bottom: 36px;
  font-weight: 300;
}

.wlp-hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.wlp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 13px 28px;
  transition: background 0.2s;
  font-family: var(--font-sans);
  font-weight: 500;
  white-space: nowrap;
}
.wlp-btn-primary:hover { background: var(--gold-lt); color: var(--white); }

.wlp-btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-en);
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: color 0.2s;
}
.wlp-btn-tel:hover { color: var(--gold-lt); }

/* ---- 目次 ---- */
.wlp-toc {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}

.wlp-toc__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 64px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.wlp-toc__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.wlp-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  flex: 1;
}

.wlp-toc__item a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-s);
  transition: color 0.2s;
  line-height: 1.55;
}
.wlp-toc__item a:hover { color: var(--navy); }

.wlp-toc__num {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* ---- セクション ---- */
.wlp-sec {
  border-bottom: 1px solid rgba(214,209,196,0.5);
}
.wlp-sec:last-child { border-bottom: none; }
.wlp-sec--white { background: var(--white); }
.wlp-sec--cream { background: var(--cream); }
.wlp-sec--dot {
  background-image: radial-gradient(circle, rgba(158,124,58,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.wlp-sec__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px;
}

.wlp-sec__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wlp-sec__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.wlp-sec__title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stone);
}

/* ---- 本文 ---- */
.wlp-sec__body p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-s);
  margin-bottom: 18px;
}
.wlp-sec__body p:last-child { margin-bottom: 0; }

.wlp-sec__body strong {
  color: var(--navy);
  font-weight: 600;
  background: linear-gradient(0deg, rgba(158,124,58,0.14) 32%, transparent 32%);
  padding: 0 2px;
}

.wlp-sec__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0 18px;
}

.wlp-sec__body ul li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-s);
  padding: 16px 18px 16px 48px;
  background: var(--white);
  border: 1px solid var(--stone);
  position: relative;
}
.wlp-sec--cream .wlp-sec__body ul li { background: rgba(255,255,255,0.72); }

.wlp-sec__body ul li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.wlp-sec__body ul li strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  background: none;
  padding: 0;
  margin-bottom: 3px;
  font-size: 13.5px;
}

/* ---- 末尾CTA ---- */
.wlp-sec__cta-inline {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--stone);
  display: flex;
  justify-content: center;
}
.wlp-sec__cta-inline .wlp-btn-primary {
  padding: 15px 52px;
  font-size: 14px;
}

/* ---- Victim 記事リスト（用語集スタイル） ---- */
.victim-art-list {
  border-top: 1px solid var(--stone);
}

.victim-art-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--stone);
  transition: background 0.15s;
  color: var(--text);
}
.victim-art-list__item:hover { background: var(--cream); }

.victim-art-list__num {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  counter-increment: victim-list;
}
.victim-art-list__num::before { content: counter(victim-list, decimal-leading-zero); }
.victim-art-list { counter-reset: victim-list; }

.victim-art-list__body { flex: 1; min-width: 0; }

.victim-art-list__title {
  font-family: var(--font-serif);
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.victim-art-list__item:hover .victim-art-list__title { color: var(--gold); }

.victim-art-list__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.victim-art-list__date {
  font-size: 11px;
  color: var(--text-m);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.victim-art-list__arr { color: var(--gold); display: flex; align-items: center; }

/* ================================================================
   SP対応（680px以下）— WLP / victim list / 全体補完
================================================================ */
@media (max-width: 1100px) {
  .wlp-hero { padding: 56px 40px; }
  .wlp-toc__inner { padding: 28px 40px; }
  .wlp-sec__inner { padding: 52px 40px; }
}

@media (max-width: 680px) {
  /* Hero */
  .wlp-hero { padding: 36px 20px 44px; }
  .wlp-hero__deco { display: none; }
  .wlp-hero__title { font-size: 18px; }
  .wlp-hero__lead { font-size: 13px; margin-bottom: 28px; }
  .wlp-hero__cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .wlp-btn-primary { width: 100%; justify-content: center; padding: 13px 20px; }
  .wlp-btn-tel { font-size: 17px; }

  /* 目次 */
  .wlp-toc__inner { flex-direction: column; gap: 12px; padding: 20px; }
  .wlp-toc__list { grid-template-columns: 1fr; gap: 8px; }
  .wlp-toc__item a { font-size: 12px; }

  /* セクション */
  .wlp-sec__inner { padding: 36px 20px; }
  .wlp-sec__title { font-size: 17px; margin-bottom: 20px; }
  .wlp-sec__body p { font-size: 13.5px; }
  .wlp-sec__body ul li { padding: 13px 14px 13px 36px; font-size: 13.5px; }
  .wlp-sec__body ul li::before { left: 14px; top: 17px; }
  .wlp-sec__cta-inline .wlp-btn-primary { width: 100%; }

  /* victim リスト */
  .victim-art-list__title { font-size: 13.5px; }
  .victim-art-list__date { display: none; }
  .victim-art-list__item { padding: 14px 4px; gap: 10px; }
}

/* ================================================================
   SP全体補完 — 既存テンプレートのSP崩れ修正
================================================================ */
@media (max-width: 680px) {
  /* ヘッダー */
  .site-header__row1 { display: none; }
  .site-header__row2-inner { padding: 0 16px; }
  .site-header__criminal-nav { display: none; }
  .site-header__hamburger { display: flex; }
  .site-header__logo-ja { font-size: 11px; }

  /* パンくず */
  .breadcrumb__inner { padding: 7px 16px; font-size: 10px; }

  /* page-hero */
  .page-hero { padding: 36px 20px; min-height: auto; }
  .page-hero__title { font-size: 22px !important; }
  .page-hero__lead { font-size: 13px; }

  /* sub-fv */
  .sub-fv { padding: 36px 20px; }
  .sub-fv__title, .sub-fv-ttl { font-size: 22px; }

  /* ハブページヒーロー */
  .hub-hero { padding: 36px 20px 32px; }

  /* セクション共通 */
  .hub-sec { padding: 36px 20px !important; }
  .sec-h2 { font-size: 18px; }

  /* art-sec */
  .art-sec,
  .art-sec.alt { padding: 36px 20px; }
  .art-sec .inner-wrap { padding: 0; }

  /* 記事グリッド */
  .art-grid { grid-template-columns: 1fr; }
  .art-sub-list { display: flex; flex-direction: column; gap: 10px; }
  .art-sub { flex-direction: column; }
  .art-sub-img { width: 100%; aspect-ratio: 16/9; }
  .art-cards-grid { grid-template-columns: 1fr; }

  /* hub-g22 */
  .hub-grid22 { grid-template-columns: 1fr; }

  /* CTAバー */
  .cta-bar { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .cta-bar__actions { width: 100%; flex-direction: column; gap: 12px; }
  .cta-bar__tel-num { font-size: 22px; }

  /* フッター */
  .site-footer__main { grid-template-columns: 1fr; padding: 40px 20px; }

  /* l2page */
  .l2page .sec { padding: 36px 20px; }
  .l2page .grid-3 { grid-template-columns: 1fr; }
  .l2page .art-grid { grid-template-columns: 1fr; }
  .l2page .art-grid-row { flex-direction: column; }
  .l2page .art-grid-row .art-sec-cta { border-left: none; border-top: 1px solid var(--stone); padding-left: 0; padding-top: 16px; flex: none; }
  .l2page .faq-list { gap: 0; }
}

@media (max-width: 900px) and (min-width: 681px) {
  .wlp-hero { padding: 52px 40px; }
  .wlp-hero__title { font-size: 21px; }
  .wlp-toc__list { grid-template-columns: 1fr; }
}

/* ================================================================
   修正パッチ v5
================================================================ */

/* ① wlp FV — ボタン・電話削除後の余白調整 */
.wlp-hero__lead { margin-bottom: 0 !important; }
.wlp-hero { padding-bottom: 56px !important; }

/* ② victim-art-list__num (span出力版) */
.victim-art-list__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  min-width: 32px;
  flex-shrink: 0;
}

/* ================================================================
   被害者ページ SP対応 — 820px以下
================================================================ */
@media (max-width: 820px) {

  /* はみ出し防止 */
  .l2page { overflow-x: hidden; }
  .l2page .bc { padding: 10px 20px; font-size: 10px; flex-wrap: wrap; }

  /* ── victim-fv 縦積み ── */
  .l2page .victim-fv { flex-direction: column; min-height: auto; }
  .l2page .victim-fv-accent { width: 100%; height: 4px; flex: none; }
  .l2page .victim-fv-body { padding: 40px 20px 36px; flex: none; }
  .l2page .victim-fv-catch { font-size: 24px; line-height: 1.55; }
  .l2page .victim-fv-lead { font-size: 13px; max-width: 100%; }
  .l2page .victim-fv-quote { flex: none; width: 100%; }
  .l2page .victim-fv-quote-inner {
    padding: 28px 20px;
    border-left: none;
    border-top: 3px solid var(--gold);
  }
  .l2page .victim-fv-quote-mark { font-size: 36px; margin-bottom: 12px; }
  .l2page .victim-fv-quote-text { font-size: 13px; line-height: 2.1; }

  /* ── attorney-sec ── */
  .l2page .attorney-sec { padding: 40px 20px; }
  .l2page .sec-ttl { font-size: 18px; margin-bottom: 20px; }
  .l2page .sec-label { font-size: 10px; }

  /* 担当弁護士グリッド → 1カラム縦並び */
  .l2page .attorney-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* カード内部 → 縦並び（写真→名前→肩書→説明） */
  .l2page .attorney-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 0;
  }
  .l2page .attorney-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    flex-shrink: 0;
  }
  .l2page .attorney-info { width: 100%; }
  .l2page .attorney-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .l2page .attorney-role {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .l2page .attorney-desc {
    font-size: 13px;
    text-align: left;
    line-height: 1.85;
  }

  /* ATTORNEYバナー → 縦積み */
  .l2page .attorney-more {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin-bottom: 32px;
  }
  .l2page .attorney-more-ttl { font-size: 14px; }
  .l2page .attorney-more-btn { width: 100%; justify-content: center; }

  /* ── 対応内容（service-grid）→ 1カラム縦並び ── */
  .l2page .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .l2page .service-card { padding: 18px 16px; }
  .l2page .service-card-ttl { font-size: 14px; }

  /* ── 選ばれる理由（strengths-grid）→ 1カラム縦並び ── */
  .l2page .strengths-sec { padding: 40px 20px; }
  .l2page .strengths-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .l2page .strength-card-img { height: 80px; }
  .l2page .strength-card-ttl { font-size: 14px; }

  /* ── victim-banner-inner → 縦積み ── */
  .l2page .victim-banner { padding: 20px; }
  .l2page .victim-banner-inner { flex-direction: column; }
  .l2page .victim-banner-left { padding: 20px; }
  .l2page .victim-banner-ttl { font-size: 15px; }
  .l2page .victim-banner-cta { padding: 16px 20px; justify-content: center; }

  /* ── 汎用セクション ── */
  .l2page .sec { padding: 40px 20px; }

  /* ── 関連記事リスト ── */
  .articles-sec { padding: 36px 20px; }
  .articles-sec .sec-ttl { font-size: 18px; }
  .victim-art-list__title { font-size: 13.5px; }
  .victim-art-list__date  { display: none; }
  .victim-art-list__item  { padding: 14px 0; gap: 10px; }

  /* ── FAQ ── */
  .l2page .faq-sec { padding: 40px 20px; }
  .l2page .faq-q { font-size: 14px; padding: 16px 0; }
  .l2page .faq-a { font-size: 13px; }
}

@media (max-width: 600px) {
  .l2page .victim-fv-catch { font-size: 21px; }
  .l2page .attorney-photo { width: 84px; height: 84px; }
}

/* ================================================================
   type-pr / type-faq — 犯罪種類第3階層 PR・FAQ ブロック
================================================================ */

/* PR */
.type-pr {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.type-pr::before {
  content: '';
  position: absolute;
  right: 48px; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px;
  border: 1px solid rgba(158,124,58,0.22);
  border-radius: 50%; pointer-events: none;
}
.type-pr__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 64px;
  position: relative; z-index: 1;
}
.type-pr__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.type-pr__label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.type-pr__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; color: var(--navy);
  font-weight: 500; letter-spacing: 0.04em;
  line-height: 1.65; margin-bottom: 20px;
}
.type-pr__body {
  font-size: 14px; line-height: 1.95;
  color: var(--text-s); margin-bottom: 16px;
  max-width: 720px;
}
.type-pr__body:last-of-type { margin-bottom: 28px; }
.type-pr__actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.type-pr__tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; letter-spacing: 0.08em;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.type-pr__tel:hover { color: var(--gold); }

/* FAQ */
.type-faq {
  background: var(--white);
  border-top: 1px solid var(--stone);
}
.type-faq__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 64px;
}
.type-faq__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.type-faq__label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.type-faq__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; color: var(--navy);
  font-weight: 500; margin-bottom: 28px; letter-spacing: 0.04em;
}
.type-faq__list { border-top: 1px solid var(--stone); }
.type-faq__item { border-bottom: 1px solid var(--stone); }
.type-faq__q {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 16px;
  font-size: 14px; color: var(--navy); font-weight: 500; line-height: 1.7;
  background: var(--white);
}
.type-faq__a {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 16px 20px;
  font-size: 13.5px; color: var(--text-s); line-height: 1.85;
  background: var(--cream);
}
.type-faq__badge {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600;
}
.type-faq__badge--q { background: var(--navy); color: var(--gold); }
.type-faq__badge--a { background: var(--gold); color: var(--white); }

/* SP対応 */
@media (max-width: 680px) {
  .type-pr__inner { padding: 40px 20px; }
  .type-pr__title { font-size: 17px; }
  .type-pr__body  { font-size: 13.5px; }
  .type-pr__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .type-pr__tel { font-size: 18px; }
  .type-faq__inner { padding: 40px 20px; }
  .type-faq__title { font-size: 17px; }
  .type-faq__q { font-size: 13.5px; padding: 14px 12px; gap: 10px; }
  .type-faq__a { font-size: 13px; padding: 12px 12px 16px; gap: 10px; }
  .type-faq__badge { width: 22px; height: 22px; font-size: 12px; }
}

/* ================================================================
   type-cat-nav — 第3階層カテゴリタブナビ
================================================================ */
.type-cat-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(158,124,58,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.type-cat-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.type-cat-nav__inner::-webkit-scrollbar { display: none; }
.type-cat-nav__item {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  padding: 13px 18px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.type-cat-nav__item:hover { color: rgba(255,255,255,0.85); }
.type-cat-nav__item.is-active {
  color: var(--gold-lt);
  border-bottom-color: var(--gold);
}

/* ================================================================
   type-lp — 第4階層 LP コンテンツ
================================================================ */

/* 目次 */
.type-lp-toc {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}
.type-lp-toc__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 64px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.type-lp-toc__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}
.type-lp-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 36px;
  flex: 1;
}
.type-lp-toc__item a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-s);
  line-height: 1.55;
  transition: color 0.2s;
}
.type-lp-toc__item a:hover { color: var(--navy); }
.type-lp-toc__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

/* セクション */
.type-lp-sec { border-bottom: 1px solid rgba(214,209,196,0.5); }
.type-lp-sec:last-child { border-bottom: none; }
.type-lp-sec.sec-white     { background: var(--white); }
.type-lp-sec.sec-cream     { background: var(--cream); }
.type-lp-sec.sec-dot       { background-image: radial-gradient(circle, rgba(158,124,58,0.07) 1px, transparent 1px); background-size: 28px 28px; }
.type-lp-sec.sec-white.sec-dot { background-color: var(--white); }
.type-lp-sec.sec-cream.sec-dot { background-color: var(--cream); }

.type-lp-sec__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 64px;
}
.type-lp-sec__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.type-lp-sec__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.type-lp-sec__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--stone);
}

/* 本文 */
.type-lp-sec__body p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-s);
  margin-bottom: 16px;
}
.type-lp-sec__body p:last-child { margin-bottom: 0; }
.type-lp-sec__body strong {
  color: var(--navy);
  font-weight: 600;
  background: linear-gradient(0deg, rgba(158,124,58,0.14) 32%, transparent 32%);
  padding: 0 2px;
}
.type-lp-sec__body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  margin: 28px 0 12px;
  padding: 12px 16px 12px 44px;
  background: var(--cream);
  position: relative;
  line-height: 1.6;
}
.type-lp-sec.sec-cream .type-lp-sec__body h3 {
  background: rgba(255,255,255,0.65);
}
.type-lp-sec__body h3::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.type-lp-sec__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 16px;
}
.type-lp-sec__body ul li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-s);
  padding: 14px 16px 14px 44px;
  background: var(--white);
  border: 1px solid var(--stone);
  position: relative;
}
.type-lp-sec.sec-cream .type-lp-sec__body ul li {
  background: rgba(255,255,255,0.7);
}
.type-lp-sec__body ul li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* SP対応 */
@media (max-width: 1100px) {
  .type-cat-nav__inner { padding: 0 32px; }
  .type-lp-toc__inner  { padding: 24px 40px; }
  .type-lp-sec__inner  { padding: 48px 40px; }
}
@media (max-width: 680px) {
  .type-cat-nav__inner { padding: 0 16px; }
  .type-cat-nav__item  { padding: 11px 12px; font-size: 11px; }
  .type-lp-toc__inner  { flex-direction: column; gap: 12px; padding: 20px; }
  .type-lp-toc__list   { grid-template-columns: 1fr; gap: 8px; }
  .type-lp-toc__item a { font-size: 12px; }
  .type-lp-sec__inner  { padding: 36px 20px; }
  .type-lp-sec__title  { font-size: 17px; }
  .type-lp-sec__body p { font-size: 13.5px; }
  .type-lp-sec__body h3 { font-size: 14px; padding: 10px 14px 10px 36px; }
  .type-lp-sec__body h3::before { left: 12px; width: 12px; }
  .type-lp-sec__body ul li { padding: 12px 12px 12px 34px; font-size: 13.5px; }
  .type-lp-sec__body ul li::before { left: 12px; top: 16px; }
}

/* ================================================================
   type-lp 追加スタイル
================================================================ */

/* テーブル */
.type-lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 16px 0 20px;
}
.type-lp-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
  padding: 10px 14px;
  text-align: left;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.type-lp-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--stone);
  color: var(--text-s);
  line-height: 1.7;
  vertical-align: top;
}
.type-lp-table tr:nth-child(even) td { background: var(--cream); }
.type-lp-table tr:last-child td { border-bottom: none; }
@media (max-width: 680px) {
  .type-lp-table { font-size: 12px; }
  .type-lp-table th,
  .type-lp-table td { padding: 8px 10px; }
}

/* 記事一覧（LP上部） */
.type-lp-arts {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}
.type-lp-arts__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 64px;
}
.type-lp-arts__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.type-lp-arts__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.type-lp-arts__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
  letter-spacing: 0.04em;
}
.type-lp-arts__list { border-top: 1px solid var(--stone); }
.type-lp-arts__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--stone);
  transition: background 0.15s;
  color: var(--text);
}
.type-lp-arts__item:hover { background: var(--cream); }
.type-lp-arts__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  min-width: 28px;
  flex-shrink: 0;
}
.type-lp-arts__body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.type-lp-arts__ttl {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
}
.type-lp-arts__item:hover .type-lp-arts__ttl { color: var(--gold); }
.type-lp-arts__date {
  font-size: 11px;
  color: var(--text-m);
  white-space: nowrap;
  flex-shrink: 0;
}
.type-lp-arts__item > svg { color: var(--gold); flex-shrink: 0; }

@media (max-width: 680px) {
  .type-lp-arts__inner { padding: 36px 20px; }
  .type-lp-arts__title { font-size: 16px; }
  .type-lp-arts__date  { display: none; }
  .type-lp-arts__body  { gap: 0; }
  .type-lp-arts__ttl   { font-size: 13.5px; }
  .type-lp-arts__item  { padding: 12px 4px; gap: 10px; }
}

/* ================================================================
   taxonomy-crime_type 追加修正
================================================================ */

/* ① TOPタブ */
.type-cat-nav__item--top {
  color: var(--gold-lt) !important;
  border-right: 1px solid rgba(158,124,58,0.25);
  padding-right: 18px;
  margin-right: 4px;
  font-weight: 500;
}
.type-cat-nav__item--top:hover { color: #fff !important; }

/* ③ 電話番号ボタン */
.type-pr__tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  border: 1px solid rgba(158,124,58,0.4);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 11px 22px;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-sans);
  font-weight: 400;
}
.type-pr__tel-btn svg { color: var(--gold); flex-shrink: 0; }
.type-pr__tel-btn:hover {
  background: rgba(158,124,58,0.12);
  border-color: var(--gold);
  color: var(--white);
}
@media (max-width: 680px) {
  .type-pr__tel-btn { width: 100%; justify-content: center; }
}

/* ================================================================
   type-lp-arts-grid — サムネ付き記事グリッドセクション
================================================================ */
.type-lp-arts-grid {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}
.type-lp-arts-grid__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 64px 32px;
}
.type-lp-arts-grid__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.type-lp-arts-grid__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.type-lp-arts-grid__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
  letter-spacing: 0.04em;
}
/* 1枚目大・残り小のトップグリッド */
.type-arts-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  .type-lp-arts-grid__inner { padding: 36px 20px 24px; }
  .type-lp-arts-grid__title { font-size: 17px; }
  .type-arts-top { grid-template-columns: 1fr; }
  .type-lp-arts-grid .pagination { padding: 0 20px 36px !important; }
}

/* ================================================================
   SP インライン目次（.toc-inline）
   900px以下でJSにより本文内・最初のH2前に挿入される
================================================================ */
@media (max-width: 900px) {
  .toc-inline {
    background: var(--cream);
    border: 1px solid var(--stone);
    border-top: 3px solid var(--navy);
    padding: 16px 18px;
    margin-bottom: 24px;
  }
  /* 「目次」タイトル：ネイビー背景＋白文字で視認性UP */
  .toc-inline .sidebar-widget__title {
    background: var(--navy);
    color: var(--white);
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    margin: -16px -18px 14px;
    display: block;
  }
  .toc-inline .sidebar-widget__body { padding: 0; }
  .toc-inline .toc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }
  /* H2項目 */
  .toc-inline .toc-list li {
    border-bottom: 1px solid var(--stone);
  }
  .toc-inline .toc-list li:last-child { border-bottom: none; }
  .toc-inline .toc-list li a {
    font-size: 12.5px;
    color: var(--text-s);
    line-height: 1.5;
    display: block;
    padding: 7px 4px 7px 10px;
    position: relative;
  }
  .toc-inline .toc-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 12px;
    background: var(--gold);
  }
  .toc-inline .toc-list li a:hover { color: var(--navy); }
  /* H3項目（JS で paddingLeft:14px が付く）*/
  .toc-inline .toc-list li[style] a {
    font-size: 11.5px;
    padding-left: 20px;
    color: var(--text-m);
  }
  .toc-inline .toc-list li[style] a::before {
    width: 2px;
    height: 8px;
    background: rgba(158,124,58,0.5);
    left: 12px;
  }
}
