/* =========================================================
   亜細亜交流事業協同組合 — Corporate Site Tokens & Globals
   ========================================================= */

:root {
  /* Color — Default palette: RED & WHITE (Loop brand red, bold & reassuring) */
  /* NOTE: 初期値です。Loop International School の確定の赤に最終調整してください。 */
  --bg: #FFFFFF;
  --bg-soft: #FBECEE;          /* pale red-white tone */
  --bg-cream: #FFF6F2;         /* warm off-white */
  --bg-blush: #FDE7E7;         /* soft blush */
  --bg-deep: #5E0F1B;          /* deep dark red */
  --ink: #1E1416;
  --ink-soft: #51464A;
  --ink-mute: #8C8C8C;          /* clean neutral gray (旧: くすんだ藤色 #8A7E81) */
  --line: #EAD3D7;
  --line-soft: #F4E4E7;
  --primary: #C8102E;          /* Loop red */
  --primary-soft: #DA3850;
  --primary-deep: #8E0B20;     /* deep red */
  --accent: #8E0B20;           /* deep red accent (keeps red/white world) */
  --accent-soft: #E68C97;      /* light red — used on dark backgrounds */
  --accent-deep: #6E0818;
  --gold: #F5B221;             /* vivid gold */
  --sky: #2E8FCC;              /* deeper blue */
  --plum: #C04A82;             /* deeper plum */

  /* Type */
  --font-serif: "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-display-en: "Cormorant Garamond", "Shippori Mincho B1", serif;
  --font-sans-en: "Inter", "Noto Sans JP", system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --max-w: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  /* clip (not hidden) so the body does not become a scroll container,
     which would break the sticky header (.topbar position:sticky). */
  overflow-x: clip;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography defaults */
.serif { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.05em; }
.en { font-family: var(--font-display-en); letter-spacing: 0.06em; }
.en-sans { font-family: var(--font-sans-en); letter-spacing: 0.08em; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin: 0;
}

p { margin: 0; }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad-x); }

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  opacity: 0.35;
}
/* ブランドマークをロゴ画像に差し替え。ロゴ自体が白地の円なので、白い円形チップとして見せる
   （濃色のフッターでも自然に載る）。contain でロゴ本体を欠けさせない。
   .brand-mark 単体（0,2,0 未満）の各メディアクエリ指定に勝つよう2クラス指定にしている。
   38px ではロゴ内の "LOOP co.,ltd" が潰れて読めないため 52px まで拡大 */
.brand-mark.brand-mark-img {
  width: 52px;
  height: 52px;
  background: #fff;
  object-fit: contain;
  /* 円形マスクの内側にロゴを収め、外周リングと下部の "co.,ltd" が欠けないようにする */
  box-sizing: border-box;
  padding: 4px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .brand-mark.brand-mark-img { width: 42px; height: 42px; }
}
.footer-brand .brand-mark.brand-mark-img { background: #fff; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.12em;
  line-height: 1.2;
}
.brand-name .small {
  display: block;
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-top: 3px;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14.5px;
  /* 文字を大きくしたぶん字送りを詰め、1280px 幅でも 1 行に収める */
  letter-spacing: 0.08em;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  transition: color .25s;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background .25s;
}
.nav-cta:hover { background: var(--accent); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  height: 92vh;
  min-height: 540px;
  max-height: 920px;
  overflow: hidden;
  background: var(--bg-deep);
}
/* 修正依頼 #31：新ヒーロー画像は左側が明るい白の余白のため、
   旧画像用の暗転（brightness 0.75）と黒グラデーションを廃止し、
   スローガンは濃色文字（--bg-deep／--primary）で左の余白に配置する。
   ::after は左側にのみ効く白スクリムに変更（中間幅・モバイルで文字が
   画像の被写体に重なっても可読性を保つため）。 */
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.68) 40%, rgba(255,255,255,0.22) 62%, rgba(255,255,255,0) 78%);
}
.hero-inner {
  position: relative;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  /* 上下中央寄せ。padding-bottom 分だけ中心が上がり、下端に重なる assurance-bar(-56px) と釣り合う */
  align-items: center;
  padding-bottom: 56px;
}
/* 修正依頼 #31：ライト背景に合わせ白文字 → 濃色（--bg-deep）に変更 */
.hero-content { max-width: 1040px; color: var(--bg-deep); width: 100%; min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent); /* 修正依頼 #31：白 → 濃赤（ライト背景対応） */
  margin-bottom: 28px;
}
.hero-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.4vw, 92px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  /* 修正依頼 #31：ライト背景のためドロップシャドウを廃止 */
}
/* 修正依頼 #31：--accent-soft（暗背景用の淡い赤）→ --primary（白地で読める赤）に変更 */
.hero-title .accent { color: var(--primary); }
.hero-sub {
  font-size: 17px;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  font-size: 13px;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font-family: var(--font-sans);
  border-radius: 100px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #B14E32; transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
/* 修正依頼 #31：ヒーローがライト背景になったため、ヒーロー内の btn-outline のみ濃色に
   （他セクションの暗背景用 btn-outline は従来どおり白のまま） */
.hero .btn-outline { border-color: rgba(94,15,27,0.45); color: var(--bg-deep); }
.hero .btn-outline:hover { background: rgba(94,15,27,0.07); border-color: var(--bg-deep); }
.btn-ghost { color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--bg-deep); }
.btn .arrow { display: inline-block; transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-meta {
  position: absolute;
  right: var(--pad-x);
  bottom: 96px;
  text-align: right;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.25em;
}
.hero-meta .num {
  font-family: var(--font-display-en);
  font-size: 56px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.scroll-cue {
  position: absolute;
  left: var(--pad-x);
  bottom: 36px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* =========================================================
   Section primitives
   ========================================================= */
.section { padding: clamp(30px, 4.2vw, 56px) 0; position: relative; }
.section.tight { padding: clamp(22px, 3.2vw, 42px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-deep); color: #F0EDE4; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 56px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.section-num {
  font-family: var(--font-display-en);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.25em;
  font-weight: 600;
}
/* セクションラベル先頭の「—」は施主指示（2026-08-26）で全廃。
   .section-num::before { content:"—" } を削除（全ページの SUPPORT / OVERVIEW 等に効いていた） */
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.section-en {
  font-family: var(--font-display-en);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* =========================================================
   Intro section
   ========================================================= */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.intro-side {
  position: sticky;
  top: 120px;
}
.intro-vlabel {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.intro-en-big {
  font-family: var(--font-display-en);
  font-size: clamp(60px, 9vw, 128px);
  line-height: 0.95;
  color: var(--primary);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}
.intro-en-big .accent { color: var(--accent); }

.intro-body {
  max-width: 640px;
}
.intro-body h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.7;
  margin-bottom: 36px;
  letter-spacing: 0.1em;
}
.intro-body p {
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 22px;
  letter-spacing: 0.06em;
}

/* =========================================================
   Strengths grid
   ========================================================= */
/* =========================================================
   TOP「サポート内容」（TOP構成 01-06）
   強みセクションと同じ罫線グリッド／円形アイコンの作りに揃える
   ========================================================= */
.home-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.hspt-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .3s;
}
.hspt-item:hover { background: var(--bg-cream); }
.hspt-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.hspt-title {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.hspt-more { margin-top: 32px; text-align: center; }

@media (max-width: 900px) {
  .home-support { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-support { grid-template-columns: 1fr; }
  .hspt-item { padding: 22px 20px; gap: 16px; }
  .hspt-icon { width: 46px; height: 46px; }
}

.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strength {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .3s;
}
.strength:last-child { border-right: none; }
.strength:hover { background: var(--bg-soft); }
.strength-num {
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.strength-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(14,130,118,0.12);
  border: 1.5px solid var(--primary);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 8px;
}
.strength-title {
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.strength-body {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
}

/* =========================================================
   USP highlight (groupwide one-stop)
   ========================================================= */
.usp-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-deep);
  color: #F0EDE4;
}
.usp-text { padding: clamp(36px, 5vw, 72px); }
.usp-text .section-num { color: var(--accent-soft); }
.usp-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.6;
  margin-bottom: 32px;
  color: #fff;
}
/* 長めの見出し用（改行位置を維持したまま収めるための1段小さいサイズ） */
.usp-text h2.usp-h2-long { font-size: clamp(24px, 2.9vw, 37px); }
.usp-text p {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(240,237,228,0.78);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.usp-image {
  background-size: cover;
  background-position: center;
  min-height: 440px;
}

/* one-stop flow diagram */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.flow-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px 18px;
  position: relative;
}
.flow-step .num {
  font-family: var(--font-display-en);
  font-size: 12px;
  color: var(--accent-soft);
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 10px;
}
.flow-step .label {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.5;
}
.flow-step .sub {
  display: block;
  font-size: 11px;
  color: rgba(240,237,228,0.55);
  margin-top: 6px;
  letter-spacing: 0.1em;
}
.flow-step.highlight {
  background: var(--accent);
  border-color: var(--accent);
}
.flow-step.highlight .num,
.flow-step.highlight .sub { color: rgba(255,255,255,0.85); }

/* =========================================================
   Data viz section
   ========================================================= */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.data-intro h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.7;
  margin-bottom: 28px;
}
.data-intro p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  align-items: center;
  gap: 20px;
}
.bar-label {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.bar-track {
  height: 8px;
  background: var(--line-soft);
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--primary);
  transition: width 1.2s cubic-bezier(0.22,0.61,0.36,1);
  width: 0;
}
.bar-fill.accent { background: var(--accent); }
.bar-value {
  font-family: var(--font-display-en);
  font-size: 22px;
  color: var(--primary);
  text-align: right;
  font-weight: 600;
}
.bar-value.accent { color: var(--accent); }
.bar-value .pct { font-size: 14px; color: var(--ink-mute); margin-left: 2px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display-en);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--primary);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .unit { font-size: 18px; color: var(--ink-mute); margin-left: 4px; }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

/* =========================================================
   Two systems
   ========================================================= */
.two-systems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sys-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s, box-shadow .35s;
  cursor: pointer;
  border-radius: 24px;
}
.sys-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(26,36,32,0.18);
}
.sys-cover {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sys-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
}
.sys-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  padding: 6px 16px;
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--primary);
  z-index: 2;
  border-radius: 100px;
  font-weight: 600;
}
.sys-body { padding: 36px 36px 40px; flex: 1; display: flex; flex-direction: column; }
.sys-body h3 {
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.sys-body .en-sub {
  font-family: var(--font-display-en);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.sys-body p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.sys-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}
.sys-meta-item {
  display: flex;
  flex-direction: column;
}
.sys-meta-item .k {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.sys-meta-item .v {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.sys-link {
  margin-top: auto;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 10px;
  width: fit-content;
}
.sys-link .arrow { transition: transform .3s; }
.sys-card:hover .sys-link .arrow { transform: translateX(6px); }

/* =========================================================
   Group companies
   ========================================================= */
.group-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.group-card {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 32px 24px;
  position: relative;
  transition: border-color .3s, transform .3s;
  border-radius: 20px;
}
.group-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.group-card .role {
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 14px;
}
.group-card .name {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 10px;
}
.group-card .desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.group-card.parent {
  background: var(--primary);
  color: #fff;
}
.group-card.parent .name { color: #fff; }
.group-card.parent .desc { color: rgba(255,255,255,0.78); }
.group-card.parent .role { color: var(--accent-soft); }

/* =========================================================
   News list
   ========================================================= */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: grid;
  grid-template-columns: 110px 130px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .3s;
}
.news-row:hover { padding-left: 12px; }
.news-row:hover .news-title { color: var(--accent); }
.news-date {
  font-family: var(--font-display-en);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}
.news-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  width: fit-content;
  text-align: center;
  background: var(--bg);
  border-radius: 100px;
  font-weight: 600;
}
.news-tag.cat-system { color: #fff; border-color: var(--accent); background: var(--accent); }
.news-tag.cat-org { color: #fff; border-color: var(--primary); background: var(--primary); }
.news-tag.cat-event { color: #fff; border-color: var(--gold); background: var(--gold); }
.news-tag.cat-group { color: #fff; border-color: var(--sky); background: var(--sky); }
.news-title {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  transition: color .3s;
  letter-spacing: 0.04em;
}
.news-row .arrow { color: var(--ink-mute); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  position: relative;
  padding: clamp(56px, 8vw, 108px) 0;
  background: var(--bg-deep);
  color: #fff;
  overflow: hidden;
}
.cta-band-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}
/* 写真の上に控えめな暗いスクリム（赤被りを抑えつつ白文字の可読性を確保） */
.cta-band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.48));
}
.cta-band-inner { position: relative; text-align: center; }
.cta-band h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.cta-band p {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 48px;
}
.cta-band .btn-primary { padding: 22px 40px; font-size: 14px; }
.cta-band-contact {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cta-contact-item {
  text-align: left;
}
.cta-contact-item .label {
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.cta-contact-item .value {
  font-family: var(--font-display-en);
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.06em;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #131A18;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: color .25s;
  cursor: pointer;
}
.footer-links a:hover { color: var(--accent-soft); }
.footer-brand .brand-mark { background: var(--accent); }
.footer-brand .brand-name { color: #fff; font-size: 20px; }
.footer-brand .brand-name .small { font-size: 11.5px; }
.footer-addr {
  font-size: 14px;
  line-height: 2.05;
  margin-top: 24px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  font-family: var(--font-sans-en);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   Page-specific: inner page hero
   ========================================================= */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 300px;
  max-height: 520px;
  background: var(--bg-deep);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.page-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 52px;
  color: #fff;
}
.page-hero .kicker {
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  letter-spacing: 0.06em;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.crumbs span { color: rgba(255,255,255,0.45); }

/* Long-form prose */
.prose h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.6;
  margin: 56px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.08em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 20px;
  line-height: 1.7;
  margin: 36px 0 16px;
  color: var(--primary);
  letter-spacing: 0.08em;
}
.prose p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.prose ul { padding-left: 0; list-style: none; }
.prose ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* Comparison table */
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin: 32px 0 16px;
  font-size: 14px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--line);
}
.comp-table th, .comp-table td {
  text-align: left;
  padding: 18px 22px;
  border: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.9;
}
.comp-table th {
  background: var(--bg-soft);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
}
.comp-table thead th { background: var(--primary); color: #fff; }
.comp-table .highlight-cell { background: rgba(199,93,62,0.06); }

/* 7-step flow vertical */
.vflow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
}
.vflow::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: var(--line);
}
.vstep {
  display: grid;
  grid-template-columns: 56px 180px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  position: relative;
}
.vstep-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display-en);
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.vstep.accent .vstep-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.vstep-label {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-top: 10px;
}
.vstep-body {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  padding-top: 12px;
}

/* About — message section */
.message-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.message-portrait {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
}
.message-portrait::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--accent);
  z-index: -1;
}
.message-body h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.7;
  margin-bottom: 36px;
  letter-spacing: 0.1em;
}
.message-body p {
  font-size: 15px;
  line-height: 2.2;
  color: var(--ink-soft);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
/* message section with portrait on the RIGHT (本文=左 / 写真=右) */
.message-section-right { grid-template-columns: 1.4fr 1fr; }
.message-portrait-ph {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  border: 1.5px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.message-portrait-ph::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -16px;
  left: 16px;
  bottom: 16px;
  border: 1px solid var(--accent);
  z-index: -1;
}
.message-portrait-ph svg { width: 64px; height: 64px; color: var(--primary); opacity: 0.55; }
.message-portrait-ph .mp-label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.message-portrait-ph .mp-todo { font-size: 12px; letter-spacing: 0.04em; color: var(--ink-mute); }
@media (max-width: 900px) {
  .message-section-right { grid-template-columns: 1fr; }
  .message-portrait-ph { max-width: 340px; }
}

/* TODO placeholder block — signals content awaiting confirmation from client */
.data-todo {
  border: 1px dashed var(--line);
  background: var(--bg-soft);
  color: var(--ink-mute);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.9;
}
/* TODO stat value — fits in place of a large number without breaking the row */
.stat-num.todo {
  font-size: 18px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* note row under the 16-fields grid */
.fz-note {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* visit-location note in access block */
.access-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.message-sign {
  margin-top: 40px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.message-sign .pos {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
}
.message-sign .nm {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--ink);
}

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table th {
  text-align: left;
  padding: 22px 24px 22px 0;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  width: 200px;
  vertical-align: top;
}
.info-table td {
  padding: 22px 0;
  color: var(--ink-soft);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* Case cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.case-card {
  background: #fff;
  cursor: pointer;
  transition: transform .35s;
}
.case-card:hover { transform: translateY(-6px); }
.case-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.case-photo .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--primary);
  border-radius: 100px;
  font-weight: 600;
}
.case-card .country {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 10px;
}
.case-card h3 {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.case-card p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}

/* News filters */
.news-filters {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.news-filter {
  padding: 10px 22px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: #fff;
  transition: all .25s;
  font-weight: 600;
}
.news-filter:hover { color: var(--primary); border-color: var(--primary); }
.news-filter.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  max-width: 880px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.case-link-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--bg-soft);
  padding: 48px 56px;
  border: 1.5px solid var(--line);
  border-radius: 24px;
}
.history-row {
  display: grid;
  grid-template-columns: 180px 200px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.doc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left .3s;
}
.case-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.field .req {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.field .opt {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink);
  border-radius: 14px;
  transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.field textarea { min-height: 160px; resize: vertical; line-height: 1.9; }
.contact-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
}
.contact-actions .btn { padding: 22px 56px; font-size: 14px; }

.contact-side {
  background: var(--bg-soft);
  padding: 48px 40px;
  border-radius: 24px;
}
.contact-side h3 {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--primary);
}
.contact-side .ph {
  font-family: var(--font-display-en);
  font-size: 30px;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.contact-side .hours {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

/* responsive */
@media (max-width: 960px) {
  .nav { display: none; }
  .intro, .data-grid, .two-systems, .usp-block, .message-section,
  .strengths, .group-chart, .case-grid, .stat-row, .flow, .footer-grid, .contact-form { 
    grid-template-columns: 1fr; 
  }
  .strength { border-right: none; border-bottom: 1px solid var(--line); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .group-card { padding: 24px 18px; }
  .vstep { grid-template-columns: 48px 1fr; }
  .vstep-body { grid-column: 1 / -1; padding-left: 0; }
  .cta-band-contact { flex-direction: column; gap: 24px; }
  .news-row { grid-template-columns: 90px 110px 1fr; }
  .news-row .arrow { display: none; }
}

/* Fade-in animations */
.fade-up { 
  opacity: 0; 
  transform: translateY(28px); 
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.fade-up.visible { opacity: 1; transform: none; }

/* =========================================================
   Situation-based entries (Home: 6 cards)
   ========================================================= */
.entries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.entry-card {
  background: #fff;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background .3s, transform .3s;
  position: relative;
  min-height: 240px;
}
.entry-card:hover { background: var(--bg-soft); }
.entry-card:hover .entry-arrow { transform: translateX(6px); color: var(--accent); }
.entry-num {
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.entry-title {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 4px;
}
.entry-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
  flex: 1;
}
.entry-arrow {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .3s, color .3s;
}

/* =========================================================
   Access / Map section
   ========================================================= */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
.access-info { padding: 48px; }
.access-info h3 {
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 24px;
}
.access-info .addr {
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.access-info .access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.access-info .access-list li {
  display: flex;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-top: 1px dashed var(--line);
}
.access-info .access-list li:first-child { border-top: none; }
.access-info .access-list .badge {
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  height: fit-content;
  white-space: nowrap;
  font-weight: 600;
}
.access-map {
  background: var(--bg-soft);
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.access-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(199,93,62,0.18), 0 0 0 18px rgba(199,93,62,0.08);
  animation: pinPulse 2.4s ease-in-out infinite;
}
.access-map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(199,93,62,0.18), 0 0 0 18px rgba(199,93,62,0.08); }
  50% { box-shadow: 0 0 0 12px rgba(199,93,62,0.28), 0 0 0 26px rgba(199,93,62,0.0); }
}
.access-map-label {
  position: absolute;
  top: calc(50% - 60px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: #fff;
  padding: 8px 14px;
  border: 1px solid var(--primary);
  white-space: nowrap;
}
.access-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,68,56,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,68,56,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.access-map-road {
  position: absolute;
  background: rgba(0,0,0,0.06);
}
.access-map-road.h { left:0; right:0; height:24px; top:38%; }
.access-map-road.v { top:0; bottom:0; width:24px; left:32%; }
.access-map-road.d { 
  width: 280px; height: 8px; transform: rotate(-30deg);
  top: 70%; left: 12%; background: rgba(199,93,62,0.18);
}
.access-map-name {
  position: absolute;
  font-family: var(--font-display-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
}

/* Real maps: 本部 + 江坂事務所 stacked in the access grid's right cell */
.access-maps {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  background: var(--bg-soft);
}
.access-map-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.access-map-item + .access-map-item { border-top: 1.5px solid var(--line); }
.access-map-cap {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--primary);
  padding: 12px 18px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.access-map-cap .cap-note { font-size: 11px; color: var(--accent); letter-spacing: 0.04em; }
.access-iframe {
  width: 100%;
  flex: 1;
  min-height: 168px;
  border: 0;
  display: block;
}

/* Paired access cards — 住所と地図を同一カードで対にして対応を明確化 */
.access-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.access-loc {
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.access-loc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px 0;
  flex-wrap: wrap;
}
.access-loc-head .loc-badge {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  padding: 8px 20px;
  border-radius: 100px;
}
.access-loc-head .loc-badge.visit { background: var(--accent); }
.access-loc-head .loc-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.access-loc-head .loc-visit {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.access-loc-addr {
  padding: 16px 26px 20px;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.access-loc-addr .tel {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.access-loc .access-iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-top: 1px solid var(--line);
  display: block;
  flex: none;
  min-height: 0;
}
.access-hours {
  margin-top: 24px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}
.access-hours strong { color: var(--accent); }
@media (max-width: 880px) {
  .access-pair { grid-template-columns: 1fr; gap: 20px; }
  .access-loc .access-iframe { height: 260px; }
}

/* Industry icons — 農業・製造・建設 をイラスト表現 (home DATA section) */
.ind-icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 12px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.ind-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.ind-card-icon { width: 54px; height: 54px; color: var(--primary); margin-bottom: 14px; }
.ind-card-icon svg { width: 100%; height: 100%; }
.ind-card-label { font-family: var(--font-serif); font-weight: 700; font-size: 18px; letter-spacing: 0.1em; color: var(--ink); }
.ind-card-en { font-family: var(--font-display-en); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-mute); margin-top: 4px; }
.ind-icons-note { margin-top: 20px; font-size: 12px; line-height: 1.9; color: var(--ink-mute); letter-spacing: 0.04em; }

/* =========================================================
   Voice cards (cases page)
   ========================================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.voice-card {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-radius: 24px;
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-display-en);
  font-size: 72px;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}
.voice-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.voice-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.voice-who { display: flex; flex-direction: column; }
.voice-who .nm {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.voice-who .info {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 4px;
}
.voice-body {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.voice-body strong {
  color: var(--primary);
  font-weight: 600;
}

/* =========================================================
   Process flow — horizontal (特定技能 受入の流れ)
   ========================================================= */
.hflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 32px;
  position: relative;
}
.hflow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.hstep {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.hstep-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--font-display-en);
  font-size: 20px;
  margin-bottom: 20px;
}
.hstep.accent .hstep-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.hstep-label {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 10px;
  min-height: 50px;
}
.hstep-body {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* =========================================================
   Service / business list (組合案内 事業内容)
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 20px;
  transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.service-num {
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.service-title {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.08em;
  color: var(--primary);
  line-height: 1.6;
}
.service-body {
  font-size: 13.5px;
  line-height: 2;
  color: var(--ink-soft);
}

/* =========================================================
   Curriculum (入国後講習 のご案内)
   ========================================================= */
.curriculum {
  display: grid;
  grid-template-columns: 80px 1fr 240px;
  gap: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.curriculum:not(:first-of-type) { border-top: none; }
.curriculum .wk {
  font-family: var(--font-display-en);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.curriculum .ttl {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 4px;
}
.curriculum .body { font-size: 13px; color: var(--ink-soft); line-height: 1.9; }
.curriculum .hours {
  font-family: var(--font-display-en);
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-align: right;
}

@media (max-width: 960px) {
  .entries, .access-grid, .voice-grid, .service-grid { grid-template-columns: 1fr; }
  .hflow { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .hflow::before { display: none; }
  .access-map { min-height: 280px; }
  .curriculum { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
}

/* =========================================================
   DIAGRAMS — illustrative, friendly, info-graphic style
   ========================================================= */

/* Reassurance trio (3つの安心) — home page below hero */
.assurance-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  margin-top: -56px;
  position: relative;
  z-index: 20;
  box-shadow: 0 32px 64px -32px rgba(15,42,38,0.18);
  isolation: isolate;
  border-radius: 24px;
  overflow: hidden;
}
.assurance-item {
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-right: 1px solid var(--line);
  position: relative;
}
.assurance-item:last-child { border-right: none; }
.assurance-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.assurance-item:nth-child(1) .assurance-icon { background: rgba(14,130,118,0.14); color: var(--primary); }
.assurance-item:nth-child(2) .assurance-icon { background: rgba(242,92,61,0.16); color: var(--accent); }
.assurance-item:nth-child(3) .assurance-icon { background: rgba(46,143,204,0.16); color: var(--sky); }
.assurance-label {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.assurance-title {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--ink);
}
.assurance-title strong { color: var(--primary); font-weight: 600; }

/* Diagram cards — pop, soft, info-graphic friendly */
.dgm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px clamp(24px, 4vw, 64px);
  position: relative;
}
.dgm-card-pop {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  border-radius: 32px;
  border: 1.5px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(15,42,38,0.18);
  padding: 56px clamp(24px, 4vw, 56px) 48px;
}
.dgm-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.lg-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.lg-dot {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  display: inline-block;
}
.lg-dot-dash {
  width: 22px;
  height: 0;
  border-top: 2px dashed #B2BCBC;
  background: transparent;
}
.dgm-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.6;
}
.dgm-sub {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 40px;
}

/* PATHWAY DIAGRAM (特定技能になるには) */
.pathway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
/* Pathway routes — pop variant */
.pathway-route {
  background: var(--bg-soft);
  border-radius: 20px;
  border: 2px solid transparent;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.pathway-route:hover { transform: translateY(-6px); border-color: var(--primary); }
.pathway-route.b { background: var(--bg-blush); }
.pathway-route.b:hover { border-color: var(--accent); }
.pathway-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 600;
}
.pathway-route.b .pathway-badge { background: var(--accent); }
.pathway-route h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--primary);
}
.pathway-route.b h3 { color: var(--accent); }
.pathway-route .sub-cond {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.pathway-req {
  background: #fff;
  border: 1.5px dashed var(--line);
  padding: 18px;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink);
  text-align: left;
  border-radius: 14px;
}
.pathway-req .lbl {
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
.pathway-route.b .pathway-req .lbl { color: var(--accent); }
.pathway-arrow-down {
  display: flex;
  justify-content: center;
  margin: 18px 0 0;
}
.pathway-arrow-down svg { color: var(--primary); }
.pathway-route.b .pathway-arrow-down svg { color: var(--accent); }
.pathway-merge {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff;
  padding: 36px 40px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  position: relative;
}
.pathway-merge::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: var(--primary);
}
.pathway-merge h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #fff;
}
.pathway-merge p { font-size: 13.5px; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; line-height: 1.8; }
.pathway-merge .badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.pathway-next {
  grid-column: 1 / -1;
  background: var(--gold);
  color: #fff;
  padding: 22px 32px;
  text-align: center;
  border-radius: 100px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.1em;
}
.pathway-next .arrow-up {
  display: inline-block;
  margin-right: 12px;
  transform: rotate(-90deg);
}

/* RELATIONSHIP DIAGRAM (登録支援機関の役割) */
.relation-svg {
  width: 100%;
  height: auto;
  max-width: 920px;
  margin: 0 auto;
  display: block;
}

/* TIMELINE 8 years */
.timeline {
  position: relative;
  padding: 60px 0 40px;
}
.timeline-track {
  position: relative;
  height: 96px;
  display: flex;
  border-radius: 100px;
  overflow: hidden;
}
.timeline-phase {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  padding: 0 20px;
}
.timeline-phase.p1 { background: var(--primary); flex: 3; }
.timeline-phase.p2 { background: var(--accent); flex: 5; }
.timeline-phase.p3 { background: var(--gold); flex: 2; }
/* 依頼 #30：フェーズの継ぎ目に矢印を出し、左から右への時間の流れを示す */
.timeline-phase.p1::after,
.timeline-phase.p2::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid rgba(255,255,255,0.9);
  border-right: 2px solid rgba(255,255,255,0.9);
  transform: translateY(-50%) rotate(45deg);
}
/* 依頼 #30：帯の上に「時間の流れ →」を明示 */
.timeline-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.timeline-flow .tf-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  white-space: nowrap;
}
.timeline-flow .tf-arrow {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(199,93,62,0.18), var(--primary));
}
.timeline-flow .tf-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}
.timeline-phase .ph-label {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.timeline-phase .ph-years {
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.85;
  margin-top: 4px;
}
.timeline-years {
  display: grid;
  /* 0〜8年の9目盛り＋「9年目以降」の集約セル（2目盛り分の幅） */
  grid-template-columns: repeat(9, 1fr) 2fr;
  margin-top: 12px;
  padding: 0;
  align-items: start;
}
.timeline-year {
  text-align: center;
  font-family: var(--font-display-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  position: relative;
}
.timeline-year::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 6px;
  background: var(--line);
}
/* 「9年目以降｜特定技能2号（更新上限なし）」— 特定技能2号のゴールド帯に対応 */
.timeline-year-tail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 4px;
}
.timeline-year-tail .ty-main {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
}
.timeline-year-tail .ty-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--ink-mute);
  text-align: center;
}

.timeline-cap {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.timeline-cap-item {
  text-align: center;
  padding: 0 16px;
}
.timeline-cap-item .num {
  font-family: var(--font-display-en);
  font-size: 36px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-cap-item.p1 .num { color: var(--primary); }
.timeline-cap-item.p2 .num { color: var(--accent); }
.timeline-cap-item.p3 .num { color: var(--gold); }
.timeline-cap-item .lbl {
  font-family: var(--font-serif);
  font-size: 16.5px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 4px;
}
.timeline-cap-item .desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.timeline-arrow {
  position: absolute;
  top: -22px;
  left: 30%;
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: var(--bg);
  padding: 0 10px;
}
.timeline-arrow::after {
  content: "↓";
  display: block;
  text-align: center;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .assurance-bar { grid-template-columns: 1fr; margin-top: 0; }
  .assurance-item { border-right: none; border-bottom: 1px solid var(--line); }
  .pathway { grid-template-columns: 1fr; }
  .timeline-cap { grid-template-columns: 1fr; }
  .timeline-track { flex-direction: column; height: auto; }
  .timeline-phase { padding: 16px 20px; }
  /* 依頼 #30：縦積み時は矢印も下向きに */
  .timeline-phase.p1::after,
  .timeline-phase.p2::after {
    right: 50%;
    top: auto;
    bottom: 6px;
    transform: translateX(50%) rotate(135deg);
  }
  .timeline-years { display: none; }
}

/* ============================================================
   FEATURES — 3つの特徴 (育成就労) — Bold colored panels
   ============================================================ */
.features-bold {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-panel {
  position: relative;
  padding: 56px 36px 40px;
  border-radius: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  overflow: hidden;
}
.feat-panel.c1 { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%); }
.feat-panel.c2 { background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%); }
.feat-panel.c3 { background: linear-gradient(160deg, var(--gold) 0%, #D89509 100%); }
.feat-panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.feat-panel::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.feat-panel > * { position: relative; z-index: 1; }
.feat-bignum {
  font-family: var(--font-display-en);
  font-size: 84px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  opacity: 0.95;
  margin-bottom: 4px;
}
.feat-tag {
  font-family: var(--font-sans-en);
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
}
.feat-h {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.feat-p {
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.94);
}

/* ============================================================
   PROCESS TIMELINE — 7-step VERTICAL story (育成就労)
   ============================================================ */
.ptl {
  position: relative;
  padding-left: 0;
  margin-top: 12px;
}
.ptl-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  position: relative;
  padding-bottom: 28px;
}
.ptl-row::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 96px;
  bottom: -12px;
  width: 3px;
  background: var(--line);
  border-radius: 100px;
}
.ptl-row:last-child::before { display: none; }
.ptl-row .ptl-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display-en);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  z-index: 1;
  box-shadow: 0 10px 24px -8px rgba(14,130,118,0.4);
  position: relative;
}
.ptl-row.accent .ptl-badge {
  background: var(--accent);
  box-shadow: 0 10px 28px -8px rgba(242,92,61,0.55);
}
.ptl-row.accent::before { background: linear-gradient(180deg, var(--accent) 0%, var(--line) 60%); }
.ptl-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color .3s, transform .3s;
}
.ptl-row:hover .ptl-card { border-color: var(--primary); transform: translateX(4px); }
.ptl-row.accent .ptl-card { border-color: var(--accent); background: linear-gradient(135deg, #fff 0%, var(--bg-blush) 100%); }
.ptl-card-text h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 8px;
}
.ptl-card-text p {
  font-size: 13.5px;
  line-height: 1.9;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.ptl-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ptl-row.accent .ptl-card-icon { background: var(--bg-blush); color: var(--accent); }

/* ============================================================
   SUPPORT — 10 items, 2-PHASE GROUPED COLUMNS (特定技能)
   ============================================================ */
.sup-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sup-phase {
  background: #fff;
  border-radius: 28px;
  border: 2px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sup-phase-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sup-phase.a .sup-phase-header { background: var(--primary); color: #fff; }
.sup-phase.b .sup-phase-header { background: var(--accent); color: #fff; }
.sup-phase-tag {
  font-family: var(--font-display-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 700;
  opacity: 0.85;
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 100px;
}
.sup-phase-title {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.sup-phase-body { padding: 12px 16px 24px; }
.sup-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 16px;
  border-radius: 14px;
  align-items: center;
  transition: background .25s;
}
.sup-item:hover { background: var(--bg-soft); }
.sup-phase.b .sup-item:hover { background: var(--bg-blush); }
.sup-item-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display-en);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.sup-phase.a .sup-item-num { background: var(--primary); }
.sup-phase.b .sup-item-num { background: var(--accent); }
.sup-item-text .h {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 3px;
}
.sup-item-text .p {
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============================================================
   FIELDS — 16 industries by CATEGORY ZONES (特定技能)
   ============================================================ */
.fz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fz-zone {
  border-radius: 28px;
  padding: 32px 28px 28px;
  position: relative;
}
.fz-zone.z1 { background: linear-gradient(160deg, rgba(14,130,118,0.13) 0%, rgba(14,130,118,0.04) 100%); border: 2px solid rgba(14,130,118,0.25); }
.fz-zone.z2 { background: linear-gradient(160deg, rgba(242,92,61,0.13) 0%, rgba(242,92,61,0.04) 100%); border: 2px solid rgba(242,92,61,0.25); }
.fz-zone.z3 { background: linear-gradient(160deg, rgba(245,178,33,0.16) 0%, rgba(245,178,33,0.04) 100%); border: 2px solid rgba(245,178,33,0.28); }
.fz-zone.z4 { background: linear-gradient(160deg, rgba(46,143,204,0.13) 0%, rgba(46,143,204,0.04) 100%); border: 2px solid rgba(46,143,204,0.25); }
.fz-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.fz-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.fz-zone.z1 .fz-icon { background: var(--primary); }
.fz-zone.z2 .fz-icon { background: var(--accent); }
.fz-zone.z3 .fz-icon { background: var(--gold); }
.fz-zone.z4 .fz-icon { background: var(--sky); }
.fz-title {
  display: flex;
  flex-direction: column;
}
.fz-title .en {
  font-family: var(--font-display-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 4px;
}
.fz-zone.z1 .fz-title .en { color: var(--primary); }
.fz-zone.z2 .fz-title .en { color: var(--accent); }
.fz-zone.z3 .fz-title .en { color: #C58400; }
.fz-zone.z4 .fz-title .en { color: var(--sky); }
.fz-title .jp {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ink);
}
.fz-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fz-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 100px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.08);
  transition: transform .25s;
}
.fz-chip:hover { transform: translateY(-2px); }
.fz-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fz-zone.z1 .fz-chip .dot { background: var(--primary); }
.fz-zone.z2 .fz-chip .dot { background: var(--accent); }
.fz-zone.z3 .fz-chip .dot { background: var(--gold); }
.fz-zone.z4 .fz-chip .dot { background: var(--sky); }

/* Industry tiles — 業種ごとに大きなロゴ＋名称で一目で分かる図解 */
.fz-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fz-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 8px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
}
.fz-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.09); }
.fz-item-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.fz-item-icon svg { width: 34px; height: 34px; }
.fz-item-label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.4;
}
.fz-zone.z1 .fz-item-icon { background: var(--primary); }
.fz-zone.z2 .fz-item-icon { background: var(--accent); }
.fz-zone.z3 .fz-item-icon { background: var(--gold); }
.fz-zone.z4 .fz-item-icon { background: var(--sky); }

/* ============================================================
   JOURNEY (受入れ・キャリア形成フロー／全7ステップ) — .journey7 名前空間
   修正対応報告書 2-5 で表形式化 → 簡素化（2026-08）で
   段階帯／ステップ（期間チップ入り）／実施内容 の 3 段構成に。
   7 ステップ列の CSS Grid（ラベル列なし）。
   Desktop = マトリクス（>1000px） / Mobile = フェーズ単位の縦積み（<=1000px）
   未使用スタイル（.j7-head/.j7-lede/.j7-rowlabel/.j7-dur/.j7-place/.j7-support 等）は
   復活できるよう残置。
   ============================================================ */
.journey7 {
  --j-ink:#1a0a0a; --j-paper:#fbf5ee; --j-red:#c8102e; --j-red-deep:#8e0b20;
  --j-rule:#e3c9b8; --j-line:#dcd5d2; --j-tint:#fdecee; --j-tint-line:#f2c7ce;
  --j-label:#8a8482;
  --j-t1:#1a0a0a; --j-t2:#26100f; --j-t3:#331714;
  --j-t4:#c8102e; --j-t5:#b60f2a; --j-t6:#a00d25;
  --j-gap:7px; --j-labelw:126px;
  position: relative;
  color: var(--j-ink);
  background:
    radial-gradient(1000px 500px at 12% -10%, #f7e3d4 0%, transparent 60%),
    radial-gradient(800px 460px at 110% 110%, #f1d6d6 0%, transparent 55%),
    var(--j-paper);
  border: 1px solid var(--j-rule);
  border-radius: 20px;
  padding: 34px 34px 26px;
  overflow: hidden;
}
.journey7::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  opacity:.05; mix-blend-mode:multiply;
  background-image: radial-gradient(rgba(0,0,0,.6) 1px, transparent 1px);
  background-size: 3px 3px;
}
.journey7 > * { position:relative; z-index:1; }

/* ---- 図版ラベル ＋ ステップ数バッジ ---- */
.journey7 .j7-bar { display:flex; align-items:flex-end; justify-content:space-between; gap:18px; }
.journey7 .j7-bar-title {
  font-family:"Noto Sans JP",sans-serif; font-weight:900; letter-spacing:.02em; line-height:1.3;
  font-size:clamp(15px, 1.5vw, 19px);
}
.journey7 .j7-bar-badge {
  flex:none; border:2px solid var(--j-red); color:var(--j-red);
  font-size:13px; font-weight:900; letter-spacing:.08em; padding:4px 14px; white-space:nowrap;
}
.journey7 .j7-rule { height:5px; background:var(--j-red); margin-top:9px; }
.journey7 .j7-rule + .j7-head { margin-top:14px; }

/* ---- 要約 ＋ 凡例 ---- */
.journey7 .j7-head { display:flex; align-items:stretch; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.journey7 .j7-lede {
  flex:1 1 380px; margin:0; padding:10px 16px; list-style:none;
  border:1px solid var(--j-line); background:rgba(255,255,255,.62);
}
.journey7 .j7-lede li { font-size:13.5px; line-height:1.75; }
.journey7 .j7-lede li + li { margin-top:4px; }
.journey7 .j7-lede li::before { content:"・"; margin-left:-1em; }
.journey7 .j7-lede li { padding-left:1em; }
.journey7 .j7-legend {
  flex:0 0 auto; display:flex; align-items:center; gap:14px;
  border:1px solid var(--j-line); background:#fff; padding:9px 14px;
}
.journey7 .j7-legend-ttl {
  background:var(--j-ink); color:#fff; font-size:12px; font-weight:700;
  letter-spacing:.24em; padding:4px 6px 4px 10px; flex:none;
}
.journey7 .j7-legend ul { margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:5px; }
.journey7 .j7-legend li { display:flex; align-items:center; gap:8px; font-size:12.5px; white-space:nowrap; }
.journey7 .j7-sw { width:26px; height:12px; display:inline-block; flex:none; box-sizing:border-box; }
.journey7 .j7-sw.p1 { background:var(--j-ink); }
.journey7 .j7-sw.p2 { background:var(--j-red); }
.journey7 .j7-sw.p3 { background:#fff; border:2px solid var(--j-red); }

/* ---- Desktop マトリクス（簡素化でラベル列を廃止し 7 列のみに） ---- */
.journey7 .j7-matrix {
  display:grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: var(--j-gap); row-gap:12px;
  align-items:stretch;
  margin-top:16px;
}
.journey7 .j7-rowlabel {
  display:flex; align-items:center; justify-content:center; text-align:center;
  border:2px solid var(--j-red); border-radius:5px; color:var(--j-red);
  font-size:14px; font-weight:900; line-height:1.35; padding:8px 4px;
}
.journey7 .j7-rowlabel.plain {
  border:0; border-radius:0; color:var(--j-label);
  font-size:12px; font-weight:700; letter-spacing:.2em; padding:0;
}

/* PHASE 帯 */
.journey7 .j7-phase {
  text-align:center; font-size:13px; font-weight:700; padding-bottom:5px;
  align-self:end;
}
.journey7 .j7-phase.p1 { color:var(--j-ink);      border-bottom:2px solid var(--j-ink); }
.journey7 .j7-phase.p2 { color:var(--j-red);      border-bottom:2px solid var(--j-red); }
.journey7 .j7-phase.p3 { color:var(--j-red-deep); border-bottom:2px dashed var(--j-red); }

/* ステップの流れ（シェブロン） */
.journey7 .j7-step {
  position:relative; display:flex; align-items:center; gap:5px; min-width:0;
  color:#fff; padding:10px 14px 10px 16px; min-height:86px; box-sizing:border-box;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
  animation: j7in .55s cubic-bezier(.2,.7,.3,1) both;
  animation-delay: calc(var(--i, 1) * .07s);
}
.journey7 .j7-step.t1 { background:var(--j-t1); }
.journey7 .j7-step.t2 { background:var(--j-t2); }
.journey7 .j7-step.t3 { background:var(--j-t3); }
.journey7 .j7-step.t4 { background:var(--j-t4); }
.journey7 .j7-step.t5 { background:var(--j-t5); }
.journey7 .j7-step.t6 { background:var(--j-t6); }
/* STEP7 は「白地＋赤枠」。clip-path が border を切ってしまうため、
   赤い下地の上に 2px 内側の白いシェブロンを重ねて縁取りを再現する。 */
.journey7 .j7-step.t7 { background:var(--j-red); color:var(--j-red-deep); }
.journey7 .j7-step.t7::before {
  content:""; position:absolute; inset:2px; background:#fff;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%, 11px 50%);
}
.journey7 .j7-step.t7 > * { position:relative; z-index:1; }
.journey7 .j7-step-n {
  flex:none; width:26px; height:26px; border-radius:50%; background:#fff; color:var(--j-ink);
  display:grid; place-items:center; font-size:13.5px; font-weight:900; line-height:1;
}
.journey7 .j7-step.t4 .j7-step-n,
.journey7 .j7-step.t5 .j7-step-n { color:var(--j-red); }
.journey7 .j7-step.t6 .j7-step-n { color:var(--j-t6); }
.journey7 .j7-step.t7 .j7-step-n { background:var(--j-red); color:#fff; }
.journey7 .j7-step-txt { min-width:0; display:flex; flex-direction:column; gap:3px; }
.journey7 .j7-step-h {
  min-width:0; font-size:clamp(10.5px, 0.92vw, 12.5px); font-weight:700; line-height:1.45;
  word-break:auto-phrase; text-wrap:pretty;
}
/* 期間チップ（簡素化：独立行だった「期間の目安」を矢羽内に統合） */
.journey7 .j7-step-dur {
  font-size:10.5px; font-weight:700; letter-spacing:.04em; line-height:1.3;
  color:rgba(255,255,255,.78); white-space:nowrap;
}
.journey7 .j7-step.t7 .j7-step-dur { color:var(--j-red-deep); opacity:.75; white-space:normal; }

/* 期間の目安（簡素化で行ごと非表示に。復活できるようスタイルは残置） */
.journey7 .j7-dur {
  display:flex; align-items:center; justify-content:center; text-align:center;
  background:var(--j-tint); border:1px solid var(--j-tint-line); color:var(--j-red-deep);
  font-size:13.5px; font-weight:700; padding:7px 4px;
}
.journey7 .j7-dur.is-end { background:var(--j-ink); border-color:var(--j-ink); color:#fff; }

/* 実施内容 */
.journey7 .j7-desc {
  background:#fff; border:1px solid var(--j-line); border-top:3px solid var(--j-ink);
  padding:12px 12px; font-size:13px; line-height:1.75; color:#3b1d18;
  word-break:auto-phrase; text-wrap:pretty;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.journey7 .j7-desc.p2 { border-top-color:var(--j-red); }
.journey7 .j7-desc.p3 { background:var(--j-tint); border-color:var(--j-tint-line); border-top:3px solid var(--j-red); }
.journey7 .j7-desc:hover { transform:translateY(-4px); border-color:var(--j-red); box-shadow:0 10px 22px rgba(200,16,46,.16); }

/* 拠点（結合セル） */
.journey7 .j7-place {
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-size:12px; line-height:1.5; font-weight:700; padding:8px 5px; letter-spacing:0;
  word-break:auto-phrase; text-wrap:pretty;
}
.journey7 .j7-place.g1 { background:#f3f1ef; border:1px solid #d6d0cd; color:var(--j-ink); }
.journey7 .j7-place.g2 { background:var(--j-ink); color:#fff; }
.journey7 .j7-place.g3 { background:var(--j-red); color:#fff; }
.journey7 .j7-place.g4 { background:#fff; border:2px solid var(--j-red); color:var(--j-red-deep); }

/* 支援体制（結合セル） */
.journey7 .j7-support {
  display:flex; align-items:center; justify-content:center; text-align:center;
  background:rgba(255,255,255,.7); border:1px dashed var(--j-red); color:var(--j-red-deep);
  font-size:12.5px; line-height:1.6; padding:8px 6px;
}

@keyframes j7in { from { opacity:0; transform:translateX(-16px); } to { opacity:1; transform:none; } }

/* ---- 出発地 → 到着地 ---- */
.journey7 .j7-foot {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  margin-top:20px; padding-top:14px; border-top:2px solid var(--j-ink);
}
.journey7 .j7-foot-end { display:flex; align-items:center; gap:11px; }
.journey7 .j7-foot-end .ico {
  width:38px; height:38px; border-radius:50%; flex:none; display:grid; place-items:center;
  border:2px solid var(--j-ink); background:#fff; color:var(--j-ink);
  font-size:15px; font-weight:900; line-height:1;
}
.journey7 .j7-foot-end.right .ico { background:var(--j-red); border-color:var(--j-red); color:#fff; }
.journey7 .j7-foot-end .txt { font-size:14.5px; font-weight:700; line-height:1.4; }
.journey7 .j7-foot-end.right .txt { text-align:right; }
.journey7 .j7-foot-end small {
  display:block; font-size:10.5px; font-weight:700; letter-spacing:.22em; color:#a09a97; margin-bottom:2px;
}
.journey7 .j7-foot-dash {
  flex:1 1 auto; height:2px; min-width:24px;
  background:repeating-linear-gradient(90deg, var(--j-red) 0 12px, transparent 12px 24px);
}
.journey7 .j7-note { margin:12px 0 0; font-size:12px; line-height:1.7; color:#6b6564; }

/* ---- Mobile：拠点セグメント単位の縦積み ---- */
.journey7 .j7-stack { display:none; }
.journey7 .j7-mseg { border:1px solid var(--j-line); background:rgba(255,255,255,.72); padding:12px 12px 10px; }
.journey7 .j7-mseg + .j7-mseg { margin-top:10px; }
.journey7 .j7-mseg-top { display:flex; flex-wrap:wrap; align-items:baseline; gap:6px 12px; margin-bottom:10px; }
.journey7 .j7-mseg-phase { font-size:12.5px; font-weight:700; color:var(--j-ink); }
.journey7 .j7-mseg.p2 .j7-mseg-phase { color:var(--j-red); }
.journey7 .j7-mseg.p3 .j7-mseg-phase { color:var(--j-red-deep); }
.journey7 .j7-mseg-place { font-size:12.5px; font-weight:700; color:#3b1d18; }
.journey7 .j7-mseg-place b, .journey7 .j7-mseg-support b {
  display:inline-block; background:var(--j-ink); color:#fff; font-size:10px; font-weight:700;
  letter-spacing:.14em; padding:2px 6px; margin-right:7px; vertical-align:1px;
}
.journey7 .j7-msteps { margin:0; padding:0; list-style:none; }
.journey7 .j7-mstep { border-left:5px solid var(--j-ink); background:#fff; padding:10px 12px 12px; }
.journey7 .j7-mstep + .j7-mstep { margin-top:8px; }
.journey7 .j7-mstep.t4, .journey7 .j7-mstep.t5, .journey7 .j7-mstep.t6 { border-left-color:var(--j-red); }
.journey7 .j7-mstep.t7 { border-left-color:var(--j-red); background:var(--j-tint); }
.journey7 .j7-mstep-top { display:flex; align-items:center; gap:10px; }
.journey7 .j7-mstep-n {
  flex:none; width:30px; height:30px; border-radius:50%; display:grid; place-items:center;
  background:var(--j-ink); color:#fff; font-size:15px; font-weight:900; line-height:1;
}
.journey7 .j7-mstep.t4 .j7-mstep-n, .journey7 .j7-mstep.t5 .j7-mstep-n,
.journey7 .j7-mstep.t6 .j7-mstep-n, .journey7 .j7-mstep.t7 .j7-mstep-n { background:var(--j-red); }
.journey7 .j7-mstep h3 {
  margin:0; font-family:"Noto Sans JP",sans-serif; font-weight:900;
  font-size:15.5px; line-height:1.4; letter-spacing:.01em;
}
.journey7 .j7-mdur {
  display:inline-block; margin:8px 0 6px; font-size:11.5px; font-weight:700; letter-spacing:.06em;
  color:var(--j-red-deep); background:var(--j-tint); border:1px solid var(--j-tint-line); padding:3px 8px;
}
.journey7 .j7-mstep p { margin:0; font-size:13px; line-height:1.8; color:#3b1d18; }
.journey7 .j7-mseg-support {
  margin-top:10px; font-size:12.5px; line-height:1.7; color:var(--j-red-deep);
  border:1px dashed var(--j-red); padding:8px 10px;
}

/* ---- responsive ---- */
@media (max-width: 1180px) {
  .journey7 { padding:28px 22px 24px; --j-labelw:104px; --j-gap:6px; }
  .journey7 .j7-rowlabel { font-size:12.5px; }
  .journey7 .j7-step { padding:10px 11px 10px 13px; min-height:78px; gap:5px; }
  .journey7 .j7-step-n { width:24px; height:24px; font-size:12px; }
  .journey7 .j7-desc { font-size:12px; padding:10px 9px; }
  .journey7 .j7-dur { font-size:12px; }
  .journey7 .j7-place { font-size:11px; }
  .journey7 .j7-support { font-size:11.5px; }
}
@media (max-width: 1000px) {
  .journey7 { padding:24px 16px 22px; }
  .journey7 .j7-matrix { display:none; }
  .journey7 .j7-stack { display:block; margin-top:16px; }
  .journey7 .j7-legend { flex:1 1 100%; }
  .journey7 .j7-legend li { white-space:normal; }
}
@media (max-width: 560px) {
  .journey7 .j7-bar { flex-direction:column; align-items:flex-start; gap:8px; }
  .journey7 .j7-foot { flex-direction:column; align-items:stretch; gap:12px; }
  .journey7 .j7-foot-dash { display:none; }
  .journey7 .j7-foot-end.right { justify-content:flex-end; }
  .journey7 .j7-legend { flex-direction:column; align-items:flex-start; gap:8px; }
}

@media (max-width: 960px) {
  .features-bold { grid-template-columns: 1fr; }
  .ptl-row { grid-template-columns: 72px 1fr; gap: 18px; }
  .ptl-row::before { left: 35px; }
  .ptl-row .ptl-badge { width: 72px; height: 72px; font-size: 22px; }
  .ptl-card { padding: 18px 22px; }
  .sup-phases, .fz-grid { grid-template-columns: 1fr; }
  .fz-chips { grid-template-columns: 1fr; }
}


/* ============================================================
   MOBILE — Hamburger menu + drawer
   ============================================================ */
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
  transition: background .25s, border-color .25s;
  flex-shrink: 0;
}
.menu-btn:hover { border-color: var(--primary); }
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin-left: -10px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 27px; }
.menu-btn.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  z-index: 1005;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s, transform .3s;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
  overflow-y: auto;
}
.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 24px 28px 60px;
  gap: 12px;
  min-height: 100%;
}
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1.5px solid var(--line);
  cursor: pointer;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .4s cubic-bezier(.2,.6,.2,1), transform .4s cubic-bezier(.2,.6,.2,1), background .25s;
}
.mobile-drawer.open .mobile-nav-link {
  opacity: 1;
  transform: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(14,130,118,0.04);
}
.mobile-nav-link .mn-en {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-display-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.mobile-nav-link .mn-jp {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: block;
}
.mobile-nav-link.active .mn-jp { color: var(--primary); }
.mobile-nav-link .mn-arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--ink-mute);
  align-self: center;
}
.mobile-nav-link.active .mn-arrow { color: var(--primary); }

.mobile-cta { margin-top: 28px; }
.mobile-contact {
  margin-top: 28px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--line);
}
.mobile-contact .mc-label {
  font-family: var(--font-sans-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.mobile-contact .mc-value {
  font-family: var(--font-display-en);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  line-height: 1.3;
}
.mobile-contact .mc-hours {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.08em;
}

/* ============================================================
   MOBILE — Layout overrides
   ============================================================ */
@media (max-width: 960px) {
  :root { --pad-x: 20px; }

  .menu-btn { display: block; }
  .topbar-inner { padding: 14px 20px; }
  .brand-mark { width: 40px; height: 40px; font-size: 19px; }
  .brand-name { font-size: 14px; letter-spacing: 0.06em; }
  .brand-name .small { font-size: 9px; letter-spacing: 0.15em; }

  /* Hero */
  .hero { height: 76vh; min-height: 460px; }
  /* 修正依頼 #31：被写体が右寄りのため、狭い幅では右側の人物が切れない位置に寄せる
     （左の白余白は画面外になるため、白スクリムを強めて文字の可読性を担保） */
  .hero-photo { background-position: 68% center; }
  .hero-photo::after { background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 46%, rgba(255,255,255,0.3) 78%, rgba(255,255,255,0) 100%); }
  .hero-inner { padding-bottom: 40px; }
  .hero-title { font-size: clamp(28px, 8vw, 44px); line-height: 1.4; margin-bottom: 20px; }
  .hero-sub { font-size: 14px; line-height: 1.9; margin-bottom: 28px; letter-spacing: 0.04em; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; padding: 16px 24px; }
  .hero-meta { display: none; }

  /* Assurance bar overlap removed on mobile */
  .assurance-bar { margin-top: 24px; }
  .assurance-item { padding: 24px 22px; }
  .assurance-icon { width: 52px; height: 52px; }
  .assurance-title { font-size: 14.5px; line-height: 1.55; }
  .assurance-title strong { font-size: 15px; }

  /* Section spacing */
  .section { padding: 30px 0; }
  .section.tight { padding: 22px 0; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 32px;
  }
  .section-head.center { align-items: center; }
  .section-title { font-size: clamp(22px, 6.5vw, 30px); letter-spacing: 0.06em; }

  /* Intro */
  .intro-side { position: static; }
  .intro-vlabel { writing-mode: horizontal-tb; margin-bottom: 20px; }
  .intro-en-big { font-size: clamp(48px, 14vw, 80px); line-height: 1; margin-bottom: 24px; }
  .intro-body h2 { font-size: 22px; line-height: 1.7; margin-bottom: 24px; }
  .intro-body p { font-size: 14px; line-height: 2; }

  /* Page hero */
  .page-hero { height: auto; min-height: 260px; max-height: none; }
  .page-hero-inner { padding: 24px var(--pad-x) 32px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 14px; }
  .page-hero .lead { font-size: 14px; line-height: 1.85; }
  .crumbs { font-size: 10px; margin-bottom: 18px; }

  /* USP block */
  .usp-block { grid-template-columns: 1fr; }
  .usp-image { min-height: 240px; }
  .usp-text { padding: 48px 24px; }

  /* Data section */
  .data-intro h3 { font-size: 22px; }
  .bar-row { grid-template-columns: 88px 1fr 50px; gap: 12px; }
  .bar-label { font-size: 13px; }
  .bar-value { font-size: 18px; }

  /* Two systems / sys-card */
  .sys-cover { height: 200px; }
  .sys-body { padding: 28px 24px 32px; }
  .sys-body h3 { font-size: 22px; }

  /* CTA band */
  .cta-band { padding: 44px 0; }
  .cta-band h2 { font-size: clamp(24px, 6.5vw, 32px); margin-bottom: 20px; }
  .cta-band p { font-size: 14px; margin-bottom: 32px; }
  .cta-band-contact { padding-top: 24px; gap: 24px; }
  .cta-contact-item .value { font-size: 22px; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-grid { gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; margin-top: 24px; align-items: flex-start; }

  /* News rows on mobile */
  .news-row { 
    grid-template-columns: 1fr; 
    gap: 8px; 
    padding: 18px 0;
    align-items: flex-start;
  }
  .news-row .arrow { display: none; }
  .news-row > .news-tag { justify-self: flex-start; }
  .news-date { font-size: 12px; }
  .news-title { font-size: 14px; }

  /* Strengths */
  .strength { padding: 36px 24px; }
  .strength-title { font-size: 18px; }

  /* Group cards (4 → 1 col) */
  .group-card { padding: 24px 22px; }

  /* Stats row */
  .stat { padding: 28px 16px; }
  .stat-num { font-size: 36px; }

  /* Comparison table — make scrollable */
  .comp-table { display: block; overflow-x: auto; white-space: nowrap; }
  .comp-table th, .comp-table td { padding: 14px 16px; font-size: 13px; }

  /* About message */
  .message-section { grid-template-columns: 1fr; gap: 40px; }
  .message-body h2 { font-size: 22px; line-height: 1.7; margin-bottom: 24px; }
  .message-portrait::after { display: none; }

  /* Info table */
  .info-table th { 
    display: block; 
    width: auto; 
    padding: 14px 0 0;
    font-size: 11px;
    letter-spacing: 0.18em;
    border-bottom: none;
  }
  .info-table td { display: block; padding: 4px 0 16px; font-size: 14px; }
  .info-table tr { padding: 6px 0; }

  /* History rows (沿革) */
  .history-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 0;
  }
  .history-row > :first-child { font-size: 22px !important; }
  .history-row > :nth-child(2) { font-size: 15px !important; }
  .history-row > :nth-child(3) { font-size: 13.5px; }

  /* Document rows (各種規定) */
  .doc-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 0;
  }
  .doc-row > :last-child {
    grid-column: 1 / -1;
    margin-top: 8px;
    text-align: center;
    width: fit-content;
  }

  /* Case detail page profile grid */
  .case-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Access list */
  .access-info { padding: 28px 24px; }
  .access-info .access-list li { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Contact form */
  .contact-form { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .case-link-block { grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; }
  .contact-actions .btn { padding: 18px 32px; font-size: 13px; }

  /* Diagrams */
  .features-bold { grid-template-columns: 1fr; gap: 16px; }
  .feat-panel { padding: 40px 28px 32px; min-height: auto; }
  .feat-bignum { font-size: 56px; }
  .feat-h { font-size: 18px; }
  
  .ptl-row { grid-template-columns: 60px 1fr; gap: 14px; padding-bottom: 22px; }
  .ptl-row::before { left: 29px; top: 70px; width: 2px; }
  .ptl-row .ptl-badge { width: 60px; height: 60px; font-size: 18px; box-shadow: 0 6px 16px -6px rgba(14,130,118,0.4); }
  .ptl-card { padding: 18px 18px; grid-template-columns: 1fr; gap: 12px; }
  .ptl-card-icon { width: 40px; height: 40px; align-self: flex-start; }
  .ptl-card-text h4 { font-size: 16px; margin-bottom: 6px; }
  .ptl-card-text p { font-size: 13px; line-height: 1.85; }

  .sup-phases { grid-template-columns: 1fr; gap: 18px; }
  .sup-phase-header { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .sup-phase-title { font-size: 17px; }
  .sup-item { padding: 14px 8px; grid-template-columns: 40px 1fr; gap: 14px; }
  .sup-item-num { width: 36px; height: 36px; font-size: 15px; }
  .sup-item-text .h { font-size: 14.5px; }
  .sup-item-text .p { font-size: 12px; }

  .fz-grid { grid-template-columns: 1fr; gap: 16px; }
  .fz-zone { padding: 24px 22px; }
  .fz-chips { grid-template-columns: 1fr 1fr; }
  .fz-chip { font-size: 12.5px; padding: 10px 12px; }
  .fz-title .jp { font-size: 16px; }

  /* Pathway */
  .pathway { grid-template-columns: 1fr; }
  .pathway-route { padding: 28px 22px; }
  .pathway-merge { grid-template-columns: 1fr; padding: 28px 24px; text-align: center; }
  .pathway-merge::before { display: none; }
  .pathway-merge h3 { font-size: 24px; }
  .pathway-next { font-size: 14px; padding: 18px 24px; }

  /* Timeline */
  .timeline-track { flex-direction: column; height: auto; border-radius: 20px; }
  .timeline-phase { padding: 16px 24px; flex-direction: row; justify-content: space-between; }
  .timeline-phase .ph-label { font-size: 16px; }
  .timeline-years { display: none; }
  .timeline-cap { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .timeline-cap-item .num { font-size: 28px; }

  /* Relation SVG scales naturally; legend wrap */
  .dgm-card-pop { padding: 32px 18px; border-radius: 24px; }
  .dgm-title { font-size: 20px; }
  .dgm-sub { font-size: 11px; letter-spacing: 0.15em; }
  .dgm-legend { gap: 8px 16px; }
  .lg-item { font-size: 12.5px; }

  /* Entries (6 cards) */
  .entry-card { padding: 28px 22px; min-height: auto; }
  .entry-title { font-size: 17px; }

  /* Service grid */
  .service-card { padding: 24px 22px; }
  .service-title { font-size: 17px; }

  /* Cases */
  .case-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-card h3 { font-size: 17px; }

  /* Voices */
  .voice-card { padding: 28px 24px; }

  /* News filters wrap nicely */
  .news-filters { gap: 6px; flex-wrap: wrap; }
  .news-filter { padding: 8px 14px; font-size: 11.5px; }

  /* Tweaks panel slightly smaller */
  .twk-panel { right: 12px; bottom: 12px; width: 260px; }

  /* Hero CTA stack */
  .btn { padding: 14px 22px; font-size: 12.5px; }
}

/* Very small phones */
@media (max-width: 480px) {
  :root { --pad-x: 16px; }
  .brand-name { font-size: 13px; }
  .brand-name .small { display: none; }
  .hero-kicker { font-size: 10px; gap: 12px; margin-bottom: 20px; }
  .hero-kicker::before { width: 24px; }
  .hero-title { font-size: clamp(26px, 7.5vw, 36px); }
  .strengths { grid-template-columns: 1fr; }
  .strength { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .fz-chips { grid-template-columns: 1fr; }
  .timeline-phase { flex-direction: column; gap: 4px; padding: 14px 20px; }
}

/* Ultra-narrow phones (<= 380px territory like iPhone SE 1st gen / small Androids) */
@media (max-width: 380px) {
  :root { --pad-x: 14px; }

  .topbar-inner { padding: 12px 14px; }
  .brand-mark { width: 36px; height: 36px; font-size: 16px; }
  .brand-name { font-size: 11.5px; letter-spacing: 0.04em; line-height: 1.4; }
  .menu-btn { width: 40px; height: 40px; }
  .menu-btn span { width: 18px; margin-left: -9px; }
  .menu-btn span:nth-child(1) { top: 13px; }
  .menu-btn span:nth-child(2) { top: 19px; }
  .menu-btn span:nth-child(3) { top: 25px; }
  .menu-btn.open span:nth-child(1) { top: 19px; }
  .menu-btn.open span:nth-child(3) { top: 19px; }

  /* Hero — extra-tight */
  .hero { min-height: 400px; height: 80vh; }
  .hero-inner { padding-bottom: 36px; }
  .hero-title { font-size: clamp(22px, 7vw, 30px); margin-bottom: 16px; letter-spacing: 0.04em; line-height: 1.45; }
  .hero-sub { font-size: 12.5px; line-height: 1.85; margin-bottom: 22px; }
  .hero-actions .btn { padding: 14px 18px; font-size: 11.5px; gap: 8px; }
  .btn { padding: 12px 18px; font-size: 11.5px; }

  /* Page hero */
  .page-hero { min-height: 220px; height: auto; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 28px); }
  .page-hero .lead { font-size: 12.5px; }

  /* Sections */
  .section { padding: 26px 0; }
  .section.tight { padding: 20px 0; }
  .section-title { font-size: clamp(20px, 6vw, 24px); }
  .section-num { font-size: 12px; letter-spacing: 0.2em; }
  .section-en { font-size: 10px; }

  /* Assurance bar */
  .assurance-item { padding: 18px 16px; gap: 14px; }
  .assurance-icon { width: 44px; height: 44px; }
  .assurance-label { font-size: 9px; letter-spacing: 0.2em; }
  .assurance-title { font-size: 13px; line-height: 1.5; }
  .assurance-title strong { font-size: 13.5px; }
  .assurance-title > span { font-size: 13px !important; }

  /* USP block */
  .usp-text { padding: 36px 18px; }
  .usp-text h2 { font-size: 22px; line-height: 1.6; }
  .usp-text p { font-size: 13px; line-height: 1.9; }

  /* Cards */
  .sys-cover { height: 170px; }
  .sys-body { padding: 22px 20px 28px; }
  .sys-body h3 { font-size: 19px; }
  .sys-body p { font-size: 13px; }
  .strength { padding: 28px 18px; }
  .strength-title { font-size: 16px; }
  .strength-body { font-size: 13px; }

  /* Stats — fit 2x2 */
  .stat { padding: 22px 12px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10.5px; letter-spacing: 0.12em; }

  /* Group cards */
  .group-card { padding: 22px 18px; border-radius: 16px; }
  .group-card .name { font-size: 16px; }
  .group-card .desc { font-size: 12px; }

  /* Bar chart */
  .bar-row { grid-template-columns: 70px 1fr 42px; gap: 8px; }
  .bar-label { font-size: 11.5px; letter-spacing: 0.02em; }
  .bar-value { font-size: 16px; }
  .bar-value .pct { font-size: 11px; }

  /* News */
  .news-row { padding: 16px 0; gap: 6px; }
  .news-date { font-size: 11px; }
  .news-tag { font-size: 10px; padding: 4px 10px; }
  .news-title { font-size: 13px; line-height: 1.7; }

  /* CTA band */
  .cta-band { padding: 36px 0; }
  .cta-band h2 { font-size: clamp(20px, 6.5vw, 26px); margin-bottom: 16px; line-height: 1.55; }
  .cta-band p { font-size: 13px; margin-bottom: 24px; }
  .cta-contact-item .value { font-size: 18px; }
  .cta-contact-item .label { font-size: 9px; }

  /* Form */
  .field input, .field select, .field textarea { padding: 12px 14px; font-size: 14px; }
  .field label { font-size: 12.5px; }
  .field .req { font-size: 9px; padding: 2px 7px; }
  .contact-actions .btn { padding: 16px 28px; font-size: 12.5px; }

  /* Diagrams */
  .feat-panel { padding: 32px 22px 28px; }
  .feat-bignum { font-size: 44px; }
  .feat-h { font-size: 16px; line-height: 1.5; }
  .feat-p { font-size: 12.5px; line-height: 1.85; }
  .feat-tag { font-size: 9.5px; letter-spacing: 0.2em; }

  .ptl-row { grid-template-columns: 48px 1fr; gap: 12px; padding-bottom: 18px; }
  .ptl-row::before { left: 23px; top: 56px; }
  .ptl-row .ptl-badge { width: 48px; height: 48px; font-size: 15px; }
  .ptl-card { padding: 16px 16px; gap: 10px; border-radius: 16px; }
  .ptl-card-text h4 { font-size: 14.5px; }
  .ptl-card-text p { font-size: 12px; line-height: 1.8; }
  .ptl-card-icon { width: 36px; height: 36px; border-radius: 10px; }

  .sup-phase { border-radius: 20px; }
  .sup-phase-header { padding: 16px 18px; }
  .sup-phase-title { font-size: 15px; }
  .sup-phase-tag { font-size: 10px; letter-spacing: 0.2em; padding: 4px 10px; }
  .sup-item { padding: 12px 6px; grid-template-columns: 34px 1fr; gap: 12px; }
  .sup-item-num { width: 32px; height: 32px; font-size: 13px; border-radius: 9px; }
  .sup-item-text .h { font-size: 13.5px; }
  .sup-item-text .p { font-size: 11.5px; line-height: 1.7; }

  .fz-zone { padding: 20px 16px; border-radius: 20px; }
  .fz-head { gap: 12px; margin-bottom: 18px; }
  .fz-icon { width: 42px; height: 42px; }
  .fz-title .en { font-size: 9.5px; }
  .fz-title .jp { font-size: 14.5px; }
  .fz-chip { font-size: 12px; padding: 9px 12px; }

  .pathway-route { padding: 22px 18px; }
  .pathway-route h3 { font-size: 18px; }
  .pathway-merge { padding: 22px 18px; }
  .pathway-merge h3 { font-size: 20px; }
  .pathway-next { font-size: 12.5px; padding: 14px 18px; line-height: 1.7; }

  .timeline-phase { padding: 12px 16px; }
  .timeline-phase .ph-label { font-size: 14px; }
  .timeline-phase .ph-years { font-size: 10px; }
  .timeline-cap-item .num { font-size: 24px; }
  .timeline-cap-item .lbl { font-size: 12.5px; }
  .timeline-cap-item .desc { font-size: 11.5px; line-height: 1.7; }

  .dgm-card-pop { padding: 24px 14px; border-radius: 18px; }
  .dgm-title { font-size: 17px; line-height: 1.55; }
  .dgm-sub { font-size: 10px; letter-spacing: 0.12em; margin-bottom: 24px; }
  .dgm-legend { gap: 6px 12px; padding-top: 18px; }
  .lg-item { font-size: 11.5px; }
  .lg-dot { width: 16px; }

  /* History/doc rows */
  .history-row { padding: 16px 0; }
  .history-row > :first-child { font-size: 20px !important; }
  .history-row > :nth-child(2) { font-size: 14px !important; }
  .history-row > :nth-child(3) { font-size: 13px; }
  .doc-row { padding: 18px 0; gap: 12px; }

  /* Footer */
  .footer { padding: 44px 0 24px; }
  .footer-grid { gap: 28px; padding-bottom: 28px; }
  .footer h4 { font-size: 12px; margin-bottom: 16px; }
  .footer-links a { font-size: 12.5px; }
  .footer-addr { font-size: 12px; }
  .footer-bottom { font-size: 10px; }

  /* Mobile drawer */
  .mobile-drawer { padding-top: 72px; }
  .mobile-drawer-inner { padding: 18px 20px 44px; }
  .mobile-nav-link { padding: 18px 4px; }
  .mobile-nav-link .mn-jp { font-size: 19px; }
  .mobile-nav-link .mn-en { font-size: 10px; }
  .mobile-contact { padding: 18px 18px; }
  .mobile-contact .mc-value { font-size: 22px; }

  /* Entries (6 cards) */
  .entry-card { padding: 22px 18px; min-height: auto; }
  .entry-title { font-size: 15.5px; }
  .entry-desc { font-size: 12.5px; }

  /* Service grid */
  .service-card { padding: 20px 18px; border-radius: 16px; }
  .service-title { font-size: 15.5px; }
  .service-body { font-size: 12.5px; }

  /* Cases */
  .case-photo { border-radius: 16px; }
  .case-card h3 { font-size: 15.5px; }
  .case-card p { font-size: 12.5px; }

  /* Voices */
  .voice-card { padding: 22px 18px; border-radius: 18px; }
  .voice-card .voice-body { font-size: 13px; line-height: 1.85; }
  .voice-who .nm { font-size: 14.5px; }
  .voice-avatar { width: 48px; height: 48px; }

  /* Tweaks tighter */
  .twk-panel { width: calc(100vw - 28px); right: 14px; bottom: 14px; }
}


/* Ultra-tight phones (<= 340px — old iPhone SE, fold devices folded, etc) */
@media (max-width: 340px) {
  :root { --pad-x: 12px; }
  .topbar-inner { padding: 10px 12px; }
  .brand-mark { width: 32px; height: 32px; font-size: 14px; }
  .brand-name { font-size: 10.5px; letter-spacing: 0.02em; }
  .menu-btn { width: 36px; height: 36px; }
  .menu-btn span { width: 16px; margin-left: -8px; }
  .menu-btn span:nth-child(1) { top: 11px; }
  .menu-btn span:nth-child(2) { top: 17px; }
  .menu-btn span:nth-child(3) { top: 23px; }
  .menu-btn.open span:nth-child(1) { top: 17px; }
  .menu-btn.open span:nth-child(3) { top: 17px; }

  .hero-title { font-size: 20px; letter-spacing: 0.02em; line-height: 1.5; }
  .hero-sub { font-size: 11.5px; letter-spacing: 0.02em; line-height: 1.8; }
  .hero-kicker { font-size: 9px; letter-spacing: 0.2em; gap: 8px; margin-bottom: 14px; }
  .hero-kicker::before { width: 18px; }
  .hero-actions .btn { padding: 12px 14px; font-size: 11px; gap: 6px; }
  .btn { padding: 10px 14px; font-size: 11px; gap: 6px; letter-spacing: 0.12em; }

  .page-hero h1 { font-size: 22px; }
  .page-hero .lead { font-size: 11.5px; }

  .section-title { font-size: 19px; letter-spacing: 0.04em; }
  .section-num { font-size: 11px; letter-spacing: 0.15em; }

  .feat-bignum { font-size: 36px; }
  .feat-h { font-size: 14.5px; }
  .feat-p { font-size: 11.5px; }

  .ptl-row { grid-template-columns: 40px 1fr; gap: 10px; }
  .ptl-row::before { left: 19px; top: 48px; }
  .ptl-row .ptl-badge { width: 40px; height: 40px; font-size: 13px; }
  .ptl-card { padding: 14px 14px; }
  .ptl-card-text h4 { font-size: 13.5px; }
  .ptl-card-text p { font-size: 11.5px; }
  .ptl-card-icon { width: 32px; height: 32px; }

  .sup-item { padding: 10px 4px; grid-template-columns: 30px 1fr; gap: 10px; }
  .sup-item-num { width: 28px; height: 28px; font-size: 11px; }
  .sup-item-text .h { font-size: 12.5px; }
  .sup-item-text .p { font-size: 11px; }

  .stat { padding: 18px 8px; }
  .stat-num { font-size: 24px; }

  .news-tag { font-size: 9px; padding: 3px 8px; }
  .news-filter { padding: 6px 12px; font-size: 11px; }
}


/* Mid-small phones (381–420px window — Galaxy S, smaller iPhones) */
@media (max-width: 420px) and (min-width: 381px) {
  :root { --pad-x: 16px; }
  .topbar-inner { padding: 12px 16px; }
  .brand-mark { width: 38px; height: 38px; font-size: 17px; }
  .brand-name { font-size: 12.5px; letter-spacing: 0.04em; }
  .menu-btn { width: 42px; height: 42px; }

  /* Hero */
  .hero { min-height: 440px; height: 78vh; }
  .hero-title { font-size: clamp(23px, 7.2vw, 32px); letter-spacing: 0.04em; }
  .hero-sub { font-size: 13px; line-height: 1.85; margin-bottom: 24px; }
  .hero-kicker { font-size: 10px; margin-bottom: 18px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 15px 20px; font-size: 12px; }

  /* Page hero */
  .page-hero { min-height: 240px; height: auto; }
  .page-hero h1 { font-size: clamp(24px, 7.2vw, 32px); }
  .page-hero .lead { font-size: 13px; }
  .crumbs { font-size: 10px; }

  /* Sections */
  .section { padding: 28px 0; }
  .section.tight { padding: 22px 0; }
  .section-title { font-size: clamp(21px, 6.2vw, 26px); }
  .section-head { margin-bottom: 28px; }

  /* Hero kicker chars need tighter spacing */
  .hero-kicker { letter-spacing: 0.22em; }

  /* Cards padding */
  .sys-body { padding: 24px 22px 28px; }
  .sys-body h3 { font-size: 20px; }
  .sys-cover { height: 180px; }
  .strength { padding: 32px 22px; }
  .strength-title { font-size: 17px; }
  .group-card { padding: 24px 20px; }

  /* Stats */
  .stat { padding: 24px 14px; }
  .stat-num { font-size: 30px; }

  /* USP block */
  .usp-text { padding: 40px 22px; }
  .usp-text h2 { font-size: 24px; line-height: 1.6; }

  /* CTA band */
  .cta-band { padding: 40px 0; }
  .cta-band h2 { font-size: clamp(22px, 6.5vw, 28px); }
  .cta-band p { font-size: 13.5px; }
  .cta-contact-item .value { font-size: 20px; }

  /* Diagrams */
  .feat-panel { padding: 36px 24px 30px; }
  .feat-bignum { font-size: 50px; }
  .feat-h { font-size: 17px; }
  .feat-p { font-size: 13px; }

  .ptl-row { grid-template-columns: 54px 1fr; gap: 12px; padding-bottom: 20px; }
  .ptl-row::before { left: 26px; top: 62px; }
  .ptl-row .ptl-badge { width: 54px; height: 54px; font-size: 16px; }
  .ptl-card { padding: 16px 18px; }
  .ptl-card-text h4 { font-size: 15px; }
  .ptl-card-text p { font-size: 12.5px; }

  .sup-phase-header { padding: 18px 20px; }
  .sup-phase-title { font-size: 16px; }
  .sup-item { padding: 13px 8px; grid-template-columns: 38px 1fr; gap: 13px; }
  .sup-item-num { width: 34px; height: 34px; font-size: 14px; }
  .sup-item-text .h { font-size: 14px; }
  .sup-item-text .p { font-size: 11.5px; }

  .fz-zone { padding: 22px 18px; }
  .fz-chip { font-size: 12px; padding: 9px 12px; }
  .fz-title .jp { font-size: 15.5px; }

  .pathway-route { padding: 26px 20px; }
  .pathway-route h3 { font-size: 19px; }
  .pathway-merge { padding: 26px 22px; }
  .pathway-merge h3 { font-size: 22px; }
  .pathway-next { font-size: 13px; padding: 16px 22px; }

  .timeline-phase { padding: 14px 20px; }
  .timeline-phase .ph-label { font-size: 14.5px; }
  .timeline-cap-item .num { font-size: 26px; }
  .timeline-cap-item .desc { font-size: 12px; }

  .dgm-card-pop { padding: 28px 16px; border-radius: 20px; }
  .dgm-title { font-size: 18px; }
  .dgm-sub { font-size: 10.5px; }

  /* History/doc rows */
  .history-row > :first-child { font-size: 21px !important; }
  .history-row > :nth-child(2) { font-size: 14.5px !important; }
  .history-row > :nth-child(3) { font-size: 13px; }

  /* Bar chart */
  .bar-row { grid-template-columns: 78px 1fr 46px; gap: 10px; }
  .bar-label { font-size: 12px; }
  .bar-value { font-size: 17px; }

  /* News */
  .news-title { font-size: 13.5px; }

  /* Form */
  .field input, .field select, .field textarea { padding: 13px 14px; font-size: 14px; }
  .field label { font-size: 12.5px; }
  .contact-actions .btn { padding: 17px 30px; font-size: 13px; }

  /* Entries (6) */
  .entry-card { padding: 26px 20px; }
  .entry-title { font-size: 16px; }
  .entry-desc { font-size: 13px; }

  /* Service grid */
  .service-card { padding: 22px 20px; }
  .service-title { font-size: 16px; }
  .service-body { font-size: 13px; }

  /* Cases */
  .case-card h3 { font-size: 16px; }
  .case-card p { font-size: 13px; }

  /* Voices */
  .voice-card { padding: 26px 22px; }
  .voice-card .voice-body { font-size: 13.5px; }

  /* Footer */
  .footer { padding: 48px 0 26px; }
  .footer-grid { gap: 32px; padding-bottom: 32px; }

  /* Mobile drawer */
  .mobile-nav-link .mn-jp { font-size: 20px; }
  .mobile-contact { padding: 20px 20px; }
  .mobile-contact .mc-value { font-size: 24px; }
}

/* =========================================================
   TOP PAGE — bold gothic typeface + larger text (client request)
   Hero と共有CTAバンドは元の明朝のまま維持。サイズはclampで
   モバイルでも崩れないよう自動スケール。
   ========================================================= */
/* Top page: 明朝(--font-serif)を使う全要素をゴシックへ。Top viewのタイトルのみ明朝を維持。
   ヘッダー/フッターも含めるため、ホームページのラッパー全体にスコープ（他ページは従来の明朝のまま）。 */
[data-screen-label="page: home"] {
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  /* 英字の装飾フォントもゴシック(Inter)へ。One. Stop. のみ下で Cormorant に戻す */
  --font-display-en: "Inter", "Noto Sans JP", system-ui, sans-serif;
}
.home-main h1, .home-main h2, .home-main h3, .home-main h4,
.home-main .serif,
.home-main .section-title, .home-main .entry-title,
.home-main .intro-vlabel, .home-main .group-card .name,
.home-main .dgm-title {
  font-weight: 700;
}
/* ヒーロー見出しもゴシックに（明朝例外は撤廃。--font-serif=ゴシックにフォールバック） */
/* keep ONLY "One. Stop." in the decorative Cormorant display */
.home-main .intro-en-big, .home-main .intro-en-big .accent {
  font-family: "Cormorant Garamond", "Shippori Mincho B1", serif;
}

/* larger text across the top-page sections (2nd pass — もっと大きく) */
.home-main .section-title   { font-size: clamp(24px, 4.4vw, 54px); font-weight: 800; line-height: 1.35; white-space: nowrap; }
@media (max-width: 768px) { .home-main .section-title { white-space: normal; } }

/* =========================================================
   育成就労ページ(#ikusei) — トップと同様にゴシック化＋文字拡大
   PageHeroの見出し(ページのトップ見出し)のみ明朝を維持
   ========================================================= */
[data-screen-label="page: ikusei"] {
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-display-en: "Inter", "Noto Sans JP", system-ui, sans-serif;
}
/* larger text */
[data-screen-label="page: ikusei"] .page-hero .kicker { font-size: 14px; font-weight: 600; }
[data-screen-label="page: ikusei"] .page-hero .lead { font-size: clamp(15px, 1.4vw, 18px); }
[data-screen-label="page: ikusei"] .section-num { font-size: 17px; font-weight: 600; }
[data-screen-label="page: ikusei"] .section-en { font-size: 16px; font-weight: 600; }
[data-screen-label="page: ikusei"] .section-title { font-size: clamp(26px, 4vw, 50px); font-weight: 800; }
[data-screen-label="page: ikusei"] .prose h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; }
[data-screen-label="page: ikusei"] .prose h3 { font-size: clamp(19px, 1.8vw, 23px); }
[data-screen-label="page: ikusei"] .prose p,
[data-screen-label="page: ikusei"] .prose li { font-size: clamp(15.5px, 1.3vw, 17.5px); }
/* 修正依頼 #37：制度の要点の表の文字を拡大 */
[data-screen-label="page: ikusei"] .info-table th,
[data-screen-label="page: ikusei"] .info-table td { font-size: clamp(16px, 1.4vw, 19px); }
[data-screen-label="page: ikusei"] .curriculum .ttl { font-size: 17.5px; }
[data-screen-label="page: ikusei"] .curriculum .body { font-size: 14.5px; }
/* 修正依頼 #36：3つの特徴の見出しを拡大（01〜03共通） */
[data-screen-label="page: ikusei"] .feat-h { font-size: clamp(22px, 2.6vw, 30px); }
[data-screen-label="page: ikusei"] .feat-p { font-size: clamp(14px, 1.2vw, 16px); }
[data-screen-label="page: ikusei"] .usp-text h2 { font-size: clamp(26px, 3.4vw, 42px); }
/* 文字数の多い見出し（入国後講習の OUR ADVANTAGE）— 意図した改行位置を保てるサイズに */
[data-screen-label="page: ikusei"] .usp-text h2.usp-h2-long { font-size: clamp(23px, 2.6vw, 33px); }
[data-screen-label="page: ikusei"] .usp-text p { font-size: clamp(15px, 1.25vw, 17px); }
.home-main .section-num     { font-size: 17px; }
.home-main .section-en      { font-size: 16px; }
.home-main .intro-vlabel    { font-size: 19px; }
.home-main .intro-body h2   { font-size: clamp(28px, 3.9vw, 48px); font-weight: 800; }
.home-main .intro-body p    { font-size: clamp(16px, 1.35vw, 19px); }
/* 依頼 #26：エントリーカードの文字を拡大（強みカードと同スケール）、余白も追従。
   説明文の全削除に伴い、見出し＋READ MORE 構成に合わせて高さを引き締め */
.home-main .entry-title     { font-size: clamp(21px, 2.1vw, 29px); }
.home-main .entry-desc      { font-size: clamp(15.5px, 1.25vw, 18px); }
.home-main .entry-card      { padding: 40px 36px 34px; gap: 14px; min-height: 190px; }
.home-main .entry-num       { font-size: 14px; }
.home-main .entry-arrow     { font-size: 13px; margin-top: 4px; }
/* 3つの安心（ASSURANCE）— 他セクションの拡大に合わせて未調整だったため引き上げ */
.home-main .assurance-title { font-size: clamp(15px, 1.55vw, 22px); }
.home-main .assurance-title strong { font-size: inherit; }
.home-main .strength-title  { font-size: clamp(21px, 2.1vw, 29px); }
.home-main .strength-body   { font-size: clamp(15.5px, 1.25vw, 18px); }
.home-main .hspt-title      { font-size: clamp(16px, 1.35vw, 20px); }
.home-main .data-intro h3   { font-size: clamp(27px, 3.6vw, 46px); font-weight: 800; }
.home-main .data-intro p    { font-size: clamp(16px, 1.3vw, 18.5px); }
.home-main .sys-body h3     { font-size: clamp(24px, 2.9vw, 34px); }
.home-main .sys-body p      { font-size: clamp(15.5px, 1.25vw, 18px); }
.home-main .sys-meta-item .k { font-size: 13px; }
.home-main .sys-meta-item .v { font-size: 16px; }
.home-main .group-card .name { font-size: clamp(19px, 1.8vw, 24px); }
.home-main .group-card .desc { font-size: clamp(14px, 1.1vw, 16.5px); }
.home-main .usp-text h2     { font-size: clamp(28px, 4.1vw, 54px); }
.home-main .usp-text p      { font-size: clamp(15.5px, 1.3vw, 18px); }
.home-main .stat-label      { font-size: clamp(11.5px, 1.05vw, 14.5px); }
/* timeline diagram (通算最大8年) — readable larger title/sub */
.home-main .dgm-title       { font-size: clamp(24px, 2.9vw, 34px); }
.home-main .dgm-sub         { font-size: 14.5px; letter-spacing: 0.16em; }

/* 英語のサブラベル（GROUP STRUCTURE / 4 COMPANIES — ONE MISSION 等）も
   セリフ(Cormorant)からゴシック(Inter)へ */
.home-main .section-num,
.home-main .section-en,
.home-main .entry-num,
.home-main .strength-num,
.home-main .en-sub,
.home-main .dgm-sub {
  font-family: var(--font-sans-en);
  font-weight: 600;
}

/* =========================================================
   特定技能ページ(#tokutei) — トップ/育成就労と同様にゴシック化＋拡大
   ========================================================= */
[data-screen-label="page: tokutei"] {
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-display-en: "Inter", "Noto Sans JP", system-ui, sans-serif;
}
[data-screen-label="page: tokutei"] .page-hero .kicker { font-size: 14px; font-weight: 600; }
[data-screen-label="page: tokutei"] .page-hero .lead { font-size: clamp(15px, 1.4vw, 18px); }
[data-screen-label="page: tokutei"] .section-num { font-size: 17px; font-weight: 600; }
[data-screen-label="page: tokutei"] .section-en { font-size: 16px; font-weight: 600; }
[data-screen-label="page: tokutei"] .section-title { font-size: clamp(26px, 4vw, 50px); font-weight: 800; }
[data-screen-label="page: tokutei"] .prose h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; }
[data-screen-label="page: tokutei"] .prose h3 { font-size: clamp(19px, 1.8vw, 23px); }
[data-screen-label="page: tokutei"] .prose p,
[data-screen-label="page: tokutei"] .prose li { font-size: clamp(15.5px, 1.3vw, 17.5px); }
[data-screen-label="page: tokutei"] .hstep-label { font-size: clamp(15px, 1.4vw, 17px); }
[data-screen-label="page: tokutei"] .hstep-body { font-size: clamp(13px, 1.1vw, 14.5px); }

/* =========================================================
   16業種ダイアグラム (特定技能) — 提供デザイン準拠 / 全クラス ind- で名前空間化
   PC=2カラム / モバイル=1カラム（英字ラベルは非表示）
   ========================================================= */
/* カテゴリごとの分野数が 4/5/5/5 と揃わないため、2カラムのタイル配置だと
   分野数の少ないカテゴリの下に大きな余白ができてしまう。
   → カテゴリを「横1本の帯」にし、見出しを左・分野カードを右に置く構成へ変更。
     カードは --cols（＝そのカテゴリの分野数）で常に横幅いっぱいに並ぶため、
     分野数が違っても余白が生まれない。 */
.ind16-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.ind-cat {
  --ic:#A41B30; --ic-soft:#FCEFF1; --ic-line:#E9C8CE;
  background:#fff; border:1px solid var(--ic-line); border-radius:18px;
  padding:24px 26px; position:relative; overflow:hidden;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,.18);
  display:grid; grid-template-columns:240px 1fr; gap:26px; align-items:center;
}
.ind-cat.c1 { --ic:#A41B30; --ic-soft:#FCEFF1; --ic-line:#E9C8CE; }
.ind-cat.c2 { --ic:#D63247; --ic-soft:#FDF1F3; --ic-line:#EFCDD3; }
.ind-cat.c3 { --ic:#B33A2A; --ic-soft:#FBEEEA; --ic-line:#EAC9C0; }
.ind-cat.c4 { --ic:#6E1226; --ic-soft:#F7EBEE; --ic-line:#DDBFC6; }
/* 帯レイアウトの連番は見出し内の小さなラベル（巨大な背面数字は文字と重なるため廃止） */
.ind-cat-num {
  font-family:var(--font-sans-en); font-weight:800; font-size:12px; line-height:1;
  color:var(--ic); opacity:.55; letter-spacing:.14em; margin-bottom:7px;
}
/* バッジを上、テキストを下に積むことで見出しの折り返しを防ぐ */
.ind-cat-head { display:flex; flex-direction:column; align-items:flex-start; gap:14px; margin-bottom:0; }
.ind-cat-badge {
  width:56px; height:56px; border-radius:14px; background:var(--ic);
  display:grid; place-items:center; color:#fff; flex:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.ind-cat-badge svg { width:28px; height:28px; }
.ind-cat-text { min-width:0; }
.ind-eyebrow {
  font-family:var(--font-sans-en); letter-spacing:.1em; font-size:10.5px; font-weight:600;
  color:var(--ic); text-transform:uppercase; margin-bottom:6px; line-height:1.5;
}
.ind-cat-title {
  font-family:var(--font-serif); font-weight:700; font-size:20px; letter-spacing:.03em; color:var(--ink);
  line-height:1.45;
}
/* --cols はそのカテゴリの分野数（JSX から指定）。4分野でも5分野でも横幅いっぱいに並ぶ */
.ind-subs { display:grid; grid-template-columns:repeat(var(--cols, 5), minmax(0, 1fr)); gap:12px; align-content:start; }
.ind-sub {
  background:linear-gradient(180deg,#fff 0%, var(--ic-soft) 100%);
  border:1px solid var(--ic-line); border-radius:14px;
  padding:18px 10px 14px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  min-width:0; transition:transform .25s ease, box-shadow .25s ease;
}
.ind-sub:hover { transform:translateY(-2px); box-shadow:0 14px 28px -16px rgba(110,18,38,.4); }
.ind-sub-icon {
  width:64px; height:64px; border-radius:50%; background:var(--ic);
  display:grid; place-items:center; color:#fff; position:relative; flex:none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}
.ind-sub-icon::after {
  content:""; position:absolute; inset:-5px; border-radius:50%;
  border:1px dashed var(--ic); opacity:.4;
}
.ind-sub-icon svg { width:34px; height:34px; }
/* 出入国在留管理庁の公式英訳をそのまま表示するため名称が長い。カードが細い帯レイアウトでは
   折り返し前提にする（nowrap だとはみ出す）。同じ行のカードはグリッドで高さが揃う。 */
.ind-sub-en {
  font-family:var(--font-sans-en); font-size:9.5px; letter-spacing:.06em; font-weight:600;
  color:var(--ic); text-transform:uppercase; opacity:.9;
  white-space:normal; line-height:1.45; text-align:center; word-break:break-word;
  display:flex; align-items:center; justify-content:center; flex:1;
}
.ind-sub-name {
  font-family:var(--font-serif); font-weight:700; font-size:14px; letter-spacing:.01em;
  color:var(--ink); line-height:1.35; text-align:center;
}
.ind16-note { margin-top:24px; font-size:12px; color:var(--ink-mute); letter-spacing:.06em; line-height:1.8; }
@media (max-width: 1100px) {
  /* 帯の見出しを上に、分野カードを下に積む */
  .ind-cat { grid-template-columns:1fr; gap:16px; align-items:start; }
  .ind-cat-head { flex-direction:row; align-items:center; gap:14px; }
  .ind-subs { grid-template-columns:repeat(auto-fit, minmax(120px, 1fr)); }
}
@media (max-width: 860px) {
  .ind16-grid { grid-template-columns:1fr; gap:16px; }
  .ind-cat { padding:18px 14px 16px; }
  .ind-cat-head { gap:12px; margin-bottom:0; }
  .ind-cat-badge { width:44px; height:44px; border-radius:12px; }
  .ind-cat-badge svg { width:22px; height:22px; }
  .ind-cat-title { font-size:17px; }
  /* 2カラム＋末尾の奇数枚を横いっぱいに広げ、狭幅でも余白が割れないようにする */
  .ind-subs { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:10px; }
  .ind-subs > .ind-sub:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .ind-sub { padding:16px 6px 14px; }
  .ind-sub-icon { width:52px; height:52px; }
  .ind-sub-icon svg { width:28px; height:28px; }
  .ind-sub-en { display:none; }
  .ind-sub-name { font-size:12.5px; }
  .ind-cat-num { font-size:11px; margin-bottom:5px; }
}

/* =========================================================
   組合案内ページ(#about) — トップ等と同様にゴシック化＋拡大
   PageHeroの見出しのみ明朝を維持
   ========================================================= */
[data-screen-label="page: about"] {
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-display-en: "Inter", "Noto Sans JP", system-ui, sans-serif;
}
[data-screen-label="page: about"] .page-hero .kicker { font-size: 14px; font-weight: 600; }
[data-screen-label="page: about"] .page-hero .lead { font-size: clamp(15px, 1.4vw, 18px); }
[data-screen-label="page: about"] .section-num { font-size: 17px; font-weight: 600; }
[data-screen-label="page: about"] .section-en { font-size: 16px; font-weight: 600; }
[data-screen-label="page: about"] .section-title { font-size: clamp(26px, 4vw, 50px); font-weight: 800; }
[data-screen-label="page: about"] .message-body h2 { font-size: clamp(28px, 3.6vw, 42px); }
[data-screen-label="page: about"] .message-body p { font-size: clamp(15.5px, 1.3vw, 17.5px); }
[data-screen-label="page: about"] .message-sign .nm { font-size: 24px; }
[data-screen-label="page: about"] .info-table th,
[data-screen-label="page: about"] .info-table td { font-size: clamp(15px, 1.2vw, 16.5px); }
[data-screen-label="page: about"] .service-num { font-size: 14px; }
[data-screen-label="page: about"] .service-title { font-size: clamp(19px, 1.9vw, 23px); }
[data-screen-label="page: about"] .service-body { font-size: clamp(14px, 1.15vw, 15.5px); }
[data-screen-label="page: about"] .group-card .name { font-size: clamp(18px, 1.7vw, 22px); }
[data-screen-label="page: about"] .group-card .desc { font-size: clamp(13px, 1.05vw, 15px); }
[data-screen-label="page: about"] .access-loc-head .loc-name { font-size: 18px; }
[data-screen-label="page: about"] .access-loc-addr { font-size: clamp(14.5px, 1.2vw, 16px); }

/* =========================================================
   残りの下層ページ — 活躍事例/お知らせ/お問い合わせ/プライバシー/各種規定/詳細
   トップ等と同様にゴシック化＋拡大。各PageHero見出しのみ明朝を維持。
   ========================================================= */
:is([data-screen-label="page: cases"],
    [data-screen-label="page: news"],
    [data-screen-label="page: contact"],
    [data-screen-label="page: privacy"],
    [data-screen-label="page: regulations"],
    [data-screen-label="page: news-detail"],
    [data-screen-label="page: case-detail"],
    [data-screen-label="page: faq"]) {
  --font-serif: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-display-en: "Inter", "Noto Sans JP", system-ui, sans-serif;
}
/* shared size bumps (only for the pages above, via :is) */
:is([data-screen-label="page: cases"],[data-screen-label="page: news"],[data-screen-label="page: contact"],[data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: case-detail"]) .section-title { font-size: clamp(26px, 4vw, 50px); font-weight: 800; }
:is([data-screen-label="page: cases"],[data-screen-label="page: news"],[data-screen-label="page: contact"],[data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: news-detail"],[data-screen-label="page: case-detail"]) .section-num { font-size: 17px; font-weight: 600; }
:is([data-screen-label="page: cases"],[data-screen-label="page: news"],[data-screen-label="page: contact"],[data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: case-detail"]) .section-en { font-size: 16px; font-weight: 600; }
:is([data-screen-label="page: cases"],[data-screen-label="page: news"],[data-screen-label="page: contact"],[data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: case-detail"]) .page-hero .kicker { font-size: 14px; font-weight: 600; }
:is([data-screen-label="page: cases"],[data-screen-label="page: news"],[data-screen-label="page: contact"],[data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: case-detail"]) .page-hero .lead { font-size: clamp(15px, 1.4vw, 18px); }
:is([data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: news-detail"],[data-screen-label="page: case-detail"]) .prose h2 { font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; }
:is([data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: news-detail"],[data-screen-label="page: case-detail"]) .prose h3 { font-size: clamp(18px, 1.7vw, 22px); }
:is([data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: news-detail"],[data-screen-label="page: case-detail"]) .prose p,
:is([data-screen-label="page: privacy"],[data-screen-label="page: regulations"],[data-screen-label="page: news-detail"],[data-screen-label="page: case-detail"]) .prose li { font-size: clamp(15.5px, 1.3vw, 17.5px); }
:is([data-screen-label="page: regulations"],[data-screen-label="page: case-detail"]) .info-table th,
:is([data-screen-label="page: regulations"],[data-screen-label="page: case-detail"]) .info-table td { font-size: clamp(15px, 1.2vw, 16.5px); }
:is([data-screen-label="page: news"],[data-screen-label="page: news-detail"]) .news-title { font-size: clamp(15px, 1.3vw, 17.5px); }
:is([data-screen-label="page: news"],[data-screen-label="page: news-detail"]) .news-date { font-size: 13px; }
[data-screen-label="page: cases"] .case-card h3 { font-size: clamp(16px, 1.5vw, 19px); }
[data-screen-label="page: cases"] .voice-body { font-size: clamp(14px, 1.2vw, 16px); }
/* 活躍事例ヒーロー：シェフの顔が上寄りのため、切り抜き位置を上に調整 */
[data-screen-label="page: cases"] .page-hero-photo { background-position: center 22%; }
/* FAQヒーロー：女性の頭が切れないよう、切り抜き位置を上に調整 */
[data-screen-label="page: faq"] .page-hero-photo { background-position: center 15%; }
[data-screen-label="page: contact"] .field label { font-size: 15px; }
[data-screen-label="page: contact"] .field input,
[data-screen-label="page: contact"] .field select,
[data-screen-label="page: contact"] .field textarea { font-size: 15.5px; }
[data-screen-label="page: contact"] .contact-side h3 { font-size: 17px; }

/* =========================================================
   2026-06 改修（議事録 §7／追加コンテンツ §4-2・§5・§9）
   - フォントを太めに（視認性・安心感の強化）
   - SUPPORT グリッド／FAQ アコーディオン／フッターSNS／参照リンク
   ========================================================= */

/* §7 フォントを太めに：本文・見出しの font-weight を全体的に底上げ */
body { font-weight: 600; }
.section-title, .hero-title, .serif, h1, h2, h3 { font-weight: 800; }
.strength-body, .service-body, .prose p, .prose li, .info-table td { font-weight: 600; }
.nav-link, .footer-links a { font-weight: 600; }

/* strength アイコンの下地を赤系トーンへ（旧テーマのティール残りを是正） */
.strength-icon { background: var(--bg-soft); }

/* SUPPORT（6項目）— .strengths を流用しつつ、2行で折り返す際の罫線を整える */
.support-grid .strength:nth-child(3n) { border-right: none; }
.support-grid .strength:nth-child(n+4) { border-top: 1px solid var(--line); }
@media (max-width: 860px) {
  .support-grid .strength { border-right: none; border-top: 1px solid var(--line); }
  .support-grid .strength:first-child { border-top: none; }
}

/* §7 事業内容（SERVICES）まわりの縦幅を圧縮（要・目視確認） */
[data-screen-label="page: about"] .service-card { padding: 28px 24px; }

/* フッター SNS */
.footer-sns { display: flex; gap: 12px; margin-top: 20px; }
.footer-sns .sns-link {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all .25s;
}
.footer-sns .sns-link:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.08); }

/* FAQ アコーディオン */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.faq-item { border: 1px solid var(--line); background: #fff; transition: border-color .25s; }
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 26px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-sans);
}
.faq-q-mark {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--primary); color: #fff;
  font-family: var(--font-display-en); font-weight: 700; font-size: 16px;
  border-radius: 50%;
}
.faq-q-text { flex: 1; font-size: 16px; font-weight: 700; line-height: 1.6; color: var(--ink); letter-spacing: 0.02em; }
.faq-q-icon { flex: none; color: var(--primary); transition: transform .3s; transform: rotate(90deg); }
.faq-item.open .faq-q-icon { transform: rotate(-90deg); }
.faq-a {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 0 26px 26px 26px;
  border-top: 1px solid var(--bg-soft);
}
.faq-a-mark {
  flex: none;
  width: 32px; height: 32px; margin-top: 18px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--primary);
  font-family: var(--font-display-en); font-weight: 700; font-size: 16px;
  border-radius: 50%;
}
.faq-a-text { flex: 1; padding-top: 18px; }
.faq-a-text p { font-size: 14.5px; line-height: 2; color: var(--ink-soft); font-weight: 600; margin: 0; }
.faq-a-link { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }

/* FAQ ページの見出し等を他ページと同等の拡大トーンに合わせる */
[data-screen-label="page: faq"] .section-title { font-size: clamp(26px, 4vw, 50px); font-weight: 800; }
[data-screen-label="page: faq"] .page-hero .kicker { font-size: 14px; font-weight: 600; }

/* =========================================================
   NEW FIELDS — 新たに対象となった分野への訴求（ホーム DATA セクション内）
   修正依頼 p.4
   ========================================================= */
.newfield {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 260px 1fr;
  border: 1px solid var(--primary); background: #fff;
}
.nf-side {
  background: var(--primary); color: #fff; padding: 34px 30px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
}
.nf-badge {
  align-self: flex-start; font-family: var(--font-sans-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; color: var(--primary); background: #fff; padding: 6px 14px; border-radius: 999px;
}
.nf-side-note { font-size: 13px; line-height: 1.9; letter-spacing: 0.04em; color: rgba(255,255,255,0.9); }
.nf-body { padding: 34px 36px 32px; }
.nf-body h3 {
  font-family: var(--font-serif); font-size: clamp(21px, 2.5vw, 28px); line-height: 1.6;
  letter-spacing: 0.06em; color: var(--ink); margin: 0 0 18px;
}
.nf-body p { font-size: 14.5px; line-height: 2.05; color: var(--ink-soft); margin: 0 0 14px; }
.nf-body p strong { color: var(--primary); font-weight: 700; }
.nf-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 22px; }
.nf-chips span {
  font-size: 12.5px; letter-spacing: 0.06em; padding: 7px 14px;
  border: 1px solid var(--line); color: var(--ink-soft); background: var(--bg-soft);
}
.nf-chips span.is-new { border-color: var(--primary); color: var(--primary); background: #fff; font-weight: 700; }
.nf-cta { margin-top: 2px; }

@media (max-width: 860px) {
  .newfield { grid-template-columns: 1fr; }
  .nf-side { flex-direction: row; align-items: center; padding: 20px 22px; }
  .nf-body { padding: 26px 22px 26px; }
}

/* =========================================================
   SUPPORT × 7 STEPS — 組合によるサポート（育成就労ページ）
   修正依頼 p.12：7ステップと連動させるため、各カードに対応ステップ表示を持たせる
   ========================================================= */
.spt-intro {
  max-width: 760px; margin: 0 auto 40px; text-align: center;
  font-size: 15px; line-height: 2.1; color: var(--ink-soft); letter-spacing: 0.03em;
}
.spt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spt-card {
  background: #fff; border: 1px solid var(--line); padding: 26px 26px 20px;
  display: flex; flex-direction: column; transition: box-shadow .3s ease, transform .3s ease;
}
.spt-card:hover { box-shadow: 0 24px 44px -28px rgba(0,0,0,.35); transform: translateY(-2px); }
.spt-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.spt-num { font-family: var(--font-sans-en); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; color: var(--ink-mute); }
.spt-steps {
  font-family: var(--font-sans-en); font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  color: #fff; background: var(--primary); padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.spt-icon {
  width: 50px; height: 50px; margin: 4px 0 14px; border-radius: 50%;
  display: grid; place-items: center; background: var(--bg-soft); color: var(--primary); flex: none;
}
.spt-title { font-family: var(--font-serif); font-size: 17.5px; line-height: 1.6; letter-spacing: 0.06em; color: var(--ink); margin: 0 0 8px; }
.spt-body { font-size: 13.5px; line-height: 1.95; color: var(--ink-soft); margin: 0; flex: 1; }
/* 7ステップのインジケータ（直上の7ステップ図と対応。カード上部に配置） */
.spt-dots { display: flex; align-items: center; gap: 6px; margin-top: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.spt-dots-label { font-family: var(--font-sans-en); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--ink-mute); margin-right: 4px; }
.spt-dot {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-sans-en); font-size: 11px; font-weight: 600;
  color: var(--ink-mute); background: var(--bg-soft); border: 1px solid var(--line);
}
.spt-dot.on { color: #fff; background: var(--primary); border-color: var(--primary); font-weight: 700; }

@media (max-width: 1000px) { .spt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .spt-grid { grid-template-columns: 1fr; }
  .spt-card { padding: 22px 20px 18px; }
  .spt-intro { margin-bottom: 28px; font-size: 14px; }
}

/* =========================================================
   NORTIQ Stats Section v2 — 実績と対応分野（ホームDATA下部）
   全クラスを sv- でスコープし既存スタイルと衝突回避。赤はブランド色に統一。
   ========================================================= */
.statsv2 {
  --sv-red: var(--primary);
  --sv-ink: var(--ink);
  --sv-ink-soft: var(--ink-soft);
  --sv-ink-faint: var(--ink-mute);
  --sv-rule: var(--line);
  --sv-font-num: "Barlow Condensed", var(--font-sans-en), sans-serif;
  --sv-font-en: "Barlow", var(--font-sans-en), sans-serif;
  margin-top: clamp(40px, 5vw, 64px);
  font-family: var(--font-sans);
  color: var(--sv-ink);
}

/* header */
.sv-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 26px; border-bottom: 2px solid var(--sv-ink); }
.sv-head-left { display: flex; align-items: center; gap: 18px; }
.sv-accent { width: 6px; height: 40px; background: var(--sv-red); border-radius: 3px; flex: none; }
.sv-jp { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; letter-spacing: 0.05em; color: var(--sv-ink); }
.sv-meta { font-family: var(--sv-font-en); font-size: 12px; letter-spacing: 0.16em; color: var(--sv-ink-faint); text-transform: uppercase; padding-bottom: 4px; white-space: nowrap; }

/* stats */
.sv-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.sv-stat { position: relative; padding: 38px 30px 34px; }
.sv-stat + .sv-stat::before { content: ""; position: absolute; left: 0; top: 32px; bottom: 28px; width: 1px; background: var(--sv-rule); }
.sv-tick { font-family: var(--sv-font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--sv-ink-faint); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.sv-tick::before { content: ""; width: 14px; height: 2px; background: var(--sv-red); }
.sv-num { font-family: var(--sv-font-num); font-weight: 700; line-height: 0.84; color: var(--sv-red); display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.sv-num .sv-big { font-size: clamp(48px, 5vw, 78px); }
.sv-pre { font-family: var(--font-sans); font-weight: 900; font-size: clamp(20px, 2.2vw, 32px); align-self: center; color: var(--sv-ink); }
.sv-unit { font-family: var(--font-sans); font-weight: 700; font-size: 18px; color: var(--sv-ink-soft); }
.sv-label { margin-top: 18px; font-size: 16px; font-weight: 700; letter-spacing: 0.06em; color: var(--sv-ink); white-space: nowrap; }

/* red sector band */
.sv-band { margin-top: 28px; background: var(--sv-red); border-radius: 4px; display: grid; grid-template-columns: 200px repeat(3, 1fr); overflow: hidden; box-shadow: 0 26px 50px -28px rgba(200, 16, 46, 0.55); }
.sv-intro { padding: 40px 32px; color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 14px; background: rgba(0, 0, 0, 0.06); }
.sv-kicker { font-family: var(--sv-font-en); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); }
.sv-intro-big { font-size: clamp(20px, 2.2vw, 26px); font-weight: 900; line-height: 1.35; letter-spacing: 0.02em; color: #fff; }
.sv-chip { align-self: flex-start; font-family: var(--sv-font-num); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; color: var(--sv-red); background: #fff; border-radius: 999px; padding: 4px 14px; }
.sv-sector { position: relative; padding: 40px 24px 36px; text-align: center; color: #fff; transition: background 0.35s ease; }
.sv-sector + .sv-sector, .sv-intro + .sv-sector { border-left: 1px solid rgba(255, 255, 255, 0.22); }
.sv-sector:hover { background: rgba(255, 255, 255, 0.08); }
.sv-idx { position: absolute; top: 18px; right: 20px; font-family: var(--sv-font-num); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.55); }
.sv-icon { width: 58px; height: 58px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.45); }
.sv-icon svg { width: 30px; height: 30px; stroke: #fff; }
.sv-name { font-size: 22px; font-weight: 900; letter-spacing: 0.16em; color: #fff; }
.sv-en { margin-top: 9px; font-family: var(--sv-font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }

/* 対応可能な全分野一覧（赤帯の直下）— カテゴリ別のテキスト一覧で全分野を明示する */
.sv-fields { margin-top: 18px; border: 1px solid var(--sv-rule); border-radius: 4px; background: #fff; padding: 22px 26px 24px; }
.sv-fields-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--sv-rule); }
.sv-fields-title { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; color: var(--sv-ink); display: flex; align-items: baseline; gap: 12px; }
.sv-fields-en { font-family: var(--sv-font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sv-red); }
.sv-fields-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; letter-spacing: 0.08em; color: var(--sv-red); cursor: pointer; white-space: nowrap; }
.sv-fields-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.sv-fields-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 26px; }
.sv-fcat + .sv-fcat { border-left: 1px solid var(--sv-rule); padding-left: 26px; }
.sv-fcat-name { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--sv-red); margin-bottom: 10px; }
.sv-fcat-list { list-style: none; margin: 0; padding: 0; }
.sv-fcat-list li { font-size: 13.5px; line-height: 2.05; color: var(--sv-ink-soft); letter-spacing: 0.03em; }
/* 主力分野は太字＋先頭に赤ドット */
.sv-fcat-list li.is-core { font-weight: 700; color: var(--sv-ink); position: relative; padding-left: 12px; }
.sv-fcat-list li.is-core::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--sv-red); }

/* footer note */
.sv-note { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sv-note-main { font-size: 14px; font-weight: 500; color: var(--sv-ink-soft); letter-spacing: 0.03em; }
.sv-note-main b { color: var(--sv-ink); font-weight: 700; }
.sv-note-sub { font-size: 12px; color: var(--sv-ink-faint); letter-spacing: 0.03em; }

@media (max-width: 900px) {
  .sv-stats { grid-template-columns: repeat(2, 1fr); row-gap: 8px; }
  .sv-band { grid-template-columns: 1fr; }
  .sv-intro { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .sv-intro + .sv-sector, .sv-sector + .sv-sector { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.22); }
  .sv-fields { padding: 18px 18px 20px; }
  .sv-fields-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sv-fcat + .sv-fcat { border-left: none; padding-left: 0; }
  .sv-fcat:nth-child(even) { border-left: 1px solid var(--sv-rule); padding-left: 18px; }
}
@media (max-width: 560px) {
  .sv-fields-grid { grid-template-columns: 1fr; }
  .sv-fcat:nth-child(even) { border-left: none; padding-left: 0; }
  .sv-fcat + .sv-fcat { border-top: 1px solid var(--sv-rule); padding-top: 16px; }
  .sv-stats { grid-template-columns: 1fr; }
  .sv-stat + .sv-stat::before { display: none; }
  .sv-stat { border-top: 1px solid var(--sv-rule); }
  .sv-stat:first-child { border-top: none; }
  .sv-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
