/*
 Theme Name: Blaskan Child
 Template: blaskan
 Version: 1.0
*/


:root {
  --ink: #0A0E1A;
  --ink-soft: #1A2033;
  --paper: #F7F5F1;
  --paper-warm: #FAF8F3;
  --paper-cream: #F4EFE6;
  --accent: #D85A1A;
  --accent-light: #F26B2C;
  --accent-deep: #B8471A;
  --gold: #C8A96A;
  --gold-light: #D4B87A;
  --muted: #6B6B6B;
  --line: rgba(10,14,26,0.12);
  --font-display: 'Shippori Mincho', serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
  --font-serif-en: 'Cormorant Garamond', serif;
  --font-mono: 'JetBrains Mono', monospace;
  /* === 写真アセット (Base64で1回だけ定義し、各セレクタから参照) === */
  --img-1: url('../assets/img_c77d4fb61cfa.webp');
  --img-2: url('../assets/img_efa3071984b4.webp');
  --img-3: url('../assets/img_01ea101f0823.webp');
  --img-4: url('../assets/img_1bf0333861fb.webp');
  --img-5: url('../assets/img_8b7197d2ecd8.webp');
  --img-6: url('../assets/img_1ee4e4bf16b5.webp');
  --img-7: url('../assets/img_4ec93680cd1a.webp');
  --img-8: url('../assets/img_49e5e293c761.webp');
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url('../assets/noise-texture.svg');
  opacity: 0.03; pointer-events: none; z-index: 9999; mix-blend-mode: multiply;
}


.urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--accent);
  color: var(--paper);
  padding: 10px 40px;
  z-index: 99;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(247,245,241,0.2);
}
.urgency-banner-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--paper);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.urgency-banner-text {
  display: flex; align-items: center; gap: 12px;
}
.urgency-banner-text strong {
  font-weight: 700; letter-spacing: 0.2em;
}
.urgency-banner-cta {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
  transition: all 0.3s;
}
.urgency-banner-cta:hover { color: var(--gold-light); }

body { padding-top: 42px; }

/* HEADER  2026-08-22　固有class、.st-header を付ける　*/
header.st-header {
  position: fixed; top: 42px; left: 0; right: 0;
  background: rgba(247,245,241,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 100; border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center;
  height: 40px;
  transition: opacity 0.3s;
}
.logo svg {
  height: 100%;
  width: auto;
  display: block;
}
.logo .logo-mark-accent { fill: var(--accent); }
.footer-logo .logo-mark-accent { fill: var(--accent-light); }
.logo:hover { opacity: 0.75; }
@media (max-width: 768px) {
  .logo { height: 32px; }
}
nav ul { display: flex; gap: 36px; list-style: none; align-items: center; }
nav a {
  color: var(--ink); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  position: relative; padding: 8px 0; transition: color 0.4s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--accent); transition: width 0.4s;
}
nav a:hover, nav a.active { color: var(--accent); }
nav a:hover::after, nav a.active::after { width: 100%; }

.btn-nav {
  background: var(--ink); color: var(--paper); padding: 14px 28px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.4s; border: 1px solid var(--ink);
  
  
}
.btn-nav:hover { background: var(--accent); border-color: var(--accent); }
.menu-toggle { display: none; background: none; border: none; width: 40px; height: 40px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.menu-toggle span { display: block; height: 1px; background: var(--ink); transition: all 0.3s; }


/*
.hero {
  position: relative; min-height: 100vh;
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding: 160px 0 120px;
  display: flex; align-items: center;
}

.hero-limited-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(216,90,26,0.15);
  border: 1px solid var(--accent);
  padding: 10px 20px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent-light);
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 0.15s forwards;
}
.hero-limited-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 1.5s infinite;
}
.hero-limited-badge strong {
  color: var(--paper); font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.05em;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: var(--img-1);
  background-size: cover; background-position: center;
  opacity: 0.18; filter: grayscale(100%) contrast(1.2);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(216,90,26,0.18), transparent 60%),
    linear-gradient(135deg, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.95) 100%);
}
.hero-grid-deco {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(216,90,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,90,26,0.04) 1px, transparent 1px);
  background-size: 80px 80px; pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1400px; margin: 0 auto;
  padding: 0 40px; width: 100%;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 80px; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.25em;
  color: var(--accent-light); margin-bottom: 32px;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 0.2s forwards;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--accent-light); }

.hero-pain-hook {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1s 0.4s forwards;
  position: relative;
}
.hero-pain-hook .curse {
  color: var(--accent-light);
  position: relative;
  display: inline-block;
}
.hero-pain-hook .curse::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 6px;
  background: var(--accent);
  opacity: 0.4;
  z-index: -1;
}

.hero-divider {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.55s forwards;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(247,245,241,0.2);
  max-width: 60px;
}
.hero-divider-text {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(247,245,241,0.6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.4; letter-spacing: 0.01em;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero h1 .accent {
  color: var(--accent-light);
  position: relative; display: inline-block;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 6px; background: var(--accent); opacity: 0.3;
  z-index: -1;
}
.hero-sub {
  font-size: 15px; line-height: 2.1; max-width: 560px;
  opacity: 0; animation: fadeUp 1s 0.85s forwards;
  color: rgba(247,245,241,0.85); margin-bottom: 48px;
}
.hero-cta-row {
  display: flex; gap: 24px; align-items: center;
  opacity: 0; animation: fadeUp 1s 1s forwards;
  flex-wrap: wrap;
}
.hero-cta-primary {
  background: var(--accent); color: var(--paper);
  padding: 20px 32px; text-decoration: none;
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px;
  transition: all 0.4s; border: 1px solid var(--accent);
  position: relative;
  min-width: 260px;
}
.hero-cta-primary::after {
  content: '→'; position: absolute;
  top: 50%; right: 24px;
  transform: translateY(-50%);
  font-size: 18px; opacity: 0.8;
  transition: all 0.3s;
}
.hero-cta-primary:hover { background: var(--accent-light); transform: translateX(6px); }
.hero-cta-primary:hover::after { transform: translateY(-50%) translateX(4px); }
.hero-cta-primary-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  opacity: 0.85; text-transform: uppercase;
  font-weight: 600;
}
.hero-cta-primary-main {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800; letter-spacing: 0.03em;
  line-height: 1.2;
}
.hero-cta-primary-sub {
  font-size: 11px; letter-spacing: 0.06em;
  opacity: 0.8; margin-top: 2px;
}

.hero-cta-secondary {
  color: var(--paper); text-decoration: none;
  padding: 12px 6px 12px 0;
  display: inline-flex; flex-direction: column; gap: 3px;
  transition: all 0.3s;
}
.hero-cta-secondary-main {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(247,245,241,0.4);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.hero-cta-secondary-sub {
  font-size: 11px; letter-spacing: 0.08em;
  opacity: 0.6;
}
.hero-cta-secondary:hover { color: var(--gold); }
.hero-cta-secondary:hover .hero-cta-secondary-main { border-color: var(--gold); }

.hero-cta-reassure {
  margin-top: 28px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(247,245,241,0.65);
}
.hero-cta-reassure-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-cta-reassure-item::before {
  content: '✓'; color: var(--gold); font-weight: 700;
}
.hero-cta-reassure-divider { color: rgba(247,245,241,0.2); }
@media (max-width: 768px) {
  .hero-cta-reassure { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-cta-reassure-divider { display: none; }
}

.hero-cta-assure {
  margin-top: 28px;
  max-width: 560px;
}
.hero-cta-assure-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.hero-cta-assure-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em; font-weight: 600;
  padding: 6px 12px;
  color: rgba(247,245,241,0.85);
  background: rgba(247,245,241,0.05);
  border: 1px solid rgba(247,245,241,0.15);
  border-radius: 2px;
  transition: all 0.3s;
}
.hero-cta-assure-chip::before {
  content: '✓'; color: var(--gold);
  font-weight: 700; font-size: 11px;
}
.hero-cta-assure-note {
  font-family: var(--font-display);
  font-size: 12px; line-height: 1.75;
  color: rgba(247,245,241,0.55);
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero-cta-assure-chips { gap: 6px; }
  .hero-cta-assure-chip { font-size: 9px; padding: 5px 10px; }
}

.hero-formula {
  opacity: 0; animation: fadeRight 1.2s 0.8s forwards;
  position: relative;
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.formula-card {
  background: rgba(10,14,26,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(216,90,26,0.3);
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}
.formula-card::before {
  content: 'T3 FORMULA'; position: absolute;
  top: -10px; left: 32px;
  background: var(--ink);
  color: var(--accent-light);
  padding: 4px 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  font-weight: 700;
}
.formula-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
.formula-main {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--paper);
}
.formula-main .f-item {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(216,90,26,0.15);
  border: 1px solid rgba(216,90,26,0.4);
  margin: 4px 2px;
  transition: all 0.3s;
}
.formula-main .f-item:hover {
  background: rgba(216,90,26,0.3);
  transform: translateY(-2px);
}
.formula-main .f-op {
  color: var(--accent-light);
  font-weight: 300;
  margin: 0 6px;
}
.formula-main .f-result { color: var(--gold); }
.formula-breakdown {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding-top: 20px;
  border-top: 1px dashed rgba(247,245,241,0.15);
}
.formula-item-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em;
  color: rgba(247,245,241,0.5);
  text-align: center;
  line-height: 1.5;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(216,90,26,0.3);
  padding: 24px 40px;
}
.hero-stats-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; align-items: center;
}
.hero-stat { display: flex; align-items: baseline; gap: 12px; color: var(--paper); }
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent-light); text-transform: uppercase;
}
.hero-stat-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.hero-stat-val--text { font-size: 20px; letter-spacing: 0.04em; }
.hero-stat-unit { font-size: 12px; opacity: 0.7; }
.hero-stat--philosophy .hero-stat-unit {
  font-family: var(--font-display);
  font-size: 13px;
  opacity: 0.95;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--gold-light);
}

*/


/*
.diagnosis {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.diagnosis-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.diagnosis-left {
  background:
    linear-gradient(135deg, rgba(10,14,26,0.92), rgba(10,14,26,0.85)),
    url('../assets/img_c77d4fb61cfa.webp') center/cover;
  color: var(--paper);
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.diagnosis-left::before {
  content: 'FREE'; position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-serif-en);
  font-size: 140px; font-weight: 300; font-style: italic;
  color: var(--accent); opacity: 0.2; line-height: 1;
}
.diagnosis-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
  text-transform: uppercase;
}
.diagnosis-label::before { content: ''; width: 40px; height: 1px; background: var(--accent-light); }
.diagnosis h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; line-height: 1.4;
  margin-bottom: 28px;
  color: var(--paper);
}
.diagnosis h2 .accent { color: var(--accent-light); }
.diagnosis-desc {
  font-size: 15px; line-height: 2;
  color: rgba(247,245,241,0.85);
  margin-bottom: 32px;
  max-width: 480px;
}
.diagnosis-features {
  list-style: none;
  margin-bottom: 0;
}
.diagnosis-features li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(247,245,241,0.1);
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 14px;
  line-height: 1.7;
}
.diagnosis-features li::before {
  content: '✓';
  color: var(--accent-light);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.diagnosis-right {
  background: var(--paper-cream);
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.diagnosis-right::before {
  content: 'DOWNLOAD'; position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
}

*/

/*
.quick-diag {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(10,14,26,0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.quick-diag::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.quick-diag-progress {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.quick-diag-progress-step {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; font-weight: 700;
  color: rgba(10,14,26,0.25);
  padding: 6px 12px;
  border: 1px solid rgba(10,14,26,0.15);
  border-radius: 2px;
  transition: all 0.3s;
}
.quick-diag-progress-step.active,
.quick-diag-progress-step.done {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}
.quick-diag-progress-step.done {
  background: var(--accent);
  border-color: var(--accent);
}
.quick-diag-progress-line {
  flex: 1; height: 1px;
  background: rgba(10,14,26,0.1);
  position: relative; overflow: hidden;
}
.quick-diag-progress-fill {
  position: absolute; inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.quick-diag-progress-fill.done { transform: scaleX(1); }

.quick-diag-step {
  display: none;
  animation: quickDiagFade 0.4s ease;
}
.quick-diag-step.active { display: block; }
@keyframes quickDiagFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.quick-diag-step-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quick-diag-step-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}

.quick-diag-options {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.quick-diag-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
  position: relative;
}
.quick-diag-option:hover {
  background: rgba(216,90,26,0.06);
  border-color: var(--accent);
  transform: translateX(4px);
}
.quick-diag-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.quick-diag-option::after {
  content: '→';
  font-family: var(--font-serif-en);
  color: rgba(10,14,26,0.3);
  font-size: 18px;
  transition: all 0.25s;
}
.quick-diag-option:hover::after {
  color: var(--accent);
  transform: translateX(4px);
}
.quick-diag-option .opt-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}
.quick-diag-back {
  display: inline-flex; align-items: center;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s;
  margin-top: 8px;
}
.quick-diag-back:hover { color: var(--accent); }

.quick-diag-result { padding-top: 8px; }
.quick-diag-result-head {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--line);
  font-family: var(--font-display);
  font-size: 15px; line-height: 1.8;
  color: var(--muted);
}
.quick-diag-result-head strong { color: var(--ink); font-weight: 700; }
.quick-diag-result-main {
  background: linear-gradient(135deg, rgba(216,90,26,0.08), rgba(216,90,26,0.03));
  border: 1px solid rgba(216,90,26,0.25);
  border-left: 3px solid var(--accent);
  padding: 24px 24px 22px;
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
}
.quick-diag-result-main::before {
  content: 'MAIN / 主提案';
  position: absolute; top: -10px; left: 18px;
  background: var(--accent);
  color: var(--paper);
  padding: 3px 12px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; font-weight: 700;
  border-radius: 2px;
}
.quick-diag-result-sub {
  background: rgba(10,14,26,0.03);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 20px 22px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  position: relative;
}
.quick-diag-result-sub::before {
  content: 'SUB / 副提案';
  position: absolute; top: -9px; left: 16px;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 10px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; font-weight: 700;
  border-radius: 2px;
}
.qd-product-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px; line-height: 1.4;
}
.qd-product-price {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.qd-product-desc {
  font-family: var(--font-display);
  font-size: 13px; line-height: 1.75;
  color: rgba(10,14,26,0.7);
  margin-bottom: 14px;
}
.qd-product-link {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em; font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}
.qd-product-link:hover {
  border-bottom-color: var(--accent);
  transform: translateX(4px);
}
.quick-diag-result-cta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.quick-diag-cta-btn {
  flex: 1; min-width: 240px;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.quick-diag-cta-btn:hover {
  background: var(--accent);
  transform: translateX(4px);
}
.quick-diag-reset {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.quick-diag-reset:hover {
  background: rgba(10,14,26,0.04);
  border-color: var(--ink);
  color: var(--ink);
}
.quick-diag-disclaimer {
  font-family: var(--font-display);
  font-size: 11px; line-height: 1.8;
  color: var(--muted);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dotted var(--line);
}

@media (max-width: 768px) {
  .quick-diag { padding: 28px 22px; }
  .quick-diag-step-title { font-size: 18px; }
  .quick-diag-option { padding: 16px 18px; font-size: 14px; }
  .quick-diag-progress-step { padding: 5px 9px; font-size: 9px; }
  .quick-diag-result-cta { flex-direction: column; align-items: stretch; }
  .quick-diag-cta-btn { width: 100%; min-width: 0; justify-content: center; }
  .quick-diag-reset { width: 100%; }
  .qd-product-name { font-size: 16px; }
}
*/


/* SECTION GLOBAL */
section { padding: 120px 40px; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }
.section-head { margin-bottom: 72px; max-width: 900px; }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 24px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 60px; height: 1px; background: var(--accent); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700; line-height: 1.3; letter-spacing: 0.02em;
}
.section-title .accent { color: var(--accent); }
.section-lead {
  font-size: 16px; line-height: 2;
  margin-top: 28px; color: var(--muted); max-width: 720px;
}



/*
.pre-pain {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 140px 40px 160px;
}
.pre-pain::before {
  content: 'HABIT';
  position: absolute;
  top: 50%; right: -40px;
  transform: translateY(-50%);
  font-family: var(--font-serif-en);
  font-size: 380px; font-weight: 300; font-style: italic;
  color: var(--paper); opacity: 0.04; line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.pre-pain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/noise-texture.svg');
  opacity: 0.06; pointer-events: none; mix-blend-mode: overlay;
}
.pre-pain-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.pre-pain-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.pre-pain-label::before { content: ''; width: 32px; height: 1px; background: var(--accent-light); }
.pre-pain-question {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.6vw, 84px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
  color: var(--paper);
  max-width: 1000px;
}
.pre-pain-question .accent-light {
  color: var(--accent-light);
  font-style: italic;
  font-family: var(--font-serif-en);
  font-weight: 400;
  font-size: 1.05em;
}
.pre-pain-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.pre-pain-statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.7;
  color: var(--paper);
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}
.pre-pain-statement strong { color: var(--accent-light); font-weight: 800; }
.pre-pain-supporting {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 2;
  color: rgba(247, 245, 241, 0.78);
}
.pre-pain-supporting p + p { margin-top: 20px; }
.pre-pain-supporting em {
  font-style: normal;
  color: var(--paper);
  font-weight: 600;
  border-bottom: 1px dashed var(--accent-light);
  padding-bottom: 2px;
}

.pre-pain-resolution {
  margin-top: 96px;
  position: relative;
  padding-top: 56px;
  border-top: 1px solid rgba(247, 245, 241, 0.12);
}
.pre-pain-resolution-lead {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.pre-pain-resolution-lead::before { content: ''; width: 32px; height: 1px; background: var(--accent-light); }
.pre-pain-resolution-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--paper);
  margin-bottom: 56px;
  letter-spacing: -0.005em;
}
.pre-pain-resolution-headline .accent-light { color: var(--accent-light); }
.answer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(247, 245, 241, 0.1);
  padding: 2px;
  margin-bottom: 64px;
}
.answer-card {
  background: var(--ink-soft);
  padding: 48px 32px 40px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  overflow: hidden;
}
.answer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.answer-card:hover { background: var(--ink); transform: translateY(-4px); }
.answer-card:hover::before { transform: scaleX(1); }
.answer-card-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 8px;
}
.answer-card-val {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
}
.answer-card-val .answer-card-unit {
  font-family: var(--font-display);
  font-size: 0.32em;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0;
}
.answer-card-val--text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: 0.04em;
  display: block;
}
.answer-card-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  margin-top: 12px;
}
.answer-card-desc {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.85;
  color: rgba(247, 245, 241, 0.7);
  margin-top: 6px;
}
.pre-pain-declaration { text-align: center; padding: 40px 32px 8px; }
.pre-pain-declaration-line1 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: rgba(247, 245, 241, 0.78);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.pre-pain-declaration-line2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.005em;
  line-height: 1.5;
}
.pre-pain-declaration-line2 .accent-light {
  color: var(--accent-light);
  font-style: italic;
  font-family: var(--font-serif-en);
  font-weight: 400;
}
.pre-pain-meta {
  display: flex; gap: 24px; align-items: center;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px dashed rgba(247, 245, 241, 0.15);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(247, 245, 241, 0.5);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.pre-pain-meta-item { display: flex; align-items: center; gap: 10px; }
.pre-pain-meta-dot { width: 6px; height: 6px; background: var(--accent-light); border-radius: 50%; }

@media (max-width: 1024px) {
  .pre-pain { padding: 100px 24px 120px; }
  .pre-pain-body { grid-template-columns: 1fr; gap: 48px; }
  .pre-pain::before { font-size: 220px; right: -20px; }
  .answer-cards { grid-template-columns: 1fr; gap: 2px; }
  .pre-pain-resolution { margin-top: 72px; padding-top: 40px; }
}
@media (max-width: 768px) {
  .pre-pain { padding: 80px 20px 100px; }
  .pre-pain-question { margin-bottom: 36px; }
  .pre-pain-statement { padding-left: 18px; border-left-width: 2px; }
  .pre-pain-meta { gap: 14px; font-size: 10px; }
  .pre-pain::before { font-size: 160px; opacity: 0.05; }
  .answer-card { padding: 36px 22px 28px; }
  .pre-pain-declaration { padding: 24px 12px 0; }
  .pre-pain-supporting { font-size: 14px; line-height: 1.85; }
}
@media (max-width: 480px) {
  .pre-pain { padding: 64px 16px 80px; }
  .pre-pain-label { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 24px; }
  .pre-pain-label::before { width: 20px; }
  .pre-pain-question br { display: none; }
  .pre-pain-supporting { font-size: 13px; }
  .pre-pain-supporting p { word-break: keep-all; line-break: strict; }
  .answer-card { padding: 32px 18px 24px; }
  .answer-card-label { font-size: 16px; }
  .answer-card-desc { font-size: 12px; }
  .pre-pain-meta { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 24px; }
  .pre-pain-resolution-headline { margin-bottom: 36px; }
}


.pain { background: var(--paper-cream); position: relative; overflow: hidden; }
.pain::before {
  content: 'ISSUES'; position: absolute;
  top: 60px; right: 60px;
  font-family: var(--font-serif-en);
  font-size: 240px; font-weight: 300; font-style: italic;
  color: var(--accent); opacity: 0.07; line-height: 1;
  letter-spacing: -0.02em;
}
.pain-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 40px;
}
.pain-img-wrap {
  position: relative;
  min-height: 640px;
}
.pain-img-main {
  position: absolute; inset: 0;
  background-image: var(--img-2);
  background-size: cover; background-position: center;
  filter: contrast(1.05);
}
.pain-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(216,90,26,0.2));
}
.pain-img-badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--ink); color: var(--paper);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  z-index: 2;
}
.pain-img-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px; color: var(--paper); z-index: 2;
  background: linear-gradient(to top, rgba(10,14,26,0.9), transparent);
}
.pain-img-quote-text {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1.7;
  font-weight: 600; margin-bottom: 8px;
}
.pain-img-quote-source {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent-light);
}
.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--paper-warm);
}
.pain-scenario {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
}
.pain-scenario:nth-child(2), .pain-scenario:nth-child(4) { border-right: none; }
.pain-scenario:nth-child(3), .pain-scenario:nth-child(4) { border-bottom: none; }
.pain-scenario:hover {
  background: var(--ink);
  color: var(--paper);
}
.pain-scenario-num {
  font-family: var(--font-serif-en);
  font-size: 14px; font-style: italic;
  color: var(--accent); letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.pain-scenario:hover .pain-scenario-num { color: var(--accent-light); }
.pain-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.pain-scenario:hover .pain-quote { border-left-color: var(--accent-light); }
.pain-voice {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--muted);
  text-align: right;
}
.pain-scenario:hover .pain-voice { color: rgba(247,245,241,0.5); }
.pain-diagnosis {
  margin-top: 60px;
  padding: 56px 48px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.pain-diagnosis::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
}
.pain-diagnosis-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); margin-bottom: 20px;
  text-transform: uppercase;
}
.pain-diagnosis-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500; line-height: 1.8;
}
.pain-diagnosis-text .hl {
  background: linear-gradient(transparent 60%, var(--accent) 60%, var(--accent) 90%, transparent 90%);
  padding: 0 4px; font-weight: 700;
}
.pain-solution {
  padding: 28px;
  background: rgba(216,90,26,0.1);
  border: 1px solid rgba(216,90,26,0.25);
}
.pain-solution-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--accent-light); margin-bottom: 16px;
}
.pain-solution-text {
  font-family: var(--font-display);
  font-size: 17px; line-height: 1.8; font-weight: 600;
}
.pain-solution-text strong { color: var(--gold-light); }


.representative {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.representative::before {
  content: 'MESSAGE'; position: absolute;
  top: 60px; right: -60px;
  font-family: var(--font-serif-en);
  font-size: 220px; font-weight: 300; font-style: italic;
  color: var(--paper); opacity: 0.03; line-height: 1;
}
.representative .section-label { color: var(--accent-light); }
.representative .section-label::before { background: var(--accent-light); }
.representative .section-title { color: var(--paper); }
.rep-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
  margin-top: 72px;
}
.rep-photo-wrap { position: relative; }
.rep-photo-sub {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%; aspect-ratio: 4/3;
  background-image: var(--img-3);
  background-size: cover; background-position: center;
  filter: grayscale(80%) contrast(1.1);
  border: 6px solid var(--ink);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.rep-photo-sub-label {
  position: absolute;
  top: -20px; right: 0;
  background: var(--accent);
  color: var(--paper);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
}
.rep-photo {
  width: 100%; aspect-ratio: 3/4;
  background-image: var(--img-4);
  background-size: cover;
  background-position: center 20%;
  filter: grayscale(50%) contrast(1.05);
  position: relative;
}
.rep-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(216,90,26,0.15));
}
.rep-photo-frame {
  position: absolute;
  top: 24px; left: 24px;
  right: -24px; bottom: -24px;
  border: 1px solid var(--accent);
  z-index: -1;
}
.rep-photo-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  color: var(--paper);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  z-index: 2;
}
.rep-content { padding-top: 16px; }
.rep-title {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--accent-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.rep-name-row {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(247,245,241,0.15);
  flex-wrap: wrap;
}
.rep-name {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.05em;
}
.rep-name-en {
  font-family: var(--font-serif-en);
  font-size: 18px; font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.rep-message {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 2.1;
  color: rgba(247,245,241,0.9);
  margin-bottom: 36px;
}
.rep-message p { margin-bottom: 20px; }
.rep-message .emphasis { color: var(--gold-light); font-weight: 600; }
.rep-message .underline {
  background: linear-gradient(transparent 60%, rgba(216,90,26,0.4) 60%, rgba(216,90,26,0.4) 90%, transparent 90%);
  padding: 0 2px;
}
.rep-signature {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(247,245,241,0.15);
}
.rep-signature-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(247,245,241,0.7);
  line-height: 1.8;
}
.rep-signature-text strong {
  display: block;
  font-size: 17px;
  color: var(--paper);
  margin-bottom: 4px;
  font-weight: 700;
}
.rep-signature-mark {
  font-family: var(--font-serif-en);
  font-size: 32px; font-style: italic;
  color: var(--accent-light);
  letter-spacing: 0.1em;
}

.rep-topics {
  margin: 32px 0 28px;
  padding: 28px 32px;
  background: rgba(247,245,241,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.rep-topics-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rep-topics-list { list-style: none; padding: 0; margin: 0; }
.rep-topics-list li {
  position: relative; padding-left: 22px;
  font-size: 14px; line-height: 1.8;
  color: rgba(247,245,241,0.85);
  margin-bottom: 10px;
}
.rep-topics-list li:last-child { margin-bottom: 0; }
.rep-topics-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold-light); font-weight: 700;
}
.rep-topics-list li strong { color: var(--paper); font-weight: 700; }


.rep-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.rep-fit-col {
  padding: 24px 26px;
  border-radius: 2px;
  border: 1px solid rgba(247,245,241,0.12);
}
.rep-fit-yes {
  background: rgba(216,90,26,0.06);
  border-color: rgba(216,90,26,0.25);
}
.rep-fit-no {
  background: rgba(247,245,241,0.03);
  border-color: rgba(247,245,241,0.12);
}
.rep-fit-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rep-fit-yes .rep-fit-label { color: var(--accent-light); }
.rep-fit-no .rep-fit-label { color: rgba(247,245,241,0.55); }
.rep-fit-col ul { list-style: none; padding: 0; margin: 0; }
.rep-fit-col li {
  position: relative; padding-left: 20px;
  font-size: 13px; line-height: 1.75;
  color: rgba(247,245,241,0.85);
  margin-bottom: 10px;
}
.rep-fit-col li:last-child { margin-bottom: 0; }
.rep-fit-yes li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent-light); font-weight: 700;
}
.rep-fit-no li::before {
  content: '−'; position: absolute; left: 0;
  color: rgba(247,245,241,0.4); font-weight: 700;
}
@media (max-width: 768px) {
  .rep-fit { grid-template-columns: 1fr; }
  .rep-topics { padding: 20px 22px; }
}

.stages {
  background: var(--paper-cream);
  position: relative; overflow: hidden;
}
.stages::before {
  content: '12'; position: absolute;
  top: 40px; right: 40px;
  font-family: var(--font-serif-en);
  font-size: 360px; font-weight: 300; font-style: italic;
  color: var(--accent); opacity: 0.06; line-height: 1;
}
.stages-banner {
  margin-top: 72px;
  position: relative;
  height: 320px;
  overflow: hidden;
}
.stages-banner-img {
  position: absolute; inset: 0;
  background-image: url('../assets/img_c77d4fb61cfa.webp');
  background-size: cover; background-position: center;
  filter: grayscale(70%) contrast(1.15);
}
.stages-banner-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.5), rgba(216,90,26,0.2));
}
.stages-banner-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.stages-banner-text {
  color: var(--paper);
  text-align: center;
}
.stages-banner-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.stages-banner-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.stages-banner-title .accent { color: var(--accent-light); }

.stages-chart { margin-top: 32px; position: relative; }
.stages-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--ink);
  padding: 2px;
}
.stage-cell {
  background: var(--paper-warm);
  padding: 24px 18px;
  transition: all 0.5s;
  position: relative;
  cursor: default;
  min-height: 170px;
  display: flex; flex-direction: column;
}
.stage-cell:hover {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.stage-num {
  font-family: var(--font-serif-en);
  font-size: 12px; font-style: italic;
  color: var(--accent); letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.stage-cell:hover .stage-num { color: var(--accent-light); }
.stage-name-en {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 4px;
}
.stage-cell:hover .stage-name-en { color: var(--accent-light); }
.stage-name-ja { font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.stage-desc {
  font-size: 10.5px;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}
.stage-cell:hover .stage-desc { color: rgba(247,245,241,0.7); }
.stages-legend {
  margin-top: 40px;
  padding: 48px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.stages-legend::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 6px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
}
.stages-legend::after {
  content: '"'; position: absolute;
  top: -40px; right: 40px;
  font-family: var(--font-serif-en);
  font-size: 200px; font-weight: 400; font-style: italic;
  color: var(--accent); opacity: 0.15;
  line-height: 1;
}
.stages-legend-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light);
  text-transform: uppercase;
  white-space: nowrap;
}
.stages-legend-text {
  display: flex; flex-direction: column; gap: 16px;
}
.stages-legend-main {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--paper);
}
.stages-legend-main strong {
  color: var(--accent-light);
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.stages-legend-main strong::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: var(--accent);
  opacity: 0.5;
}
.stages-legend-sub {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(247,245,241,0.65);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.cases { background: var(--paper); position: relative; overflow: hidden; }
.cases::before {
  content: 'STORIES'; position: absolute;
  bottom: 40px; left: -40px;
  font-family: var(--font-serif-en);
  font-size: 200px; font-weight: 300; font-style: italic;
  color: var(--accent); opacity: 0.06; line-height: 1;
}
.case-item {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.case-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.case-item.reverse { grid-template-columns: 1.3fr 1fr; direction: rtl; }
.case-item.reverse > * { direction: ltr; }
.case-visual { position: relative; }
.case-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  filter: grayscale(85%) contrast(1.1);
  position: relative;
}
.case-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.85) 0%, transparent 50%);
}
.case-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: var(--paper);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  z-index: 2;
}
.case-meta-overlay {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--paper); z-index: 2;
}
.case-industry {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  margin-bottom: 6px;
  color: var(--accent-light);
}
.case-scale {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
}
.case-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700; line-height: 1.4;
  margin-bottom: 28px; letter-spacing: 0.02em;
}
.case-content h3 .accent { color: var(--accent); }
.case-story {
  font-family: var(--font-display);
  font-size: 15px; line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.case-story p { margin-bottom: 16px; }
.case-story .quote {
  display: block;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--accent);
  padding: 20px 24px;
  background: var(--paper-cream);
  border-left: 4px solid var(--accent);
  margin: 20px 0;
  font-style: italic;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  padding: 2px;
}
.case-result-item {
  background: var(--paper);
  padding: 20px 16px;
  text-align: center;
}
.case-result-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.case-result-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800; color: var(--accent);
  line-height: 1;
}
.case-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(216,90,26,0.1);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.case-product-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.case-product-link:hover { color: var(--accent-light); border-color: var(--accent-light); }

.case-flow {
  margin: 24px 0 20px;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.case-meta-spec {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: 20px 0 24px;
  padding: 14px 18px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.case-meta-spec-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 4px 20px 4px 0;
  border-right: 1px solid var(--line);
  flex: 1; min-width: 140px;
}
.case-meta-spec-item:last-child { border-right: none; padding-right: 0; }
.case-meta-spec-item + .case-meta-spec-item { padding-left: 20px; }
.case-meta-spec-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}
.case-meta-spec-value {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .case-meta-spec { flex-direction: column; padding: 12px 14px; }
  .case-meta-spec-item {
    border-right: none;
    border-bottom: 1px dotted var(--line);
    padding: 8px 0 !important;
    min-width: 0;
  }
  .case-meta-spec-item:last-child { border-bottom: none; }
}
.case-flow-row { margin-bottom: 20px; }
.case-flow-row:last-child { margin-bottom: 0; }
.case-flow-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.case-flow-text {
  font-size: 14px; line-height: 1.8;
  color: var(--ink); font-weight: 400;
}
.case-flow-text strong { color: var(--ink); font-weight: 700; }

.case-tags-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 8px 0 20px;
}
.case-tag-chip {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em; font-weight: 600;
  padding: 5px 12px;
  background: var(--paper-cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
}


.case-disclaimer {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px dotted var(--line);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.05em;
  color: var(--muted);
  font-style: normal;
}


.comparison {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: 'VS'; position: absolute;
  top: 60px; right: 80px;
  font-family: var(--font-serif-en);
  font-size: 280px; font-weight: 300; font-style: italic;
  color: var(--accent); opacity: 0.08; line-height: 1;
}
.comparison .section-label { color: var(--accent-light); }
.comparison .section-label::before { background: var(--accent-light); }
.comparison .section-title { color: var(--paper); }
.comparison .section-lead { color: rgba(247,245,241,0.7); }

.comparison-visual {
  margin-top: 72px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.comparison-visual-img {
  aspect-ratio: 16/9;
  background-image: url('../assets/img_c77d4fb61cfa.webp');
  background-size: cover; background-position: center;
  filter: grayscale(90%) contrast(1.2);
  position: relative;
}
.comparison-visual-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.4), rgba(216,90,26,0.15));
}
.comparison-visual-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--ink); color: var(--paper);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  z-index: 2;
  border: 1px solid var(--accent);
}
.comparison-visual-text {
  padding: 40px;
  background: rgba(247,245,241,0.04);
  border: 1px solid rgba(247,245,241,0.1);
  display: flex; flex-direction: column; justify-content: center;
}
.comparison-visual-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.8;
  color: var(--paper);
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}
.comparison-visual-quote .highlight {
  color: var(--gold-light);
  font-weight: 700;
}
.comparison-visual-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(247,245,241,0.5);
  letter-spacing: 0.15em;
  text-align: right;
}

.comparison-table {
  margin-top: 72px;
  background: rgba(247,245,241,0.04);
  border: 1px solid rgba(247,245,241,0.1);
  overflow: hidden;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  border-bottom: 1px solid rgba(247,245,241,0.08);
  transition: all 0.3s;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row.header {
  background: rgba(10,14,26,0.5);
}
.comparison-row.header .comparison-cell {
  padding: 32px 28px;
}
.comparison-cell {
  padding: 28px;
  display: flex; align-items: center; gap: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.comparison-cell.label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--accent-light);
  text-transform: uppercase;
  font-weight: 600;
  border-right: 1px solid rgba(247,245,241,0.08);
}
.comparison-cell.t3 {
  background: rgba(216,90,26,0.08);
  border-left: 3px solid var(--accent);
  color: var(--paper);
  font-weight: 500;
  position: relative;
}
.comparison-cell.t3 .check {
  font-family: var(--font-serif-en);
  font-size: 24px;
  color: var(--accent-light);
  font-style: italic;
}
.comparison-cell.other {
  color: rgba(247,245,241,0.6);
  border-left: 1px solid rgba(247,245,241,0.08);
}
.comparison-cell.other .cross {
  font-family: var(--font-mono);
  font-size: 18px;
  color: rgba(247,245,241,0.4);
}

.comparison-header-t3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 12px;
}
.comparison-header-t3::before {
  content: ''; width: 12px; height: 12px;
  background: var(--accent);
}
.comparison-header-other {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: rgba(247,245,241,0.5);
  letter-spacing: 0.05em;
}

.comparison-caption {
  margin-top: 40px;
  padding: 28px;
  background: rgba(216,90,26,0.08);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.9;
  color: rgba(247,245,241,0.9);
}
.comparison-caption strong {
  color: var(--gold-light);
  font-weight: 700;
}

.comparison-disclaimer {
  margin-top: 24px;
  padding: 12px 18px;
  background: rgba(247,245,241,0.04);
  border-left: 2px solid rgba(200,169,106,0.4);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.02em; line-height: 1.7;
  color: rgba(247,245,241,0.5);
  max-width: 760px;
}

.choose-by-issue {
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.choose-by-issue::before {
  content: '?'; position: absolute;
  top: 40px; left: -20px;
  font-family: var(--font-display);
  font-size: 400px; font-weight: 800;
  color: var(--accent); opacity: 0.05; line-height: 1;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 72px;
}
.issue-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.issue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(10,14,26,0.1);
  background: var(--ink);
  color: var(--paper);
}
.issue-card:hover::before { transform: scaleX(1); }

.issue-icon-box {
  aspect-ratio: 1;
  background: var(--paper-cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.issue-icon-box::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.25;
  transition: all 0.5s;
  z-index: 0;
}
.issue-icon-box.img-01::before {
  background-image: url('../assets/img_c77d4fb61cfa.webp');
}
.issue-icon-box.img-02::before {
  background-image: url('../assets/img_c77d4fb61cfa.webp');
}
.issue-icon-box.img-03::before {
  background-image: url('../assets/img_c77d4fb61cfa.webp');
}
.issue-icon-box.img-04::before {
  background-image: url('../assets/img_c77d4fb61cfa.webp');
}
.issue-card:hover .issue-icon-box {
  background: rgba(216,90,26,0.15);
}
.issue-card:hover .issue-icon-box::before {
  opacity: 0.4;
  filter: grayscale(60%) contrast(1.2);
}
.issue-icon-num {
  font-family: var(--font-serif-en);
  font-size: 14px; font-style: italic;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.issue-card:hover .issue-icon-num { color: var(--accent-light); }
.issue-icon-kanji {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800;
  color: var(--accent);
  line-height: 1;
  position: relative; z-index: 1;
}
.issue-card:hover .issue-icon-kanji { color: var(--accent-light); }

.issue-content h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.issue-voice {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.issue-card:hover .issue-voice { color: rgba(247,245,241,0.7); }
.issue-solution-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.issue-card:hover .issue-solution-label { color: var(--accent-light); }
.issue-solution {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.issue-solution-arrow {
  font-family: var(--font-serif-en);
  color: var(--accent);
  transition: transform 0.4s;
}
.issue-card:hover .issue-solution-arrow {
  color: var(--accent-light);
  transform: translateX(6px);
}

.issue-tabs {
  display: flex;
  gap: 4px;
  margin: 72px 0 0;
  padding: 6px;
  background: rgba(10,14,26,0.04);
  border: 1px solid rgba(10,14,26,0.10);
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.issue-tab {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  padding: 16px 14px;
  background: transparent;
  border: none;
  color: rgba(10,14,26,0.55);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  font-family: inherit;
}
.issue-tab:hover {
  background: rgba(10,14,26,0.04);
  color: var(--ink);
}
.issue-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.issue-tab.active {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 4px 16px rgba(216,90,26,0.3);
}
.issue-tab.active:hover {
  background: var(--accent-light);
  color: var(--paper);
}
.issue-tab-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; font-weight: 700;
  opacity: 0.7;
}
.issue-tab-label {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.03em;
}

.issue-panel {
  margin-top: 40px;
  min-height: 420px;
  animation: issueFade 0.5s ease;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(10,14,26,0.06);
}
@keyframes issueFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.issue-panel-head {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px dotted rgba(10,14,26,0.18);
}
.issue-panel-label {
  font-family: var(--font-serif-en);
  font-size: 14px; font-style: italic;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.issue-panel-catch {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700; line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.issue-panel-description {
  font-family: var(--font-display);
  font-size: 15px; line-height: 1.95;
  color: rgba(10,14,26,0.75);
  max-width: 820px;
}
.issue-panel-description strong { color: var(--ink); font-weight: 700; }

.issue-panel-products-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.issue-panel-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.issue-panel-card {
  background: var(--paper-cream);
  border: 1px solid var(--line);
  padding: 24px 22px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}
.issue-panel-card.featured {
  background: rgba(216,90,26,0.08);
  border-color: rgba(216,90,26,0.35);
}
.issue-panel-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -10px; left: 22px;
  background: var(--accent);
  color: var(--paper);
  padding: 3px 12px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; font-weight: 700;
  border-radius: 2px;
}
.issue-panel-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
  border-color: rgba(10,14,26,0.25);
  box-shadow: 0 8px 24px rgba(10,14,26,0.08);
}
.issue-panel-card.featured:hover {
  background: rgba(216,90,26,0.12);
  border-color: rgba(216,90,26,0.5);
}
.issue-panel-card-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--ink);
  line-height: 1.4; margin-bottom: 8px;
}
.issue-panel-card-price {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(10,14,26,0.15);
}
.issue-panel-card-desc {
  font-family: var(--font-display);
  font-size: 13px; line-height: 1.7;
  color: rgba(10,14,26,0.7);
  flex: 1; margin-bottom: 16px;
}
.issue-panel-card-link {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; font-weight: 600;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.issue-panel-card:hover .issue-panel-card-link {
  color: var(--accent-light);
  transform: translateX(4px);
}

.issue-panel-cta-row {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.issue-panel-cta-main {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
}
.issue-panel-cta-main:hover {
  background: var(--accent);
  transform: translateX(4px);
}
.issue-panel-cta-sub {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(10,14,26,0.7);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(10,14,26,0.3);
  padding-bottom: 6px;
  transition: all 0.3s;
}
.issue-panel-cta-sub:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 900px) {
  .issue-panel-products { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  .issue-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px;
    gap: 2px;
    scrollbar-width: none;
  }
  .issue-tabs::-webkit-scrollbar { display: none; }
  .issue-tab {
    flex: 0 0 auto;
    min-width: 110px;
    padding: 12px 14px;
    scroll-snap-align: start;
  }
  .issue-tab-label { font-size: 12px; }
  .issue-panel { margin-top: 28px; }
  .issue-panel-head { padding-bottom: 24px; margin-bottom: 24px; }
  .issue-panel-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .issue-panel-cta-main { justify-content: center; }
  .issue-panel-cta-sub { text-align: center; justify-content: center; }
}

.products { background: var(--paper); position: relative; }

.product-finder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px; margin-bottom: 80px;
}
.product-finder-card {
  background: var(--paper-cream);
  border: 1px solid var(--line);
  padding: 32px 28px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.product-finder-card::after {
  content: '→'; position: absolute;
  top: 32px; right: 28px;
  font-size: 20px; color: var(--accent);
  transition: all 0.3s ease;
}
.product-finder-card:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-4px);
}
.product-finder-card:hover::after {
  color: var(--accent-light);
  transform: translateX(4px);
}
.product-finder-step {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-finder-card:hover .product-finder-step { color: var(--accent-light); }
.product-finder-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  margin-bottom: 12px; line-height: 1.4;
}
.product-finder-desc {
  font-size: 13px; line-height: 1.75;
  color: var(--muted);
  flex: 1; margin-bottom: 16px;
}
.product-finder-card:hover .product-finder-desc { color: rgba(247,245,241,0.7); }
.product-finder-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; font-weight: 600;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px dotted var(--line);
}
.product-finder-card:hover .product-finder-tag {
  color: var(--gold-light);
  border-color: rgba(247,245,241,0.2);
}

.product-finder-card.has-detail {
  position: relative;
  overflow: hidden;
}
.product-finder-detail {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px dotted transparent;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s, padding-top 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (hover: hover) {
  .product-finder-card:hover .product-finder-detail,
  .product-finder-card:focus-visible .product-finder-detail {
    max-height: 400px;
    opacity: 1;
    margin-top: 18px;
    padding-top: 18px;
    border-top-color: rgba(247,245,241,0.2);
  }
}

.product-finder-card.is-open .product-finder-detail {
  max-height: 400px;
  opacity: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top-color: rgba(247,245,241,0.2);
}

.pfd-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pfd-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
}
.pfd-value {
  font-family: var(--font-display);
  font-size: 12px; line-height: 1.7;
  color: rgba(247,245,241,0.8);
  font-weight: 400;
}
@media (max-width: 900px) {
  .product-finder { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  .pfd-value { font-size: 13px; }
}

.products-subhead {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.products-subhead-label {
  font-family: var(--font-serif-en);
  font-size: 14px; font-style: italic;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.products-subhead-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--ink);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all 0.5s;
  position: relative; overflow: hidden;
}
.product-card.featured {
  grid-column: span 2;
  background: var(--ink);
  color: var(--paper);
  border: none;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(10,14,26,0.12);
}
.product-card.featured:hover { box-shadow: 0 30px 60px rgba(10,14,26,0.3); }
.product-img {
  height: 180px;
  background-size: cover; background-position: center;
  position: relative;
  filter: grayscale(50%) contrast(1.1);
  transition: filter 0.5s;
}
.product-card.featured .product-img { height: 200px; filter: grayscale(20%); }
.product-card:hover .product-img { filter: grayscale(0%); }
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,14,26,0.7));
}
.product-badge {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--paper); background: var(--accent);
  padding: 7px 12px; z-index: 2; text-transform: uppercase;
}
.product-badge.normal { background: var(--ink); }
.product-body {
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.product-card.featured .product-body { padding: 36px; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  line-height: 1.4; margin-bottom: 14px; letter-spacing: 0.02em;
}
.product-card.featured h3 { font-size: 28px; }
.product-desc {
  color: var(--muted); font-size: 12.5px; line-height: 1.9;
  flex: 1; margin-bottom: 20px;
}
.product-card.featured .product-desc { color: rgba(247,245,241,0.75); font-size: 14px; }
.product-meta {
  padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.product-card.featured .product-meta { border-color: rgba(247,245,241,0.15); }
.product-price-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em;
  color: var(--muted); margin-bottom: 4px;
}
.product-card.featured .product-price-label { color: rgba(247,245,241,0.6); }
.product-price-value {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--accent);
}
.product-card.featured .product-price-value { color: var(--accent-light); font-size: 26px; }
.product-arrow {
  font-family: var(--font-serif-en);
  font-size: 18px; color: var(--accent); transition: transform 0.4s;
}
.product-card:hover .product-arrow { transform: translateX(8px); }

.final-cta { padding: 0; background: var(--paper); }
.final-cta-inner {
  max-width: 1400px; margin: 0 auto;
  min-height: 640px;
  display: grid; grid-template-columns: 1fr 1.2fr;
}
.final-cta-img {
  background-image: url('../assets/img_0d5ae342e610.webp');
  background-size: cover; background-position: center;
  filter: grayscale(70%) contrast(1.1); position: relative;
}
.final-cta-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.3), rgba(216,90,26,0.25));
}
.final-cta-img-caption {
  position: absolute; bottom: 40px; left: 40px;
  color: var(--paper); z-index: 2;
}
.final-cta-img-caption-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--accent-light); margin-bottom: 8px;
}
.final-cta-img-caption-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; line-height: 1.5;
  max-width: 320px;
}
.final-cta-content {
  background: var(--ink); color: var(--paper);
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.final-cta-content::before {
  content: 'STEP 01'; position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-serif-en);
  font-size: 140px; font-weight: 300; font-style: italic;
  color: var(--accent); opacity: 0.1; line-height: 1;
}
.final-cta-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.final-cta-label::before { content: ''; width: 40px; height: 1px; background: var(--accent-light); }


.final-cta-label-order,
.cta-alt-label-order {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
}
.cta-alt-label-order { color: var(--gold-light); }
.final-cta-label-sep,
.cta-alt-label-sep {
  color: rgba(247,245,241,0.3);
  font-weight: 300;
}
.final-cta-label-main,
.cta-alt-label-main {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--paper);
}
.cta-alt-label-v2 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.4;
  margin-bottom: 24px;
}
.final-cta h2 .accent { color: var(--accent-light); }
.final-cta-desc {
  font-size: 15px; line-height: 2;
  color: rgba(247,245,241,0.8);
  margin-bottom: 40px; max-width: 500px;
}
.final-price-box {
  background: rgba(247,245,241,0.04);
  border: 1px solid rgba(247,245,241,0.1);
  padding: 32px;
  margin-bottom: 32px;
}
.final-price-regular {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px dashed rgba(247,245,241,0.15);
}
.final-price-regular-label {
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(247,245,241,0.5);
  letter-spacing: 0.15em;
}
.final-price-regular-value {
  font-family: var(--font-display);
  font-size: 18px; color: rgba(247,245,241,0.5);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}
.final-price-special-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); margin-bottom: 10px; font-weight: 700;
}
.final-price-main {
  display: flex; align-items: baseline; gap: 6px;
}
.final-price-symbol {
  font-family: var(--font-display);
  font-size: 22px; color: var(--accent-light); font-weight: 600;
}
.final-price-amount {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 800; color: var(--paper);
  line-height: 0.9; letter-spacing: -0.02em;
}
.final-price-tax {
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(247,245,241,0.5); margin-left: 6px;
}
.final-price-note {
  font-size: 11px; color: rgba(247,245,241,0.6);
  line-height: 1.8; margin-top: 12px;
}
.final-price-note strong { color: var(--accent-light); }
.cta-buttons { display: flex; flex-direction: column; gap: 14px; max-width: 440px; }
.btn-primary {
  background: var(--accent); color: var(--paper);
  padding: 20px 28px; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s; border: 1px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-light); transform: translateX(6px); }
.btn-secondary {
  background: transparent; color: var(--paper);
  padding: 20px 28px; text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s; border: 1px solid rgba(247,245,241,0.3);
}
.btn-secondary:hover { background: var(--paper); color: var(--ink); transform: translateX(6px); }

.limited-notice {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(216,90,26,0.15);
  border: 1px solid var(--accent);
  margin-bottom: 24px;
}
.limited-notice-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.limited-notice-text {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.limited-notice-text strong {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.1em;
}
.limited-notice-text span {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--accent-light);
}
.cta-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 32px 0 24px;
  max-width: 500px;
}

.cta-reassure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(247,245,241,0.04);
  border: 1px solid rgba(247,245,241,0.08);
  border-radius: 2px;
  max-width: 700px;
}
.cta-reassure-item {
  display: flex; flex-direction: column; gap: 4px;
}
.cta-reassure-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.25em; font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
}
.cta-reassure-value {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--paper);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cta-reassure-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 16px; }
}
.cta-divider::before, .cta-divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: rgba(247,245,241,0.15);
}
.cta-divider span {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(247,245,241,0.4);
}
.cta-alt-block {
  background: rgba(247,245,241,0.04);
  border: 1px solid rgba(247,245,241,0.1);
  padding: 32px;
  max-width: 500px;
  position: relative;
}
.cta-alt-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--gold); margin-bottom: 12px;
  text-transform: uppercase;
}
.cta-alt-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  line-height: 1.5; margin-bottom: 8px;
  color: var(--paper);
}
.cta-alt-title .accent { color: var(--accent-light); }
.cta-alt-sub {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(247,245,241,0.55);
  margin-bottom: 20px;
}
.cta-alt-features {
  list-style: none;
  margin-bottom: 24px;
}
.cta-alt-features li {
  padding: 8px 0;
  font-size: 13px;
  color: rgba(247,245,241,0.75);
  display: flex; align-items: flex-start; gap: 12px;
}
.cta-alt-features li::before {
  content: '✓';
  color: var(--accent-light);
  flex-shrink: 0;
}
.btn-secondary-filled {
  background: var(--paper); color: var(--ink);
  padding: 20px 28px; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s;
  border: 1px solid var(--paper);
}
.btn-secondary-filled:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  transform: translateX(6px);
}*/

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 40px 32px;
  border-top: 1px solid rgba(216,90,26,0.3);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  color: var(--paper);
  height: 44px;
  margin-bottom: 20px;
  display: inline-block;
}
.footer-logo svg {
  height: 100%;
  width: auto;
  display: block;
}
.footer-catch {

  font-family: var(--font-display);
  font-size: 18px; color: var(--accent-light);
  margin-bottom: 20px; letter-spacing: 0.03em;
}
.footer-desc { font-size: 12px; line-height: 2; color: rgba(247,245,241,0.65); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.25em;
  margin-bottom: 20px; color: var(--accent-light); text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(247,245,241,0.75); text-decoration: none;
  font-size: 12px; transition: color 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col a::before { content: '─'; color: rgba(247,245,241,0.2); }
.footer-col a:hover::before { color: var(--accent); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(247,245,241,0.08);
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(247,245,241,0.4);
  text-align: center; letter-spacing: 0.1em; line-height: 2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pain-layout { grid-template-columns: 1fr; }
  .pain-img-wrap { min-height: 380px; }
  .pain-diagnosis { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .stages-grid { grid-template-columns: repeat(4, 1fr); }
  .rep-grid { grid-template-columns: 1fr; }
  .case-item, .case-item.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .comparison-visual { grid-template-columns: 1fr; gap: 0; }
  .comparison-visual-text { padding: 32px; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-cell.label { border-right: none; border-bottom: 1px solid rgba(247,245,241,0.08); }
  .comparison-cell.other { border-left: none; border-top: 1px solid rgba(247,245,241,0.08); }
  .issue-grid { grid-template-columns: 1fr; }
  .issue-card { grid-template-columns: 1fr 2fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card.featured { grid-column: span 2; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-img { min-height: 300px; }
  .diagnosis-inner { grid-template-columns: 1fr; }
  .diagnosis-left, .diagnosis-right { padding: 64px 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .header-inner { padding: 14px 20px; }
  nav { display: none; position: fixed; top: 58px; left: 0; right: 0;
        background: var(--paper); padding: 32px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 20px; align-items: flex-start; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 72px 20px; }
  .hero { padding: 100px 0 140px; }
  .hero-inner { padding: 0 20px; }
  .hero-pain-hook { font-size: 32px; }
  .hero-stats { padding: 16px 20px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat-val { font-size: 22px; }
  .formula-card { padding: 32px 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-scenario { border-right: none !important; padding: 32px 24px; }
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .stages-legend { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .stages-legend::after { font-size: 120px; top: -20px; right: 20px; }
  .stages-legend-main { font-size: 28px; }
  .rep-name { font-size: 30px; }
  .rep-photo-sub { display: none; }
  .case-results { grid-template-columns: 1fr; }
  .comparison-cell { padding: 20px; }
  .issue-card { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
  .issue-icon-box { max-width: 120px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; }
  .final-cta-content { padding: 56px 24px; }
  .final-price-amount { font-size: 48px; }
  .urgency-banner { flex-direction: column; gap: 8px; padding: 10px 20px; font-size: 10px; }
  .urgency-banner-text { flex-direction: column; gap: 4px; text-align: center; }
  body { padding-top: 60px; }
  header { top: 60px; }
  .diagnosis-left, .diagnosis-right { padding: 48px 24px; }
  .cta-alt-block { padding: 24px; }
  .cta-alt-title { font-size: 18px; }
}


/* ============================================================
 * DYNAMIC v4 — CEO & Workshop Edition
 * ============================================================ */

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent-light));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(216,90,26,0.6);
}

/* Scroll Reveal */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible {
  opacity: 1; transform: none;
}
.reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.65s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.75s; opacity: 1; transform: none; }

/* Hero mouse glow */
.hero-mouse-glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,90,26,0.22), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: 50%; top: 50%;
  transition: left 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), top 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  mix-blend-mode: screen;
  z-index: 1;
}

.hero-bg-image {
  transform: translateY(0);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Hero word reveal */
.hero-pain-hook .reveal-word {
  display: inline-block; overflow: hidden; vertical-align: top;
}
.hero-pain-hook .reveal-word-inner {
  display: inline-block; transform: translateY(100%);
  animation: slideUpWord 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-pain-hook .reveal-word:nth-child(1) .reveal-word-inner { animation-delay: 0.3s; }
.hero-pain-hook .reveal-word:nth-child(2) .reveal-word-inner { animation-delay: 0.45s; }
@keyframes slideUpWord { to { transform: translateY(0); } }

.counter { display: inline-block; font-variant-numeric: tabular-nums; }

.hero-cta-primary, .final-cta-btn, .cta-btn-primary {
  position: relative; overflow: hidden;
}
.hero-cta-primary::before, .final-cta-btn::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 0; height: 0;
  background: rgba(247,245,241,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}
.hero-cta-primary:hover::before, .final-cta-btn:hover::before {
  width: 400px; height: 400px;
}

/* ============================================================
 * Representative写真 - 青野CEO向け最適化
 * ============================================================ */
.rep-photo {
  /* 青野写真は横長(1200x611=2:1)。顔が中心にくるよう調整 */
  aspect-ratio: 3/4 !important;
  background-size: cover !important;
  background-position: center 25% !important;
  filter: grayscale(100%) contrast(1.1) !important;
  transition: filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.rep-photo-wrap:hover .rep-photo {
  filter: grayscale(0%) contrast(1.02) !important;
}
.rep-photo::after {
  background: linear-gradient(180deg, transparent 40%, rgba(10,14,26,0.3)) !important;
  transition: background 0.6s;
}
.rep-photo-wrap:hover .rep-photo::after {
  background: linear-gradient(180deg, transparent 60%, rgba(10,14,26,0.15)) !important;
}

/* サブ写真(WORKSHOP登壇) - カラーで活き活きと */
.rep-photo-sub {
  filter: contrast(1.08) saturate(0.95) !important;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s;
}
.rep-photo-wrap:hover .rep-photo-sub {
  transform: translateY(-6px) translateX(-6px);
}

/* カラー⇔モノクロ切替ヒントバッジ */
.rep-photo-hover-hint {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(10,14,26,0.82);
  backdrop-filter: blur(10px);
  color: var(--paper);
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em;
  z-index: 3;
  opacity: 0.75;
  pointer-events: none;
  display: flex; align-items: center; gap: 8px;
}
.rep-photo-hover-hint::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulseHint 2s infinite;
}
@keyframes pulseHint {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
@media (max-width: 900px) {
  .rep-photo-hover-hint { display: none; }
  .rep-photo { filter: grayscale(0%) !important; }
}

/* ============================================================
 * Evidence Scene - Sepia
 * ============================================================ */
.evidence-scene {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
  overflow: hidden;
}
.evidence-scene-bg {
  position: absolute; inset: 0;
  background-image: var(--img-5);
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  filter: contrast(1.1) brightness(0.82);
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.evidence-scene.is-visible .evidence-scene-bg { transform: scale(1); }
.evidence-scene-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(216,90,26,0.18), transparent 60%),
    linear-gradient(180deg, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.4) 35%, rgba(10,14,26,0.92) 100%);
}
.evidence-scene-grain {
  position: absolute; inset: 0;
  background-image: url('../assets/noise-texture.svg');
  opacity: 0.14; mix-blend-mode: overlay;
  pointer-events: none;
}
.evidence-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.evidence-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light); text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.evidence-label::before {
  content: ''; width: 50px; height: 1px; background: var(--accent-light);
}
.evidence-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.3; letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.evidence-heading .hl {
  color: var(--accent-light);
  position: relative; display: inline-block;
}
.evidence-heading .hl::after {
  content: ''; position: absolute;
  left: 0; bottom: 4px; width: 100%; height: 8px;
  background: var(--accent); opacity: 0.4; z-index: -1;
}
.evidence-lead {
  font-size: 16px; line-height: 2;
  color: rgba(247,245,241,0.82);
  margin-bottom: 48px; max-width: 540px;
}
.evidence-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(247,245,241,0.15);
  border-bottom: 1px solid rgba(247,245,241,0.15);
}
.evidence-stat-item .es-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800; color: var(--paper);
  line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 4px;
}
.evidence-stat-item .es-unit {
  font-family: var(--font-mono); font-size: 14px;
  color: var(--gold); font-weight: 400;
}
.evidence-stat-item .es-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em;
  color: rgba(247,245,241,0.65);
  text-transform: uppercase; line-height: 1.6;
}
.evidence-caption {
  position: relative;
  padding: 48px 40px;
  background: rgba(10,14,26,0.65);
  backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(200,169,106,0.35);
  box-shadow: 0 50px 120px rgba(0,0,0,0.5);
}
.evidence-caption::before {
  content: 'ON-SITE';
  position: absolute; top: -12px; left: 32px;
  background: var(--ink); color: var(--gold-light);
  padding: 5px 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em; font-weight: 700;
}
.evidence-caption-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--paper);
  margin-bottom: 16px; line-height: 1.5;
}
.evidence-caption-meta {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px; color: rgba(247,245,241,0.78);
  padding-top: 24px;
  border-top: 1px dashed rgba(247,245,241,0.22);
}
.evidence-caption-meta dt {
  color: var(--gold); letter-spacing: 0.15em;
  font-size: 10px; padding-top: 3px;
}
.evidence-caption-meta dd { line-height: 1.7; letter-spacing: 0.03em; }
.evidence-caption-quote {
  font-family: var(--font-display);
  font-size: 17px; line-height: 1.9;
  color: var(--paper); margin: 24px 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-style: italic; letter-spacing: 0.01em;
}
.evidence-scene::after {
  content: ''; position: absolute;
  left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  animation: scanDown 6s ease-in-out infinite;
  z-index: 3; pointer-events: none;
}
@keyframes scanDown {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}
@media (max-width: 900px) {
  .evidence-scene { padding: 90px 0; }
  .evidence-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .evidence-stats { grid-template-columns: 1fr; gap: 20px; }
  .evidence-caption { padding: 32px 24px; }
}

/* ============================================================
 * Teacher Strip (モノクロ・設計哲学帯)
 * ============================================================ */
.teacher-strip {
  position: relative;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
.teacher-strip-bg {
  position: relative;
  width: 100%;
  height: 280px;
  background-image: var(--img-6);
  background-size: cover;
  background-position: center 40%;
  filter: contrast(1.1);
  transform: scale(1.05);
  transition: transform 12s linear;
  will-change: transform;
}
.teacher-strip.is-visible .teacher-strip-bg {
  transform: scale(1.12);
}
.teacher-strip-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.55) 35%, rgba(10,14,26,0.4) 65%, rgba(10,14,26,0.95) 100%),
    linear-gradient(180deg, transparent 0%, rgba(10,14,26,0.3) 100%);
}
.teacher-strip-content {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  padding: 0 60px;
  z-index: 2;
}
.teacher-strip-quote {
  max-width: 580px;
  color: var(--paper);
}
.teacher-str
ip-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.teacher-strip-label::before {
  content: ''; width: 30px; height: 1px; background: var(--accent-light);
}
.teacher-strip-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.teacher-strip-text .em {
  color: var(--gold-light);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.teacher-strip-meta {
  text-align: right;
  color: rgba(247,245,241,0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  line-height: 1.8;
}
.teacher-strip-meta-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .teacher-strip-bg { height: 360px; }
  .teacher-strip-content { flex-direction: column; justify-content: center; gap: 24px; padding: 0 24px; text-align: center; }
  .teacher-strip-meta { text-align: center; }
  .teacher-strip-label { justify-content: center; }
  .teacher-strip-overlay {
    background: linear-gradient(180deg, rgba(10,14,26,0.6) 0%, rgba(10,14,26,0.9) 100%);
  }
}

/* ============================================================
 * Scene Cut (WORKSHOP = 青野CEO登壇写真)
 * ============================================================ */
.scene-cut {
  position: relative;
  background: var(--paper);
  padding: 0;
  overflow: hidden;
}
.scene-cut-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
.scene-cut-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.scene-cut-img {
  position: absolute; inset: 0;
  background-image: var(--img-3);
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scene-cut.is-visible .scene-cut-img {
  transform: scale(1);
}
.scene-cut-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--paper));
}
.scene-cut-label-overlay {
  position: absolute;
  top: 32px; left: 32px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  font-weight: 700;
}
.scene-cut-caption {
  position: absolute;
  bottom: 24px; left: 32px;
  z-index: 2;
  color: var(--paper);
  background: rgba(10,14,26,0.78);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  max-width: 360px;
  border-left: 2px solid var(--accent);
}
.scene-cut-caption strong {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
  color: var(--accent-light);
}
.scene-cut-content {
  padding: 80px 48px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scene-cut-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.scene-cut-label::before {
  content: ''; width: 40px; height: 1px; background: var(--accent);
}
.scene-cut-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--ink);
}
.scene-cut-heading .em {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.scene-cut-heading .em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 6px;
  background: var(--accent);
  opacity: 0.25;
  z-index: -1;
}
.scene-cut-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 32px;
}
.scene-cut-features {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.scene-cut-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
}
.scene-cut-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 9px;
}
.scene-cut-features li strong {
  font-weight: 700;
  color: var(--ink);
}
@media (max-width: 900px) {
  .scene-cut-inner { grid-template-columns: 1fr; }
  .scene-cut-img-wrap { min-height: 320px; }
  .scene-cut-img::after { background: linear-gradient(180deg, transparent 50%, var(--paper)); }
  .scene-cut-content { padding: 48px 24px; }
}

/* Pain image zoom (画像自体モノクロ) */
.pain-img-main {
  transition: transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.1);
}
.pain-img-wrap.is-visible .pain-img-main {
  transform: scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-stagger > *, .pain-img-main, .evidence-scene-bg,
  .teacher-strip-bg, .scene-cut-img, .rep-photo {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-mouse-glow { display: none; }
  .evidence-scene::after { display: none; }
  .rep-photo { filter: grayscale(0%) !important; }
}



/* ============================================================
 * NEW v6: 3 Principles Section (ホワイトボード哲学)
 * ============================================================ */
.principles {
  position: relative;
  background: var(--paper);
  padding: 140px 40px;
  overflow: hidden;
}
.principles::before {
  content: 'PRINCIPLES';
  position: absolute;
  top: 60px; right: -40px;
  font-family: var(--font-serif-en);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300; font-style: italic;
  color: var(--ink);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.principles-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.principles-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
  box-shadow: 0 40px 100px rgba(10,14,26,0.18);
}
.principles-img {
  position: absolute; inset: 0;
  background-image: var(--img-7);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.principles.is-visible .principles-img {
  transform: scale(1);
}
.principles-img-frame {
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
  transition: top 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s, left 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}
.principles.is-visible .principles-img-frame {
  top: -24px; left: -24px;
}
.principles-img-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(10px);
  color: var(--paper);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  border-left: 2px solid var(--accent);
  max-width: 280px;
}
.principles-img-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.principles-content {
  padding-right: 20px;
}
.principles-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.principles-label::before {
  content: ''; width: 40px; height: 1px; background: var(--accent);
}
.principles-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}
.principles-heading .em {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.principles-heading .em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 6px;
  background: var(--accent);
  opacity: 0.25;
  z-index: -1;
}
.principles-list {
  list-style: none;
  margin: 0; padding: 0;
}
.principles-list li {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.4s, background 0.4s;
}
.principles-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.principles-list li:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(216,90,26,0.04), transparent);
}
.principles-list-num {
  flex-shrink: 0;
  width: 56px;
  font-family: var(--font-serif-en);
  font-size: 44px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
  position: relative;
  top: -4px;
}
.principles-list-text {
  flex: 1;
}
.principles-list-text h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.5;
}
.principles-list-text p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}
.principles-quote {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--paper-cream);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
  font-style: italic;
}
.principles-quote-cite {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .principles { padding: 90px 24px; }
  .principles-inner { grid-template-columns: 1fr; gap: 60px; }
  .principles-content { padding-right: 0; }
}
@media (max-width: 640px) {
  .principles-img-frame { display: none; }
  .principles-list-num { font-size: 36px; width: 44px; }
  .principles-list li { padding: 20px 0; gap: 16px; }
}

/* ============================================================
 * NEW v6: Education Banner (大学講義・社会貢献)
 * ============================================================ */
.education {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}
.education-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.education-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.education-img {
  position: absolute; inset: 0;
  background-image: var(--img-8);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.education.is-visible .education-img {
  transform: scale(1);
}
.education-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,14,26,0.1) 0%, transparent 30%, transparent 70%, var(--ink) 100%);
}
.education-label-overlay {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  font-weight: 700;
}
.education-content {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.education-content::before {
  content: 'EDUCATION';
  position: absolute;
  top: 30px; right: 40px;
  font-family: var(--font-serif-en);
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  opacity: 0.04;
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.education-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.education-label::before {
  content: ''; width: 40px; height: 1px; background: var(--accent-light);
}
.education-heading {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--paper);
  z-index: 2;
}
.education-heading .em {
  color: var(--gold-light);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.education-lead {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 2;
  color: rgba(247,245,241,0.82);
  margin-bottom: 32px;
}
.education-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(247,245,241,0.15);
}
.education-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.education-stat-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  font-weight: 400;
}
.education-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(247,245,241,0.6);
  text-transform: uppercase;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .education-inner { grid-template-columns: 1fr; }
  .education-img-wrap { min-height: 320px; }
  .education-img::after { background: linear-gradient(180deg, transparent 50%, var(--ink)); }
  .education-content { padding: 56px 32px; }
  .education-label-overlay { top: 24px; right: 24px; }
}
@media (max-width: 480px) {
  .education-stats { grid-template-columns: 1fr; gap: 20px; }
}



/* ===== 追加スマホ最適化 (480px / 768px / issue-tabs+その他) ===== */
@media (max-width: 768px) {
  .issue-panel { padding: 32px 24px; }
  .issue-panel-products { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .issue-panel-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .issue-panel-cta-main { justify-content: center; padding: 14px 24px; }
  .issue-panel-cta-sub { justify-content: center; }
  .issue-tab-num { font-size: 9px; }
  .issue-tab-label { font-size: 12px; }
  .issue-tab { padding: 14px 10px; gap: 3px; min-width: 90px; }
}
@media (max-width: 480px) {
  .issue-panel { padding: 24px 18px; min-height: 360px; }
  .issue-panel-head { padding-bottom: 24px; margin-bottom: 24px; }
  .issue-panel-catch { font-size: 18px; }
  .issue-panel-description { font-size: 14px; line-height: 1.85; }
  .issue-panel-card { padding: 20px 18px; }
  .issue-panel-card-name { font-size: 15px; }
  .issue-panel-card-desc { font-size: 12px; }
  .issue-tab-label { font-size: 11px; }
  .issue-tab { padding: 12px 8px; min-width: 78px; }
  .issue-tabs { padding: 4px; gap: 2px; }
  /* タブ全体が見えるよう横スクロールを保証 */
  .issue-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .issue-tab { flex: 0 0 auto; }
}



/* === Header/footer sitemap alignment (2026-05) === */
.footer-inner {
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(120px, 1fr));
}
.footer-col ul + h4,
.footer-col h4 + ul + h4 {
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
html.sp-delivery .footer-inner {
  grid-template-columns: 1fr !important;
}

/* === 公開前修正パッチ (T3 rev3) === */

/* (1) ハンバーガーボタンを必ず最前面 + タップ確実 */
.menu-toggle {
  position: relative;
  z-index: 102;
  pointer-events: auto;
  min-width: 44px;
  min-height: 44px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* (2) urgency-banner はヘッダーより下のレイヤーに */
.urgency-banner { z-index: 99 !important; }

/* (3) nav.open は最前面 */
nav.open { z-index: 101; }

/* (4) body.menu-open: 背面スクロール防止 */
body.menu-open { overflow: hidden; }

/* ==================================================
 * スマホ表示の調整 (max-width: 640px)
 * ================================================== */
@media (max-width: 640px) {
  /* メニュー位置を urgency-banner + header の合算高さに合わせる */
  nav {
    top: 90px !important;
    max-height: calc(100vh - 90px) !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 24px 80px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: #F7F5F1 !important;  /* paper色を不透明指定で背景を確保 */
  }

  /* btn-nav は通常時(=nav閉じている時)はヘッダーに居ないように非表示 */
  .btn-nav {
    display: none;
  }

  /* nav が開いているときのみ、内部のbtn-navを表示・全幅化 */
  nav.open .btn-nav,
  #mainNav.open .btn-nav {
    display: inline-flex !important;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px !important;
    margin-top: 12px;
    background: var(--accent) !important;
    color: var(--paper) !important;
    border: 1px solid var(--accent) !important;
    border-color: var(--accent) !important;
    font-weight: 600;
    text-align: center;
  }

  /* nav 内 li の縦並び、btn-nav を含む li は横幅100% */
  nav ul li { width: 100%; }

  /* (5) 主要グリッドをスマホで1カラムに(inline style対策で !important) */
  .method-steps,
  .curr-grid,
  .traps-grid,
  .proof-grid,
  .roi-scenarios,
  .grad-axes,
  .voice-grid,
  .who-grid {
    grid-template-columns: 1fr !important;
  }
  /* 横スクロール抑止 */
  html, body { overflow-x: hidden; }
}

/* タブレット境界 */
@media (max-width: 768px) {
  .method-steps,
  .curr-grid,
  .traps-grid,
  .proof-grid,
  .roi-scenarios,
  .grad-axes,
  .voice-grid,
  .who-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
  /* 1024px以下では3カラムは2カラムに(個別ファイルが3カラム指定の場合の保険) */
  .method-steps[style*="repeat(3"],
  .traps-grid[style*="repeat(3"],
  .proof-grid[style*="repeat(3"],
  .roi-scenarios[style*="repeat(3"],
  .grad-axes[style*="repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}



/* === T3 202605 image update: local BtoB visuals === */
.hero-bg-image {
  background-image: url('../assets/img_c77d4fb61cfa.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0.38 !important;
  filter: grayscale(10%) contrast(1.08) brightness(0.92) !important;
}
.hero-bg-overlay {
  background:
    radial-gradient(ellipse at 25% 35%, rgba(216,90,26,0.24), transparent 58%),
    linear-gradient(90deg, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.70) 48%, rgba(10,14,26,0.58) 100%) !important;
}
.img-featured img,
.img-split-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rep-photo,
.rep-photo-sub,
.pain-img-main,
.scene-cut-img,
.evidence-scene-bg,
.teacher-strip-bg,
.principles-img,
.education-img,
.real-img,
.culture-img,
.disc-img,
.beyond-img,
.online-bg,
.scale-banner-bg,
.ps-item-img {
  background-size: cover !important;
  filter: contrast(1.06) saturate(0.96);
}
.t3-image-proof {
  background: var(--paper);
  padding: 84px 40px !important;
  border-bottom: 1px solid var(--line);
}
.t3-proof-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}
.t3-proof-head span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
}
.t3-proof-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.t3-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.t3-proof-card {
  min-width: 0;
  margin: 0;
  background: var(--paper-cream);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(58px, auto);
}
.t3-proof-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.95);
}
.t3-proof-card:first-child .t3-proof-img {
  aspect-ratio: 16 / 9;
}
.t3-proof-card figcaption {
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
}
.case-img {
  aspect-ratio: 16 / 10 !important;
}
.product-img,
.product-card.featured .product-img {
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
}
.t3-company-footer {
  max-width: 1400px;
  margin: 0 auto 36px;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(247,245,241,0.12);
  border-bottom: 1px solid rgba(247,245,241,0.08);
}
.t3-company-footer-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}
.t3-company-footer-head span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--accent-light);
}
.t3-company-footer-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper);
  letter-spacing: 0.04em;
}
.t3-company-footer-head a,
.t3-company-footer a {
  color: var(--gold-light);
  text-decoration: none;
}
.t3-company-footer-head a {
  font-size: 12px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(200,169,106,0.45);
  padding-bottom: 4px;
}
.t3-company-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.35fr;
  gap: 28px;
}
.t3-company-footer dl {
  margin: 0;
  padding: 0;
}
.t3-company-footer dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(247,245,241,0.07);
}
.t3-company-footer dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(247,245,241,0.45);
}
.t3-company-footer dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(247,245,241,0.72);
}
.aono-ceo-photo {
  background-position: center 28% !important;
  filter: grayscale(18%) contrast(1.05) saturate(0.96) !important;
}
.rep-photo-wrap:hover .aono-ceo-photo {
  filter: grayscale(0%) contrast(1.03) saturate(1) !important;
}
.aono-ceo-photo::after {
  background: linear-gradient(180deg, transparent 52%, rgba(10,14,26,0.32)) !important;
}

html.pc-delivery .hero-bg-image {
  opacity: 0.42 !important;
}
html.pc-delivery .pain-img-wrap {
  min-height: clamp(440px, 40vw, 560px) !important;
}
html.pc-delivery .scene-cut-inner,
html.pc-delivery .scene-cut-img-wrap {
  min-height: 480px !important;
}
html.pc-delivery .principles-img-wrap,
html.pc-delivery .education-img-wrap {
  min-height: clamp(420px, 36vw, 520px) !important;
}

/* ================================================================
   SAFETY NET - スマホ表示崩れ対策 v3 (2026-05-20)
   全2-3カラムgridの強制1カラム化＋本文padding確保
   ================================================================ */
@media (max-width: 768px) {

  /* --- 1. 全ての2-3カラム grid / flex を 1カラムに強制 --- */
  .evidence-inner,
  .guarantee-badge,
  .excel-standard-grid,
  .excel-flex-block,
  .pain-layout, .pain-diagnosis, .pain-grid,
  .scene-cut-inner, .principles-inner,
  .education-inner, .education-stats,
  .evidence-stats, .stages-legend, .case-results,
  .traps-grid, .traps-grid-4, .who-grid, .curr-grid,
  .service-grid, .program-grid, .price-grid,
  .comparison-grid, .flow-grid, .spec-grid, .spec-tier-row,
  .products-grid, .voice-grid, .faq-grid,
  .pre-pain-body, .rep-grid, .issue-grid,
  .proof-grid, .t3-proof-grid,
  .roi-scenarios, .roi-hero,
  .hero-stats-inner, .hero-inner, .hero-cta-row,
  .cta-inner, .footer-inner, .t3-company-footer-grid,
  .tlt-check-grid, .video-fb-types, .img-split, .industry-row,
  [class*="-grid"]:not(.no-collapse),
  [class*="two-col"]:not(.no-collapse),
  [class*="before-after"]:not(.no-collapse) {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: stretch !important;
  }

  /* --- 2. 子要素の min-width:auto 強制（grid の trap 回避） --- */
  .evidence-inner > *,
  .guarantee-badge > *,
  .excel-standard-grid > *,
  [class*="-grid"] > *,
  [class*="-inner"] > *,
  [class*="-layout"] > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* --- 3. guarantee-seal などの円バッジは中央寄せの装飾要素として残す --- */
  .guarantee-seal {
    margin: 0 auto !important;
  }
  .excel-standard-arrow {
    transform: rotate(90deg) !important;
    margin: 8px auto !important;
  }

  /* --- 4. 本文 section の左右 padding を最低 20px 確保 --- */
  html.sp-delivery section,
  html.pc-delivery section,
  section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  html.sp-delivery section > *:not(.hero-bg):not([class*="-bg"]):not([class*="-grain"]),
  html.pc-delivery section > *:not(.hero-bg):not([class*="-bg"]):not([class*="-grain"]),
  section > .container,
  section > .section-inner,
  section > [class*="-inner"],
  section > p,
  section > h1, section > h2, section > h3,
  section > ul, section > ol, section > dl,
  section > blockquote,
  section > .content {
    padding-left: max(20px, env(safe-area-inset-left)) !important;
    padding-right: max(20px, env(safe-area-inset-right)) !important;
    box-sizing: border-box !important;
  }

  /* --- 5. 文字サイズ／行間の最低値（読み心地確保） --- */
  body, p, li, dd, .text, [class*="-desc"], [class*="-text"] {
    line-height: 1.75 !important;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
  }
}

/* sp-delivery はPC幅のプレビュー枠で表示されるため、同じ安全網をメディアクエリ外でも適用 */
html.sp-delivery .evidence-inner,
  html.sp-delivery .guarantee-badge,
  html.sp-delivery .excel-standard-grid,
  html.sp-delivery .excel-flex-block,
  html.sp-delivery .pain-layout,
  html.sp-delivery .pain-diagnosis,
  html.sp-delivery .pain-grid,
  html.sp-delivery .scene-cut-inner,
  html.sp-delivery .principles-inner,
  html.sp-delivery .education-inner,
  html.sp-delivery .education-stats,
  html.sp-delivery .evidence-stats,
  html.sp-delivery .stages-legend,
  html.sp-delivery .case-results,
  html.sp-delivery .traps-grid,
  html.sp-delivery .traps-grid-4,
  html.sp-delivery .who-grid,
  html.sp-delivery .curr-grid,
  html.sp-delivery .service-grid,
  html.sp-delivery .program-grid,
  html.sp-delivery .price-grid,
  html.sp-delivery .comparison-grid,
  html.sp-delivery .flow-grid,
  html.sp-delivery .spec-grid,
  html.sp-delivery .spec-tier-row,
  html.sp-delivery .products-grid,
  html.sp-delivery .voice-grid,
  html.sp-delivery .faq-grid,
  html.sp-delivery .pre-pain-body,
  html.sp-delivery .rep-grid,
  html.sp-delivery .issue-grid,
  html.sp-delivery .proof-grid,
  html.sp-delivery .t3-proof-grid,
  html.sp-delivery .roi-scenarios,
  html.sp-delivery .roi-hero,
  html.sp-delivery .hero-stats-inner,
  html.sp-delivery .hero-inner,
  html.sp-delivery .hero-cta-row,
  html.sp-delivery .cta-inner,
  html.sp-delivery .footer-inner,
  html.sp-delivery .t3-company-footer-grid,
  html.sp-delivery .tlt-check-grid,
  html.sp-delivery .video-fb-types,
  html.sp-delivery .img-split,
  html.sp-delivery .industry-row,
  html.sp-delivery [class*="-grid"]:not(.no-collapse),
  html.sp-delivery [class*="two-col"]:not(.no-collapse),
  html.sp-delivery [class*="before-after"]:not(.no-collapse) {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  align-items: stretch !important;
}
html.sp-delivery .evidence-inner > *,
  html.sp-delivery .guarantee-badge > *,
  html.sp-delivery .excel-standard-grid > *,
  html.sp-delivery [class*="-grid"] > *,
  html.sp-delivery [class*="-inner"] > *,
  html.sp-delivery [class*="-layout"] > * {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}
html.sp-delivery .guarantee-seal {
  margin: 0 auto !important;
}
html.sp-delivery .excel-standard-arrow {
  transform: rotate(90deg) !important;
  margin: 8px auto !important;
}
html.sp-delivery section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
html.sp-delivery section > *:not(.hero-bg):not([class*="-bg"]):not([class*="-grain"]),
html.sp-delivery section > .container,
html.sp-delivery section > .section-inner,
html.sp-delivery section > [class*="-inner"],
html.sp-delivery section > p,
html.sp-delivery section > h1,
html.sp-delivery section > h2,
html.sp-delivery section > h3,
html.sp-delivery section > ul,
html.sp-delivery section > ol,
html.sp-delivery section > dl,
html.sp-delivery section > blockquote,
html.sp-delivery section > .content {
  padding-left: max(20px, env(safe-area-inset-left)) !important;
  padding-right: max(20px, env(safe-area-inset-right)) !important;
  box-sizing: border-box !important;
}
html.sp-delivery body,
html.sp-delivery p,
html.sp-delivery li,
html.sp-delivery dd,
html.sp-delivery .text,
html.sp-delivery [class*="-desc"],
html.sp-delivery [class*="-text"] {
  line-height: 1.75 !important;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

@media (min-width: 1181px) {
  .responsive-page-organization .issue-panel-products.is-four {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (min-width: 769px) and (max-width: 1180px) {
  .responsive-page-organization .issue-panel-products.is-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.responsive-page-organization .org-faq {
  max-width: 1120px;
  margin: clamp(54px, 7vw, 90px) auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(216, 90, 26, 0.34);
  background: rgba(10, 14, 26, 0.94);
  color: #f7f5f1;
}
.responsive-page-organization .org-faq .section-tag {
  margin: 0 0 12px;
  color: #ff7a36;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.responsive-page-organization .org-faq h2 {
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--font-display, "Yu Mincho", serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  letter-spacing: 0;
}
.responsive-page-organization .org-faq-list {
  display: grid;
  gap: 12px;
  margin: 0;
}
.responsive-page-organization .org-faq-list details {
  border: 1px solid rgba(247, 245, 241, 0.16);
  background: rgba(247, 245, 241, 0.04);
}
.responsive-page-organization .org-faq-list summary {
  min-height: 56px;
  padding: 16px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
  cursor: pointer;
}
.responsive-page-organization .org-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(247, 245, 241, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}
.responsive-page-organization .org-faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  background: #d85a1a;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 768px) {
  .responsive-page-organization .org-faq {
    margin: 44px 20px;
    padding: 26px 20px;
  }
}

/* One-file responsive delivery: PC visuals by default, SP visuals below 768px. */
.t3-mobile-footer-nav {
  display: none;
}

.t3-mobile-quick-nav,
.t3-mobile-leadgen-card,
.t3-mobile-inline-cta,
.t3-mobile-sticky-cta,
.t3-mobile-accordion-head,
.t3-mobile-menu-toggle,
.t3-mobile-menu-overlay,
.t3-mobile-menu-panel,
.t3-mobile-formula-card {
  display: none;
}

.t3-product-logo {
  display: block;
  line-height: 0;
}

.t3-product-logo .t3-product-logo-svg {
  display: block;
  width: 100%;
  height: auto;
}

.t3-role-nexus-hero-logo {
  width: clamp(180px, 19vw, 240px);
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.22));
}

.t3-role-nexus-compact-label {
  gap: 12px !important;
  padding-left: 14px !important;
}

.t3-role-nexus-compact-label::before {
  content: none !important;
  display: none !important;
}

.t3-role-nexus-label-mark {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--paper, #f7f5f1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.28));
}

.t3-role-nexus-compact-label span {
  min-width: 0;
}

.responsive-page-organization .scene-cut-features li {
  display: grid !important;
  grid-template-columns: 6px max-content minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 14px !important;
}

.responsive-page-organization .scene-cut-features li::before {
  grid-column: 1 !important;
}

.responsive-page-organization .scene-cut-features li strong {
  grid-column: 2 !important;
  display: inline-block !important;
  min-width: 3.5em !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.t3-we-hub-header-logo {
  width: 172px;
  max-width: 34vw;
  min-height: auto !important;
}

.t3-we-hub-header-logo::before {
  display: none !important;
}

.t3-we-hub-hero-logo {
  width: min(360px, 42vw);
  margin: 0 0 26px;
}

.t3-we-hub-footer-logo {
  width: 220px;
  max-width: 100%;
}

@media (max-width: 768px) {
  :root {
    --img-1: url('../assets/img_1d62c321d9ad.webp');
    --img-2: url('../assets/img_bff8e44ee3e3.webp');
    --img-3: url('../assets/img_3a9b0cec03c9.webp');
    --img-4: url('../assets/img_9efd2d33043d.webp');
    --img-5: url('../assets/img_c77d4fb61cfa.webp');
    --img-6: url('../assets/img_1ee4e4bf16b5.webp');
    --img-7: url('../assets/img_28ef59c90e20.webp');
    --img-8: url('../assets/img_939d4d656268.webp');
  }

  /* Smartphone image set from the former SP delivery. */
  /* === T3 202605 image update: local BtoB visuals === */
  .hero-bg-image {
    background-image: url('../assets/img_1d62c321d9ad.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.38 !important;
    filter: grayscale(10%) contrast(1.08) brightness(0.92) !important;
  }
  .hero-bg-overlay {
    background:
      radial-gradient(ellipse at 25% 35%, rgba(216,90,26,0.24), transparent 58%),
      linear-gradient(90deg, rgba(10,14,26,0.88) 0%, rgba(10,14,26,0.70) 48%, rgba(10,14,26,0.58) 100%) !important;
  }
  .img-featured img,
  .img-split-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .rep-photo,
  .rep-photo-sub,
  .pain-img-main,
  .scene-cut-img,
  .evidence-scene-bg,
  .teacher-strip-bg,
  .principles-img,
  .education-img,
  .real-img,
  .culture-img,
  .disc-img,
  .beyond-img,
  .online-bg,
  .scale-banner-bg,
  .ps-item-img {
    background-size: cover !important;
    filter: contrast(1.06) saturate(0.96);
  }
  .t3-image-proof {
    background: var(--paper);
    padding: 84px 40px !important;
    border-bottom: 1px solid var(--line);
  }
  .t3-proof-head {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 32px;
  }
  .t3-proof-head span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    color: var(--accent);
  }
  .t3-proof-head h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.7vw, 38px);
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .t3-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }
  .t3-proof-card {
    min-width: 0;
    margin: 0;
    background: var(--paper-cream);
    border: 1px solid var(--line);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(58px, auto);
  }
  .t3-proof-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    filter: contrast(1.05) saturate(0.95);
  }
  .t3-proof-card:first-child .t3-proof-img {
    aspect-ratio: 16 / 9;
  }
  .t3-proof-card figcaption {
    padding: 14px 16px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
  }
  .case-img {
    aspect-ratio: 16 / 10 !important;
  }
  .product-img,
  .product-card.featured .product-img {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
  .t3-company-footer {
    max-width: 1400px;
    margin: 0 auto 36px;
    padding: 34px 0 30px;
    border-top: 1px solid rgba(247,245,241,0.12);
    border-bottom: 1px solid rgba(247,245,241,0.08);
  }
  .t3-company-footer-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
  }
  .t3-company-footer-head span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    color: var(--accent-light);
  }
  .t3-company-footer-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--paper);
    letter-spacing: 0.04em;
  }
  .t3-company-footer-head a,
  .t3-company-footer a {
    color: var(--gold-light);
    text-decoration: none;
  }
  .t3-company-footer-head a {
    font-size: 12px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(200,169,106,0.45);
    padding-bottom: 4px;
  }
  .t3-company-footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.35fr;
    gap: 28px;
  }
  .t3-company-footer dl {
    margin: 0;
    padding: 0;
  }
  .t3-company-footer dl > div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 9px 0;
    border-top: 1px solid rgba(247,245,241,0.07);
  }
  .t3-company-footer dt {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(247,245,241,0.45);
  }
  .t3-company-footer dd {
    margin: 0;
    font-size: 12px;
    line-height: 1.85;
    color: rgba(247,245,241,0.72);
  }
  .aono-ceo-photo {
    background-position: center 28% !important;
    filter: grayscale(18%) contrast(1.05) saturate(0.96) !important;
  }
  .rep-photo-wrap:hover .aono-ceo-photo {
    filter: grayscale(0%) contrast(1.03) saturate(1) !important;
  }
  .aono-ceo-photo::after {
    background: linear-gradient(180deg, transparent 52%, rgba(10,14,26,0.32)) !important;
  }
  
  html.sp-delivery {
    background: #d9dde3;
  }
  html.sp-delivery body {
    max-width: 430px;
    margin: 0 auto;
    box-shadow: 0 24px 80px rgba(10,14,26,0.22);
    padding-top: 0 !important;
    overflow-x: hidden;
  }
  html.sp-delivery,
  html.sp-delivery body {
    min-width: 0;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  html.sp-delivery .urgency-banner,
  html.sp-delivery header {
    width: min(430px, 100vw);
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  html.sp-delivery header {
    top: 0 !important;
    z-index: 100 !important;
  }
  html.sp-delivery .header-inner {
    padding: 14px 22px !important;
    min-height: 64px;
  }
  html.sp-delivery .logo {
    height: 34px !important;
  }
  html.sp-delivery .urgency-banner {
    top: 73px !important;
    min-height: 58px;
    padding: 9px 22px !important;
    flex-direction: column;
    gap: 4px !important;
    text-align: center;
    overflow: visible !important;
  }
  html.sp-delivery .urgency-banner-dot {
    display: none !important;
  }
  html.sp-delivery .urgency-banner-text {
    justify-content: center;
    gap: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  html.sp-delivery .urgency-banner-text strong,
  html.sp-delivery .urgency-banner-cta {
    font-size: 11px !important;
    line-height: 1.45 !important;
    letter-spacing: 0.08em !important;
  }
  html.sp-delivery .header-inner,
  html.sp-delivery .hero-inner,
  html.sp-delivery .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  html.sp-delivery nav { display: none !important; }
  html.sp-delivery .menu-toggle { display: flex !important; }
  html.sp-delivery nav.open {
    top: 131px !important;
    max-height: calc(100vh - 131px) !important;
  }
  html.sp-delivery .hero {
    min-height: auto !important;
    padding: 155px 0 56px !important;
    align-items: flex-start !important;
  }
  html.sp-delivery .hero-inner,
  html.sp-delivery .hero-split,
  html.sp-delivery .method-hero,
  html.sp-delivery .traps-grid,
  html.sp-delivery .who-grid,
  html.sp-delivery .curr-grid,
  html.sp-delivery .method-steps,
  html.sp-delivery .grad-axes,
  html.sp-delivery .service-grid,
  html.sp-delivery .program-grid,
  html.sp-delivery .price-grid,
  html.sp-delivery .comparison-grid,
  html.sp-delivery .flow-grid,
  html.sp-delivery .faq-grid,
  html.sp-delivery .answer-cards,
  html.sp-delivery .diagnosis-inner,
  html.sp-delivery .education-inner,
  html.sp-delivery .final-cta-inner,
  html.sp-delivery .footer-inner,
  html.sp-delivery .issue-card,
  html.sp-delivery .pre-pain-body,
  html.sp-delivery .principles-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  html.sp-delivery .hero-inner {
    gap: 22px !important;
  }
  html.sp-delivery .hero-main {
    max-width: 100% !important;
  }
  html.sp-delivery .hero-limited-badge,
  html.sp-delivery .hero-label,
  html.sp-delivery .hero-pain-hook,
  html.sp-delivery .hero-pain-hook .reveal-word-inner,
  html.sp-delivery .hero-divider,
  html.sp-delivery .hero h1,
  html.sp-delivery .hero-title,
  html.sp-delivery .hero-title-en,
  html.sp-delivery .hero-sub,
  html.sp-delivery .hero-lead,
  html.sp-delivery .hero-cta-row,
  html.sp-delivery .hero-cta-assure {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  html.sp-delivery .hero-formula,
  html.sp-delivery .hero-stats,
  html.sp-delivery .hero-visual,
  html.sp-delivery .hero-big-text,
  html.sp-delivery .hero-spec {
    display: none !important;
  }
  html.sp-delivery .hero-cta-row,
  html.sp-delivery .hero-cta-assure-chips {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  html.sp-delivery .hero-cta-primary,
  html.sp-delivery .hero-cta-secondary {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
  }
  html.sp-delivery .hero-cta-assure {
    display: none !important;
  }
  html.sp-delivery section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  html.sp-delivery .section-head {
    margin-bottom: 34px !important;
  }
  html.sp-delivery .hero-label,
  html.sp-delivery .section-label,
  html.sp-delivery .photo-strip-label {
    letter-spacing: 0.16em !important;
  }
  html.sp-delivery .hero-title,
  html.sp-delivery .hero-pain-hook {
    font-size: clamp(31px, 9.6vw, 42px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
    color: var(--paper) !important;
    text-shadow: 0 2px 24px rgba(0,0,0,0.38);
  }
  html.sp-delivery .section-title {
    font-size: clamp(27px, 7.6vw, 36px) !important;
    line-height: 1.34 !important;
    letter-spacing: 0 !important;
  }
  html.sp-delivery .hero-lead,
  html.sp-delivery .hero-subtitle,
  html.sp-delivery .section-lead,
  html.sp-delivery p,
  html.sp-delivery li,
  html.sp-delivery dd {
    line-height: 1.82 !important;
  }
  html.sp-delivery .hero-bg-image {
    opacity: 0.42 !important;
    filter: grayscale(8%) contrast(1.08) brightness(0.86) !important;
    background-position: center top !important;
  }
  html.sp-delivery .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(10,14,26,0.38) 0%, rgba(10,14,26,0.72) 40%, rgba(10,14,26,0.92) 100%) !important;
  }
  html.sp-delivery .reveal,
  html.sp-delivery .reveal-left,
  html.sp-delivery .reveal-right,
  html.sp-delivery .reveal-scale,
  html.sp-delivery .reveal-zoom,
  html.sp-delivery .reveal-stagger,
  html.sp-delivery .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition-delay: 0s !important;
  }
  html.sp-delivery .t3-image-proof {
    padding: 56px 0 !important;
  }
  html.sp-delivery .t3-proof-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 !important;
  }
  html.sp-delivery .t3-proof-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  html.sp-delivery .t3-proof-card,
  html.sp-delivery .case-item,
  html.sp-delivery .product-card {
    min-height: auto !important;
    max-width: none !important;
    width: 100% !important;
  }
  html.sp-delivery .t3-proof-img,
  html.sp-delivery .t3-proof-card:first-child .t3-proof-img {
    aspect-ratio: 4 / 3 !important;
    width: 100% !important;
    min-height: 218px;
    max-height: 280px;
    background-size: cover !important;
  }
  /* .case-img は従来通り 4:3 横長を維持(ケーススタディは横構図のため) */
  html.sp-delivery .case-img {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    min-height: 218px;
    max-height: 280px;
    background-size: cover !important;
  }
  
  /* .product-img は 3:4 縦長に変更(SPの本来仕様、webpアセット自体が3:4クロップ) */
  html.sp-delivery .product-img,
  html.sp-delivery .product-card.featured .product-img {
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;          /* ← 重要: 280pxキャップを解除 */
    background-size: cover !important;
    background-position: center !important;
  }
  html.sp-delivery .pain-img-wrap,
  html.sp-delivery .scene-cut-img-wrap,
  html.sp-delivery .principles-img-wrap,
  html.sp-delivery .education-img-wrap {
    min-height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }
  html.sp-delivery .img-featured,
  html.sp-delivery .img-split,
  html.sp-delivery .photo-strip-card {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }
  html.sp-delivery .scene-cut-inner {
    min-height: auto !important;
  }
  html.sp-delivery .case-item,
  html.sp-delivery .case-item.reverse {
    gap: 24px !important;
    margin-top: 38px !important;
  }
  html.sp-delivery .product-body,
  html.sp-delivery .product-card.featured .product-body,
  html.sp-delivery .case-content {
    padding: 26px 24px !important;

  }
  html.sp-delivery .product-card h3,
  html.sp-delivery .product-card.featured h3,
  html.sp-delivery .case-title,
  html.sp-delivery .scene-cut-heading,
  html.sp-delivery .photo-strip-heading {
    font-size: clamp(22px, 6.2vw, 30px) !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
  }
  html.sp-delivery .rep-grid {
    gap: 30px !important;
  }
  html.sp-delivery .rep-content {
    padding-top: 0 !important;
  }
  html.sp-delivery .rep-photo {
    aspect-ratio: 3 / 4 !important;
    min-height: 420px !important;
    background-position: center 28% !important;
  }
  html.sp-delivery .t3-company-footer {
    margin: 0 22px 32px;
    padding: 28px 0;
  }
  html.sp-delivery .t3-company-footer-head,
  html.sp-delivery .t3-company-footer-grid,
  html.sp-delivery .t3-company-footer dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  html.sp-delivery .t3-company-footer-head a {
    justify-self: start;
  }
  html.sp-delivery .hero-big-text,
  html.sp-delivery .hero-spec {
    display: none !important;
  }
  html.sp-delivery .timeline-row {
    grid-template-columns: 1fr !important;
  }
  html.sp-delivery .timeline-meta,
  html.sp-delivery .timeline-month {
    border-left: 0 !important;
    border-right: 0 !important;
    text-align: left !important;
  }
  
  /* === T3 mobile director pass: keep every page inside the phone frame === */
  html.sp-delivery *,
  html.sp-delivery *::before,
  html.sp-delivery *::after {
    box-sizing: border-box !important;
  }
  html.sp-delivery body {
    width: min(430px, 100vw) !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  html.sp-delivery .container,
  html.sp-delivery .hero-inner,
  html.sp-delivery .evidence-inner,
  html.sp-delivery .scene-cut-inner,
  html.sp-delivery .principles-inner,
  html.sp-delivery .education-inner,
  html.sp-delivery .teacher-strip-inner,
  html.sp-delivery .real-inner,
  html.sp-delivery .culture-inner,
  html.sp-delivery .disc-inner,
  html.sp-delivery .beyond-inner,
  html.sp-delivery .cta-inner,
  html.sp-delivery .final-cta-inner,
  html.sp-delivery .diagnosis-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  html.sp-delivery .hero {
    min-height: auto !important;
    padding-top: 150px !important;
    padding-bottom: 64px !important;
    overflow: hidden !important;
  }
  html.sp-delivery .hero-content,
  html.sp-delivery .hero-main {
    width: 100% !important;
    max-width: 100% !important;
  }
  html.sp-delivery .hero-title,
  html.sp-delivery .hero-pain-hook,
  html.sp-delivery .section-title {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
  html.sp-delivery .hero-title {
    font-size: clamp(30px, 8.8vw, 38px) !important;
  }
  html.sp-delivery .hero-tagline,
  html.sp-delivery .hero-title-en,
  html.sp-delivery .hero-sub {
    max-width: 100% !important;
  }
  html.sp-delivery .hero-limited-badge {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 6px !important;
    padding: 14px 16px !important;
    margin-bottom: 28px !important;
    text-align: center !important;
    letter-spacing: 0.16em !important;
  }
  html.sp-delivery .hero-limited-badge-dot {
    display: none !important;
  }
  html.sp-delivery .hero-limited-badge strong {
    display: block !important;
    width: 100% !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }
  html.sp-delivery .hero-bg-image,
  html.sp-delivery .hero.kenburns .hero-bg-image {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    animation: none !important;
    background-position: center center !important;
  }
  html.sp-delivery .hero-filaments,
  html.sp-delivery .hero-filament,
  html.sp-delivery .hero-grid-deco,
  html.sp-delivery .hero-mouse-glow,
  html.sp-delivery .scroll-progress,
  html.sp-delivery .hero-scroll-cue {
    display: none !important;
  }
  html.sp-delivery .pain {
    overflow: hidden !important;
  }
  html.sp-delivery .pain-layout,
  html.sp-delivery .pain-grid,
  html.sp-delivery .pain-diagnosis,
  html.sp-delivery .rep-grid,
  html.sp-delivery .case-item,
  html.sp-delivery .case-item.reverse,
  html.sp-delivery .issue-grid,
  html.sp-delivery .issue-panel-products,
  html.sp-delivery .products-grid,
  html.sp-delivery .product-finder,
  html.sp-delivery .comparison-visual,
  html.sp-delivery .comparison-row,
  html.sp-delivery .stages-grid,
  html.sp-delivery .stages-legend,
  html.sp-delivery .education-stats,
  html.sp-delivery .evidence-stats,
  html.sp-delivery .rep-fit,
  html.sp-delivery .teacher-strip-layout,
  html.sp-delivery .principles-layout,
  html.sp-delivery .real-layout,
  html.sp-delivery .culture-layout,
  html.sp-delivery .disc-layout,
  html.sp-delivery .beyond-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    direction: ltr !important;
  }
  html.sp-delivery .pain-img-wrap {
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
  }
  html.sp-delivery .pain-img-main {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-position: center center !important;
  }
  html.sp-delivery .pain-img-badge {
    top: 18px !important;
    left: 18px !important;
    padding: 8px 14px !important;
    font-size: 10px !important;
  }
  html.sp-delivery .pain-img-quote {
    padding: 22px !important;
  }
  html.sp-delivery .pain-img-quote-text {
    font-size: 16px !important;
  }
  html.sp-delivery .pain-scenario {
    padding: 26px 22px !important;
    border-right: 0 !important;
  }
  html.sp-delivery .pain-diagnosis {
    margin-top: 34px !important;
    padding: 34px 26px !important;
    gap: 24px !important;
    overflow: hidden !important;
  }
  html.sp-delivery .pain-diagnosis-text {
    font-size: clamp(21px, 6vw, 26px) !important;
    line-height: 1.72 !important;
  }
  html.sp-delivery .pain-solution {
    padding: 22px !important;
  }
  html.sp-delivery .pain-solution-text {
    font-size: 15px !important;
  }
  html.sp-delivery .representative {
    overflow: hidden !important;
  }
  html.sp-delivery .rep-grid {
    margin-top: 34px !important;
    gap: 34px !important;
  }
  html.sp-delivery .rep-photo-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 0 !important;
  }
  html.sp-delivery .rep-photo-frame {
    display: none !important;
  }
  html.sp-delivery .rep-photo {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    background-position: center 28% !important;
  }
  html.sp-delivery .rep-photo-caption {
    left: 18px !important;
    bottom: 18px !important;
    padding: 9px 14px !important;
    font-size: 10px !important;
  }
  html.sp-delivery .rep-photo-sub {
    position: relative !important;
    display: block !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 14px !important;
    aspect-ratio: 16 / 9 !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: contrast(1.05) saturate(0.95) !important;
  }
  html.sp-delivery .rep-photo-sub-label {
    top: 10px !important;
    right: 10px !important;
    padding: 7px 10px !important;
  }
  html.sp-delivery .rep-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  html.sp-delivery .rep-name-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
  }
  html.sp-delivery .rep-name {
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.15 !important;
    writing-mode: horizontal-tb !important;
  }
  html.sp-delivery .rep-title {
    writing-mode: horizontal-tb !important;
  }
  html.sp-delivery .rep-message {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }
  html.sp-delivery .rep-fit,
  html.sp-delivery .rep-topics {
    margin-top: 24px !important;
  }
  html.sp-delivery .rep-fit-col,
  html.sp-delivery .rep-topics {
    padding: 22px !important;
  }
  html.sp-delivery .evidence-scene {
    padding: 72px 0 !important;
    overflow: hidden !important;
  }
  html.sp-delivery .evidence-scene-bg,
  html.sp-delivery .teacher-strip-bg,
  html.sp-delivery .principles-img,
  html.sp-delivery .education-img,
  html.sp-delivery .real-img,
  html.sp-delivery .culture-img,
  html.sp-delivery .disc-img,
  html.sp-delivery .beyond-img,
  html.sp-delivery .online-bg,
  html.sp-delivery .scale-banner-bg {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }
  html.sp-delivery .evidence-caption,
  html.sp-delivery .scene-cut-card,
  html.sp-delivery .teacher-strip-card,
  html.sp-delivery .principles-card,
  html.sp-delivery .education-card {
    padding: 26px 22px !important;
  }
  html.sp-delivery .evidence-heading,
  html.sp-delivery .scene-cut-heading,
  html.sp-delivery .teacher-strip-heading,
  html.sp-delivery .principles-heading,
  html.sp-delivery .education-heading {
    font-size: clamp(25px, 7vw, 32px) !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere !important;
  }
  html.sp-delivery .evidence-caption-meta {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  html.sp-delivery .issue-tabs {
    display: flex !important;
    gap: 8px !important;
    padding: 4px 22px 10px !important;
    margin-left: -22px !important;
    margin-right: -22px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
  }
  html.sp-delivery .issue-tab {
    flex: 0 0 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    white-space: normal !important;
    scroll-snap-align: start !important;
  }
  html.sp-delivery .issue-tab-label {
    line-height: 1.35 !important;
  }
  html.sp-delivery .issue-panel {
    padding: 26px 22px !important;
  }
  html.sp-delivery .img-caption {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 18px !important;
    max-width: 100% !important;
  }
  html.sp-delivery .img-caption-text {
    font-size: clamp(18px, 5.5vw, 24px) !important;
    line-height: 1.45 !important;
  }
  html.sp-delivery .img-caption-en {
    display: none !important;
  }
  html.sp-delivery .cta-img,
  html.sp-delivery .final-cta-img {
    min-height: 260px !important;
    padding: 28px 22px !important;
  }
  html.sp-delivery .stages-progress {
    display: none !important;
  }
  
  /* ================================================================
     SAFETY NET - スマホ表示崩れ対策 v3 (2026-05-20)
     全2-3カラムgridの強制1カラム化＋本文padding確保
     ================================================================ */

  ,
  body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }

  {
    scroll-behavior: smooth;
  }

  .t3-role-nexus-hero-logo {
    width: clamp(148px, 46vw, 188px);
    margin-bottom: 14px;
    padding: 0;
  }

  .t3-role-nexus-compact-label {
    gap: 9px !important;
    padding-left: 11px !important;
    align-items: center !important;
    white-space: normal !important;
    line-height: 1.55 !important;
  }

  .t3-role-nexus-label-mark {
    width: 16px;
    height: 16px;
  }

  .responsive-page-organization .scene-cut-features {
    padding-top: 18px !important;
  }

  .responsive-page-organization .scene-cut-features li {
    grid-template-columns: 6px max-content minmax(0, 1fr) !important;
    column-gap: 12px !important;
    padding: 12px 0 !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
  }

  .responsive-page-organization .scene-cut-features li strong {
    min-width: 3.5em !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    letter-spacing: 0 !important;
  }

  .t3-we-hub-header-logo {
    width: 138px;
    max-width: 46vw;
  }

  .t3-we-hub-hero-logo {
    width: min(280px, 78vw);
    margin-bottom: 18px;
  }

  .t3-we-hub-footer-logo {
    width: 178px;
  }

  .t3-mobile-menu-open,
  body.t3-mobile-menu-open {
    overflow: hidden !important;
    overscroll-behavior: contain;
  }

  body.has-t3-sticky-cta {
    padding-bottom: 78px !important;
  }

  section,
  [id] {
    scroll-margin-top: 76px;
  }

  .t3-mobile-quick-nav {
    position: static !important;
    top: auto !important;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    background: rgba(247,245,241,0.98);
    border-top: 1px solid rgba(10,14,26,0.08);
    border-bottom: 1px solid rgba(10,14,26,0.1);
    box-shadow: 0 10px 24px rgba(10,14,26,0.08);
  }

  .t3-mobile-quick-nav::-webkit-scrollbar {
    display: none;
  }

  .t3-mobile-quick-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(10,14,26,0.16);
    background: #fff;
    color: var(--ink, #101621);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
  }

  .t3-mobile-inline-cta {
    display: block !important;
    padding: 18px 20px;
    background: var(--ink, #101621);
    color: var(--paper, #f7f5f1);
  }

  .t3-mobile-inline-cta p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(247,245,241,0.78);
  }

  .t3-mobile-inline-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    background: var(--accent, #d85a1a);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .responsive-page-kakarichou .hero-sub,
  .responsive-page-kachou .hero-sub,
  .responsive-page-buchou .hero-sub,
  .responsive-page-yakuin .hero-sub {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden !important;
  }

  .t3-mobile-leadgen-card {
    display: block !important;
    margin: 0;
    padding: 24px 20px 26px;
    background:
      linear-gradient(135deg, rgba(216,90,26,0.14), rgba(16,22,33,0) 42%),
      #101621;
    color: #f7f5f1;
    border-top: 1px solid rgba(247,245,241,0.12);
    border-bottom: 1px solid rgba(247,245,241,0.12);
  }

  .t3-mobile-leadgen-inner {
    max-width: 390px;
    margin: 0 auto;
  }

  .t3-mobile-leadgen-kicker {
    margin: 0 0 8px;
    color: var(--accent-light, #ff8a3d);
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .t3-mobile-leadgen-title {
    margin: 0 0 10px;
    color: #fff;
    font-family: var(--font-display, inherit);
    font-size: clamp(20px, 5.6vw, 24px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .t3-mobile-leadgen-summary {
    margin: 0 0 16px;
    color: rgba(247,245,241,0.76);
    font-size: 13px;
    line-height: 1.75;
  }

  .t3-mobile-leadgen-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
  }

  .t3-mobile-leadgen-fact {
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid rgba(216,90,26,0.28);
    background: rgba(255,255,255,0.04);
  }

  .t3-mobile-leadgen-fact span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light, #d4b87a);
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .t3-mobile-leadgen-fact strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .t3-mobile-leadgen-list {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
  }

  .t3-mobile-leadgen-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(247,245,241,0.84);
    font-size: 13px;
    line-height: 1.65;
  }

  .t3-mobile-leadgen-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    background: var(--accent-light, #ff8a3d);
  }

  .t3-mobile-leadgen-actions {
    display: grid;
    gap: 10px;
  }

  .t3-mobile-leadgen-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }

  .t3-mobile-leadgen-actions a:first-child {
    background: var(--accent, #d85a1a);
    color: #fff;
    border: 1px solid var(--accent, #d85a1a);
  }

  .t3-mobile-leadgen-actions a:last-child {
    color: #f7f5f1;
    border: 1px solid rgba(247,245,241,0.24);
    background: rgba(255,255,255,0.04);
  }

  .t3-mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10020;
    display: grid !important;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(10,14,26,0.94);
    box-shadow: 0 -12px 28px rgba(0,0,0,0.24);
  }

  .t3-mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
  }

  .t3-mobile-sticky-cta a:first-child {
    background: var(--accent, #d85a1a);
    border-color: var(--accent, #d85a1a);
  }

  .t3-mobile-sticky-cta a:last-child {
    background: rgba(255,255,255,0.06);
  }

  .t3-mobile-accordion {
    display: block !important;
  }

  .t3-mobile-accordion.t3-mobile-collapsed {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    overflow: hidden !important;
  }

  .t3-mobile-accordion.t3-mobile-collapsed::before,
  .t3-mobile-accordion.t3-mobile-collapsed::after {
    display: none !important;
  }

  .t3-mobile-accordion-head {
    position: relative !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: calc(100% - 40px);
    min-height: 58px;
    margin: 0 auto 12px;
    padding: 13px 16px;
    border: 1px solid rgba(216,90,26,0.34);
    background: rgba(216,90,26,0.08);
    color: inherit;
    font: inherit;
    text-align: left;
  }

  .t3-mobile-accordion-title {
    min-width: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }

  .t3-mobile-accordion-state {
    flex: 0 0 auto;
    color: var(--accent, #d85a1a);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .t3-mobile-accordion-original-title {
    display: none !important;
  }

  .t3-mobile-accordion.t3-mobile-collapsed > :not(.t3-mobile-accordion-head) {
    display: none !important;
  }

  a,
  button,
  input,
  textarea,
  select {
    touch-action: manipulation;
  }

  header,
  .wrap,
  .nav,
  .container,
  .header-inner,
  .head-inner,
  #mainNav,
  .menu {
    max-width: 100% !important;
  }

  body {
    padding-top: 64px !important;
  }

  body > header {
    top: 0 !important;
    z-index: 10030 !important;
  }

  .urgency-banner {
    top: 64px !important;
    z-index: 10010 !important;
  }

  header a,
  header button,
  .logo,
  .menu-toggle,
  .burger {
    min-width: 44px !important;
    min-height: 44px !important;
  }

  header nav,
  header #mainNav,
  header .menu {
    display: none !important;
  }

  header nav.open,
  header #mainNav.open,
  header .menu.open {
    display: none !important;
  }

  header nav.open ul,
  header #mainNav.open ul,
  header .menu.open ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  header .menu-toggle,
  header .burger {
    display: none !important;
  }

  header .header-inner,
  header .head-inner,
  header .wrap.nav,
  header .wrap.nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 64px !important;
    height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  header .logo.t3-unified-mobile-logo,
  header .brand.t3-unified-mobile-logo {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 1 auto !important;
    width: min(174px, calc(100vw - 104px)) !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    gap: 10px !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
  }

  header .logo.t3-unified-mobile-logo::before,
  header .brand.t3-unified-mobile-logo::before {
    content: none !important;
    display: none !important;
  }

  header .logo.t3-unified-mobile-logo img,
  header .brand.t3-unified-mobile-logo img {
    display: none !important;
  }

  header .t3-unified-logo-mark {
    display: inline-flex !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    color: var(--ink, #101621) !important;
  }

  header .t3-unified-logo-mark svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  header .t3-unified-logo-mark .logo-mark-accent {
    fill: var(--accent, #d95a1a) !important;
  }

  header .t3-unified-logo-text {
    display: inline-block !important;
    color: var(--ink, #101621) !important;
    font-family: var(--font-display, serif) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  header .btn-nav {
    display: none !important;
  }

  .responsive-page-contact .header-inner {
    grid-template-columns: auto auto 44px !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }

  .responsive-page-contact header #mainNav:not(.open) {
    display: none !important;
  }

  .responsive-page-contact header #mainNav:not(.open) ul {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .responsive-page-contact header #mainNav:not(.open) li:not(:last-child) {
    display: none !important;
  }

  .responsive-page-contact header #mainNav:not(.open) .btn-nav {
    display: none !important;
  }

  .t3-mobile-menu-toggle {
    position: relative;
    z-index: 10042;
    flex: 0 0 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px !important;
    min-height: 48px !important;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(216,90,26,0.34);
    border-radius: 2px;
    background: rgba(247,245,241,0.92);
    color: var(--ink, #101621);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(10,14,26,0.12);
  }

  .t3-mobile-menu-toggle span {
    position: absolute;
    left: 13px;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
  }

  .t3-mobile-menu-toggle span:nth-child(1) { top: 16px; }
  .t3-mobile-menu-toggle span:nth-child(2) { top: 23px; }
  .t3-mobile-menu-toggle span:nth-child(3) { top: 30px; }

  .t3-mobile-menu-open .t3-mobile-menu-toggle span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }

  .t3-mobile-menu-open .t3-mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .t3-mobile-menu-open .t3-mobile-menu-toggle span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }

  .t3-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10030;
    display: block !important;
    background: rgba(0,0,0,0.52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .t3-mobile-menu-panel {
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 10035;
    display: flex !important;
    flex-direction: column;
    width: min(88vw, 380px) !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 100dvh !important;
    max-height: none !important;
    padding: calc(22px + env(safe-area-inset-top)) 22px calc(24px + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    background: #101621 !important;
    color: #f7f5f1 !important;
    box-shadow: -24px 0 48px rgba(0,0,0,0.34) !important;
    transform: translateX(104%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.34s ease;
  }

  .t3-mobile-menu-open .t3-mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .t3-mobile-menu-open .t3-mobile-menu-panel {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .t3-mobile-menu-open .t3-mobile-sticky-cta {
    display: none !important;
  }

  .t3-mobile-menu-head {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(247,245,241,0.14);
  }

  .t3-mobile-menu-kicker {
    margin-bottom: 8px;
    color: var(--accent, #d85a1a);
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .t3-mobile-menu-title {
    color: #fff !important;
    font-family: var(--font-display, inherit);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
  }

  .t3-mobile-menu-close {
    position: relative;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0;
    border: 1px solid rgba(247,245,241,0.2);
    border-radius: 2px;
    background: rgba(255,255,255,0.04);
    color: #fff !important;
  }

  .t3-mobile-menu-close span {
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: currentColor;
  }

  .t3-mobile-menu-close span:first-child { transform: rotate(45deg); }
  .t3-mobile-menu-close span:last-child { transform: rotate(-45deg); }

  .t3-mobile-menu-list {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    margin: 22px 0;
  }

  .t3-mobile-menu-section {
    margin: 18px 0 6px;
    color: var(--accent, #d85a1a) !important;
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .t3-mobile-menu-section:first-child {
    margin-top: 0;
  }

  .t3-mobile-menu-list a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 2px;
    border-bottom: 1px solid rgba(247,245,241,0.1);
    color: #f7f5f1 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .t3-mobile-menu-list a::after {
    content: "→";
    color: var(--accent, #d85a1a);
    font-family: var(--font-serif-en, serif);
    font-size: 17px;
    line-height: 1;
  }

  .t3-mobile-menu-sub {
    display: block !important;
    margin-top: 3px;
    color: rgba(247,245,241,0.56);
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
  }

  .t3-mobile-menu-ctas {
    display: grid !important;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
  }

  .t3-mobile-menu-ctas a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(247,245,241,0.18);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.04em;
  }

  .t3-mobile-menu-ctas a:first-child {
    background: var(--accent, #d85a1a);
    border-color: var(--accent, #d85a1a);
  }

  .t3-mobile-menu-ctas a:last-child {
    background: rgba(255,255,255,0.06);
  }

  .urgency-banner a,
  .urgency-banner-cta,
  body > .bar a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 0 8px !important;
    margin: -13px -8px !important;
    line-height: 1.35 !important;
  }

  .urgency-banner.t3-unified-floating-menu {
    top: 64px !important;
    min-height: 62px !important;
    height: 62px !important;
    padding: 8px 20px 9px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: var(--accent, #d85a1a) !important;
    color: var(--paper, #f7f5f1) !important;
    border-bottom: 1px solid rgba(247,245,241,0.18) !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .urgency-banner.t3-unified-floating-menu .urgency-banner-dot {
    display: none !important;
  }

  .urgency-banner.t3-unified-floating-menu .t3-unified-floating-line {
    color: var(--paper, #f7f5f1) !important;
    font-family: var(--font-display, serif) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
  }

  .urgency-banner.t3-unified-floating-menu .urgency-banner-cta {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--paper, #f7f5f1) !important;
    font-family: var(--font-display, serif) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.04em !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
    white-space: nowrap !important;
  }

  .breadcrumb a,
  [class*="breadcrumb"] a,
  .crumbs a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 40px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
  }

  .privacy a,
  .contact-direct a,
  .contact-line a,
  .mini-list a,
  .footer-bottom a,
  .foot-bottom a,
  .related-note a,
  .industry-label a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 36px !important;
  }

  .hero {
    min-height: auto !important;
    padding-top: clamp(56px, 14vw, 96px) !important;
    padding-bottom: clamp(64px, 16vw, 104px) !important;
  }

  .hero-inner {
    gap: clamp(18px, 5vw, 34px) !important;
  }

  .responsive-page-t3-method .hero .spec-price {
    padding: 16px 14px 4px !important;
    background: rgba(8,12,23,0.38) !important;
    border-top: 1px solid rgba(247,245,241,0.12) !important;
  }

  .responsive-page-t3-method .hero .spec-price-label {
    color: var(--gold-light, #d4b87a) !important;
  }

  .responsive-page-t3-method .hero .spec-price div[style*="color:var(--ink)"],
  .responsive-page-t3-method .hero .spec-price div[style*="color: var(--ink)"] {
    color: rgba(247,245,241,0.96) !important;
    text-shadow: 0 1px 12px rgba(0,0,0,0.48) !important;
  }

  .hero h1,
  .hero-title,
  .hero-pain-hook {
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: keep-all;
    line-break: strict;
    line-height: 1.28 !important;
    margin-bottom: 18px !important;
  }

  .hero h1:has(.re) {
    font-size: clamp(2.65rem, 10.8vw, 3.55rem) !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .t3-image-proof {
    padding: 56px 24px !important;
  }

  .t3-proof-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
  }

  .t3-proof-head h2 {
    writing-mode: horizontal-tb !important;
    max-width: 100% !important;
    font-size: clamp(24px, 6.2vw, 28px) !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .t3-proof-head span {
    display: block !important;
    width: 100% !important;
    letter-spacing: 0.22em !important;
    white-space: normal !important;
  }

  .t3-proof-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .responsive-page-organization .final-price-box {
    padding: 26px 20px !important;
  }

  .responsive-page-organization .final-price-regular {
    flex-wrap: wrap !important;
  }

  .responsive-page-organization .final-price-main {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  .responsive-page-organization .final-price-symbol {
    flex: 0 0 auto !important;
    font-size: clamp(22px, 6.8vw, 28px) !important;
    line-height: 1 !important;
  }

  .responsive-page-organization .final-price-amount {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    font-size: clamp(50px, 15.2vw, 62px) !important;
    line-height: 0.92 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .responsive-page-organization .final-price-tax {
    flex: 0 0 auto !important;
    margin-left: 2px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    writing-mode: horizontal-tb !important;
  }

  .hero-sub,
  .hero-lead,
  .lead,
  .copy {
    max-width: 100% !important;
    line-height: 1.75 !important;
  }

  .hero-cta-row {
    gap: 12px !important;
  }

  .cta-reassure {
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 20px !important;
    padding: 18px 18px !important;
    border: 1px solid rgba(247,245,241,0.18) !important;
    border-left: 3px solid var(--accent-light, #ff8a3d) !important;
    border-radius: 4px !important;
    background: rgba(8,15,28,0.86) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18) !important;
  }

  .cta-reassure-icon {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    background: var(--accent-light, #ff8a3d) !important;
    color: #08101c !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    margin-top: 2px !important;
  }

  .cta-reassure-text {
    color: rgba(247,245,241,0.86) !important;
    font-size: 13px !important;
    line-height: 1.85 !important;
  }

  .cta-reassure-text strong {
    color: #f7f5f1 !important;
    font-weight: 800 !important;
  }

  .hero-cta-primary,
  .hero-cta-secondary,
  .cta-btn,
  .cta-btn-primary,
  .cta-primary,
  .cta-secondary,
  .final-cta-btn,
  .booking-link,
  .submit-btn,
  .btn-nav,
  .case-product-link,
  .qd-product-link,
  .issue-panel-cta-main,
  .issue-panel-cta-sub,
  .issue-panel-card {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-spec,
  .hero-formula {
    margin-top: 0 !important;
  }

  .spec-card,
  .hero-formula {
    padding: 22px 18px !important;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .spec-item {
    padding: 10px !important;
  }

  .spec-tier-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .spec-tier-divider {
    display: none !important;
  }

  .hero-stats-inner {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .responsive-page-organization .hero {
    flex-wrap: wrap !important;
    align-items: stretch !important;
  }

  .hero-stats {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex: 0 0 100% !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    padding: 14px 12px !important;
  }

  .hero-stat {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    grid-template-areas:
      "label label"
      "value unit" !important;
    align-items: end !important;
    gap: 6px 8px !important;
    min-width: 0 !important;
    padding: 12px 10px !important;
    border: 1px solid rgba(247,245,241,0.1) !important;
    background: rgba(255,255,255,0.025) !important;
  }

  .hero-stat-label {
    grid-area: label !important;
    display: block !important;
    min-width: 0 !important;
    color: var(--accent-light, #f26b2c) !important;
    font-size: 9px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    writing-mode: horizontal-tb !important;
    text-align: left !important;
  }

  .hero-stat-val {
    grid-area: value !important;
    display: block !important;
    min-width: max-content !important;
    font-size: clamp(24px, 7.2vw, 30px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .hero-stat-val--text {
    font-size: clamp(20px, 5.8vw, 24px) !important;
    letter-spacing: 0.02em !important;
  }

  .hero-stat-unit {
    grid-area: unit !important;
    min-width: 0 !important;
    color: rgba(247,245,241,0.76) !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    writing-mode: horizontal-tb !important;
  }

  .hero-stat--philosophy {
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "label"
      "value"
      "unit" !important;
    align-items: start !important;
  }

  .hero-stat--philosophy .hero-stat-unit {
    color: var(--gold-light, #d4b87a) !important;
    font-size: 10px !important;
  }

  .hero-stat--philosophy .hero-stat-val {
    min-width: 0 !important;
    font-size: clamp(19px, 5.4vw, 24px) !important;
  }

  @media (max-width: 374px) {
    .hero-stats-inner {
      grid-template-columns: 1fr !important;
    }

    .hero-stat--philosophy {
      grid-column: auto !important;
    }
  }

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

  .img-split-item img,
  .img-featured img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-bg-image {
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    min-height: 0 !important;
    height: min(86vh, 720px) !important;
    background-size: cover !important;
    background-position: 50% 50% !important;
    opacity: 0.66 !important;
    filter: grayscale(0.04) contrast(1.04) saturate(0.98) brightness(0.9) !important;
  }

  .hero-bg-overlay {
    background:
      radial-gradient(ellipse at 22% 24%, rgba(216,90,26,0.26), transparent 58%),
      linear-gradient(180deg, rgba(10,14,26,0.42) 0%, rgba(10,14,26,0.78) 48%, rgba(10,14,26,0.97) 100%) !important;
  }

  .responsive-page-organization .hero-bg-image,
  .responsive-page-kachou .hero-bg-image,
  .responsive-page-kakarichou .hero-bg-image {
    background-position: 52% 50% !important;
  }

  .responsive-page-buchou .hero-bg-image,
  .responsive-page-yakuin .hero-bg-image {
    background-position: 56% 50% !important;
  }

  .responsive-page-buchou .img-featured {
    aspect-ratio: 4 / 3 !important;
    min-height: 320px !important;
  }

  .responsive-page-buchou .img-featured::after {
    background:
      linear-gradient(180deg, rgba(10,14,26,0.12) 0%, rgba(10,14,26,0.18) 42%, rgba(10,14,26,0.86) 100%),
      linear-gradient(90deg, rgba(10,14,26,0.68) 0%, rgba(10,14,26,0.34) 58%, rgba(10,14,26,0.12) 100%) !important;
  }

  .responsive-page-buchou .img-caption {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: block !important;
    padding: 0 18px 20px !important;
    max-width: none !important;
    text-align: left !important;
  }

  .responsive-page-buchou .img-caption > div:first-child {
    max-width: min(100%, 330px) !important;
  }

  .responsive-page-buchou .img-caption-label {
    margin-bottom: 7px !important;
    font-size: 9px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.18em !important;
  }

  .responsive-page-buchou .img-caption-text {
    max-width: 100% !important;
    font-size: clamp(15px, 4.35vw, 17px) !important;
    line-height: 1.72 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.62) !important;
  }

  .responsive-page-buchou .img-caption-en {
    display: none !important;
  }

  .responsive-page-career-book .hero-bg-image,
  .responsive-page-tlt .hero-bg-image,
  .responsive-page-t3-method .hero-bg-image {
    background-position: 50% 50% !important;
  }

  .responsive-page-t3-method .img-featured {
    aspect-ratio: 4 / 3 !important;
    min-height: 320px !important;
  }

  .responsive-page-t3-method .img-featured::after {
    background:
      linear-gradient(180deg, rgba(10,14,26,0.16) 0%, rgba(10,14,26,0.18) 38%, rgba(10,14,26,0.86) 100%),
      linear-gradient(90deg, rgba(10,14,26,0.76) 0%, rgba(10,14,26,0.38) 58%, rgba(10,14,26,0.12) 100%) !important;
  }

  .responsive-page-t3-method .img-caption {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: block !important;
    padding: 0 18px 20px !important;
    max-width: none !important;
    text-align: left !important;
  }

  .responsive-page-t3-method .img-caption > div:first-child {
    max-width: min(100%, 330px) !important;
  }

  .responsive-page-t3-method .img-caption-label {
    margin-bottom: 7px !important;
    font-size: 9px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.18em !important;
  }

  .responsive-page-t3-method .img-caption-text {
    max-width: 100% !important;
    font-size: clamp(15px, 4.35vw, 17px) !important;
    line-height: 1.72 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.62) !important;
  }

  .responsive-page-t3-method .img-caption-en {
    display: none !important;
  }

  .responsive-page-t3-method .graduation .grad-hero {
    display: none !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-card {
    display: block !important;
    position: relative !important;
    margin: 30px 0 28px !important;
    padding: 30px 18px 22px !important;
    border: 1px solid rgba(216, 90, 26, 0.58) !important;
    background:
      radial-gradient(circle at 100% 0%, rgba(216, 90, 26, 0.16), rgba(216, 90, 26, 0) 36%),
      linear-gradient(145deg, rgba(8, 13, 26, 0.98), rgba(29, 23, 29, 0.96)) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26) !important;
    color: var(--paper, #f7f5f1) !important;
    text-align: center !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-tag {
    position: absolute !important;
    top: -14px !important;
    left: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 28px !important;
    padding: 0 16px !important;
    background: #080d1a !important;
    color: var(--accent-light, #f06d32) !important;
    font-family: var(--font-mono) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.24em !important;
    line-height: 1 !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-kicker {
    margin: 0 0 16px !important;
    color: var(--gold-light, #d8c48c) !important;
    font-family: var(--font-display) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    line-height: 1.6 !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-equation {
    display: grid !important;
    gap: 10px !important;
    justify-items: center !important;
    margin: 0 auto 18px !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-line {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: 100% !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-chip {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: clamp(74px, 22vw, 82px) !important;
    min-height: 50px !important;
    padding: 10px 12px !important;
    border: 1px solid rgba(216, 90, 26, 0.7) !important;
    background: rgba(216, 90, 26, 0.12) !important;
    color: var(--paper, #f7f5f1) !important;
    font-family: var(--font-display) !important;
    font-size: clamp(20px, 6vw, 24px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-chip.is-result {
    border-color: rgba(200, 169, 106, 0.76) !important;
    background: rgba(200, 169, 106, 0.14) !important;
    color: var(--gold-light, #d8c48c) !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-op {
    flex: 0 0 auto !important;
    min-width: 18px !important;
    color: var(--accent-light, #f06d32) !important;
    font-family: var(--font-display) !important;
    font-size: 23px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-copy {
    max-width: 286px !important;
    margin: 0 auto !important;
    color: rgba(247, 245, 241, 0.84) !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.85 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-copy strong {
    color: var(--accent-light, #f06d32) !important;
    font-weight: 900 !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-notes {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 18px !important;
    padding-top: 14px !important;
    border-top: 1px dashed rgba(247, 245, 241, 0.18) !important;
  }

  .responsive-page-t3-method .t3-mobile-formula-notes span {
    color: rgba(247, 245, 241, 0.62) !important;
    font-family: var(--font-display) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .responsive-page-tlt .img-split {
    gap: 18px !important;
    margin: 32px 0 !important;
  }

  .responsive-page-tlt .img-split-item {
    aspect-ratio: 16 / 10 !important;
    min-height: 220px !important;
    overflow: hidden !important;
    background: #0a0e1a !important;
  }

  .responsive-page-tlt .img-split-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: none !important;
  }

  .responsive-page-tlt .img-split-item::before {
    background:
      linear-gradient(180deg, rgba(10,14,26,0.04) 0%, rgba(10,14,26,0.2) 42%, rgba(10,14,26,0.86) 100%) !important;
  }

  .responsive-page-tlt .img-split-caption {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    color: var(--paper, #f7f5f1) !important;
  }

  .rep-photo,
  .case-img,
  .product-img,
  .cta-img,
  .t3-proof-img {
    background-size: cover !important;
    background-position: center center !important;
  }

  .rep-photo {
    left: auto !important;
    right: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    background-position: center top !important;
  }

  footer {
    padding: 28px 20px 18px !important;
  }

  .footer-inner {
    display: block !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    min-height: 0 !important;
  }

  .footer-inner .footer-col {
    display: none !important;
    padding: 0 !important;
    min-height: 0 !important;
  }

  .footer-inner .footer-col:first-child {
    display: block !important;
  }

  .footer-logo {
    max-width: 142px !important;
    margin-bottom: 10px !important;
  }

  .footer-catch {
    margin-top: 8px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .footer-desc,
  .t3-company-footer {
    display: none !important;
  }

  .foot-top,
  .foot-cols {
    display: block !important;
    max-width: 390px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .foot-cols {
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .foot-col {
    display: none !important;
  }

  .foot-brand,
  .foot-logo {
    display: block !important;
    margin-bottom: 10px !important;
  }

  .foot-logo svg {
    max-width: 142px !important;
    height: auto !important;
  }

  .foot-logo small {
    font-size: 10px !important;
    line-height: 1.6 !important;
  }

  .foot-links {
    display: none !important;
  }

  .t3-mobile-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 390px;
    margin: 18px auto 0;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .t3-mobile-footer-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid rgba(247,245,241,.22);
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .03em;
  }

  .responsive-page-company .t3-company-mobile-footer-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    max-width: 390px !important;
    margin: 22px auto 0 !important;
    padding: 0 16px !important;
    border: 1px solid rgba(247,245,241,0.14);
    background: #101621 !important;
    box-shadow: 0 18px 36px rgba(10,14,26,0.18) !important;
  }

  .responsive-page-company .t3-company-mobile-footer-nav a {
    position: relative;
    justify-content: space-between !important;
    min-height: 54px;
    padding: 10px 4px 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(247,245,241,0.13);
    color: #f7f5f1 !important;
    text-align: left;
  }

  .responsive-page-company .t3-company-mobile-footer-nav a::after {
    content: "→";
    flex: 0 0 auto;
    margin-left: 16px;
    color: var(--accent-light, #ff8a3d);
    font-size: 15px;
    line-height: 1;
  }

  .responsive-page-company .t3-company-mobile-footer-nav span {
    display: block;
    min-width: 0;
  }

  .responsive-page-company .t3-company-mobile-footer-nav .t3-footer-menu-label {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .responsive-page-company .t3-company-mobile-footer-nav .t3-footer-menu-sub {
    margin-top: 4px;
    color: rgba(247,245,241,0.58);
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.12em;
  }

  .footer-bottom {
    max-width: 390px !important;
    margin: 14px auto 0 !important;
    padding-top: 10px !important;
    font-size: 10px !important;
    line-height: 1.7 !important;
    text-align: left !important;
  }

  .foot-bottom {
    display: block !important;
    max-width: 390px !important;
    margin: 14px auto 0 !important;
    padding-top: 10px !important;
    font-size: 10px !important;
    line-height: 1.7 !important;
    text-align: left !important;
  }
}

/*　　ルートサイトのCSSここまで　*/


/* ------------------------------------------------------------

 共通部分調整用

------------------------------------------------------------ */

/* ヘッダー　*/

header.st-header{}
.header-inner{
  /*padding: 16px 40px;*/
}

header .header-inner #mainNav ul{
  margin: auto 0;
}
header .header-inner #mainNav .btn-nav{
  color: #FFF;
  text-decoration: none;
}
header .header-inner #mainNav .btn-nav::after{ display: none; }

.urgency-banner a{ color: #FFF !important;}

@media (max-width: 768px){
 header.st-header{
   top:0;
  } 
}

.logo {
  background: none;
}
.logo svg {
  background: none;
}

/* フッター　*/
.t3-mobile-footer-nav a { color: #FFF !important;}

.footer-inner{
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
}
.footer-inner .footer-col{ 
  align-self: start;  margin-top: 0;
  width: 80%;
}
.footer-inner .footer-col:first-child {
  width: 120%;
}
.footer-inner .footer-col ul{  margin-left: 0;}
.footer-inner .footer-col ul a{  color: #b2aeab;}


/* ------------------------------------------------------------

 WP側

------------------------------------------------------------ */

a,
a:visited{
  color:#11192e;
}


a.btn.btn-primary,
a.btn.btn-primary:hover,
a.btn.btn-primary:focus-visible{
  color:#FFF;
  text-decoration: none;
}

/* サイトタイトル部分（採用コラム） */
.site-branding{
  
  position: relative;
  background: #0a0e1a;
  color: #FFF;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 82px;
  
  
  margin-top:80px;
  background-image: url('../../../../../assets/img_c77d4fb61cfa.webp');
  background-size: cover; background-position: center;
  
}

/* 黒いレイヤー */
.site-branding::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.79);
  z-index: 1;
  pointer-events: none;
}

/* 中の文字などをレイヤーより前に */
.site-branding > *{
  position: relative;
  z-index: 2;
}



@media (max-width: 768px){ 
    .site-branding{
      margin-top:40px;
    }
}
@media (max-width: 640px){ 
    .site-branding{
      margin-top:100px;
    }
}

.site-title{
  font-weight: 600;
  height: auto;
  line-height:normal;
  font-size: 40px;
  color: #FFF;
  padding: 2em 0;
}

@media (max-width: 768px){
  .site-title{
    font-size: 30px;
  }
  
}


.site-title,
.single .entry-title,
.single .entry-content h2,
.single .entry-content h3
{
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}
.site-content *{
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}




#posts-container{}
#posts-container > article{
  width: 46%;
  padding: 0;
  margin-top: 0;
  margin-right: 2%;
  margin-bottom: 30px;
  margin-left: 2%;
}
#posts-container article{
  display: flex;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
#posts-container article{
  display: flex;
  align-items: stretch;
}


/* 全体リンク　*/
#posts-container article{　  position: relative;}
#posts-container .card-link{
  position: absolute;
  inset: 0;
  z-index: 10;
}

#posts-container .entry-thumbnail{
  flex: 0 0 42%;
  width: 42%;
  overflow: hidden;
  margin: 0;
}

#posts-container .entry-thumbnail a{
  display: block;
  width: 100%;
  height: 100%;
}

#posts-container .entry-thumbnail img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

#posts-container article:hover .entry-thumbnail img{
  transform: scale(1.03);
}

/* 右：テキストエリア */
#posts-container .card-right{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 1.0em;
  
}

#posts-container .entry-header{
  padding: 0;
}

#posts-container .entry-title{
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5em 0;
  border-bottom: 1px solid #0a0e1a;
}

#posts-container .entry-title a{
  color: #000;
  text-decoration: none;
  transition: color .2s ease;
}

#posts-container .entry-title a:hover{
  color: #ff9b45;
}

#posts-container .entry-meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6em;
  margin-top: 10px;
  margin-bottom: .8em;
  font-size: 1.1rem;
  line-height: 1.5;
}
#posts-container .entry-meta::before{ display: none;}
#posts-container .entry-category{
  display: inline-block;
  padding: 0.2em 0.4em;
  background: #0a0e1a;
  color: #fff;
  font-size: 1.3rem;
}
#posts-container .entry-meta time{
  color: #86847d;
 font-size: 1.3rem;
}

/* 詳細ボタン */
/*#posts-container .btn-more{
  margin-top: 0;
  text-align: right;
}

#posts-container .btn-more a{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 0.15em 1em 0.2em 1em;
  background: #0a0e1a;
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease;
}

#posts-container .btn-more a::after{
  content: "→";
  color: #FFF;
  transition: transform .2s ease;
}

#posts-container .btn-more a:hover{}
#posts-container .btn-more a:hover::after{
  transform: translateX(4px);
}*/


/* 抜粋 */
#posts-container .entry-content{
  position: relative;
  padding: 1em 0 0 0;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.8;
}

#posts-container .entry-content p{
  margin: 0;
}


/* noimage */
#posts-container .noimage{
  background: #f5f5f5;
}

#posts-container .noimage img{
  object-fit: cover;
}


@media (max-width: 768px){


    #posts-container > article{
      width: 96%;
      margin-left: 2%;
      margin-right: 2%;
    }

    #posts-container article{
      flex-direction: column;
      padding: 0;
    }

    #posts-container .entry-thumbnail{
      width: 100%;
      flex: none;
      aspect-ratio: 16 / 9;
    }

    #posts-container .card-right{
      padding: 1.0em;
    }

}


/* シングルページ　*/
.single .type-post{
  background: #FFF;
  padding: 0;
}

.single .type-post .entry-header{
  padding: 0;
  margin: 0;
}
.single .type-post .entry-header .entry-title{  margin: 0 1em;}
.single .type-post .entry-header .entry-meta{ margin: 1em 3em ; }

.single .type-post .entry-content{
  padding: 1em 3em 3em 3em;
}
 
.single .entry-title,
.single .entry-content h2,
.single .entry-content h3{
  
  color: #000;
}

.single .entry-title{
  margin: 0;
  padding: 1em 0 0.7em 0;
  font-size: 5.0rem;
  font-weight: 600 !important;
  line-height: 1.45;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #d85a1a;
}

.single .entry-content h2{
  margin: 1em 0 0.5em 0;
  padding: 0;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 0;
}

.single .entry-content h2::before,
.single .entry-content h2::after{
  display: none;
}

.single .entry-content h3{
  margin: 2.2em 0 0.9em 0;
  padding: 0;
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: #0a0e1a;
  border-radius: 5px;
  color: #FFF;
  padding: 0.2em 0.7em 0.3em 0.7em;
}

.single .entry-content h3::before,
.single .entry-content h3::after{
  display: none;
}

.single .wp-block-paragraph{
  line-height: 2.2;
}


@media (max-width: 768px){
 
  .single .entry-title{
    font-size: 3.0rem;
  }
  .single .entry-content h2{
    font-size: 2.5rem;
  }

  .single .entry-content h3{
    font-size: 2.0rem;
  }

}

/*　記事メタ　*/
.entry-meta{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
.entry-meta::before{ display:none; }

.entry-meta .entry-category{
  display: inline-block;
  padding: 0.2em 0.7em;
  background: #fff;
  border-radius: 5px;
  color: #0a0e1a;
  border: 1px solid #0a0e1a;
  font-size: 1.4rem;
  line-height: 1.5;
}

.entry-meta time{
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-right: 0;
}






/* 関連記事　*/
.related-header{
  padding: 1em ;
}
.related-posts .entry-thumbnail{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.related-posts.row{
  /*gap: 10px !important;
  column-gap:10px !important ;
  row-gap: 10px !important;*/
  margin: auto;
}

.related-posts article{
  background: #FFF;
	box-shadow: 0 3px 12px rgba(0,0,0, 0.05);
  padding: 0;
  margin: 1%;
  width: calc( 100% / 3 - 2%);
}
  
.related-posts article p{
  font-weight: bold;
  font-size: 1.7rem;
  padding: 0 1em;
}
.related-posts article p::after{ display: none;}

.related-posts .entry-thumbnail a{
  display: block;
  width: 100%;
  height: 100%;
}


.related-posts .entry-thumbnail img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px){
  .related-posts article{
    margin:auto;
    width: 100%;
  }
  
}


/* 記事一覧ボタン　*/
.btn-post_list{
  clear: both;
  padding: 2em;
  text-align: center;
}

.btn-post_list a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 1em 3.5em;
  
  /*border-radius: 100px;*/
  background: #0a0e1a;
  border: 1px solid;
  border-color: #0a0e1a;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.btn-post_list a:hover{
  background: #FFF;
  border-color: #0a0e1a;
  color: #0a0e1a;
}


.btn-post_list a::after{
  content: "→";
  position: absolute;
  right: 1.5em;
  color: #FFF;
  font-size: 1.2em;
  transition: transform .3s ease;
}
.btn-post_list a:hover::after{
  color: #0a0e1a;
  transform: translateX(4px);
}


/* フッター */
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand{
  flex-shrink: 0;
}
.footer-links{
  margin-left: auto;
}
.footer-link-group{
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px !important;
  row-gap: 5px !important;
}
.footer-link-group a{
  height: auto ;
  min-height: 0 ;
  padding-top: 0 ;
  padding-bottom: 0 ;
  line-height: 1.2 ;
  color: #cbccd1;
}




/* SP header　調整　*/
@media (max-width: 768px){

  
  /*.st-header .container.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    
    width: 100%;
    max-width: none;
    padding-left: 0px !important;
    padding-right: 0px !important;

  }*/
  .header-actions{
    margin-left: auto;
  }

  .global-nav {
    z-index: 100;
  }

  .footer-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-link-group a{
    height: auto ;
    padding: 1em;
    line-height: 1.2 ;
  }
  
  
  .btn.btn-primary,
  .btn.btn-gold{
    color:#FFF;
  }


  
}


/* ------------------------------------------------------------

 その他設定

------------------------------------------------------------ */

/*　ページング　*/

.navigation.pagination{
  margin: 2em 0 4em 0 ;
}

.navigation.pagination .nav-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.navigation.pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px 1px 10px;
  border: 1px solid #86847d;
 /* border-radius: 50%;*/
  color: #0a0e1a;
  text-decoration: none;
  line-height: 1;
  transition: .3s;
}

.navigation.pagination .page-numbers:hover{
  border-color: #0a0e1a;
  background: #0a0e1a;
  color: #fff;
  text-decoration: none;
}

.navigation.pagination .page-numbers.current{
  border-color: #0a0e1a;
  background: #0a0e1a;
  color: #fff;
}

.navigation.pagination .prev,
.navigation.pagination .next{
 /* border-radius: 50%;*/
}




