:root {
  --color-primary: #0052c0;
  --color-primary-dark: #003b8f;
  --color-blue-soft: #e3ecf8;
  --color-section-soft: #f7f5ff;
  --color-text: #49495a;
  --color-heading: #111827;
  --color-border: #d9e2f2;
  --color-white: #ffffff;
  --color-fortinet-red: #e1251b;
  --color-cta: #009973;
  --color-accent-orange: #f36c00;
  --shadow-soft: 0 12px 32px rgba(0, 36, 84, 0.1);
  --shadow-card: 0 8px 24px rgba(0, 36, 84, 0.07);
  --radius-sm: 4px;
  --radius-md: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 82px 64px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-fortinet-red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.section {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.section--soft {
  background: var(--color-section-soft);
}

.section--pattern {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.9)),
    url("assets/images/section-pattern-bg.webp") center / cover no-repeat;
}

.section__head {
  max-width: 100%;
  margin-bottom: 44px;
}

.section__head > p:not(.eyebrow) {
  max-width: 1080px;
}

.section__head h2,
.split__text h2,
.feature-layout h2,
.final-cta h2 {
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 500;
  line-height: 1.28;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.section__head p:not(.eyebrow),
.section-lead,
.split__text p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 52px;
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-cta);
  color: #fff;
}

.button--primary:hover {
  background: #fff;
  color: var(--color-cta);
  border-color: var(--color-cta);
}

.button--outline {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.button--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* COMMON HEADER START: 公開時に共通ヘッダを削除する場合、このブロックも削除しやすいよう分離 */
.nw_header {
  background: #fff;
  padding: 10px 20px;
  min-height: 102px;
}

.nw_header .nw_inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.nw_header .nw_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.nw_header .logo img {
  margin-top: 10px;
  height: 25px;
  width: 150px;
}

.nw_header .sns_pc {
  display: flex;
  gap: 10px;
  min-width: 180px;
  align-items: center;
  line-height: 1;
}

.nw_header .sns_pc > * {
  margin: 0 !important;
}

.nw_header .sns_pc .twitter-share-button,
.nw_header .sns_pc .fb-share-button {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
}

.nw_header .sns_pc .fb-share-button span,
.nw_header .sns_pc .twitter-share-button iframe,
.nw_header .sns_pc .fb-share-button iframe {
  display: block;
  margin: 0 !important;
}

.nw_header .nw_right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.nw_header .sns_sp {
  display: none;
  gap: 8px;
}

.nw_header .sns_sp a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.nw_header .sns_sp a:first-child {
  background: #000;
}

.nw_header .sns_sp a:last-child {
  background: #1877f2;
}

.nw_header .contact {
  display: inline-block;
}

.nw_header .contact img {
  display: block;
  width: auto;
  max-width: 177px;
  height: auto;
}
/* COMMON HEADER END */

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #f5f9ff;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 1.3s ease-out both;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 32%, rgba(255, 255, 255, 0.2) 64%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(0, 82, 192, 0.12));
}

.hero__redline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: var(--color-fortinet-red);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 112px 64px 82px;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  max-width: 100%;
}

.hero__eyebrow-logo {
  display: block;
  height: 1.25em;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.hero__eyebrow-logo--fortinet {
  width: 110px;
  height: 33px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.hero__eyebrow-text {
  flex-shrink: 1;
  min-width: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 12px;
  color: #10131a;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.22;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero__product {
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: #343645;
  font-size: 18px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.toc {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.toc__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}

.toc a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: #353748;
  font-weight: 700;
}

.toc a:hover {
  background: rgba(0, 82, 192, 0.1);
}

.toc span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  font-size: 17px;
  line-height: 1;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.challenge-card,
.axis-grid article,
.industry-grid article {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.challenge-card.is-visible,
.axis-grid article.is-visible,
.industry-grid article.is-visible,
.benefit-item.is-visible,
.split__image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.challenge-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
}

.challenge-card h3,
.axis-grid h3,
.benefit-item h3,
.industry-grid h3 {
  margin-bottom: 10px;
  color: var(--color-heading);
  font-size: 21px;
  line-height: 1.45;
}

.challenge-card p,
.axis-grid p,
.benefit-item p,
.industry-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 44px;
  align-items: start;
}

.feature-layout > div {
  min-width: 0;
}

.feature-layout__image,
.split__image {
  overflow: hidden;
  border: 1px solid rgba(0, 82, 192, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.feature-layout__image {
  align-self: start;
  opacity: 1;
  transform: none;
}

.feature-layout__image img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.feature-layout__image img,
.split__image img,
.usecases__visual img {
  width: 100%;
}

.section-detail {
  margin-top: 8px;
}

.axis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.axis-grid article {
  min-height: 0;
  padding: 22px 24px;
  border-left: 5px solid var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.axis-grid h3 {
  overflow-wrap: anywhere;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 16px;
}

thead th {
  background: #accdf5;
  color: #1d2738;
  font-weight: 800;
  text-align: left;
}

th,
td {
  padding: 18px 20px;
  border: 1px solid #f0f3f8;
  vertical-align: top;
}

tbody tr:nth-child(odd) {
  background: #f7f9fc;
}

tbody th {
  width: 21%;
  color: var(--color-primary-dark);
  font-weight: 800;
  text-align: left;
}

.comparison-table td:nth-child(3),
.comparison-table th:nth-child(3) {
  background: rgba(0, 82, 192, 0.07);
}

/* === Product Lineup Matrix === */
.lineup-matrix {
  --lineup-label-col: 48px;
  --lineup-speed-col: 132px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 8px;
}

.lineup-matrix__head {
  display: grid;
  grid-template-columns: var(--lineup-label-col) var(--lineup-speed-col) 1fr 1fr;
  column-gap: 12px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--color-border);
}

.lineup-matrix__corner {
  min-height: 1px;
}

.lineup-matrix__col-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.lineup-matrix__edge {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.lineup-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.lineup-tag--layer {
  background: var(--color-fortinet-red);
  color: #fff;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.lineup-group {
  display: grid;
  grid-template-columns: var(--lineup-label-col) 1fr;
  column-gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
}

.lineup-group:last-child {
  border-bottom: 0;
}

.lineup-group__label {
  display: grid;
  place-items: center;
  background: var(--color-fortinet-red);
  border-radius: 4px;
}

.lineup-group__label span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.4em;
  padding: 14px 0;
}

.lineup-group__rows {
  display: grid;
}

.lineup-row {
  display: grid;
  grid-template-columns: var(--lineup-speed-col) 1fr 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 4px 0;
  border-top: 1px solid #f0f3f8;
}

.lineup-group__rows > .lineup-row:first-child {
  border-top: 0;
  padding-top: 4px;
}

.lineup-row__speed {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  line-height: 1.5;
}

.lineup-row__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 0;
  padding: 4px 8px;
}

.lineup-row__cell--multi {
  gap: 12px;
  align-items: stretch;
}

.lineup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
  justify-items: start;
  text-align: left;
  width: 100%;
  max-width: 300px;
}

.lineup-card:has(.lineup-card__note) {
  grid-template-rows: auto auto auto;
}

.lineup-card:not(:has(.lineup-card__badges)) {
  grid-template-rows: auto;
}

.lineup-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
}

.lineup-badge {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.lineup-badge--poe {
  background: var(--color-cta);
}

.lineup-badge--rugged {
  background: var(--color-accent-orange);
  white-space: nowrap;
}

.lineup-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: 0.02em;
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.lineup-card:not(:has(.lineup-card__badges)) .lineup-card__name {
  grid-row: 1;
}

.lineup-card picture {
  display: contents;
}

.lineup-card__img {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  max-width: 120px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lineup-card:not(:has(.lineup-card__badges)) .lineup-card__img {
  grid-row: 1;
}

.lineup-card--ax9000g .lineup-card__img {
  max-width: 174px;
  max-height: 116px;
}

.lineup-card__note {
  margin: 0;
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  font-size: 11px;
  color: var(--color-text);
  line-height: 1.4;
  text-align: center;
}

/* 2製品横並びセル：カード幅が狭いためコンパクト表示 */
.lineup-row__cell--multi .lineup-card {
  max-width: none;
  column-gap: 8px;
}

.lineup-row__cell--multi .lineup-card__name {
  font-size: 13px;
  line-height: 1.3;
}

.lineup-row__cell--multi .lineup-card__img {
  max-width: 92px;
  max-height: 58px;
}

.lineup-row__cell--multi .lineup-badge {
  font-size: 11px;
  padding: 2px 8px;
}

.lineup-row__cell--multi .lineup-card__badges {
  gap: 4px;
}

/* Mobile (vertical stack) */
@media (max-width: 1080px) {
  .lineup-matrix {
    padding: 16px;
  }
  .lineup-matrix__head {
    display: none;
  }
  .lineup-group {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 18px 0;
  }
  .lineup-group__label {
    padding: 8px 0;
  }
  .lineup-group__label span {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.3em;
    padding: 0;
    font-size: 14px;
  }
  .lineup-row {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 12px 0;
    border-top: 1px dashed var(--color-border);
  }
  .lineup-row__speed {
    order: 1;
    text-align: left;
    font-size: 13px;
    color: var(--color-primary-dark);
    background: var(--color-blue-soft);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    line-height: 1.5;
  }
  .lineup-row__speed br {
    display: none;
  }
  .lineup-row__cell {
    order: 2;
    min-height: 0;
    padding: 12px 0 0;
    flex-direction: column;
    gap: 18px;
  }
  .lineup-row__cell--empty {
    display: none;
  }
  .lineup-row__cell::before {
    content: attr(data-col);
    display: inline-block;
    align-self: flex-start;
    background: var(--color-fortinet-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 3px 12px;
    border-radius: 999px;
  }
  .lineup-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    text-align: center;
    max-width: 100%;
  }
  .lineup-card:has(.lineup-card__note) {
    grid-template-rows: auto;
  }
  .lineup-card__badges,
  .lineup-card__name,
  .lineup-card__img,
  .lineup-card__note {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    align-self: auto;
    width: auto;
    text-align: center;
  }
  .lineup-card__badges {
    justify-content: center;
  }
  .lineup-card:not(:has(.lineup-card__badges)) .lineup-card__name,
  .lineup-card:not(:has(.lineup-card__badges)) .lineup-card__img {
    grid-row: auto;
  }
  .lineup-card__img {
    max-width: 100%;
    max-height: 110px;
  }
  .lineup-card--ax9000g .lineup-card__img {
    max-height: 140px;
  }
  .lineup-row__cell--multi .lineup-card__name {
    font-size: 15px;
  }
  .lineup-row__cell--multi .lineup-card__img {
    max-width: 100%;
    max-height: 110px;
  }
  .lineup-row__cell--multi .lineup-badge {
    font-size: 12px;
    padding: 2px 12px;
  }
}

.lineup-matrix + .lineup-table-wrap {
  margin-top: 40px;
}

.benefit-list {
  display: grid;
  gap: 22px;
}

.benefits .section__head h2 {
  font-size: clamp(30px, 3.1vw, 40px);
}

.benefit-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-item__number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: #fff;
  font-size: 25px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split--reverse .split__text {
  order: 2;
}

.split--reverse .split__image {
  order: 1;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-weight: 700;
}

.spec-list li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  background: var(--color-primary);
}

.note,
.final-cta__note {
  margin-top: 20px;
  color: #656879;
  font-size: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.mini-grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  border-left: 5px solid var(--color-primary);
  background: #fff;
  color: var(--color-heading);
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.usecases__visual {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.usecases .section__head {
  max-width: 100%;
}

.usecases .section__head h2 {
  font-size: clamp(30px, 2.9vw, 40px);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-grid article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-top: 5px solid var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.final-cta {
  background: #fff;
}

.final-cta__inner {
  max-width: 960px;
  text-align: center;
}

.final-cta h2 {
  color: var(--color-heading);
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 34px;
}

.final-cta__buttons .button {
  min-width: 300px;
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-primary);
}

.final-cta__buttons .button:hover {
  background: var(--color-primary);
  color: #fff;
}

/* COMMON FOOTER START: 公開時に共通フッタを削除する場合、このブロックも削除しやすいよう分離 */
.nw-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 270px;
  padding: 44px 20px 36px;
  background: var(--color-blue-soft);
  color: #4c4f5d;
}

.nw-footer__inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.nw-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 42px;
  font-size: 14px;
  line-height: 1.7;
}

.nw-footer__links li {
  position: relative;
  padding: 0 12px;
}

.nw-footer__links a {
  color: inherit;
  text-decoration: none;
}

.nw-footer__links li + li::before {
  content: "|";
  position: absolute;
  left: 0;
  color: #8b8f9a;
}

.nw-footer__links a:hover {
  text-decoration: underline;
}

.nw-footer__copyright {
  margin: 0;
  color: #7b7f8b;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
}
/* COMMON FOOTER END */

@keyframes heroZoom {
  from {
    transform: scale(1.025);
    opacity: 0.9;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .container,
  .hero__content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .problem__grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-layout,
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split--reverse .split__text,
  .split--reverse .split__image {
    order: initial;
  }

  .section-detail {
    margin-top: 16px;
  }

  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: clamp(36px, 8vw, 52px);
  }
}

@media (max-width: 800px) {
  .container,
  .hero__content {
    padding: 64px 24px;
  }

  .nw_header {
    background: #fff;
    padding: 10px 20px;
    min-height: 70px;
    height: 70px;
  }

  .nw_header .sns_pc {
    display: none;
  }

  .nw_header .sns_sp {
    display: flex;
  }

  .nw_header .contact {
    display: none;
  }

  .nw_header .nw_inner {
    flex-direction: row;
    align-items: center;
  }

  .nw_header .nw_left,
  .nw_header .nw_right {
    flex: 1;
  }

  .nw_header .nw_left {
    align-items: flex-start;
  }

  .nw_header .nw_right {
    justify-content: flex-end;
  }

  .hero {
    min-height: 660px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 53%, rgba(255, 255, 255, 0.34) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(0, 82, 192, 0.14));
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__actions,
  .final-cta__buttons {
    flex-direction: column;
    gap: 14px;
  }

  .button,
  .final-cta__buttons .button {
    width: 100%;
    min-width: 0;
  }

  .toc {
    position: static;
  }

  .toc__inner {
    display: flex;
    overflow-x: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .toc a {
    flex: 0 0 auto;
  }

  .section__head p:not(.eyebrow),
  .section-lead,
  .split__text p:not(.eyebrow),
  .final-cta p:not(.eyebrow) {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .hero__eyebrow {
    font-size: 14px;
  }

  .problem__grid,
  .industry-grid,
  .mini-grid,
  .axis-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    grid-template-columns: 1fr;
  }

  .benefit-item__number {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 786px) {
  .hero__eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__product {
    font-size: 28px;
  }

  .challenge-card,
  .benefit-item,
  .industry-grid article {
    padding: 20px;
  }

  table {
    min-width: 700px;
    font-size: 14px;
  }

  th,
  td {
    padding: 14px 16px;
  }

  .nw-footer {
    min-height: 150px;
  }

  .nw-footer__links {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .nw-footer__links li {
    padding: 0 12px;
  }
}
