:root {
  --mono-paper: #FFFFFF;
  --mono-fog: #F4F4F4;
  --mono-ash: #E5E5E5;
  --mono-graphite: #8C8C8C;
  --mono-iron: #1A1A1A;
  --mono-anthracite: #2A2A2A;
  --accent-orange: #FF4D00;
  --accent-orange-deep: #E54600;
  --line-hair: rgba(26,26,26,0.15);
  --sidebar-w: 280px;
  --sidebar-compact: 72px;
  --header-h: 56px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--mono-paper);
  color: var(--mono-iron);
  font-family: 'Inter', 'Noto Sans JP', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

strong, p, span, li, a, h1, h2, h3, h4, h5, h6, b { color: inherit; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.bg-floaters {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-floaters .floater {
  position: absolute;
  border: 0.5px solid rgba(26,26,26,0.08);
  opacity: 0.55;
  animation: drift linear infinite;
}

.bg-floaters .f1 { width: 80px; height: 80px; top: 8%; left: 5%; border-radius: 50%; animation-duration: 28s; }
.bg-floaters .f2 { width: 60px; height: 60px; top: 22%; right: 8%; transform: rotate(15deg); animation-duration: 34s; animation-delay: -8s; }
.bg-floaters .f3 { width: 100px; height: 100px; top: 55%; left: 12%; border-radius: 12px; transform: rotate(35deg); animation-duration: 40s; animation-delay: -3s; }
.bg-floaters .f4 { width: 70px; height: 70px; bottom: 18%; right: 18%; border-radius: 50%; animation-duration: 26s; animation-delay: -12s; }
.bg-floaters .f5 { width: 90px; height: 90px; bottom: 8%; left: 35%; transform: rotate(-20deg); animation-duration: 38s; animation-delay: -6s; }
.bg-floaters .f6 { width: 50px; height: 50px; top: 70%; right: 5%; animation-duration: 32s; animation-delay: -15s; }

@keyframes drift {
  0%   { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(20px,-30px) rotate(45deg); }
  50%  { transform: translate(-15px,15px) rotate(90deg); }
  75%  { transform: translate(25px,25px) rotate(135deg); }
  100% { transform: translate(0,0) rotate(180deg); }
}

@media (max-width: 767px) { .bg-floaters { display: none; } }

.app-shell {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.main-stage {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-width: 0;
  position: relative;
}

.dock-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  background: #FBFBFB;
  border-right: 1px solid var(--line-hair);
  background-image:
    linear-gradient(transparent 0px, transparent 9px, rgba(26,26,26,0.025) 10px),
    linear-gradient(90deg, transparent 0px, transparent 9px, rgba(26,26,26,0.025) 10px);
  background-size: 10px 10px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  transition: width 320ms cubic-bezier(.4,0,.2,1);
}

.dock-logo-block {
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--line-hair);
  position: relative;
}

.dock-logo-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--mono-paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  border-right: 1px solid var(--line-hair);
}

.dock-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--mono-iron);
  margin-bottom: 12px;
  background: var(--mono-paper);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.dock-mark::before, .dock-mark::after {
  content: "";
  position: absolute;
  background: var(--accent-orange);
  height: 2px;
  width: 22px;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.dock-mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.dock-mark::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.dock-domain {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--mono-iron);
  line-height: 1;
  margin-bottom: 6px;
}

.dock-sitename {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--mono-graphite);
  line-height: 1.3;
}

.dock-nav {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  flex: 1;
}

.dock-link {
  position: relative;
  padding: 14px 28px 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--mono-iron);
  text-transform: uppercase;
  transition: padding-left 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.dock-link::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transform: translateY(-50%) skewX(-25deg);
  transition: width 220ms ease;
}

.dock-link:hover { color: var(--accent-orange); padding-left: 44px; }
.dock-link:hover::before { width: 14px; }
.dock-link.is-active { color: var(--accent-orange); }
.dock-link.is-active::before { width: 14px; }

.dock-meta {
  padding: 20px 28px 24px;
  border-top: 1px solid var(--line-hair);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mono-graphite);
  line-height: 1.6;
  text-transform: uppercase;
}

.dock-meta a { display: block; color: var(--mono-iron); margin-top: 4px; font-weight: 600; }
.dock-meta a:hover { color: var(--accent-orange); }

.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--mono-paper);
  border-bottom: 1px solid var(--line-hair);
  z-index: 60;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
}

.mobile-bar-left { display: flex; align-items: center; gap: 10px; }

.mobile-mark {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--mono-iron);
  background: var(--mono-paper);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.mobile-mark::before, .mobile-mark::after {
  content: "";
  position: absolute;
  background: var(--accent-orange);
  height: 2px;
  width: 12px;
  top: 50%;
  left: 50%;
}

.mobile-mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-mark::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-domain {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--mono-iron);
}

.burger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-orange);
  border: none;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.burger-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.burger-line.l1 { top: 13px; }
.burger-line.l2 { top: 19px; }
.burger-line.l3 { top: 25px; }

.burger[aria-expanded="true"] .burger-line.l1 { transform: translateX(-50%) rotate(45deg); top: 19px; }
.burger[aria-expanded="true"] .burger-line.l2 { opacity: 0; }
.burger[aria-expanded="true"] .burger-line.l3 { transform: translateX(-50%) rotate(-45deg); top: 19px; }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mono-paper);
  z-index: 55;
  padding: 40px 28px;
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--line-hair);
}

.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--mono-iron);
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 22px;
}

.mobile-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--accent-orange);
  transform: translateY(-50%) skewX(-25deg);
}

.mobile-menu a.is-active { color: var(--accent-orange); }

.kn-section {
  padding: 120px 56px;
  position: relative;
}

.kn-section--tight { padding: 80px 56px; }

.kn-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  position: relative;
  padding-left: 36px;
  color: var(--mono-iron);
}

.kn-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 24px;
  height: 3px;
  background: var(--accent-orange);
  transform: skewX(-25deg);
}

.kn-section--light { background: var(--mono-paper); }
.kn-section--fog { background: var(--mono-fog); }
.kn-section--dark { background: var(--mono-anthracite); color: #fff; }
.kn-section--dark h2 { color: #fff; }

.hero-stage {
  min-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 56px 80px 56px;
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  height: 80vh;
  min-height: 540px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05);
  position: relative;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 60%);
}

.hero-imprint {
  position: absolute;
  right: -22px;
  bottom: 60px;
  background: var(--accent-orange);
  color: #fff;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  z-index: 3;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--mono-graphite);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--mono-graphite);
}

.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 84px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--mono-iron);
  margin: 0 0 24px;
  transform: skewX(-2deg);
  max-width: 760px;
}

.hero-sub-jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--accent-orange);
  margin: 0 0 36px;
  letter-spacing: 0.04em;
}

.hero-body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--mono-iron);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-trapezoid {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--accent-orange);
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform 220ms ease;
  text-transform: none;
  min-height: 56px;
  white-space: nowrap;
}

.btn-trapezoid:hover { transform: translate(4px, 4px); color: #fff; background: var(--accent-orange-deep); }

.btn-trapezoid--ghost {
  background: transparent;
  color: var(--mono-iron);
  border: 1px solid var(--mono-iron);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-trapezoid--ghost:hover { color: var(--accent-orange); border-color: var(--accent-orange); background: transparent; }

.btn-trapezoid--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-trapezoid--ghost-light:hover { color: var(--accent-orange); border-color: var(--accent-orange); background: transparent; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
  margin: 0 0 64px;
}

.stat-cell .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--mono-iron);
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.stat-cell .num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--accent-orange);
  transform: skewX(-25deg);
}

.stat-cell .num--orange { color: var(--accent-orange); }
.stat-cell .lbl {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mono-graphite);
  margin-top: 12px;
  display: block;
}

.bento-services {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  grid-template-rows: 280px 280px 280px;
  gap: 20px;
}

.bento-cell {
  position: relative;
  background: var(--mono-paper);
  border: 1px solid var(--line-hair);
  padding: 28px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 220ms ease;
  overflow: hidden;
  z-index: 1;
  color: var(--mono-iron);
}

.bento-cell:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 rgba(26,26,26,0.95), 6px 6px 0 1px var(--accent-orange);
  border-color: var(--accent-orange);
  z-index: 100;
}

.bento-cell.bento-img {
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  padding: 0;
}

.bento-cell.bento-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.05));
}

.bento-cell .bento-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  text-transform: uppercase;
  z-index: 2;
}

.bento-cell h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--mono-iron);
}

.bento-cell p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mono-iron);
  margin: 0 0 14px;
}

.bento-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-orange);
  display: inline-block;
}

.bento-reveal {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mono-iron);
  border-top: 1px solid var(--line-hair);
  padding-top: 12px;
}

.bento-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 1.5px solid var(--accent-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.bento-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 28px;
}

.bento-wide-img {
  height: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 30% 45% 25%;
  gap: 40px;
  align-items: flex-start;
}

.editorial-photo {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  border: 1px solid var(--line-hair);
  clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 0 100%);
  box-shadow: 8px 8px 0 0 var(--accent-orange);
}

.editorial-photo-caption {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mono-graphite);
  margin-top: 16px;
}

.editorial-body p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: var(--mono-iron);
}

.editorial-body p:first-of-type::first-letter {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-orange);
  float: left;
  line-height: 0.9;
  padding-right: 10px;
  font-family: 'Inter', sans-serif;
}

.editorial-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent-orange);
  color: var(--mono-iron);
  letter-spacing: -0.01em;
}

.editorial-timeline {
  border-left: 1px solid var(--line-hair);
  padding-left: 24px;
}

.editorial-timeline .tl-year {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--accent-orange);
  line-height: 1;
  display: block;
  margin-top: 18px;
}

.editorial-timeline .tl-year:first-child { margin-top: 0; }

.editorial-timeline .tl-text {
  font-size: 13px;
  color: var(--mono-graphite);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

.process-track {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 0 60px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-orange) var(--mono-ash);
}

.process-track::-webkit-scrollbar { height: 4px; }
.process-track::-webkit-scrollbar-track { background: var(--mono-ash); }
.process-track::-webkit-scrollbar-thumb { background: var(--accent-orange); }

.process-rail {
  display: flex;
  gap: 24px;
  padding: 0 56px;
  position: relative;
  align-items: stretch;
}

.process-rail::before {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  top: 78px;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--mono-iron) 0 6px, transparent 6px 12px);
  opacity: 0.4;
}

.process-card {
  flex: 0 0 340px;
  min-height: 420px;
  background: var(--mono-paper);
  border: 1px solid var(--line-hair);
  padding: 32px 28px;
  position: relative;
  scroll-snap-align: start;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, border-color 220ms ease;
  color: var(--mono-iron);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-orange);
  box-shadow: 6px 6px 0 0 rgba(255,77,0,0.18);
}

.process-card .step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--accent-orange);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.process-card .step-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--mono-iron);
  border-radius: 0;
  margin: 16px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--mono-iron);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.process-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--mono-iron);
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mono-iron);
  margin: 0 0 16px;
}

.process-card .step-photo {
  margin-top: auto;
  height: 88px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  border-top: 1px solid var(--line-hair);
}

.process-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  background: var(--accent-orange);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.process-arrow.prev { left: 8px; }
.process-arrow.next { right: 8px; }
.process-arrow:hover { background: var(--accent-orange-deep); }

.fg-advantages {
  display: flex;
  gap: 16px;
}

.fg-cell {
  flex: 1;
  background: var(--mono-paper);
  border: 1px solid var(--line-hair);
  padding: 32px 24px;
  transition: flex 500ms cubic-bezier(.4,0,.2,1), border-color 220ms ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  color: var(--mono-iron);
}

.fg-cell:hover {
  flex: 2;
  border-color: var(--accent-orange);
  background-image: radial-gradient(circle at 100% 100%, rgba(255,77,0,0.06) 0, transparent 60%);
  z-index: 2;
}

.fg-cell .ic {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--accent-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
}

.fg-cell h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--mono-iron);
}

.fg-cell p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mono-graphite);
  margin: 0;
  opacity: 0;
  max-height: 0;
  transition: opacity 280ms ease 100ms, max-height 380ms ease 100ms;
  overflow: hidden;
}

.fg-cell:hover p { opacity: 1; max-height: 200px; }

.marquee-wrap {
  background: var(--mono-paper);
  border-top: 1px solid var(--line-hair);
  border-bottom: 1px solid var(--line-hair);
  padding: 56px 0;
  overflow: hidden;
}

.marquee-rail {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.marquee-wrap:hover .marquee-rail { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--mono-iron);
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.marquee-item.is-orange { color: var(--accent-orange); }

.marquee-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-orange);
  display: inline-block;
  transform: rotate(45deg);
}

.team-reveal {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line-hair);
}

.team-row {
  position: relative;
  padding: 26px 0 26px 0;
  border-bottom: 1px solid var(--line-hair);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
  cursor: default;
  transition: padding-left 280ms ease, color 220ms ease;
}

.team-row:hover { padding-left: 18px; color: var(--accent-orange); }

.team-row .t-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--mono-graphite);
}

.team-row .t-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.team-row .t-role {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--mono-graphite);
  margin-top: 4px;
  display: block;
}

.team-row .t-arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--mono-graphite);
  transition: transform 220ms ease, color 220ms ease;
}

.team-row:hover .t-arrow { color: var(--accent-orange); transform: translateX(8px); }

.team-reveal-panel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(20px, -50%);
  width: 340px;
  background: var(--mono-paper);
  border: 2px solid var(--accent-orange);
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
  z-index: 5;
  display: flex;
  gap: 16px;
  align-items: stretch;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  color: var(--mono-iron);
}

.team-row:hover .team-reveal-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.team-reveal-panel .p-photo {
  width: 110px;
  height: 130px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  flex-shrink: 0;
  border: 1px solid var(--line-hair);
}

.team-reveal-panel .p-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--mono-iron);
}

.faq-stack { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--mono-fog);
  border: 1px solid var(--line-hair);
  border-left: 3px solid transparent;
  transition: border-left-color 220ms ease, background 220ms ease;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.faq-item.is-open { border-left-color: var(--accent-orange); background: var(--mono-paper); }

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 60px 22px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--mono-iron);
  position: relative;
}

.faq-trigger .q-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--accent-orange);
  width: 28px;
  text-align: center;
  line-height: 1;
}

.faq-trigger .q-icon::before { content: "+"; }
.faq-item.is-open .faq-trigger .q-icon::before { content: "−"; }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(.4,0,.2,1);
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mono-iron);
  padding: 0 24px;
}

.faq-item.is-open .faq-content { max-height: 360px; padding: 0 24px 22px; }

.coverflow-stage {
  position: relative;
  height: 460px;
  perspective: 1400px;
  margin-top: 24px;
}

.coverflow-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 480px;
  background: var(--mono-paper);
  border: 1px solid var(--line-hair);
  padding: 36px;
  transition: transform 520ms cubic-bezier(.4,0,.2,1), opacity 380ms ease;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  transform-origin: center center;
  opacity: 0;
  pointer-events: none;
  color: var(--mono-iron);
}

.coverflow-card.is-center {
  transform: translateX(-50%) translateZ(0) rotateY(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  border-color: var(--accent-orange);
  box-shadow: 8px 8px 0 0 rgba(255,77,0,0.18);
}

.coverflow-card.is-left {
  transform: translateX(calc(-50% - 360px)) translateZ(-160px) rotateY(38deg);
  opacity: 0.45;
  z-index: 1;
  filter: grayscale(100%);
}

.coverflow-card.is-right {
  transform: translateX(calc(-50% + 360px)) translateZ(-160px) rotateY(-38deg);
  opacity: 0.45;
  z-index: 1;
  filter: grayscale(100%);
}

.coverflow-card .quote-mark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.coverflow-card .rev-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mono-iron);
  margin: 0 0 24px;
}

.coverflow-card .rev-author {
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line-hair);
  padding-top: 18px;
}

.rev-photo {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  border: 1px solid var(--line-hair);
}

.rev-author .r-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; display: block; }
.rev-author .r-loc { font-size: 12px; color: var(--mono-graphite); letter-spacing: 0.04em; }

.coverflow-nav { display: flex; gap: 12px; margin-top: 28px; justify-content: center; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.contact-left { position: sticky; top: 80px; align-self: start; }

.contact-phone {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.contact-phone::before {
  content: "TEL";
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-orange);
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  padding: 6px 10px;
  border: 1px solid var(--accent-orange);
}

.contact-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 15px;
}

.contact-meta-row:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.12); }

.contact-meta-row .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent-orange);
  text-transform: uppercase;
  flex: 0 0 88px;
  font-weight: 600;
  padding-top: 4px;
}

.contact-meta-row a { color: #fff; }
.contact-meta-row a:hover { color: var(--accent-orange); }

.contact-form {
  background: var(--mono-paper);
  padding: 44px;
  color: var(--mono-iron);
  border: 1px solid var(--line-hair);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.contact-form .form-group { margin-bottom: 18px; }

.contact-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mono-graphite);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line-hair);
  background: var(--mono-paper);
  color: var(--mono-iron);
  padding: 14px 16px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255,77,0,0.18);
}

.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .req { color: var(--accent-orange); font-weight: 700; }

.form-success { display: none; text-align: center; padding: 30px 10px; color: var(--mono-iron); }
.form-success.is-shown { display: block; }

.form-success .ok-mark {
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-orange);
  margin-bottom: 18px;
}

.site-footer {
  background: var(--mono-anthracite);
  color: #fff;
  padding: 80px 56px 0 296px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: var(--mono-anthracite);
  clip-path: polygon(0 14px, 100% 0, 100% 14px, 0 14px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 20px;
  font-weight: 600;
}

.footer-col p,
.footer-col li {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a { color: #fff; transition: color 200ms ease; }
.footer-col a:hover { color: var(--accent-orange); }

.footer-mark-mini {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-orange);
  margin-bottom: 14px;
  position: relative;
  background: transparent;
}

.footer-mark-mini::before, .footer-mark-mini::after {
  content: "";
  position: absolute;
  background: var(--accent-orange);
  height: 1.5px;
  width: 14px;
  top: 50%;
  left: 50%;
}

.footer-mark-mini::before { transform: translate(-50%, -50%) rotate(45deg); }
.footer-mark-mini::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.footer-brand-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: #fff;
}

.footer-sitename {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: var(--mono-graphite);
  margin-bottom: 16px;
}

.footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--mono-graphite);
  letter-spacing: 0.06em;
}

.footer-strip .brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

.mini-hero {
  padding: 100px 56px 60px;
  background: var(--mono-paper);
  border-bottom: 1px solid var(--line-hair);
  position: relative;
}

.mini-hero .crumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mono-graphite);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mini-hero .crumb::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--mono-graphite);
}

.mini-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--mono-iron);
  margin: 0 0 18px;
  transform: skewX(-2deg);
  max-width: 900px;
}

.mini-hero h1 .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  display: block;
  font-size: 22px;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  transform: none;
  margin-top: 14px;
}

.mini-hero p.lead {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 16px;
  color: var(--mono-iron);
  max-width: 620px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.cookie-consent-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: var(--mono-paper);
  border: 1px solid var(--line-hair);
  border-left: 4px solid var(--accent-orange);
  padding: 20px 22px;
  z-index: 200;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 13px;
  color: var(--mono-iron);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  box-shadow: 6px 6px 0 0 rgba(26,26,26,0.12);
}

.cookie-consent-banner h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--mono-iron);
}

.cookie-consent-banner p { font-size: 12px; line-height: 1.6; color: var(--mono-iron); margin: 0 0 14px; }

.cookie-consent-banner .cookie-buttons { display: flex; gap: 8px; }

.cookie-consent-banner button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: none;
  cursor: pointer;
  background: var(--accent-orange);
  color: #fff;
  transition: background 220ms ease;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  flex: 1;
  white-space: nowrap;
}

.cookie-consent-banner button.decline {
  background: transparent;
  color: var(--mono-iron);
  border: 1px solid var(--mono-iron);
}

.cookie-consent-banner button:hover { background: var(--accent-orange-deep); }
.cookie-consent-banner button.decline:hover { background: transparent; color: var(--accent-orange); border-color: var(--accent-orange); }

.reveal-block {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-block.is-visible { opacity: 1; transform: translateY(0); }

.service-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.service-table th, .service-table td {
  border-bottom: 1px solid var(--line-hair);
  padding: 18px 14px;
  text-align: left;
  font-size: 14px;
  color: var(--mono-iron);
}

.service-table th {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mono-graphite);
  background: var(--mono-fog);
}

.service-table tr:hover td { background: var(--mono-fog); }

.service-table .price-col {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--accent-orange);
  white-space: nowrap;
}

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.case-card {
  background: var(--mono-paper);
  border: 1px solid var(--line-hair);
  overflow: hidden;
  transition: transform 280ms ease, border-color 220ms ease;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  color: var(--mono-iron);
}

.case-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--accent-orange);
  box-shadow: 6px 6px 0 0 rgba(255,77,0,0.18);
}

.case-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.case-body { padding: 22px 22px 24px; }

.case-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 8px;
  display: inline-block;
  font-weight: 600;
}

.case-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--mono-iron);
}

.case-body p { font-size: 13px; color: var(--mono-graphite); margin: 0 0 12px; line-height: 1.6; }

.case-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-hair);
  padding-top: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mono-graphite);
}

.legal-article { max-width: 760px; }

.legal-article h2 {
  font-size: 22px;
  margin: 36px 0 14px;
  padding-left: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--mono-iron);
  letter-spacing: -0.01em;
  position: relative;
}

.legal-article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 3px;
  background: var(--accent-orange);
  transform: skewX(-25deg);
}

.legal-article p,
.legal-article li {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--mono-iron);
  margin: 0 0 14px;
}

.legal-article ul { padding-left: 20px; }

.thanks-stage {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 56px;
  text-align: center;
}

.thanks-stage h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.025em;
  color: var(--mono-iron);
  margin: 0 0 16px;
  transform: skewX(-2deg);
}

.thanks-stage h1 .jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--accent-orange);
  display: block;
  margin-top: 14px;
  transform: none;
  letter-spacing: 0.04em;
}

.thanks-stage p {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: 16px;
  color: var(--mono-iron);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.thanks-mark {
  width: 96px;
  height: 96px;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-orange);
}

@media (max-width: 1439px) {
  :root { --sidebar-w: 240px; }
  .kn-section { padding: 96px 40px; }
  .kn-section h2 { font-size: 52px; }
  .hero-h1 { font-size: 68px; }
  .mini-hero h1 { font-size: 56px; }
  .editorial-grid { grid-template-columns: 1fr 1.5fr; }
  .editorial-timeline { grid-column: 1 / -1; display: flex; gap: 32px; border-left: 0; padding-left: 0; border-top: 1px solid var(--line-hair); padding-top: 18px; margin-top: 24px; }
  .editorial-timeline .tl-year { margin-top: 0; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col.footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 1023px) {
  :root { --sidebar-w: 72px; }
  .dock-link { padding: 18px 16px; font-size: 0; justify-content: center; }
  .dock-link::before { display: none; }
  .dock-link:hover { padding-left: 16px; }
  .dock-sitename { display: none; }
  .dock-logo-block { padding: 18px 8px; }
  .dock-mark { margin: 0 auto; }
  .dock-domain { display: none; }
  .dock-meta { font-size: 0; padding: 12px 8px; min-height: 80px; }
  .dock-meta a { display: none; }
  .kn-section { padding: 80px 32px; }
  .kn-section h2 { font-size: 44px; }
  .hero-stage { grid-template-columns: 1fr; padding: 60px 32px; min-height: auto; }
  .hero-photo-wrap { height: 60vh; min-height: 380px; }
  .hero-h1 { font-size: 56px; }
  .bento-services { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-wide { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .bento-wide-img { min-height: 200px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fg-advantages { flex-direction: column; }
  .fg-cell:hover { flex: 1; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-left { position: static; }
  .marquee-item { font-size: 40px; }
  .mini-hero { padding: 80px 32px 50px; }
  .mini-hero h1 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col.footer-col--brand { grid-column: 1 / -1; }
  .team-reveal-panel { display: none; }
  .team-row:hover .team-reveal-panel { display: flex; right: 16px; }
  .process-card { flex: 0 0 280px; min-height: 360px; padding: 24px; }
}

@media (max-width: 767px) {
  .dock-sidebar { display: none; }
  .mobile-bar { display: flex; }
  .main-stage { margin-left: 0; padding-top: var(--header-h); }
  .kn-section { padding: 64px 20px; }
  .kn-section--tight { padding: 56px 20px; }
  .kn-section h2 { font-size: 34px; padding-left: 28px; margin-bottom: 32px; }
  .kn-section h2::before { width: 16px; height: 3px; top: 10px; }
  .hero-stage { padding: 40px 20px; gap: 32px; }
  .hero-h1 { font-size: 38px; }
  .hero-sub-jp { font-size: 16px; }
  .hero-photo-wrap { height: 280px; min-height: 280px; clip-path: none; }
  .hero-imprint { right: 0; bottom: 20px; font-size: 10px; padding: 10px 14px; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 18px; padding: 20px 0; margin-bottom: 40px; }
  .stat-cell .num { font-size: 36px; }
  .bento-services { grid-template-columns: 1fr; }
  .bento-cell { min-height: 200px; padding: 22px; }
  .editorial-grid { grid-template-columns: 1fr; gap: 28px; }
  .editorial-quote { font-size: 20px; }
  .fg-cell { min-height: 0; }
  .fg-cell p { opacity: 1; max-height: 200px; }
  .fg-cell .ic { width: 44px; height: 44px; font-size: 18px; }
  .marquee-item { font-size: 28px; gap: 16px; }
  .marquee-rail { gap: 36px; }
  .team-row { grid-template-columns: 36px 1fr; gap: 14px; }
  .team-row .t-arrow { display: none; }
  .team-row .t-name { font-size: 18px; }
  .team-reveal-panel { display: none !important; }
  .coverflow-stage { height: 560px; }
  .coverflow-card { width: 88vw; padding: 24px; }
  .coverflow-card.is-left { transform: translateX(calc(-50% - 60vw)) rotateY(38deg); opacity: 0; pointer-events: none; }
  .coverflow-card.is-right { transform: translateX(calc(-50% + 60vw)) rotateY(-38deg); opacity: 0; pointer-events: none; }
  .contact-phone { font-size: 30px; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
  .site-footer { padding: 60px 24px 0; }
  .footer-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-legal-links { display: flex; gap: 12px; flex-wrap: wrap; }
  .footer-legal-links a { color: var(--mono-graphite); }
  .mini-hero { padding: 60px 20px 36px; }
  .mini-hero h1 { font-size: 32px; }
  .mini-hero h1 .jp { font-size: 16px; }
  .case-grid { grid-template-columns: 1fr; }
  .thanks-stage h1 { font-size: 38px; }
  .thanks-stage h1 .jp { font-size: 18px; }
  .cookie-consent-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .service-table th, .service-table td { padding: 12px 8px; font-size: 12px; }
  .legal-article h2 { font-size: 18px; margin: 28px 0 10px; }
}
