@charset "UTF-8";
:root {
  --green-dark: #03743a;
  --green-mid: #00A42C;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #EEEEEE;
  --gray-mid: #CCCCCC;
  --gray-text: #555555;
  --section-pad: 90px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

section {
  padding: var(--section-pad);
}

.none-sp {
  display: block;
}
@media (max-width: 640px) {
  .none-sp {
    display: none;
  }
}

.none-pc {
  display: none;
}
@media (max-width: 640px) {
  .none-pc {
    display: revert;
  }
}

.none-md {
  display: block;
}
@media (max-width: 768px) {
  .none-md {
    display: none;
  }
}

.none-pc-md {
  display: none;
}
@media (max-width: 768px) {
  .none-pc-md {
    display: revert;
  }
}

ul {
  margin: 0;
}

.page {
  margin: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  backdrop-filter: blur(4px);
}
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }
}

.site-logo img {
  max-width: 300px;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green-mid);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-cta {
  background: var(--green-mid);
  color: #FFFFFF;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--green-dark);
}

.progress-bar {
  position: fixed;
  top: 60px;
  left: 0;
  height: 3px;
  background: var(--green-mid);
  z-index: 99;
  width: 0%;
  transition: width 0.1s;
}

#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero > *:not(.hero-bg):not(.hero-svg) {
  position: relative;
  z-index: 3;
}
@media (max-width: 640px) {
  #hero {
    height: auto;
    min-height: 100svh;
    padding: 80px 0 48px;
    align-items: flex-start;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 20% 80%, rgba(0, 180, 255, 0.12) 0%, transparent 60%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 65%), linear-gradient(160deg, #2d3136 0%, #1a1d20 100%);
  filter: contrast(1.04) brightness(1.06);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  opacity: 0.6;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.015'/></svg>");
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-svg path {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: lineFlow 6s linear infinite;
  will-change: stroke-dashoffset, opacity;
}

@keyframes lineFlow {
  0% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .hero-inner {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .hero-inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 32px;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  width: 100%;
  animation: heroIn 1s ease both;
}
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
  }
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  width: 48%;
  max-width: 620px;
}
@media (max-width: 1024px) {
  .hero-right {
    width: 44%;
  }
}
@media (max-width: 640px) {
  .hero-right {
    width: 100%;
    gap: 16px;
  }
}

.hero-machine-silhouette {
  width: 100%;
  pointer-events: none;
}
.hero-machine-silhouette img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--green-mid);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
  }
}

.hero-h1 {
  font-size: clamp(28px, 7.5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.hero-h1 span {
  color: var(--green-mid);
}
@media (max-width: 640px) {
  .hero-h1 {
    margin-bottom: 20px;
    line-height: 1.08;
  }
}

.hero-h1__en {
  font-size: clamp(28px, 7.5vw, 54px);
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}

.hero-product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.hero-product-name span {
  font-size: 1.8rem;
  color: var(--green-mid);
}
@media (max-width: 640px) {
  .hero-product-name {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-product-name span {
    font-size: 1.4rem;
  }
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 640px) {
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 32px;
  }
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }
}

.hero-specs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  width: 100%;
  animation: heroIn 1s 0.3s ease both;
}
@media (max-width: 1024px) {
  .hero-specs {
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .hero-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.hero-spec-item {
  text-align: left;
}

.hero-spec-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-spec-num span {
  font-size: 20px;
  color: var(--green-mid);
  font-weight: 600;
  margin-left: 3px;
}
@media (max-width: 1024px) {
  .hero-spec-num {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .hero-spec-num {
    font-size: 24px;
  }
  .hero-spec-num span {
    font-size: 13px;
  }
}

.hero-spec-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media (max-width: 640px) {
  .hero-spec-label {
    font-size: 10px;
  }
}

.section-eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-mid);
  flex-shrink: 0;
}

.section-h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 24px;
}
.section-h2.on-white {
  color: #FFFFFF;
}

.section-lead {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 24px;
}
.section-lead.on-dark {
  color: rgba(0, 0, 0, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.btn-primary {
  background: var(--green-mid);
  color: #FFFFFF;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .btn-primary {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
  }
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}
@media (max-width: 640px) {
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
  }
}

.btn-ghost-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

#intro {
  background: var(--black);
  color: #FFFFFF;
  padding: 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #000;
}
@media (max-width: 768px) {
  .intro-inner {
    grid-template-columns: 1fr;
  }
}

.intro-copy {
  background: var(--black);
}
.intro-copy .kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.intro-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
}
.intro-copy p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
}

.intro-image {
  position: relative;
  overflow: hidden;
  background: #000;
}
.intro-image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #000;
  padding: 64px 56px;
}
@media (max-width: 768px) {
  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .intro-stats {
    padding: 40px 24px;
  }
}

.intro-stat {
  background: #111;
  padding: 28px 20px;
}

.intro-stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.intro-stat-num em {
  font-style: normal;
  color: var(--green-mid);
  font-size: 20px;
}

.intro-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

#pain {
  background: var(--gray);
  padding: var(--section-pad);
  border-top: 4px solid rgba(255, 255, 255, 0.06);
}
#pain .section-eyebrow {
  color: var(--green-mid);
}
#pain .section-h2 {
  color: var(--black);
}
#pain .section-h2 em {
  font-style: normal;
  color: var(--green-mid);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

.pain-card {
  position: relative;
  background: var(--green-dark);
  padding: 36px 28px 40px;
  transition: background 0.2s;
}

.pain-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.pain-card-icon {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(109, 179, 109, 0.35);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.pain-card-q {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 14px;
}

.pain-card-body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
}

.pain-card-tag {
  display: inline-block;
  margin-top: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  border-bottom: 1px solid rgba(109, 179, 109, 0.4);
  padding-bottom: 2px;
}

.pain-resolve {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .pain-resolve {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.pain-resolve-label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000000;
  flex-shrink: 0;
}

.pain-resolve-label__en {
  font-size: 1.2rem;
}

.pain-resolve-arrow {
  color: #000000;
  font-size: 18px;
  flex-shrink: 0;
}

.pain-resolve-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-mid);
}

.pain-resolve-text__en {
  font-size: 1.3rem;
}

#feat-smart {
  background: #FFFFFF;
  overflow: hidden;
}

#feat-split {
  background: #FFFFFF;
  overflow: hidden;
}

#feat-design {
  background: #FFFFFF;
}

.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.feat-split.reverse {
  direction: rtl;
}
.feat-split.reverse > * {
  direction: ltr;
}
@media (max-width: 768px) {
  .feat-split {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
}

.feat-tag {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--green-mid);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.feat-h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 16px;
}

.feat-body {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 24px;
}

.feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-bullets li {
  font-size: 13px;
  color: var(--gray-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.feat-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
}

.feat-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #FFFFFF;
}
.feat-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .feat-visual {
    min-height: 240px;
  }
}

.feat-accent-line {
  width: 48px;
  height: 3px;
  background: var(--green-mid);
  margin-bottom: 20px;
}

.feat-design-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.feat-design-inner .feat-visual {
  min-height: 320px;
}
@media (max-width: 768px) {
  .feat-design-inner {
    grid-template-columns: 1fr;
  }
}

.feat-design-copy {
  background: #FFFFFF;
}

.feat-design-bullets {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.feat-dark {
  background: #060f09;
  padding: var(--section-pad);
}
.feat-dark .feat-h3 {
  color: #FFFFFF;
}
.feat-dark .feat-body {
  color: rgba(255, 255, 255, 0.6);
}
.feat-dark .feat-bullets li {
  color: rgba(255, 255, 255, 0.65);
}
.feat-dark .feat-visual {
  background: #000;
}

#ai-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}

.ai-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  right: -100px;
  top: -100px;
  pointer-events: none;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .ai-inner {
    grid-template-columns: 1fr;
  }
}

.ai-copy {
  padding: 64px 56px;
  background: #FFFFFF;
}
@media (max-width: 640px) {
  .ai-copy {
    padding: 40px 24px;
  }
}

.ai-card-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .ai-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ai-card-grid {
    grid-template-columns: 1fr;
  }
}

.ai-card {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.ai-card:hover {
  border-color: rgba(0, 164, 44, 0.4);
  background: rgba(0, 164, 44, 0.06);
}

.ai-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 164, 44, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ai-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green-mid);
  stroke-width: 2;
}

.ai-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

.ai-card-desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.6;
}

#case {
  background: var(--green-dark);
  padding: var(--section-pad);
}

#case .section-eyebrow {
  color: #FFFFFF;
}
#case .section-eyebrow::before {
  background: #FFFFFF;
}
#case .section-h2 {
  color: #FFFFFF;
}
#case .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.case-header {
  text-align: left;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.case-card {
  background: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  /*
  &:hover {
    box-shadow: 0 16px 32px rgba($black, .25);
    transform: translateY(-4px);
  }
  */
}

.case-card-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.case-card-industry {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.case-card-company {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.case-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray);
  margin-bottom: 20px;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.case-card-q {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 12px;
}

.case-card-body {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.case-card-results {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 16px 0;
  margin-bottom: 16px;
}

.case-result-item {
  text-align: left;
}

.case-result-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.case-result-num span {
  font-size: 14px;
  color: var(--green-mid);
  font-weight: 600;
  margin-left: 2px;
}
.case-result-num .case-result-text {
  color: #000;
}

.case-result-label {
  font-size: 11px;
  color: var(--gray-text);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.case-card-tag {
  display: inline-block;
  margin-top: auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  border-bottom: 1px solid rgba(0, 164, 44, 0.4);
  padding-bottom: 2px;
  width: -moz-fit-content;
  width: fit-content;
}

.case-more .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}
.case-more .btn-outline-dark:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--black);
  color: var(--black);
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline-dark:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
  background: rgba(0, 164, 44, 0.04);
}

@media (max-width: 640px) {
  .case-card-results {
    gap: 16px;
  }
  .case-result-num {
    font-size: 24px;
  }
}
#specs {
  background: var(--gray);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #d0d0d0;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  background: #FFFFFF;
  padding: 32px 28px;
}

.spec-card-icon {
  width: 40px;
  height: 40px;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.spec-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.spec-card-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.spec-card-num span {
  font-size: 18px;
  color: var(--green-dark);
  font-weight: 600;
}

.spec-card-name {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.spec-card-desc {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 8px;
  line-height: 1.6;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.spec-table th {
  background: var(--black);
  color: #FFFFFF;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: left;
}
.spec-table td {
  padding: 13px 20px;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
  color: var(--gray-text);
}
.spec-table td:first-child {
  font-weight: 700;
  color: var(--black);
  width: 40%;
}
.spec-table tr:nth-child(even) td {
  background: #f7f7f7;
}
@media (max-width: 640px) {
  .spec-table th, .spec-table td {
    padding: 10px 14px;
    font-size: 12px;
  }
  .spec-table td:first-child {
    width: 50%;
  }
}

#video {
  background: #FFFFFF;
  padding: var(--section-pad);
  border-top: 4px solid var(--green-mid);
}

.video-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  transition: transform 0.2s;
}
.video-card:hover {
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.video-card:hover .video-thumb img {
  opacity: 0.8;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  pointer-events: none;
}

.video-info {
  padding: 12px 16px;
}

.video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__box {
  position: relative;
  width: min(800px, 92vw);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal__iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-modal__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-wrap {
  background: var(--green-mid);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 25s linear infinite;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
.ticker-inner span {
  margin-right: 60px;
}
.ticker-inner span::before {
  content: "◆  ";
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#cta2 {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 640px) {
  #cta2 {
    padding: 60px 0;
  }
}

.cta-simple {
  max-width: 640px;
  margin: 0 auto;
}
.cta-simple .section-eyebrow {
  justify-content: center;
  color: #FFFFFF;
}
.cta-simple .section-eyebrow::before {
  background: #FFFFFF;
}
.cta-simple .section-h2 {
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-cta-large {
  padding: 18px 56px;
  font-size: 15px;
}
@media (max-width: 640px) {
  .btn-cta-large {
    width: 100%;
    max-width: 320px;
    padding: 16px 0;
  }
}

#cta {
  background: var(--green-dark);
  padding: 80px 0;
}
@media (max-width: 640px) {
  #cta {
    padding: 60px 0;
  }
}

.cta-sub {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .cta-inner {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .cta-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.cta-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 80px;
}
@media (max-width: 1024px) {
  .cta-left {
    flex: 0 0 240px;
  }
}
@media (max-width: 640px) {
  .cta-left {
    flex: none;
    width: 60%;
    max-width: 240px;
    position: static;
  }
}

.cta-catalog-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.cta-catalog-img:hover {
  transform: scale(1.02);
}
.cta-catalog-img img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-btn-group {
    justify-content: center;
    display: inline-grid;
  }
}

.cta-right {
  flex: 1;
  min-width: 0;
}
.cta-right h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.1;
}
.cta-right > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .cta-right h2, .cta-right > p {
    text-align: center;
  }
}

.cta-form-wrap {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  text-align: left;
}
.cta-form-wrap input[type=text],
.cta-form-wrap input[type=email],
.cta-form-wrap input[type=tel],
.cta-form-wrap select,
.cta-form-wrap textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 14px;
  padding: 10px 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.cta-form-wrap input[type=text]::-moz-placeholder, .cta-form-wrap input[type=email]::-moz-placeholder, .cta-form-wrap input[type=tel]::-moz-placeholder, .cta-form-wrap select::-moz-placeholder, .cta-form-wrap textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cta-form-wrap input[type=text]::placeholder,
.cta-form-wrap input[type=email]::placeholder,
.cta-form-wrap input[type=tel]::placeholder,
.cta-form-wrap select::placeholder,
.cta-form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cta-form-wrap input[type=text]:focus,
.cta-form-wrap input[type=email]:focus,
.cta-form-wrap input[type=tel]:focus,
.cta-form-wrap select:focus,
.cta-form-wrap textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}
.cta-form-wrap label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  margin-top: 20px;
}
.cta-form-wrap label:first-child {
  margin-top: 0;
}
.cta-form-wrap input[type=submit],
.cta-form-wrap button[type=submit] {
  margin-top: 28px;
  width: 100%;
  background: var(--green-mid);
  color: #FFFFFF;
  border: none;
  border-radius: 2px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cta-form-wrap input[type=submit]:hover,
.cta-form-wrap button[type=submit]:hover {
  opacity: 0.85;
}

footer {
  background: #080808;
  color: rgba(255, 255, 255, 0.45);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.footer-brand span {
  color: var(--green-mid);
}

.footer-desc {
  font-size: 12px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--green-mid);
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  padding-top: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-specs {
    animation: none;
  }
  .hero-svg path {
    animation: none;
  }
  .reveal {
    transition: none;
  }
}/*# sourceMappingURL=lp_jx-50.css.map */