:root {
  --deep-navy: #0F2742;
  --cool-gray: #F3F5F7;
  --middle-gray: #D9DEE5;
  --charcoal: #222831;
  --off-white: #FAFAF7;
  --energy-orange: #F28C28;
  --cta-hover: #D97818;
  --white: #FFFFFF;
  --line: rgba(15, 39, 66, 0.14);
  --shadow: 0 18px 48px rgba(15, 39, 66, 0.10);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep-navy);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-navy);
  line-height: 1.25;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--deep-navy);
  border-radius: 8px;
  font-weight: 800;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(34, 40, 49, 0.68);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--energy-orange);
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--energy-orange);
  border-radius: 6px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--cta-hover);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 24px 0 34px;
  background: linear-gradient(180deg, var(--white), var(--off-white));
}

.hero-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--energy-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--deep-navy);
  line-height: 1.28;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.9vw, 48px);
  font-weight: 900;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.lead {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.78;
}

.support {
  margin-bottom: 18px;
  color: rgba(34, 40, 49, 0.82);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.hero-points li,
.pill-list span,
.industry-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--energy-orange);
  border-radius: 50%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.stacked {
  align-items: stretch;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--energy-orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-hover);
}

.btn-secondary {
  color: var(--deep-navy);
  background: var(--white);
  border-color: var(--middle-gray);
}

.btn-line {
  color: var(--deep-navy);
  background: #EAF7EF;
  border-color: #BFE4CB;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 70px 1.15fr;
  align-items: center;
  min-height: 350px;
  padding: 28px;
  background: var(--cool-gray);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual-space,
.visual-spacer {
  min-height: 300px;
}

.hero-visual-space {
  border-radius: 8px;
}

.hero-image-wrap {
  margin: 0;
  align-self: center;
}

.hero-image-wrap img {
  display: block;
  width: min(100%, 520px);
  max-height: min(72vh, 760px);
  margin-left: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-spacer {
  min-height: 340px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(15, 39, 66, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.paper-stack,
.tablet,
.convert-arrow {
  position: relative;
  z-index: 1;
}

.paper-stack {
  height: 210px;
}

.paper {
  position: absolute;
  width: 138px;
  height: 186px;
  background: var(--white);
  border: 1px solid var(--middle-gray);
  border-radius: 6px;
  box-shadow: 0 18px 30px rgba(15, 39, 66, 0.12);
}

.paper-back {
  top: 20px;
  left: 22px;
  transform: rotate(-5deg);
}

.paper-front {
  top: 2px;
  left: 0;
  padding: 22px 18px;
}

.paper-title {
  display: block;
  color: var(--deep-navy);
  font-weight: 900;
}

.paper-line {
  display: block;
  height: 9px;
  margin-top: 17px;
  background: var(--middle-gray);
  border-radius: 999px;
}

.paper-line.wide {
  width: 100%;
}

.paper-line:not(.wide):not(.short) {
  width: 82%;
}

.paper-line.short {
  width: 58%;
}

.paper-check {
  display: block;
  width: 38px;
  height: 38px;
  margin-top: 22px;
  border: 3px solid var(--energy-orange);
  border-radius: 50%;
}

.paper-check::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 38px;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--energy-orange);
  border-bottom: 3px solid var(--energy-orange);
  transform: rotate(-45deg);
}

.convert-arrow {
  display: flex;
  justify-content: center;
}

.convert-arrow span {
  position: relative;
  width: 50px;
  height: 4px;
  background: var(--energy-orange);
}

.convert-arrow span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--energy-orange);
  border-right: 4px solid var(--energy-orange);
  transform: translateY(-50%) rotate(45deg);
}

.tablet {
  height: 226px;
  padding: 14px;
  background: var(--deep-navy);
  border-radius: 20px;
  box-shadow: 0 20px 38px rgba(15, 39, 66, 0.20);
}

.tablet-screen {
  height: 100%;
  padding: 18px;
  background: var(--white);
  border-radius: 12px;
}

.video-frame {
  display: grid;
  place-items: center;
  height: 126px;
  background: linear-gradient(135deg, var(--cool-gray), #fff);
  border: 1px solid var(--middle-gray);
  border-radius: 8px;
}

.play-icon {
  width: 58px;
  height: 58px;
  background: var(--energy-orange);
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.caption-line {
  width: 68%;
  height: 8px;
  background: var(--middle-gray);
  border-radius: 999px;
}

.progress {
  height: 8px;
  margin-top: 22px;
  background: var(--cool-gray);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--energy-orange);
  border-radius: inherit;
}

.problem,
.comparison,
.output-preview,
.deliverables,
.pricing,
.trust-points,
.faq {
  background: var(--cool-gray);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: rgba(34, 40, 49, 0.82);
}

.text-card,
.check-list-card,
.card,
.industry-panel,
.deliverable-card,
.pill-panel,
.note-box,
.estimate-examples article,
.sample-box,
.sample-promises article,
.contact-card,
.contact-form,
.trust-grid article,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 39, 66, 0.06);
}

.problem-image-wrap {
  grid-column: 1 / -1;
  margin: 8px 0 0;
}

.risk-image-wrap {
  margin: 30px 0 0;
}

.recommend-image-wrap {
  grid-column: 1 / -1;
  margin: 8px 0 0;
}

.output-image-wrap {
  margin: 0;
}

.output-image-wrap img {
  display: block;
  width: min(100%, 470px);
  max-height: 760px;
  margin-left: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.youtube-image-link {
  display: block;
  margin: 30px 0 0;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.youtube-image-link:hover,
.youtube-image-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.youtube-caption {
  margin: 12px 0 0;
  color: var(--deep-navy);
  font-weight: 900;
  text-align: center;
}

.problem-image-wrap img,
.risk-image-wrap img,
.recommend-image-wrap img,
.youtube-image-link img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-card,
.check-list-card,
.industry-panel,
.pill-panel,
.note-box,
.contact-card,
.contact-form {
  padding: 30px;
}

.icon-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
}

.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 17px;
  height: 17px;
  border: 2px solid var(--energy-orange);
  border-radius: 50%;
}

.icon-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.62em + 4px);
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--energy-orange);
  border-bottom: 2px solid var(--energy-orange);
  transform: rotate(-45deg);
}

.section-closing,
.center-copy,
.last-word {
  margin: 28px 0 0;
  color: var(--deep-navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.7;
}

.center-copy {
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  padding: 28px;
}

.number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--energy-orange);
  font-size: 28px;
  font-weight: 900;
}

.icon,
.mini-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 48px;
  height: 48px;
  color: var(--deep-navy);
}

.icon.large {
  width: 60px;
  height: 60px;
}

.feature-card {
  min-height: 218px;
}

.feature-card .icon,
.deliverable-card .icon {
  margin-bottom: 18px;
  color: var(--energy-orange);
}

.visual-explain {
  background: var(--white);
}

.service-map {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: stretch;
  gap: 14px;
}

.map-node {
  position: relative;
  min-height: 220px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 39, 66, 0.06);
}

.map-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--deep-navy);
  background: var(--white);
  border: 1px solid var(--middle-gray);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.map-illustration {
  width: 100%;
  height: 120px;
  margin-bottom: 18px;
  color: var(--deep-navy);
  fill: rgba(255, 255, 255, 0.68);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-node .map-illustration,
.output-node .map-illustration {
  color: var(--energy-orange);
}

.map-node h3 {
  font-size: 19px;
}

.map-node p {
  margin-bottom: 0;
  color: rgba(34, 40, 49, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

.map-connector {
  position: relative;
  align-self: center;
  height: 3px;
  background: var(--middle-gray);
}

.map-connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--middle-gray);
  border-right: 3px solid var(--middle-gray);
  transform: translateY(-50%) rotate(45deg);
}

.output-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 52px;
}

.video-manual-preview {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 18px;
  align-items: center;
}

.preview-device {
  padding: 18px;
  background: var(--deep-navy);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.preview-screen {
  min-height: 360px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
}

.preview-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.preview-topbar span {
  width: 9px;
  height: 9px;
  background: var(--middle-gray);
  border-radius: 50%;
}

.preview-title {
  margin-bottom: 18px;
  color: var(--deep-navy);
  font-size: 24px;
  font-weight: 900;
}

.preview-main {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--cool-gray);
  border: 1px solid var(--middle-gray);
  border-radius: 8px;
}

.preview-play {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--middle-gray);
  border-radius: 8px;
}

.preview-play span {
  width: 54px;
  height: 54px;
  position: relative;
  background: var(--energy-orange);
  border-radius: 50%;
}

.preview-play span::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.preview-bullets p {
  margin-bottom: 10px;
  color: var(--energy-orange);
  font-weight: 900;
}

.preview-bullets span {
  display: block;
  height: 10px;
  margin-top: 11px;
  background: var(--middle-gray);
  border-radius: 999px;
}

.preview-bullets .short {
  width: 68%;
}

.preview-alert {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  background: #FFF7EE;
  border: 1px solid rgba(242, 140, 40, 0.35);
  border-radius: 8px;
}

.preview-alert strong {
  color: var(--energy-orange);
}

.preview-timeline {
  height: 8px;
  margin-top: 22px;
  background: var(--cool-gray);
  border-radius: 999px;
}

.preview-timeline span {
  display: block;
  width: 58%;
  height: 100%;
  background: var(--energy-orange);
  border-radius: inherit;
}

.preview-side {
  display: grid;
  gap: 12px;
}

.preview-side div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-side strong,
.preview-side span {
  display: block;
}

.preview-side strong {
  color: var(--deep-navy);
}

.preview-side span {
  margin-top: 4px;
  color: rgba(34, 40, 49, 0.72);
  font-size: 13px;
}

.comparison-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 180px 1fr 230px;
}

.comparison-row > div {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-row > div + div {
  border-left: 1px solid var(--line);
}

.comparison-row.head {
  color: var(--white);
  background: var(--deep-navy);
  font-weight: 800;
}

.comparison-row.highlight {
  background: #FFF7EE;
}

.comparison-row.highlight > div:first-child {
  color: var(--energy-orange);
  font-weight: 900;
}

.industry-grid,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-icon {
  width: 24px;
  height: 24px;
  color: var(--deep-navy);
}

.deliverable-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.deliverable-card {
  padding: 32px;
}

.pill-panel h3 {
  margin-top: 20px;
}

.pill-panel h3:first-child {
  margin-top: 0;
}

.process-diagram {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.process-item {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 20px;
  text-align: center;
  color: var(--deep-navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.process-item .icon {
  margin-bottom: 10px;
  color: var(--energy-orange);
}

.process-arrow {
  position: relative;
  height: 3px;
  background: var(--middle-gray);
}

.process-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--middle-gray);
  border-right: 3px solid var(--middle-gray);
  transform: translateY(-50%) rotate(45deg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--energy-orange);
  border-radius: 8px;
}

.steps span,
.price-card span {
  display: block;
  color: var(--energy-orange);
  font-size: 13px;
  font-weight: 900;
}

.price-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card strong {
  display: block;
  margin-top: 8px;
  color: var(--deep-navy);
  font-size: 26px;
  line-height: 1.35;
}

.price-card.primary {
  border-color: rgba(242, 140, 40, 0.45);
  box-shadow: var(--shadow);
}

.estimate-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.estimate-examples article {
  padding: 24px;
}

.estimate-examples span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: var(--white);
  background: var(--deep-navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.estimate-examples h3 {
  font-size: 19px;
}

.estimate-examples p {
  margin-bottom: 8px;
}

.estimate-examples strong {
  color: var(--energy-orange);
  font-size: 25px;
  line-height: 1.35;
}

.estimate-examples small {
  color: rgba(34, 40, 49, 0.72);
  line-height: 1.7;
}

.sample-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 44px;
}

.sample-promises {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sample-promises article {
  padding: 20px;
  border-left: 4px solid var(--energy-orange);
}

.sample-promises strong,
.sample-promises span {
  display: block;
}

.sample-promises strong {
  color: var(--deep-navy);
  font-size: 18px;
}

.sample-promises span {
  margin-top: 6px;
  color: rgba(34, 40, 49, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.profile-inner .section-head {
  margin-bottom: 34px;
}

.profile-image-wrap {
  margin: 0;
}

.profile-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid article {
  padding: 26px;
}

.trust-grid .icon {
  margin-bottom: 16px;
  color: var(--deep-navy);
}

.trust-grid h3 {
  font-size: 20px;
}

.trust-grid p {
  margin-bottom: 0;
  color: rgba(34, 40, 49, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

address {
  font-style: normal;
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card a {
  color: var(--deep-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0;
}

.faq summary {
  position: relative;
  padding: 22px 56px 22px 24px;
  color: var(--deep-navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--energy-orange);
  font-size: 28px;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 24px 24px;
  margin-bottom: 0;
}

.final-cta {
  background: var(--deep-navy);
  color: var(--white);
}

.final-cta h2,
.final-cta .last-word {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  color: var(--charcoal);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--deep-navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--middle-gray);
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(242, 140, 40, 0.26);
  border-color: var(--energy-orange);
}

.form-note {
  margin: 16px 0;
  color: rgba(34, 40, 49, 0.74) !important;
  font-size: 13px;
  line-height: 1.7;
}

.quick-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quick-links a {
  color: var(--deep-navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 36px 0 86px;
  color: rgba(255, 255, 255, 0.82);
  background: #081827;
  font-size: 14px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-inner p {
  margin-bottom: 6px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.mobile-fixed-cta {
  display: none;
}

@media (max-width: 1040px) {
  .card-grid.five {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
    line-height: 1.9;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 62px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 54px;
  }

  .hero-grid,
  .two-column,
  .contact-grid,
  .sample-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.8;
  }

  .support {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-points {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-points li {
    padding: 7px 10px;
    font-size: 12px;
  }

  .cta-row {
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
  }

  .hero-visual {
    grid-template-columns: 1fr 44px 1fr;
    min-height: 260px;
    padding: 20px;
  }

  .hero-visual-space,
  .visual-spacer {
    min-height: 160px;
  }

  .hero-image-wrap img {
    width: min(100%, 430px);
    max-height: none;
    margin: 0 auto;
  }

  .paper-stack {
    height: 178px;
  }

  .paper {
    width: 112px;
    height: 154px;
  }

  .paper-front {
    padding: 15px 12px;
  }

  .paper-title {
    font-size: 12px;
  }

  .paper-line {
    height: 7px;
    margin-top: 12px;
  }

  .paper-check {
    width: 28px;
    height: 28px;
    margin-top: 15px;
  }

  .paper-check::after {
    left: 24px;
    bottom: 28px;
  }

  .convert-arrow span {
    width: 34px;
  }

  .tablet {
    height: 178px;
    padding: 8px;
    border-radius: 14px;
  }

  .tablet-screen {
    padding: 11px;
    border-radius: 8px;
  }

  .video-frame {
    height: 105px;
  }

  .play-icon {
    width: 42px;
    height: 42px;
  }

  .play-icon::after {
    left: 17px;
    top: 12px;
  }

  .caption-line {
    width: 72%;
    height: 6px;
  }

  .progress {
    margin-top: 14px;
  }

  .text-card,
  .check-list-card,
  .industry-panel,
  .pill-panel,
  .note-box,
  .contact-card,
  .contact-form,
  .sample-box {
    padding: 22px;
  }

  .card-grid.three,
  .card-grid.five,
  .deliverable-grid,
  .price-grid,
  .estimate-examples,
  .sample-promises,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-map {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-node {
    min-height: auto;
    padding: 22px;
  }

  .map-illustration {
    height: 104px;
  }

  .map-connector {
    width: 3px;
    height: 24px;
    margin: 0 auto;
  }

  .map-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .output-preview-grid,
  .video-manual-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .output-image-wrap img {
    width: min(100%, 430px);
    max-height: none;
    margin: 0 auto;
  }

  .preview-screen {
    min-height: 310px;
    padding: 16px;
  }

  .preview-main {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .preview-title {
    font-size: 21px;
  }

  .preview-side {
    grid-template-columns: repeat(3, 1fr);
  }

  .card {
    padding: 23px;
  }

  .comparison-table {
    display: grid;
    gap: 14px;
    background: transparent;
    border: 0;
  }

  .comparison-row {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }

  .comparison-row.head {
    display: none;
  }

  .comparison-row > div {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row > div + div {
    border-left: 0;
  }

  .comparison-row > div:first-child {
    color: var(--deep-navy);
    background: var(--cool-gray);
    font-weight: 900;
  }

  .comparison-row > div:nth-child(2)::before {
    content: "課題";
  }

  .comparison-row > div:nth-child(3)::before {
    content: "向いているケース";
  }

  .comparison-row > div:nth-child(2)::before,
  .comparison-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--energy-orange);
    font-size: 12px;
    font-weight: 900;
  }

  .process-diagram {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    width: 3px;
    height: 24px;
    margin: 0 auto;
  }

  .process-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .price-card strong {
    font-size: 22px;
  }

  .faq summary {
    padding: 19px 50px 19px 18px;
  }

  .faq details p {
    padding: 0 18px 20px;
  }

  .mobile-fixed-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: var(--white);
    background: var(--energy-orange);
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(15, 39, 66, 0.22);
    font-weight: 900;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-visual-space,
  .visual-spacer {
    min-height: 96px;
  }

  .hero-image-wrap img {
    width: min(100%, 340px);
  }

  .paper-stack {
    margin: 0 auto;
    width: 140px;
  }

  .convert-arrow {
    transform: rotate(90deg);
  }

  .tablet {
    width: 190px;
    margin: 0 auto;
  }

  .preview-side {
    grid-template-columns: 1fr;
  }

  .output-image-wrap img {
    width: min(100%, 340px);
  }

  .preview-main {
    grid-template-columns: 1fr;
  }

  .preview-play {
    max-width: 150px;
  }
}
