/* =========================================================
   FOG LOG TOP V2
   Scope: .foglog-v2
   ========================================================= */

.foglog-v2 {
  --paper: #d8d5cd;
  --paper-light: #e5e2da;
  --paper-dark: #cbc8bf;
  --ink: #161b1a;
  --ink-soft: #4d5552;
  --line: rgba(22, 27, 26, 0.22);
  --line-soft: rgba(22, 27, 26, 0.11);
  --mist: #bcc8c5;
  --mist-light: #d8e0dd;
  --signal: #325f59;
  --signal-bright: #3f7b72;
  --night: #101716;
  --night-soft: #182220;
  --white: #f4f3ee;
  --shell: 1240px;
  position: relative;
  width: 100%;
  margin-left: 0;
  overflow: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

.foglog-v2 *,
.foglog-v2 *::before,
.foglog-v2 *::after { box-sizing: border-box; }

.foglog-v2 a { color: inherit; text-decoration: none; }
.foglog-v2 button { color: inherit; font: inherit; }
.foglog-v2 h1,
.foglog-v2 h2,
.foglog-v2 h3,
.foglog-v2 p,
.foglog-v2 ul,
.foglog-v2 ol,
.foglog-v2 blockquote { margin: 0; }
.foglog-v2 ul,
.foglog-v2 ol { padding: 0; }

.foglog-v2__grain {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.foglog-v2__progress {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.foglog-v2__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--signal-bright);
  transform-origin: left center;
}

.foglog-v2-shell {
  width: min(calc(100% - 72px), var(--shell));
  margin-inline: auto;
}

.foglog-v2-index {
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.4;
}

.foglog-v2-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1) var(--delay, 0s), transform .85s cubic-bezier(.2,.7,.2,1) var(--delay, 0s);
}

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

.foglog-v2-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 24px;
  border: 1px solid var(--night);
  background: var(--night);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  transition: color .24s ease, background .24s ease, border-color .24s ease, transform .24s ease;
}

.foglog-v2-button:hover {
  border-color: var(--signal);
  background: var(--signal);
  transform: translateY(-2px);
}

.foglog-v2-button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--night) !important;
}

.foglog-v2-button--light:hover {
  border-color: var(--mist-light);
  background: var(--mist-light);
}

/* Header */
.foglog-v2-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(22,27,26,.14);
  background: rgba(216,213,205,.56);
  backdrop-filter: blur(18px) saturate(.8);
}

.foglog-v2-header.is-fixed {
  position: fixed;
  animation: foglogHeaderIn .34s ease both;
}

@keyframes foglogHeaderIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.foglog-v2-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.foglog-v2-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}

.foglog-v2-brand__mark {
  width: 38px;
  height: 38px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.foglog-v2-brand__needle { fill: var(--signal); stroke: none; }
.foglog-v2-brand__core { fill: var(--ink); stroke: none; }

.foglog-v2-brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.foglog-v2-brand__copy strong {
  font-size: 15px;
  letter-spacing: .19em;
}

.foglog-v2-brand__copy small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .19em;
}

.foglog-v2-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.foglog-v2-nav a,
.foglog-v2-header__contact {
  position: relative;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.foglog-v2-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.foglog-v2-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.foglog-v2-header__contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
}

/* Shared contour / fog */
.foglog-v2-contours {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.foglog-v2-contours path {
  fill: none;
  stroke: rgba(22,27,26,.11);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.foglog-v2-fog {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
  will-change: transform;
}

/* Hero */
.foglog-v2-hero {
  position: relative;
  min-height: 940px;
  padding-top: 82px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(22,27,26,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,27,26,.045) 1px, transparent 1px),
    var(--paper);
  background-size: 86px 86px;
  isolation: isolate;
}

.foglog-v2-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(216,213,205,.94));
  content: "";
  pointer-events: none;
}

.foglog-v2-contours--hero {
  top: 0;
  right: -7%;
  width: 67%;
  height: 100%;
  opacity: .9;
  animation: foglogContourDrift 18s ease-in-out infinite alternate;
}

@keyframes foglogContourDrift { to { transform: translate3d(-18px, 14px, 0) scale(1.025); } }

.foglog-v2-fog--a {
  top: 5%;
  right: -8%;
  width: 50vw;
  height: 29vw;
  background: rgba(174,192,187,.65);
  animation: foglogFogA 14s ease-in-out infinite alternate;
}

.foglog-v2-fog--b {
  right: 20%;
  bottom: 2%;
  width: 38vw;
  height: 22vw;
  background: rgba(224,229,225,.7);
  animation: foglogFogB 17s ease-in-out infinite alternate;
}

.foglog-v2-fog--c {
  top: 27%;
  left: -10%;
  width: 34vw;
  height: 18vw;
  background: rgba(197,202,194,.6);
  animation: foglogFogC 19s ease-in-out infinite alternate;
}

@keyframes foglogFogA { to { transform: translate3d(-8vw, 3vw, 0) scale(1.1); opacity: .74; } }
@keyframes foglogFogB { to { transform: translate3d(5vw, -2vw, 0) scale(.92); opacity: .55; } }
@keyframes foglogFogC { to { transform: translate3d(7vw, 2vw, 0) scale(1.12); opacity: .48; } }

.foglog-v2-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 810px;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 60px;
  padding-block: 76px 90px;
}

.foglog-v2-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.foglog-v2-eyebrow span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--signal);
}

.foglog-v2-hero h1,
.foglog-v2-statement h2,
.foglog-v2-section-head h2,
.foglog-v2-philosophy h2,
.foglog-v2-contact h2 {
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  letter-spacing: .025em;
}

.foglog-v2-hero h1 {
  margin-top: 32px;
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 1.2;
}

.foglog-v2-hero h1 em,
.foglog-v2-section-head h2 em,
.foglog-v2-approach h2 em,
.foglog-v2-build-log h2 em {
  position: relative;
  color: var(--signal);
  font-style: normal;
}

.foglog-v2-hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 9px;
  background: rgba(50,95,89,.14);
  content: "";
  z-index: -1;
}

.foglog-v2-hero__lead {
  max-width: 680px;
  margin-top: 32px !important;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.05;
}

.foglog-v2-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 39px;
}

.foglog-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 9px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  transition: color .2s ease, border-color .2s ease;
}

.foglog-v2-link:hover { color: var(--signal); border-color: var(--signal); }

.foglog-v2-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 660px;
  margin-top: 72px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.foglog-v2-hero__meta span:first-child { display: flex; align-items: center; gap: 9px; }
.foglog-v2-hero__meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-bright);
  box-shadow: 0 0 0 5px rgba(63,123,114,.12);
}

.foglog-v2-compass-stage {
  position: relative;
  min-height: 650px;
  perspective: 900px;
}

.foglog-v2-compass {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(46vw, 600px);
  overflow: visible;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 32px 50px rgba(22,27,26,.1));
  will-change: transform;
}

.foglog-v2-compass__orbit circle,
.foglog-v2-compass__grid path,
.foglog-v2-compass__ticks path {
  fill: none;
  stroke: rgba(22,27,26,.2);
  stroke-width: 1;
}

.foglog-v2-compass__orbit circle:nth-child(2) { stroke-dasharray: 4 7; }
.foglog-v2-compass__orbit circle:nth-child(3) { stroke: rgba(22,27,26,.13); }
.foglog-v2-compass__orbit circle:nth-child(4) { stroke: rgba(50,95,89,.35); stroke-dasharray: 2 5; }
.foglog-v2-compass__grid path { stroke: rgba(22,27,26,.1); }
.foglog-v2-compass__ticks path { stroke: rgba(22,27,26,.42); stroke-width: 2; }

.foglog-v2-compass__labels text {
  fill: var(--ink-soft);
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: .15em;
}

.foglog-v2-compass__route {
  fill: none;
  stroke: var(--signal);
  stroke-width: 2;
  stroke-dasharray: 7 8;
  opacity: .7;
  animation: foglogRouteDash 9s linear infinite;
}

@keyframes foglogRouteDash { to { stroke-dashoffset: -120; } }

.foglog-v2-compass__points circle {
  fill: var(--signal);
  stroke: var(--paper);
  stroke-width: 4;
}

.foglog-v2-compass__points circle:nth-child(3) { animation: foglogPointPulse 2s ease-in-out infinite; }
@keyframes foglogPointPulse { 50% { r: 9px; opacity: .5; } }

.foglog-v2-compass__needle-group {
  transform-origin: 320px 320px;
  transition: transform 1.15s cubic-bezier(.17,.67,.2,1);
  will-change: transform;
}

.foglog-v2-compass__needle-shadow { fill: rgba(22,27,26,.12); filter: url(#foglog-soft-glow); }
.foglog-v2-compass__needle-north { fill: var(--signal-bright); }
.foglog-v2-compass__needle-south { fill: var(--ink); }
.foglog-v2-compass__core { fill: var(--paper); stroke: var(--ink); stroke-width: 2; }
.foglog-v2-compass__core-dot { fill: var(--ink); }

.foglog-v2-coordinate {
  position: absolute;
  z-index: 2;
  min-width: 138px;
  padding: 12px 15px;
  border-left: 2px solid var(--signal);
  background: rgba(229,226,218,.64);
  box-shadow: 0 18px 60px rgba(22,27,26,.07);
  backdrop-filter: blur(12px);
}

.foglog-v2-coordinate small {
  display: block;
  color: var(--signal);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
}

.foglog-v2-coordinate strong {
  display: block;
  margin-top: 4px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .08em;
}

.foglog-v2-coordinate--a { top: 8%; left: 3%; }
.foglog-v2-coordinate--b { top: 32%; right: -2%; }
.foglog-v2-coordinate--c { right: 16%; bottom: 8%; }

.foglog-v2-compass-stage__caption {
  position: absolute;
  bottom: 7%;
  left: 0;
  color: rgba(22,27,26,.45);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .18em;
}

.foglog-v2-marquee {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(216,213,205,.72);
  white-space: nowrap;
}

.foglog-v2-marquee div {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 27px;
  padding-block: 15px;
  color: rgba(22,27,26,.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .23em;
  animation: foglogMarquee 30s linear infinite;
}

.foglog-v2-marquee i { color: var(--signal); font-style: normal; }
@keyframes foglogMarquee { to { transform: translateX(-50%); } }

/* Statement */
.foglog-v2-statement {
  padding-block: 150px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.foglog-v2-statement__grid {
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 80px;
}

.foglog-v2-statement__small {
  color: var(--signal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}

.foglog-v2-statement h2 {
  margin-top: 22px;
  font-size: clamp(42px, 4.8vw, 67px);
  line-height: 1.45;
}

.foglog-v2-statement__body {
  max-width: 800px;
  margin-top: 33px !important;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.15;
}

/* Common section head */
.foglog-v2-section-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 80px;
  padding-bottom: 53px;
  border-bottom: 1px solid var(--line);
}

.foglog-v2-section-head h2 {
  margin-top: 20px;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.42;
}

.foglog-v2-section-head > p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

/* Capabilities service map */
.foglog-v2-capabilities {
  position: relative;
  padding-block: 145px 155px;
  background: var(--paper);
}

.foglog-v2-contours--capabilities {
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  opacity: .65;
}

.foglog-v2-service-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 65px;
  margin-top: 67px;
}

.foglog-v2-service-map__canvas {
  position: relative;
  min-height: 650px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.33), transparent 47%),
    linear-gradient(rgba(22,27,26,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,27,26,.045) 1px, transparent 1px),
    rgba(229,226,218,.45);
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: inset 0 0 110px rgba(22,27,26,.04);
}

.foglog-v2-service-map__canvas::before,
.foglog-v2-service-map__canvas::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.foglog-v2-service-map__canvas::before {
  inset: 26px;
  border: 1px solid rgba(22,27,26,.08);
}

.foglog-v2-service-map__canvas::after {
  top: 50%; left: 50%; width: 360px; height: 360px;
  border: 1px dashed rgba(22,27,26,.15);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.foglog-v2-service-map__routes {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.foglog-v2-service-map__routes path {
  fill: none;
  stroke: rgba(22,27,26,.17);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
  transition: stroke .3s ease, stroke-width .3s ease, opacity .3s ease;
}

.foglog-v2-service-map__routes path.is-active {
  stroke: var(--signal);
  stroke-width: 2.5;
  opacity: 1;
  animation: foglogServiceRoute .9s linear infinite;
}

@keyframes foglogServiceRoute { to { stroke-dashoffset: -24; } }

.foglog-v2-service-node,
.foglog-v2-service-hub {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.foglog-v2-service-node {
  width: 196px;
  min-height: 116px;
  padding: 18px 19px;
  border: 1px solid var(--line);
  background: rgba(216,213,205,.82);
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.foglog-v2-service-node:hover,
.foglog-v2-service-node.is-active {
  border-color: var(--signal);
  background: var(--paper-light);
  box-shadow: 0 25px 65px rgba(22,27,26,.11);
  transform: translateY(-5px);
}

.foglog-v2-service-node::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--ink-soft);
  box-shadow: 0 0 0 1px var(--ink-soft);
  content: "";
  transition: background .25s ease, box-shadow .25s ease;
}

.foglog-v2-service-node.is-active::before {
  background: var(--signal-bright);
  box-shadow: 0 0 0 1px var(--signal-bright), 0 0 0 8px rgba(63,123,114,.13);
}

.foglog-v2-service-node > span {
  position: absolute;
  top: 14px;
  right: 15px;
  color: var(--signal);
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.foglog-v2-service-node small {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
}

.foglog-v2-service-node strong {
  margin-top: 7px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
}

.foglog-v2-service-node--web { top: 9%; left: 5%; }
.foglog-v2-service-node--system { top: 9%; right: 5%; }
.foglog-v2-service-node--automation { bottom: 9%; left: 5%; }
.foglog-v2-service-node--improve { right: 5%; bottom: 9%; }

.foglog-v2-service-hub {
  top: 50%;
  left: 50%;
  width: 158px;
  height: 158px;
  align-items: center;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: var(--night);
  color: var(--white);
  text-align: center;
  transform: translate(-50%,-50%);
  box-shadow: 0 20px 70px rgba(22,27,26,.2);
}

.foglog-v2-service-hub__pulse {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(50,95,89,.38);
  border-radius: 50%;
  animation: foglogHubPulse 2.8s ease-out infinite;
}

@keyframes foglogHubPulse { 70%,100% { transform: scale(1.18); opacity: 0; } }

.foglog-v2-service-hub small {
  color: #95bab4;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .18em;
}

.foglog-v2-service-hub strong {
  margin-top: 2px;
  font-family: Georgia, serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.1;
}

.foglog-v2-service-hub em {
  margin-top: 4px;
  color: rgba(244,243,238,.62);
  font-size: 9px;
  font-style: normal;
}

.foglog-v2-map-scale {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  color: rgba(22,27,26,.44);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
}

.foglog-v2-map-scale i { width: 23px; height: 1px; margin-inline: 4px; background: rgba(22,27,26,.28); }

.foglog-v2-service-detail {
  align-self: center;
  min-height: 470px;
  padding: 38px 36px 32px;
  border-top: 2px solid var(--signal);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 34px 90px rgba(22,27,26,.08);
}

.foglog-v2-service-detail__code {
  color: var(--signal);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.foglog-v2-service-detail h3 {
  margin-top: 34px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.45;
}

.foglog-v2-service-detail__lead {
  margin-top: 22px !important;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.foglog-v2-service-detail ul {
  margin-top: 27px;
  list-style: none;
}

.foglog-v2-service-detail li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line-soft);
  color: #3f4745;
  font-size: 11px;
}

.foglog-v2-service-detail li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--signal);
  content: "";
}

.foglog-v2-service-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 29px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .12em;
}

.foglog-v2-service-detail__status { display: flex; align-items: center; gap: 7px; }
.foglog-v2-service-detail__status i { width: 5px; height: 5px; border-radius: 50%; background: var(--signal-bright); }

/* Build log */
.foglog-v2-build-log {
  padding-block: 145px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--night);
  background-size: 62px 62px;
  color: var(--white);
}

.foglog-v2-section-head--light { border-color: rgba(255,255,255,.15); }
.foglog-v2-section-head--light .foglog-v2-index { color: #81aaa3; }
.foglog-v2-section-head--light h2 { color: var(--white); }
.foglog-v2-section-head--light h2 em { color: #81aaa3; }
.foglog-v2-section-head--light > p { color: rgba(244,243,238,.55); }

.foglog-v2-pipeline {
  margin-top: 69px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.025);
}

.foglog-v2-pipeline__topline {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(244,243,238,.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .17em;
}

.foglog-v2-pipeline__topline b { color: #81aaa3; font-weight: 700; }

.foglog-v2-pipeline__flow {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-columns: repeat(5,1fr);
  align-items: center;
  padding: 36px 24px;
}

.foglog-v2-pipeline__svg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.foglog-v2-pipeline__base { fill: none; stroke: rgba(255,255,255,.17); stroke-width: 1; stroke-dasharray: 4 7; }
.foglog-v2-pipeline__active { fill: none; stroke: #6f9d95; stroke-width: 1.7; stroke-dasharray: 115 853; animation: foglogPipelineFlow 5.8s linear infinite; }
@keyframes foglogPipelineFlow { to { stroke-dashoffset: -968; } }
.foglog-v2-pipeline__packet { fill: #a3c2bc; filter: drop-shadow(0 0 6px #78a79f); }
.foglog-v2-pipeline__packet--2 { fill: #f4f3ee; opacity: .55; }

.foglog-v2-pipeline-node {
  position: relative;
  z-index: 2;
  width: 168px;
  min-height: 224px;
  justify-self: center;
  padding: 22px 17px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(16,23,22,.88);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.foglog-v2-pipeline-node > span {
  color: #81aaa3;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .14em;
}

.foglog-v2-pipeline-node > strong {
  display: block;
  min-height: 43px;
  margin-top: 15px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .08em;
}

.foglog-v2-pipeline-node > small {
  display: block;
  margin-top: 7px;
  color: rgba(244,243,238,.48);
  font-size: 9px;
}

.foglog-v2-mini-form,
.foglog-v2-mini-radar,
.foglog-v2-mini-stack,
.foglog-v2-mini-check,
.foglog-v2-mini-output {
  position: absolute;
  right: 17px;
  bottom: 18px;
  left: 17px;
  height: 77px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.foglog-v2-mini-form { padding-top: 13px; }
.foglog-v2-mini-form i { display: block; width: 100%; height: 6px; margin-bottom: 8px; background: rgba(255,255,255,.09); }
.foglog-v2-mini-form i:nth-child(2) { width: 72%; }
.foglog-v2-mini-form i:nth-child(3) { width: 86%; }
.foglog-v2-mini-form b { position: absolute; right: 0; bottom: 0; width: 34px; height: 10px; background: #6f9d95; }

.foglog-v2-mini-radar { display: grid; place-items: center; }
.foglog-v2-mini-radar i { position: absolute; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.foglog-v2-mini-radar i:nth-child(2) { width: 30px; height: 30px; }
.foglog-v2-mini-radar b { width: 5px; height: 5px; border-radius: 50%; background: #7caaa2; box-shadow: 20px -10px 0 rgba(124,170,162,.45), -17px 13px 0 rgba(124,170,162,.45); animation: foglogMiniRadar 2.4s ease-in-out infinite alternate; }
@keyframes foglogMiniRadar { to { transform: translate(12px,-8px); } }

.foglog-v2-mini-stack { padding-top: 16px; }
.foglog-v2-mini-stack i { display: block; width: 72%; height: 12px; margin: 0 auto -3px; border: 1px solid rgba(255,255,255,.16); background: var(--night-soft); transform: skewX(-18deg); }
.foglog-v2-mini-stack i:nth-child(2) { width: 82%; }
.foglog-v2-mini-stack i:nth-child(3) { width: 92%; }

.foglog-v2-mini-check { display: grid; place-items: center; color: #91b8b1; font-family: Georgia,serif; font-size: 42px; }
.foglog-v2-mini-check::before { position: absolute; width: 54px; height: 54px; border: 1px solid rgba(145,184,177,.3); border-radius: 50%; content:""; animation: foglogCheckPulse 2s ease-out infinite; }
@keyframes foglogCheckPulse { to { transform: scale(1.3); opacity:0; } }

.foglog-v2-mini-output { padding-top: 14px; }
.foglog-v2-mini-output i { display: block; width: 72%; height: 7px; margin-bottom: 8px; background: rgba(255,255,255,.09); }
.foglog-v2-mini-output i:nth-child(2) { width: 48%; }
.foglog-v2-mini-output b { position: absolute; right: 0; bottom: 5px; color: #91b8b1; font-size: 25px; font-weight: 400; }

.foglog-v2-tech-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 58px;
  margin-top: 62px;
}

.foglog-v2-terminal {
  border: 1px solid rgba(255,255,255,.15);
  background: #0b100f;
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
}

.foglog-v2-terminal__bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding-inline: 15px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.foglog-v2-terminal__bar > span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); }
.foglog-v2-terminal__bar small { margin-left: 8px; color: rgba(255,255,255,.35); font-family: monospace; font-size: 8px; }

.foglog-v2-terminal__body {
  min-height: 310px;
  padding: 29px 27px;
  color: rgba(244,243,238,.68);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 2.15;
}

.foglog-v2-terminal__body p { opacity: .28; transition: opacity .3s ease, transform .3s ease; transform: translateX(-4px); }
.foglog-v2-terminal__body p.is-typed { opacity: 1; transform: translateX(0); }
.foglog-v2-terminal__body i { color: rgba(129,170,163,.56); font-style: normal; }
.foglog-v2-terminal__body b { color: #d6c79b; font-weight: 400; }
.foglog-v2-terminal__body em { color: #83b5a9; font-style: normal; }
.foglog-v2-terminal__cursor { animation: foglogCursor .8s steps(1) infinite; }
@keyframes foglogCursor { 50% { opacity: 0; } }

.foglog-v2-tech-layers__intro {
  margin-bottom: 27px !important;
  color: rgba(244,243,238,.52);
  font-size: 12px;
  line-height: 1.95;
}

.foglog-v2-tech-layers > div {
  display: grid;
  min-height: 60px;
  grid-template-columns: 150px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.13);
}

.foglog-v2-tech-layers > div:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.foglog-v2-tech-layers span { color: #81aaa3; font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.foglog-v2-tech-layers strong { color: rgba(244,243,238,.8); font-size: 11px; font-weight: 500; letter-spacing: .06em; }

/* Approach route */
.foglog-v2-approach {
  padding-block: 145px 170px;
  background: var(--paper-light);
}

.foglog-v2-route {
  position: relative;
  min-height: 430px;
  margin-top: 70px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(22,27,26,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,27,26,.04) 1px, transparent 1px);
  background-size: 45px 45px;
}

.foglog-v2-route__line {
  position: absolute;
  z-index: 0;
  top: 42px;
  left: 3%;
  width: 94%;
  height: 300px;
  overflow: visible;
}

.foglog-v2-route__base,
.foglog-v2-route__draw { fill: none; vector-effect: non-scaling-stroke; }
.foglog-v2-route__base { stroke: rgba(22,27,26,.16); stroke-width: 1.5; stroke-dasharray: 5 8; }
.foglog-v2-route__draw { stroke: var(--signal); stroke-width: 2.3; stroke-dasharray: 1800; stroke-dashoffset: 1800; transition: stroke-dashoffset 2.5s cubic-bezier(.22,.7,.2,1); }
.foglog-v2-route.is-visible .foglog-v2-route__draw { stroke-dashoffset: 0; }

.foglog-v2-route-step {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 23px 22px;
  border-top: 2px solid var(--signal);
  background: rgba(229,226,218,.87);
  box-shadow: 0 24px 60px rgba(22,27,26,.08);
  backdrop-filter: blur(10px);
}

.foglog-v2-route-step::before {
  position: absolute;
  top: -10px;
  left: 18px;
  width: 11px;
  height: 11px;
  border: 4px solid var(--paper-light);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
  content: "";
}

.foglog-v2-route-step > span {
  position: absolute;
  top: 19px;
  right: 18px;
  color: var(--signal);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.foglog-v2-route-step small { color: var(--signal); font-size: 7px; font-weight: 700; letter-spacing: .16em; }
.foglog-v2-route-step h3 { margin-top: 13px; font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: 22px; font-weight: 500; }
.foglog-v2-route-step p { margin-top: 9px; color: var(--ink-soft); font-size: 10px; line-height: 1.8; }
.foglog-v2-route-step--1 { top: 216px; left: 2.5%; }
.foglog-v2-route-step--2 { top: 60px; left: 27%; }
.foglog-v2-route-step--3 { top: 194px; left: 52%; }
.foglog-v2-route-step--4 { top: 65px; right: 2.5%; }

/* Philosophy */
.foglog-v2-philosophy {
  position: relative;
  padding-block: 160px;
  background: var(--paper);
  isolation: isolate;
}

.foglog-v2-fog--philosophy-a {
  z-index: -1;
  top: 8%;
  left: -8%;
  width: 47vw;
  height: 29vw;
  background: rgba(179,196,191,.64);
  animation: foglogFogC 16s ease-in-out infinite alternate;
}

.foglog-v2-fog--philosophy-b {
  z-index: -1;
  right: -7%;
  bottom: 0;
  width: 40vw;
  height: 24vw;
  background: rgba(230,231,225,.78);
  animation: foglogFogB 18s ease-in-out infinite alternate;
}

.foglog-v2-philosophy__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.foglog-v2-philosophy__formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.foglog-v2-philosophy__formula > div {
  position: relative;
  display: flex;
  min-height: 184px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(229,226,218,.54);
  backdrop-filter: blur(9px);
}

.foglog-v2-philosophy__formula > div::before {
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(22,27,26,.13);
  border-radius: 50%;
  content: "";
}

.foglog-v2-philosophy__formula span { position: relative; font-family: Georgia,serif; font-size: 26px; letter-spacing: .08em; }
.foglog-v2-philosophy__formula small { position: relative; margin-top: 7px; color: var(--ink-soft); font-size: 8px; }
.foglog-v2-philosophy__formula > i { color: var(--signal); font-family: Georgia,serif; font-size: 24px; font-style: normal; }
.foglog-v2-philosophy__compass-word { border-color: var(--signal) !important; background: rgba(50,95,89,.92) !important; color: var(--white); }
.foglog-v2-philosophy__compass-word small { color: rgba(244,243,238,.66); }

.foglog-v2-philosophy h2 {
  margin-top: 23px;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 1.53;
}

.foglog-v2-philosophy__copy > p:not(.foglog-v2-index) {
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2.08;
}

.foglog-v2-philosophy blockquote {
  margin-top: 34px;
  padding: 18px 0 18px 26px;
  border-left: 2px solid var(--signal);
  font-family: "Yu Mincho","Hiragino Mincho ProN",serif;
  font-size: 20px;
  letter-spacing: .06em;
}

/* Field log */
.foglog-v2-field-log {
  padding-block: 130px;
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.foglog-v2-field-log__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.foglog-v2-field-log__head > p:last-child { max-width: 470px; color: var(--ink-soft); font-size: 12px; }

.foglog-v2-field-log__rows > div {
  display: grid;
  min-height: 95px;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.foglog-v2-field-log__rows span { color: var(--signal); font-family: Georgia,serif; font-size: 13px; font-style: italic; letter-spacing: .1em; }
.foglog-v2-field-log__rows strong { font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: 20px; font-weight: 500; letter-spacing: .05em; }
.foglog-v2-field-log__rows small { color: var(--ink-soft); font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.foglog-v2-note { margin-top: 18px !important; color: rgba(22,27,26,.47); font-size: 9px; }

/* Contact */
.foglog-v2-contact {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  background: var(--signal);
  color: var(--white);
}

.foglog-v2-contact__contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .32;
}

.foglog-v2-contact__contours path { fill: none; stroke: rgba(244,243,238,.32); stroke-width: 1; vector-effect: non-scaling-stroke; }

.foglog-v2-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 100px;
}

.foglog-v2-contact .foglog-v2-index { color: #bed5d0; }
.foglog-v2-contact h2 { margin-top: 23px; color: var(--white); font-size: clamp(42px,4.7vw,64px); line-height: 1.45; }
.foglog-v2-contact__action p { margin-bottom: 31px; color: rgba(244,243,238,.72); font-size: 13px; line-height: 2; }

/* Footer */
.foglog-v2-footer {
  padding-block: 72px 28px;
  background: #0b100f;
  color: rgba(244,243,238,.68);
}

.foglog-v2-footer__top {
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  align-items: start;
  gap: 70px;
}

.foglog-v2-brand--footer { color: var(--white); }
.foglog-v2-brand--footer .foglog-v2-brand__copy small { color: rgba(244,243,238,.39); }
.foglog-v2-brand--footer .foglog-v2-brand__core { fill: var(--white); }

.foglog-v2-footer__statement p { margin-bottom: 6px; color: rgba(244,243,238,.48); font-size: 10px; }
.foglog-v2-footer__nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 9px 28px; }
.foglog-v2-footer__nav a { color: rgba(244,243,238,.51); font-size: 8px; letter-spacing: .1em; transition: color .2s ease; }
.foglog-v2-footer__nav a:hover { color: var(--white); }
.foglog-v2-footer__bottom { display: flex; justify-content: space-between; margin-top: 65px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(244,243,238,.28); font-size: 7px; letter-spacing: .16em; }

/* Responsive */
@media (max-width: 1100px) {
  .foglog-v2-header__inner { grid-template-columns: 1fr auto; }
  .foglog-v2-nav { display: none; }
  .foglog-v2-hero__grid { grid-template-columns: 1fr; padding-top: 100px; }
  .foglog-v2-compass-stage { min-height: 600px; }
  .foglog-v2-compass { width: min(74vw,600px); }
  .foglog-v2-service-map { grid-template-columns: 1fr; }
  .foglog-v2-service-detail { min-height: auto; }
  .foglog-v2-pipeline__flow { grid-template-columns: repeat(3,1fr); gap: 26px; }
  .foglog-v2-pipeline-node { width: 190px; }
  .foglog-v2-pipeline__svg { display: none; }
  .foglog-v2-pipeline-node:nth-of-type(4), .foglog-v2-pipeline-node:nth-of-type(5) { grid-column: span 1; }
  .foglog-v2-philosophy__grid { grid-template-columns: 1fr; }
  .foglog-v2-philosophy__formula { max-width: 760px; }
  .foglog-v2-footer__top { grid-template-columns: 1fr 1fr; }
  .foglog-v2-footer__nav { grid-column: 1/-1; grid-template-columns: repeat(6,max-content); }
}

@media (max-width: 780px) {
  .foglog-v2 { font-size: 15px; }
  .foglog-v2-shell { width: min(calc(100% - 36px), var(--shell)); }
  .foglog-v2-header__inner { min-height: 70px; }
  .foglog-v2-brand__mark { width: 32px; height: 32px; }
  .foglog-v2-brand__copy strong { font-size: 13px; }
  .foglog-v2-brand__copy small { display: none; }
  .foglog-v2-header__contact { font-size: 8px; }

  .foglog-v2-hero { min-height: auto; padding-top: 70px; background-size: 58px 58px; }
  .foglog-v2-hero__grid { min-height: auto; gap: 30px; padding-block: 74px 75px; }
  .foglog-v2-eyebrow { align-items: flex-start; flex-direction: column; gap: 11px; }
  .foglog-v2-hero h1 { margin-top: 27px; font-size: clamp(48px,14vw,67px); line-height: 1.26; }
  .foglog-v2-hero__lead { font-size: 13px; line-height: 2.03; }
  .foglog-v2-hero__actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .foglog-v2-link { width: max-content; }
  .foglog-v2-hero__meta { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 48px; }
  .foglog-v2-compass-stage { min-height: 420px; }
  .foglog-v2-compass { width: min(94vw,430px); }
  .foglog-v2-coordinate { min-width: 112px; padding: 9px 10px; }
  .foglog-v2-coordinate--a { top: 1%; left: 0; }
  .foglog-v2-coordinate--b { top: 30%; right: -3%; }
  .foglog-v2-coordinate--c { right: 8%; bottom: 2%; }
  .foglog-v2-compass-stage__caption { display: none; }

  .foglog-v2-statement,
  .foglog-v2-capabilities,
  .foglog-v2-build-log,
  .foglog-v2-approach,
  .foglog-v2-philosophy,
  .foglog-v2-field-log { padding-block: 92px; }

  .foglog-v2-statement__grid,
  .foglog-v2-section-head,
  .foglog-v2-contact__grid { grid-template-columns: 1fr; gap: 30px; }
  .foglog-v2-statement h2,
  .foglog-v2-section-head h2,
  .foglog-v2-philosophy h2,
  .foglog-v2-contact h2 { font-size: clamp(36px,10.6vw,48px); line-height: 1.5; }
  .foglog-v2-section-head { padding-bottom: 35px; }

  .foglog-v2-service-map { gap: 30px; margin-top: 45px; }
  .foglog-v2-service-map__canvas { display: grid; min-height: auto; grid-template-columns: repeat(2,1fr); gap: 10px; padding: 160px 12px 20px; }
  .foglog-v2-service-map__canvas::after { top: 82px; width: 128px; height: 128px; }
  .foglog-v2-service-map__routes { display: none; }
  .foglog-v2-service-node { position: relative; inset: auto; width: auto; min-height: 105px; padding: 16px; }
  .foglog-v2-service-node strong { font-size: 16px; }
  .foglog-v2-service-hub { top: 82px; width: 108px; height: 108px; }
  .foglog-v2-service-hub strong { font-size: 30px; }
  .foglog-v2-map-scale { display: none; }
  .foglog-v2-service-detail { padding: 30px 24px 25px; }
  .foglog-v2-service-detail h3 { margin-top: 25px; font-size: 27px; }

  .foglog-v2-pipeline__flow { grid-template-columns: 1fr; padding: 24px; }
  .foglog-v2-pipeline-node { width: 100%; min-height: 190px; }
  .foglog-v2-tech-grid { grid-template-columns: 1fr; gap: 35px; }
  .foglog-v2-tech-layers > div { grid-template-columns: 110px 1fr; }
  .foglog-v2-terminal__body { padding: 23px 17px; font-size: 9px; }

  .foglog-v2-route { display: grid; min-height: auto; gap: 13px; padding: 18px; }
  .foglog-v2-route__line { display: none; }
  .foglog-v2-route-step { position: relative; inset: auto; width: 100%; }

  .foglog-v2-philosophy__grid { gap: 60px; }
  .foglog-v2-philosophy__formula { grid-template-columns: 1fr; gap: 12px; }
  .foglog-v2-philosophy__formula > div { width: 190px; min-height: 190px; justify-self: center; }
  .foglog-v2-philosophy__formula > i { transform: rotate(90deg); }

  .foglog-v2-field-log__head { align-items: flex-start; flex-direction: column; gap: 20px; }
  .foglog-v2-field-log__rows > div { min-height: 118px; grid-template-columns: 1fr auto; gap: 9px; padding-block: 20px; }
  .foglog-v2-field-log__rows span { grid-column: 1/-1; }
  .foglog-v2-field-log__rows strong { font-size: 17px; }

  .foglog-v2-contact { padding-block: 86px; }
  .foglog-v2-contact__grid { gap: 38px; }

  .foglog-v2-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .foglog-v2-footer__nav { grid-column: auto; grid-template-columns: repeat(2,max-content); }
  .foglog-v2-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .foglog-v2 *,
  .foglog-v2 *::before,
  .foglog-v2 *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .foglog-v2-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   STATIC SITE / COMPANY / CONTACT PAGES
   ========================================================= */
html { scroll-behavior: smooth; background: #d8d5cd; }
body { margin: 0; background: #d8d5cd; }
.foglog-v2 em { color: var(--signal); font-style: normal; }
.foglog-v2-header--subpage { position: relative; }
.foglog-v2-company { position: relative; padding-block: 125px; border-top: 1px solid var(--line); background: var(--paper-light); }
.foglog-v2-company::after { position: absolute; inset: 0; pointer-events: none; content: ""; opacity: .25; background: repeating-linear-gradient(90deg, transparent 0 139px, rgba(22,27,26,.08) 139px 140px); }
.foglog-v2-company__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 110px; align-items: center; }
.foglog-v2-company__head h2 { margin-top: 24px; font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(39px,4.2vw,58px); font-weight: 500; line-height: 1.48; }
.foglog-v2-company__head > p:not(.foglog-v2-index) { max-width: 540px; margin-top: 25px; color: var(--ink-soft); font-size: 13px; line-height: 2; }
.foglog-v2-company__head .foglog-v2-link { margin-top: 28px; }
.foglog-v2-company__panel { border-top: 1px solid var(--line); }
.foglog-v2-company__panel > div { display: grid; min-height: 90px; grid-template-columns: 180px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.foglog-v2-company__panel span { color: var(--signal); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.foglog-v2-company__panel strong { font-size: 14px; font-weight: 500; letter-spacing: .04em; }
.foglog-v2-footer__statement strong { color: var(--white); font-size: 12px; letter-spacing: .05em; }

.foglog-v2-page-hero { position: relative; min-height: 570px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(120deg,var(--paper) 0%,var(--paper-light) 62%,var(--mist) 160%); }
.foglog-v2-page-hero::after { position: absolute; inset: 0; pointer-events: none; content: ""; background: linear-gradient(rgba(22,27,26,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(22,27,26,.045) 1px,transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg,#000,transparent 90%); }
.foglog-v2-page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 330px; align-items: center; gap: 90px; padding-block: 105px 88px; }
.foglog-v2-page-hero__eyebrow { margin-top: 28px !important; color: var(--signal); font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.foglog-v2-page-hero h1 { margin-top: 19px; font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(48px,5.3vw,72px); font-weight: 500; line-height: 1.38; letter-spacing: .04em; }
.foglog-v2-page-hero__lead { max-width: 680px; margin-top: 27px !important; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.foglog-v2-page-compass { position: relative; width: 280px; height: 280px; margin-inline: auto; border: 1px solid var(--line); border-radius: 50%; }
.foglog-v2-page-compass::before,.foglog-v2-page-compass::after { position: absolute; top: 50%; left: 50%; background: var(--line); content: ""; transform: translate(-50%,-50%); }
.foglog-v2-page-compass::before { width: 120%; height: 1px; }
.foglog-v2-page-compass::after { width: 1px; height: 120%; }
.foglog-v2-page-compass span { position: absolute; inset: 19%; border: 1px dashed var(--line); border-radius: 50%; }
.foglog-v2-page-compass i { position: absolute; top: 50%; left: 50%; width: 4px; height: 67%; background: linear-gradient(var(--signal) 0 49%,var(--ink) 49%); clip-path: polygon(50% 0,100% 48%,58% 50%,100% 100%,50% 64%,0 100%,42% 50%,0 48%); transform: translate(-50%,-50%) rotate(38deg); animation: foglogSubNeedle 7s ease-in-out infinite alternate; }
.foglog-v2-page-compass b { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border: 3px solid var(--paper); border-radius: 50%; background: var(--ink); transform: translate(-50%,-50%); }
.foglog-v2-page-compass small { position: absolute; right: 5%; bottom: 9%; color: var(--signal); font-size: 9px; letter-spacing: .16em; }
@keyframes foglogSubNeedle { 0% { transform: translate(-50%,-50%) rotate(25deg); } 35% { transform: translate(-50%,-50%) rotate(55deg); } 100% { transform: translate(-50%,-50%) rotate(38deg); } }

.foglog-v2-page-section { padding-block: 120px; background: var(--paper-light); }
.foglog-v2-page-section__grid { display: grid; grid-template-columns: .42fr 1fr; gap: 100px; }
.foglog-v2-page-section h2,.foglog-v2-contact-page h2,.foglog-v2-result-page h2 { margin-top: 20px; font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(36px,4vw,52px); font-weight: 500; line-height: 1.45; }
.foglog-v2-company-table { border-top: 1px solid var(--line); }
.foglog-v2-company-table > div { display: grid; grid-template-columns: 180px 1fr; gap: 35px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.foglog-v2-company-table dt { color: var(--signal); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.foglog-v2-company-table dd { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.foglog-v2-page-quote { padding-block: 125px; background: var(--night); color: var(--white); }
.foglog-v2-page-quote blockquote { max-width: 900px; margin: 25px 0 0; font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(37px,4.5vw,58px); font-weight: 500; line-height: 1.55; }
.foglog-v2-page-quote > div > p:last-child { max-width: 710px; margin-top: 34px; color: rgba(244,243,238,.62); font-size: 14px; line-height: 2.1; }
.foglog-v2-page-cta { padding-block: 95px; background: var(--signal); color: var(--white); }
.foglog-v2-page-cta > div { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.foglog-v2-page-cta h2 { margin-top: 16px; font-family: "Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(35px,4vw,52px); font-weight: 500; line-height: 1.5; }

.foglog-v2-contact-page__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.foglog-v2-contact-page__intro > p:not(.foglog-v2-index) { margin-top: 25px; color: var(--ink-soft); font-size: 13px; line-height: 2; }
.foglog-v2-contact-notes { margin-top: 30px !important; list-style: none; border-top: 1px solid var(--line); }
.foglog-v2-contact-notes li { position: relative; padding: 12px 0 12px 18px; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); font-size: 12px; }
.foglog-v2-contact-notes li::before { position: absolute; top: 50%; left: 0; width: 6px; height: 1px; background: var(--signal); content: ""; }
.foglog-v2-form { padding: 45px; border: 1px solid var(--line); background: rgba(244,243,238,.56); }
.foglog-v2-form label { display: block; margin-bottom: 25px; }
.foglog-v2-form label > span:first-child { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.foglog-v2-form em { color: var(--signal); font-size: 8px; font-style: normal; letter-spacing: .12em; }
.foglog-v2-form input[type=text],.foglog-v2-form input[type=email],.foglog-v2-form select,.foglog-v2-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 14px; padding: 12px 0; }
.foglog-v2-form textarea { resize: vertical; line-height: 1.8; }
.foglog-v2-form input:focus,.foglog-v2-form select:focus,.foglog-v2-form textarea:focus { border-color: var(--signal); box-shadow: 0 1px 0 var(--signal); }
.foglog-v2-form__consent { display: flex !important; align-items: flex-start; gap: 11px; }
.foglog-v2-form__consent input { margin-top: 5px; accent-color: var(--signal); }
.foglog-v2-form__consent span { display: block !important; margin: 0 !important; color: var(--ink-soft) !important; font-size: 11px !important; font-weight: 400 !important; }
.foglog-v2-form__consent a { border-bottom: 1px solid var(--line); }
.foglog-v2-form__status { min-height: 1.5em; margin-top: 15px !important; color: var(--signal); font-size: 11px; }
.foglog-v2-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.foglog-v2-policy { max-width: 900px; }
.foglog-v2-policy__date { margin-bottom: 45px !important; color: var(--ink-soft); font-size: 11px; }
.foglog-v2-policy section { padding-block: 29px; border-top: 1px solid var(--line); }
.foglog-v2-policy section:last-child { border-bottom: 1px solid var(--line); }
.foglog-v2-policy h2 { margin: 0; font-family: inherit; font-size: 15px; font-weight: 700; }
.foglog-v2-policy section p { margin-top: 15px; color: var(--ink-soft); font-size: 13px; line-height: 2; }
.foglog-v2-policy a { border-bottom: 1px solid var(--signal); color: var(--signal); }
.foglog-v2-result-page { min-height: 520px; display: flex; align-items: center; }
.foglog-v2-result-page p:not(.foglog-v2-index) { margin-top: 24px; color: var(--ink-soft); }
.foglog-v2-result-page .foglog-v2-button { margin-top: 35px; }

@media (max-width: 1024px) {
  .foglog-v2-company__grid,.foglog-v2-page-section__grid,.foglog-v2-contact-page__grid { grid-template-columns: 1fr; gap: 60px; }
  .foglog-v2-page-hero__grid { grid-template-columns: 1fr 250px; gap: 45px; }
  .foglog-v2-page-compass { width: 230px; height: 230px; }
}
@media (max-width: 720px) {
  .foglog-v2-company,.foglog-v2-page-section,.foglog-v2-page-quote { padding-block: 85px; }
  .foglog-v2-company__grid { gap: 48px; }
  .foglog-v2-company__panel > div { grid-template-columns: 115px 1fr; min-height: 78px; }
  .foglog-v2-page-hero { min-height: auto; }
  .foglog-v2-page-hero__grid { grid-template-columns: 1fr; gap: 45px; padding-block: 76px 65px; }
  .foglog-v2-page-hero h1 { font-size: clamp(42px,12vw,58px); }
  .foglog-v2-page-compass { width: 210px; height: 210px; }
  .foglog-v2-company-table > div { grid-template-columns: 1fr; gap: 10px; }
  .foglog-v2-page-cta > div { align-items: flex-start; flex-direction: column; }
  .foglog-v2-form { padding: 29px 22px; }
  .foglog-v2-page-quote blockquote { font-size: 34px; }
}
