:root {
  --navy: #0f2537;
  --navy-2: #16324a;
  --green: #1f6b4a;
  --green-2: #e8f4ee;
  --orange: #f28c28;
  --orange-2: #fff4e6;
  --blue-gray: #eef3f6;
  --line: #d9e3e8;
  --text: #1f2933;
  --muted: #667887;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 37, 55, .10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  line-height: 1.85;
  background: var(--white);
  letter-spacing: .01em;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 18px; }
strong { color: var(--navy); }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.narrow { width: min(880px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 86px 0; }
.bg-soft { background: linear-gradient(180deg, #f7fafb, #eef3f6); }
.bg-navy { background: var(--navy); color: var(--white); }
.mt-24 { margin-top: 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
}
.bg-navy .eyebrow { color: #a7f3d0; }
h1, h2, h3 { line-height: 1.45; margin: 0; }
h1 { font-size: clamp(34px, 5vw, 60px); letter-spacing: .02em; margin-bottom: 22px; }
h2 { font-size: clamp(27px, 3.5vw, 42px); margin-bottom: 24px; color: var(--navy); }
.bg-navy h2 { color: var(--white); }
h3 { font-size: 21px; margin-bottom: 12px; color: var(--navy); }
.lead { font-size: clamp(17px, 2vw, 20px); color: #405261; }
.bg-navy .lead { color: rgba(255,255,255,.84); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217,227,232,.9);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: 21px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.75);
}
.nav { display: flex; gap: 18px; font-size: 14px; color: var(--muted); font-weight: 700; }
.nav a:hover { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.4;
  transition: .18s ease;
  border: 1px solid transparent;
  box-shadow: none;
  cursor: pointer;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #e36f15);
  box-shadow: 0 14px 28px rgba(242,140,40,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(242,140,40,.34); }
.btn-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--green); }
.btn-dark { color: var(--white); background: var(--navy); }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(242,140,40,.18), transparent 28%),
    linear-gradient(135deg, #f7fafb 0%, #e9f2f0 50%, #f7fafb 100%);
  padding: 88px 0 74px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% 48%;
  height: 540px;
  background: rgba(31,107,74,.08);
  border-radius: 999px;
  transform: rotate(-12deg);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.hero-badges li {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}
.netis-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(15,37,55,.16);
}
.netis-badge span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0b0b0b;
  color: #ffe500;
  font-size: 12px;
  border: 2px solid rgba(255,255,255,.65);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { margin-top: 16px; color: var(--muted); font-size: 14px; }
.hero-visual {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: center;
}
.photo-main {
  position: relative;
  justify-self: end;
  width: 86%;
  height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d7e2e7;
}
.photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,37,55,.45));
}
.photo-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
}
.stats-card {
  position: relative;
  justify-self: start;
  width: 78%;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-num { font-size: 34px; line-height: 1; font-weight: 950; color: var(--navy); }
.stat-label { margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 800; }
.stats-date {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.trust-strip { background: var(--navy); color: var(--white); padding: 18px 0; }
.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,.88);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 32px rgba(15,37,55,.06);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green-2);
  color: var(--green);
  font-weight: 950;
  font-size: 20px;
  margin-bottom: 18px;
}
.card p:last-child { margin-bottom: 0; }
.product-card img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  margin-bottom: 18px;
}

.netis-section {
  background: radial-gradient(circle at 12% 18%, rgba(31,107,74,.12), transparent 24%), linear-gradient(135deg, #ffffff, #f4f8f7);
}
.netis-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.netis-mark-card {
  border-radius: 30px;
  padding: 34px 26px;
  background: linear-gradient(145deg, #0f2537, #07131d);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.netis-mark-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(242,140,40,.22);
}
.netis-circle {
  width: 190px;
  height: 190px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #050505;
  color: #ffe500;
  border: 8px solid rgba(255,255,255,.9);
  box-shadow: inset 0 0 0 3px rgba(255,229,0,.25), 0 18px 34px rgba(0,0,0,.28);
  font-size: 40px;
  font-weight: 950;
  letter-spacing: .04em;
}
.netis-sub { margin-bottom: 10px; color: rgba(255,255,255,.86); font-weight: 800; }
.netis-number {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 900;
}
.netis-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.netis-point {
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
}
.netis-point small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.issue-panel {
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.check-list, .alert-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .alert-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .12em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-2);
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}
.feature-card {
  min-height: 100%;
  transition: .18s ease;
  overflow: hidden;
  padding: 0 0 28px;
}
.feature-card > img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}
.feature-card .card-icon {
  margin: -24px 28px 18px;
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(15,37,55,.12);
}
.feature-card h3,
.feature-card p {
  padding: 0 28px;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.mini-cta {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  color: var(--white);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.mini-cta p { margin: 0; color: rgba(255,255,255,.86); }
.mini-cta strong { color: var(--white); }

.usecase-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.usecase-card {
  position: relative;
  min-height: 250px;
  border-radius: 26px;
  overflow: hidden;
  background: #d8e2e6;
  box-shadow: 0 14px 34px rgba(15,37,55,.10);
}
.usecase-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: .3s ease;
}
.usecase-card:hover img { transform: scale(1.05); }
.usecase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,37,55,.04), rgba(15,37,55,.82));
}
.usecase-body {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--white);
}
.usecase-body h3 { color: var(--white); margin-bottom: 6px; }
.usecase-body p { color: rgba(255,255,255,.86); font-size: 14px; margin: 0; }

.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.comparison-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15,37,55,.06);
}
.comparison-card.is-new { border: 2px solid rgba(31,107,74,.5); }
.comparison-head {
  padding: 20px 24px;
  background: #f2f5f7;
  border-bottom: 1px solid var(--line);
  font-weight: 950;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.comparison-card.is-new .comparison-head { background: var(--green-2); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: var(--orange-2);
  color: #9a4b07;
  white-space: nowrap;
}
.comparison-body { padding: 24px; }
.comparison-list { margin: 0; padding: 0; list-style: none; }
.comparison-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}
.comparison-list li:last-child { border-bottom: none; }
.comparison-list b { color: var(--navy); }

.weed-sheet-section {
  background: linear-gradient(180deg, #f7fafb, #eef3f6);
}
.sheet-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.weed-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.weed-proof-grid figure {
  margin: 0;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #d8e2e6;
  box-shadow: 0 12px 30px rgba(15,37,55,.07);
}
.weed-proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.weed-proof-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(15,37,55,.76);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
}

.video-section {
  background: var(--white);
}
.video-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15,37,55,.06);
}
.video-frame,
.video-link {
  aspect-ratio: 16 / 9;
  background: #081722;
}
.video-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: .2s ease;
}
.video-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(242,140,40,.94);
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 14px 30px rgba(15,37,55,.28);
}
.video-link::after {
  content: "";
  position: absolute;
  left: calc(50% + 4px);
  top: 50%;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--white);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video-link span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15,37,55,.82);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}
.video-link:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-body {
  padding: 20px;
}
.video-body p {
  margin: 0;
  color: var(--muted);
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.short-card {
  min-height: 260px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 8px;
  padding: 0 0 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(31,107,74,.18);
  color: var(--navy);
  font-weight: 950;
  transition: .18s ease;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15,37,55,.05);
}
.short-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #081722;
  transition: .2s ease;
}
.short-card span {
  display: block;
  width: fit-content;
  margin: 8px 14px 0;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.short-card strong {
  display: block;
  padding: 0 14px;
  color: var(--navy);
  line-height: 1.45;
}
.short-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}
.short-card:hover img {
  transform: scale(1.04);
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15,37,55,.05);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
  margin-bottom: 18px;
}
.step img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
  background: #d8e2e6;
}

.works-visual {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}
.big-number-card {
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  display: grid;
  gap: 20px;
}
.big-number-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.big-number-row:last-child { border-bottom: none; padding-bottom: 0; }
.big-number { font-size: 54px; line-height: 1; font-weight: 950; }
.big-label { color: rgba(255,255,255,.82); font-weight: 800; }
.achievement-date {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
}
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.photo-grid figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #d8e2e6;
  min-height: 170px;
  position: relative;
  box-shadow: 0 12px 30px rgba(15,37,55,.07);
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(15,37,55,.76);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
}
.field-gallery-block { margin-top: 28px; }
.field-gallery-block h3 { color: var(--white); margin-bottom: 14px; }
.field-gallery { grid-template-columns: repeat(4, 1fr); }
.field-gallery figure { min-height: 150px; }

.document-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.document-preview {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31,107,74,.12), rgba(242,140,40,.12)), #eef3f6;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  text-align: center;
  padding: 24px;
}
.document-preview.image-preview {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.document-preview.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.document-preview strong {
  display: block;
  font-size: 28px;
  line-height: 1.4;
  color: var(--navy);
}
.document-preview p { margin: 12px 0 0; color: var(--muted); }
.document-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.document-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fafb;
  border: 1px solid var(--line);
  font-weight: 800;
}

.faq { display: grid; gap: 14px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 10px 24px rgba(15,37,55,.04);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 950;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--green); font-size: 24px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding: 0 24px 22px; margin: 0; color: #405261; }

.final-cta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 88% 12%, rgba(242,140,40,.3), transparent 24%), linear-gradient(135deg, var(--navy), #0c1d2b 70%);
  color: var(--white);
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,.84); }
.cta-panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 12px;
}
.contact-form { display: grid; gap: 14px; margin-top: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field label {
  display: block;
  color: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.55); }
.field select option { color: var(--text); }
.field textarea { min-height: 110px; resize: vertical; }

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(15,37,55,.18);
  border: 1px solid rgba(217,227,232,.9);
}
.sticky-cta .btn { min-height: 44px; padding: 11px 18px; font-size: 14px; }
.footer { padding: 36px 0 100px; background: #081722; color: rgba(255,255,255,.72); font-size: 14px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-layout, .grid-2, .comparison-wrap, .sheet-comparison-grid, .video-feature-grid, .works-visual, .final-cta, .netis-panel, .document-box { grid-template-columns: 1fr; }
  .photo-main { width: 100%; height: 330px; }
  .stats-card { width: 92%; }
  .grid-3, .steps, .usecase-tabs, .weed-proof-grid, .field-gallery, .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
}

/* === 会社概要ページ === */
.company-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(15,37,55,.06); }
.company-table th, .company-table td { text-align: left; padding: 18px 24px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.8; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th { width: 30%; background: var(--blue-gray); color: var(--navy); font-weight: 700; white-space: nowrap; }
.company-table a { color: var(--green); text-decoration: underline; }
.note-text { color: var(--muted); font-size: 14px; }
.history-list { list-style: none; margin: 0; padding: 0; }
.history-list li { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.history-list li:last-child { border-bottom: none; }
.history-date { font-weight: 700; color: var(--green); }
.history-body { color: var(--text); }
.map-embed { margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(15,37,55,.06); line-height: 0; }
.map-embed iframe { display: block; width: 100%; }

/* === ブログ（お役立ち記事） === */
.blog-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.blog-card { display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 12px 32px rgba(15,37,55,.06); transition: transform .15s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(15,37,55,.12); }
.blog-cat { display: inline-block; background: var(--green-2); color: var(--green); font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.blog-card h3 { font-size: 20px; color: var(--navy); margin: 0 0 10px; line-height: 1.5; }
.blog-desc { color: #475569; font-size: 15px; margin: 0 0 12px; }
.blog-date { color: var(--muted); font-size: 13px; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.article-breadcrumb a { color: var(--green); text-decoration: underline; }
.article-body h1 { font-size: clamp(25px, 3.4vw, 33px); color: var(--navy); margin: 0 0 28px; line-height: 1.5; letter-spacing: .01em; }
.article-body h2 { font-size: clamp(20px, 2.6vw, 25px); color: var(--navy); margin: 48px 0 18px; padding: 10px 0 10px 16px; border-left: 5px solid var(--green); background: linear-gradient(90deg, var(--green-2), transparent); border-radius: 0 8px 8px 0; line-height: 1.5; }
.article-body h3 { font-size: 18px; color: var(--green); margin: 30px 0 12px; padding-left: 12px; border-left: 3px solid var(--green-2); line-height: 1.5; }
.article-body p { color: #2a3744; line-height: 2.0; margin: 0 0 20px; font-size: 16px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 1.5em; line-height: 1.95; }
.article-body li { margin-bottom: 10px; padding-left: 4px; }
.article-body ul li::marker { color: var(--green); }
.article-body ol li::marker { color: var(--green); font-weight: 700; }
.article-body a { color: #155c3e; text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--orange); }
.article-body strong { color: var(--navy); font-weight: 700; }

/* 記事内の表：枠線・ヘッダー・ストライプをはっきり表示 */
.article-body .table-wrap { overflow-x: auto; margin: 8px 0 28px; border-radius: 14px; box-shadow: 0 8px 28px rgba(15,37,55,.08); -webkit-overflow-scrolling: touch; }
.article-body table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--white); min-width: 480px; }
.article-body thead th { background: var(--navy); color: #fff; font-weight: 700; font-size: 14.5px; text-align: left; padding: 14px 16px; border-right: 1px solid rgba(255,255,255,.14); white-space: nowrap; line-height: 1.5; }
.article-body thead th:last-child { border-right: none; }
.article-body tbody td { padding: 13px 16px; border-bottom: 1px solid #e3eaee; border-right: 1px solid #eef3f6; vertical-align: top; line-height: 1.75; color: #2a3744; }
.article-body tbody td:last-child { border-right: none; }
.article-body tbody td:first-child { font-weight: 600; color: var(--navy); background: #f6f9fa; }
.article-body tbody tr:nth-child(even) td { background: #f4f8f9; }
.article-body tbody tr:nth-child(even) td:first-child { background: #eef4f6; }
.article-body tbody tr:last-child td { border-bottom: none; }

.article-cta { margin: 48px 0 0; padding: 30px 32px; background: linear-gradient(135deg, #16324a, #0f2537); border-radius: var(--radius); color: #fff; }
.article-cta p { margin: 0 0 18px; color: #e8eef3; font-size: 16px; line-height: 1.9; }
.article-cta .btn { margin: 0 10px 10px 0; }
.article-back { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.article-back a { color: var(--green); text-decoration: underline; font-weight: 600; }
.preview-banner { background: #fff4e6; border: 1px solid var(--orange); color: #92400e; padding: 12px 16px; border-radius: 12px; margin-bottom: 20px; font-weight: 700; font-size: 14px; }

@media (max-width: 640px) {
  .article-body h2 { font-size: 20px; margin: 36px 0 14px; }
  .article-body .table-wrap { margin-left: -4px; margin-right: -4px; }
  .article-cta { padding: 24px 20px; }
}

@media (max-width: 640px) {
  .company-table th, .company-table td { display: block; width: 100%; }
  .company-table th { border-bottom: none; padding-bottom: 4px; }
  .company-table td { padding-top: 4px; }
  .history-list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 64px 0; }
  .header .btn { display: none; }
  .hero { padding: 58px 0 54px; }
  .hero-actions { display: grid; }
  .photo-main { height: 270px; border-radius: 24px; }
  .stats-card { grid-template-columns: 1fr; padding: 18px; border-radius: 22px; }
  .stat-num { font-size: 30px; }
  .stats-date { text-align: left; }
  .trust-list, .grid-3, .steps, .photo-grid, .usecase-tabs, .weed-proof-grid, .field-gallery, .shorts-grid, .form-grid, .netis-points { grid-template-columns: 1fr; }
  .mini-cta { display: grid; }
  .comparison-list li { grid-template-columns: 1fr; }
  .final-cta, .document-box, .netis-panel { padding: 30px 22px; border-radius: 26px; }
  .document-preview strong { font-size: 22px; }
  .netis-circle { width: 150px; height: 150px; font-size: 32px; }
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; justify-content: center; }
  .sticky-cta .btn { flex: 1; padding-inline: 10px; }
}
