/**
 * Service Next — list + LP (extends Home Next tokens)
 */

.nw-svc-breadcrumb {
  margin: 0 0 28px;
}

.nw-svc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #777;
}

.nw-svc-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #bbb;
}

.nw-svc-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.nw-svc-breadcrumb a:hover,
.nw-svc-breadcrumb a:focus-visible {
  color: var(--ref-black);
}

.nw-svc-hero {
  padding: calc(var(--header-h) + 48px) 0 72px;
  position: relative;
  overflow: hidden;
}

.nw-svc-hero__ghost {
  position: absolute;
  right: 2vw;
  top: 22%;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ref-gray-2);
  -webkit-text-fill-color: var(--ref-gray-2);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Align service heroes with showreel grammar: stronger type + UI mock feel */
.nw-next--service-lp .nw-svc-hero--lp {
  background:
    radial-gradient(ellipse 55% 45% at 78% 42%, rgba(29, 29, 29, 0.06), transparent 60%),
    var(--ref-white);
}

.nw-svc-hero .nw-next-wrap {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.nw-svc-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.nw-svc-hero__copy .nw-next-kicker,
.nw-svc-hero__title,
.nw-svc-hero__lead,
.nw-svc-hero__actions,
.nw-svc-breadcrumb {
  position: relative;
  z-index: 3;
}

.nw-svc-hero__title {
  margin: 0 0 18px;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.nw-svc-hero__lead {
  margin: 0 0 28px;
  max-width: 44em;
  width: 100%;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: normal;
}

.nw-svc-hero__title-line {
  display: block;
  margin: 0;
  padding: 0;
}

.nw-svc-hero__lead-line {
  display: inline;
}

.nw-br-pc {
  display: none;
}

@media (min-width: 769px) {
  .nw-br-pc {
    display: block;
  }
}

/* What we do（Services一覧） */
.nw-svc-what-we-do .nw-next-section__title {
  max-width: 18em;
  line-height: 1.4;
}

.nw-svc-what-we-do__title-line {
  display: inline;
}

@media (min-width: 769px) {
  .nw-svc-what-we-do__title-line {
    display: block;
  }
}

.nw-svc-what-we-do__lead {
  margin: 0 0 16px;
  max-width: 46em;
  color: #444;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: normal;
}

.nw-svc-what-we-do__note {
  margin: 0 0 8px;
  max-width: 40em;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.nw-svc-index__lead {
  display: block;
  color: #555;
  margin-bottom: 12px;
  max-width: 42em;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.nw-svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.nw-svc-hero__actions .nw-next-btn {
  max-width: 100%;
}

.nw-svc-hero--lp {
  padding-bottom: 96px;
}

.nw-svc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  min-width: 0;
}

.nw-svc-hero__media {
  position: relative;
  z-index: 2;
  max-width: 420px;
  justify-self: end;
  width: 100%;
  min-width: 0;
}

.nw-svc-hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.nw-svc-hero__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3f3f1;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .nw-svc-hero__figure {
    opacity: 0;
    transform: scale(1.02);
    animation: nw-svc-hero-photo-in 0.85s ease forwards;
  }
}

@keyframes nw-svc-hero-photo-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nw-svc-hero__figure {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.nw-next--service-lp .nw-svc-hero__figure {
  box-shadow: none;
}

.nw-next--service-lp .nw-svc-hero__media .nw-next-media-placeholder {
  display: none;
}

.nw-svc-index {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(29, 29, 29, 0.14);
}

.nw-svc-index__link {
  display: grid;
  grid-template-columns: minmax(56px, 10%) minmax(0, 1fr) minmax(240px, 42%);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.14);
  color: inherit;
  text-decoration: none;
  transition: background-color 0.35s ease;
}

.nw-svc-index__link:hover,
.nw-svc-index__link:focus-visible {
  background-color: rgba(200, 232, 90, 0.08);
}

.nw-svc-index__link:hover .nw-svc-index__ja,
.nw-svc-index__link:focus-visible .nw-svc-index__ja {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nw-svc-index__link:focus-visible {
  outline: 2px solid #1d1d1d;
  outline-offset: 4px;
}

.nw-svc-index__num {
  font-family: var(--font-en);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  align-self: start;
  padding-top: 4px;
}

.nw-svc-index__body {
  min-width: 0;
}

.nw-svc-index__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: #777;
  margin-bottom: 6px;
}

.nw-svc-index__ja {
  display: block;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.nw-svc-index__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nw-svc-index__cta-arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.nw-svc-index__link:hover .nw-svc-index__cta-arrow,
.nw-svc-index__link:focus-visible .nw-svc-index__cta-arrow {
  transform: translateX(4px);
}

.nw-svc-index__media {
  display: block;
  min-width: 0;
}

.nw-svc-index__media-frame {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 2px;
  background: #f3f3f1;
}

.nw-svc-index__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.4s ease;
}

.nw-svc-index__link:hover .nw-svc-index__photo,
.nw-svc-index__link:focus-visible .nw-svc-index__photo {
  transform: scale(1.03);
}

.nw-svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.nw-svc-narrow {
  max-width: 820px;
}

/* WHAT WE SUPPORT — 相談内容グリッド */
.nw-svc-support-section .nw-next-section__title {
  margin-bottom: 8px;
}

.nw-svc-support {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(29, 29, 29, 0.14);
  min-width: 0;
}

.nw-svc-support__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  margin: 0;
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.14);
  min-width: 0;
}

.nw-svc-support__item:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid rgba(29, 29, 29, 0.1);
}

.nw-svc-support__item:nth-child(even) {
  padding-left: 28px;
}

.nw-svc-support__num {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #c8e85a;
}

.nw-svc-support__text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #222;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (min-width: 1100px) {
  .nw-svc-support {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nw-svc-support__item:nth-child(odd),
  .nw-svc-support__item:nth-child(even) {
    padding-left: 0;
    padding-right: 24px;
    border-right: 1px solid rgba(29, 29, 29, 0.1);
  }

  .nw-svc-support__item:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }

  .nw-svc-support__item:nth-child(3n + 1) {
    padding-left: 0;
  }

  .nw-svc-support__item:nth-child(3n + 2),
  .nw-svc-support__item:nth-child(3n + 3) {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .nw-svc-support {
    grid-template-columns: 1fr;
  }

  .nw-svc-support__item,
  .nw-svc-support__item:nth-child(odd),
  .nw-svc-support__item:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }

  .nw-svc-support__text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Upstream — 構築前整理（白地） */
.nw-svc-upstream {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(29, 29, 29, 0.14);
}

.nw-svc-upstream__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px 16px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.14);
  min-width: 0;
}

.nw-svc-upstream__num {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #c8e85a;
}

.nw-svc-upstream__item-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: #1d1d1d;
}

.nw-svc-upstream__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  overflow-wrap: anywhere;
}

@media (min-width: 900px) {
  .nw-svc-upstream {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nw-svc-upstream__item:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid rgba(29, 29, 29, 0.1);
  }

  .nw-svc-upstream__item:nth-child(even) {
    padding-left: 28px;
  }
}

@media (max-width: 899px) {
  .nw-svc-upstream__item:nth-child(odd),
  .nw-svc-upstream__item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

/* Features glossary */
.nw-svc-glossary {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-glossary__heading {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.nw-svc-glossary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
}

.nw-svc-glossary__item {
  margin: 0;
  min-width: 0;
}

.nw-svc-glossary__term {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #c8e85a;
}

.nw-svc-glossary__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #cfcfcf;
}

@media (max-width: 980px) {
  .nw-svc-glossary__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Aftercare */
.nw-svc-aftercare__body {
  margin: 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
  hanging-punctuation: allow-end;
}

.nw-svc-aftercare__note {
  margin-top: 16px;
}

.nw-svc-aftercare--compact {
  padding-block: clamp(64px, 8vw, 96px);
}

.nw-svc-aftercare--compact .nw-next-section__title {
  margin-bottom: 16px;
}

/* Aftercare list（項目があるサービスのみ） */
.nw-svc-aftercare-list {
  list-style: none;
  margin: 28px 0 8px;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-aftercare-list li {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* PRACTICE — 自社チャンネル（黒） */
.nw-svc-practice-owned__lead {
  max-width: 42em;
}

.nw-svc-practice-videos {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.nw-svc-practice-videos__item {
  margin: 0;
  min-width: 0;
}

.nw-svc-practice-videos__card {
  display: grid;
  gap: 14px;
  height: 100%;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.nw-svc-practice-videos__card:focus-visible {
  outline: 2px solid #c8e85a;
  outline-offset: 4px;
}

.nw-svc-practice-videos__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nw-svc-practice-videos__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nw-svc-practice-videos__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nw-svc-practice-videos__play::before {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-40%, -50%);
}

.nw-svc-practice-videos__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.nw-svc-practice-videos__num {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c8e85a;
}

.nw-svc-practice-videos__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-svc-practice-videos__blurb {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nw-svc-practice-videos__cta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #c8e85a;
}

.nw-svc-practice-owned__channel {
  margin: 36px 0 0;
}

.nw-svc-practice-owned__channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 2px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #c8e85a;
}

.nw-svc-practice-owned__channel-link:hover {
  color: #c8e85a;
}

.nw-svc-practice-owned__channel-link:focus-visible {
  outline: 2px solid #c8e85a;
  outline-offset: 4px;
}

.nw-svc-practice-owned__channel-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .nw-svc-practice-videos {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* CLIENT RESULT — 支援先実績（白） */
.nw-svc-client-result__subtitle {
  margin: -4px 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #444;
}

.nw-svc-client-result__lead {
  max-width: 42em;
}

.nw-svc-client-result__metrics {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(29, 29, 29, 0.14);
}

.nw-svc-client-result__metric {
  position: relative;
  margin: 0;
  padding: 28px 20px 28px 0;
  border-right: 1px solid rgba(29, 29, 29, 0.1);
  min-width: 0;
}

.nw-svc-client-result__metric:last-child {
  border-right: 0;
  padding-right: 0;
}

.nw-svc-client-result__metric:nth-child(2),
.nw-svc-client-result__metric:nth-child(3) {
  padding-left: 24px;
}

.nw-svc-client-result__metric-index {
  display: block;
  margin: 0 0 10px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c8e85a;
}

.nw-svc-client-result__metric-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

.nw-svc-client-result__metric-value {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  min-width: 7.5em;
  line-height: 1;
  white-space: nowrap;
}

.nw-svc-client-result__metric-num {
  display: inline-block;
  min-width: 4.6em;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #1d1d1d;
  line-height: 1.05;
}

.nw-svc-client-result__metric-unit {
  font-size: 15px;
  font-weight: 700;
  color: #444;
  white-space: nowrap;
}

.nw-svc-client-result__metric-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(29, 29, 29, 0.55);
}

.nw-svc-client-result__disclaimer {
  margin: 28px 0 0;
  max-width: 46em;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(29, 29, 29, 0.62);
}

/* Screen-reader only — service-next CSS 内で自己完結（共通 screen-reader-text 非依存） */
.nw-svc-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .nw-svc-client-result__metrics {
    grid-template-columns: 1fr;
  }

  .nw-svc-client-result__metric,
  .nw-svc-client-result__metric:nth-child(2),
  .nw-svc-client-result__metric:nth-child(3) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 29, 0.14);
  }

  .nw-svc-client-result__metric:last-child {
    border-bottom: 0;
  }

  .nw-svc-client-result__metric-num {
    font-size: clamp(30px, 9vw, 40px);
    min-width: 5.2em;
  }
}

.nw-svc-problems {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.nw-svc-problems__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nw-svc-problems__num {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--ref-muted);
}

.nw-svc-solution {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.6;
}

.nw-svc-promises {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nw-svc-promises__item {
  padding: 24px 20px;
  border: 1px solid rgba(29, 29, 29, 0.16);
  display: grid;
  gap: 10px;
}

.nw-svc-promises__en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
}

.nw-svc-promises__ja {
  color: #444;
  line-height: 1.7;
}

.nw-svc-features {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}

.nw-svc-features__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-features__num {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--ref-muted);
}

.nw-svc-features__en {
  margin: 0 0 6px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8e85a;
}

.nw-svc-features__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.nw-svc-features__body {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.7;
}

.nw-svc-features__sublist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-features__sublist li {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.nw-svc-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.nw-svc-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.12);
}

.nw-svc-process {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.nw-svc-process__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(29, 29, 29, 0.12);
}

.nw-svc-process__num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
}

.nw-svc-process__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.nw-svc-process__body {
  margin: 0;
  color: #555;
}

.nw-svc-pricing__label {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nw-svc-pricing__note {
  margin: 0;
  color: #cfcfcf;
}

.nw-svc-features__note {
  margin: 0 0 8px;
  max-width: 42em;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

/* Features areas（戦略 / 実践など） */
.nw-svc-feature-areas {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-feature-area {
  margin: 0;
  padding: 28px 0 8px;
  min-width: 0;
}

.nw-svc-feature-area:first-child {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nw-svc-feature-area:last-child {
  padding-left: 24px;
}

.nw-svc-feature-area__en {
  margin: 0 0 8px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8e85a;
}

.nw-svc-feature-area__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.nw-svc-feature-area__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.nw-svc-feature-area__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-feature-area__list li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.nw-svc-features__tool-note {
  margin: 24px 0 0;
  max-width: 42em;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.nw-svc-feature-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 42em;
}

.nw-svc-feature-note--ai {
  margin-top: 32px;
  padding: 20px 0 0;
}

.nw-svc-feature-note--ai .nw-svc-feature-note__title {
  font-size: 16px;
}

.nw-svc-feature-note--ai .nw-svc-feature-note__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.nw-svc-feature-note__en {
  margin: 0 0 8px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8e85a;
}

.nw-svc-feature-note__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.nw-svc-feature-note__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.nw-svc-feature-remains__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-feature-remains__list li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  .nw-svc-feature-areas {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nw-svc-feature-area:first-child,
  .nw-svc-feature-area:last-child {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .nw-svc-feature-area + .nw-svc-feature-area {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 8px;
    padding-top: 28px;
  }

  .nw-svc-feature-remains__list {
    grid-template-columns: 1fr;
  }
}

.nw-svc-faq__item {
  border-top: 1px solid rgba(29, 29, 29, 0.14);
  margin: 0;
  padding: 0;
}

.nw-svc-faq__item:last-child {
  border-bottom: 1px solid rgba(29, 29, 29, 0.14);
}

.nw-svc-faq__q {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.nw-svc-faq__btn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.nw-svc-faq__btn:hover .nw-svc-faq__q-text,
.nw-svc-faq__btn:hover .nw-svc-faq__icon {
  color: #111;
}

.nw-svc-faq__btn:focus-visible {
  outline: 2px solid #c8e85a;
  outline-offset: 3px;
}

.nw-svc-faq__q-text {
  min-width: 0;
  line-height: 1.55;
}

.nw-svc-faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  justify-self: end;
  color: #222;
}

.nw-svc-faq__icon::before,
.nw-svc-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.nw-svc-faq__icon::before {
  width: 14px;
  height: 1.5px;
}

.nw-svc-faq__icon::after {
  width: 1.5px;
  height: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nw-svc-faq__btn[aria-expanded="true"] .nw-svc-faq__icon {
  color: #c8e85a;
}

.nw-svc-faq__btn[aria-expanded="true"] .nw-svc-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.nw-svc-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.32s ease;
}

.nw-svc-faq__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.nw-svc-faq__panel[hidden] {
  display: grid;
}

.nw-svc-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.nw-svc-faq__a {
  margin: 0 0 18px;
  color: #555;
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  .nw-svc-faq__panel,
  .nw-svc-faq__icon::after {
    transition: none !important;
  }
}

.nw-svc-contact {
  text-align: left;
  padding-bottom: 24px;
}

.nw-svc-contact__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.nw-svc-contact__title-line {
  display: inline;
}

@media (max-width: 640px) {
  .nw-svc-contact__title {
    font-size: clamp(26px, 7.2vw, 32px);
  }

  .nw-svc-contact__title-line {
    display: block;
  }
}

.nw-svc-contact__lead {
  margin: 0 0 28px;
  max-width: 36em;
  color: #444;
}

@media (max-width: 980px) {
  /* Service pages: real mobile gutters, not scaled PC */
  body.nw-next-service-page {
    overflow-x: hidden;
  }

  body.nw-next-service-page .nw-next-wrap {
    width: auto;
    max-width: none;
    margin-inline: 26px;
    box-sizing: border-box;
  }

  .nw-svc-hero {
    padding: calc(var(--header-h) + 28px) 0 56px;
    overflow: hidden;
  }

  .nw-svc-hero--lp {
    padding-bottom: 80px;
  }

  /* Decorative EN: hide on SP (avoids overlay + horizontal bleed) */
  .nw-svc-hero__ghost {
    display: none;
  }

  .nw-svc-hero__grid,
  .nw-svc-split,
  .nw-svc-promises,
  .nw-svc-features {
    grid-template-columns: 1fr;
  }

  .nw-svc-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  /* Flatten copy so image can sit above the CTA buttons */
  .nw-svc-hero__copy {
    display: contents;
  }

  .nw-svc-breadcrumb {
    order: 1;
  }

  .nw-svc-hero__copy .nw-next-kicker {
    order: 2;
  }

  .nw-svc-hero__title {
    order: 3;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.08;
  }

  .nw-svc-hero__lead {
    order: 4;
    font-size: 15px;
    max-width: none;
    margin-bottom: 28px;
  }

  .nw-svc-hero__media {
    order: 5;
    justify-self: stretch;
    max-width: none;
    width: 100%;
    margin-bottom: 28px;
  }

  .nw-svc-hero__actions {
    order: 6;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nw-svc-hero__figure {
    aspect-ratio: 4 / 5;
  }

  .nw-next--service-lp .nw-svc-hero__media .nw-next-media-placeholder {
    display: none;
  }

  .nw-svc-hero__title-line {
    display: block;
    margin: 0;
  }

  .nw-svc-hero__actions .nw-next-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .nw-svc-index__link {
    grid-template-columns: minmax(48px, auto) minmax(0, 1fr);
    grid-template-areas:
      "num en"
      "num ja"
      "media media"
      "lead lead"
      "cta cta";
    gap: 8px 16px;
    align-items: start;
    padding: 48px 0;
  }

  .nw-svc-index__body {
    display: contents;
  }

  .nw-svc-index__num {
    grid-area: num;
    padding-top: 2px;
    align-self: start;
  }

  .nw-svc-index__en {
    grid-area: en;
    margin-bottom: 0;
  }

  .nw-svc-index__ja {
    grid-area: ja;
    margin-bottom: 12px;
  }

  .nw-svc-index__media {
    grid-area: media;
    display: block;
    width: 100%;
    margin: 4px 0 8px;
  }

  .nw-svc-index__lead {
    grid-area: lead;
    margin: 0 0 12px;
  }

  .nw-svc-index__cta {
    grid-area: cta;
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  body.nw-next-service-page .nw-next-wrap {
    margin-inline: 24px;
  }

  .nw-svc-hero__title {
    font-size: clamp(21px, 5.6vw, 26px);
    line-height: 1.08;
  }
}

/* —— ISSUES & APPROACH (Web) —— */
.nw-svc-issues__list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-issues__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-issues__num {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c8e85a;
  line-height: 1.6;
}

.nw-svc-issues__pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 20px 32px;
  min-width: 0;
}

.nw-svc-issues__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.nw-svc-issues__label--approach {
  color: #c8e85a;
}

.nw-svc-issues__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .nw-svc-issues__pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* —— SHORT-FORM CREATIVE (Video) —— */
.nw-svc-shorts__wrap {
  max-width: 1180px;
}

.nw-svc-shorts__heading {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
}

.nw-svc-shorts__heading-line {
  display: block;
}

.nw-svc-shorts__lead {
  max-width: 42em;
}

.nw-svc-shorts__note {
  margin: 16px 0 0;
  max-width: 42em;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.nw-svc-shorts-owned {
  margin-top: 48px;
}

.nw-svc-shorts-owned__head {
  margin: 0 0 28px;
  max-width: 42em;
}

.nw-svc-shorts-owned__en {
  margin: 0 0 8px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8e85a;
}

.nw-svc-shorts-owned__title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}

.nw-svc-shorts-owned__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.nw-svc-shorts__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.nw-svc-shorts__grid--cols-1 {
  grid-template-columns: minmax(0, 360px);
}

.nw-svc-shorts__grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nw-svc-shorts__grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nw-svc-shorts__item {
  min-width: 0;
  height: 100%;
}

.nw-next.nw-next-js .nw-svc-shorts__item.nw-next-reveal {
  transition-duration: 0.6s;
  transition-delay: var(--nw-shorts-delay, 0ms);
}

.nw-svc-shorts__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
  background: #111;
  min-height: 100%;
}

.nw-svc-shorts__card:hover .nw-svc-shorts__cta,
.nw-svc-shorts__card:focus-visible .nw-svc-shorts__cta {
  color: #c8e85a;
}

.nw-svc-shorts__card:focus-visible {
  outline: 2px solid #c8e85a;
  outline-offset: 4px;
}

.nw-svc-shorts__media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0a0a0a;
}

.nw-svc-shorts__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.nw-svc-shorts__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: #c8e85a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.nw-svc-shorts__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #111;
}

.nw-svc-shorts__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px 20px;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nw-svc-shorts__num {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c8e85a;
}

.nw-svc-shorts__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: #fff;
}

.nw-svc-shorts__blurb {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.nw-svc-shorts__point {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nw-svc-shorts__point-en {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(200, 232, 90, 0.9);
}

.nw-svc-shorts__point-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.nw-svc-shorts__cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.nw-svc-shorts-retention {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nw-svc-shorts-retention__en {
  margin: 0 0 8px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8e85a;
}

.nw-svc-shorts-retention__title {
  margin: 0 0 28px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.nw-svc-shorts-retention__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nw-svc-shorts-retention__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 24px 18px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
}

.nw-svc-shorts-retention__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.nw-svc-shorts-retention__num {
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #c8e85a;
  line-height: 1.4;
}

.nw-svc-shorts-retention__label {
  margin: 0 0 6px;
  font-family: var(--font-en, "Unbounded", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.nw-svc-shorts-retention__heading {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}

.nw-svc-shorts-retention__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.nw-svc-shorts__channel {
  margin: 28px 0 0;
}

.nw-svc-shorts__channel-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.nw-svc-shorts__channel-link:hover {
  color: #c8e85a;
}

.nw-svc-shorts__channel-link:focus-visible {
  outline: 2px solid #c8e85a;
  outline-offset: 4px;
}

.nw-svc-shorts__channel-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .nw-svc-shorts-retention__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nw-svc-shorts-retention__item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 980px) {
  .nw-svc-shorts__grid,
  .nw-svc-shorts__grid--cols-1,
  .nw-svc-shorts__grid--cols-2,
  .nw-svc-shorts__grid--cols-3 {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .nw-svc-shorts__item {
    flex: 0 0 clamp(78%, 82vw, 86%);
    max-width: 360px;
    scroll-snap-align: start;
  }

  .nw-svc-shorts-retention {
    margin-top: 48px;
  }

  .nw-svc-shorts-retention__list {
    grid-template-columns: 1fr;
  }

  .nw-svc-shorts-retention__item,
  .nw-svc-shorts-retention__item:nth-child(2n),
  .nw-svc-shorts-retention__item:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nw-next.nw-next-js .nw-svc-shorts__item.nw-next-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
