/* ===== リセット・基本スタイル ===== */
*, *::before, *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #faf7f0;
  color: #1a2820;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

input, select, textarea {
  border-radius: 0;
  border: 1px solid #d0c9be;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== フェードインアニメーション（ヒーロー用） ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeIn1 {
  animation: fadeInUp 0.75s ease forwards;
}

.fadeIn2 {
  opacity: 0;
  animation: fadeInUp 0.75s ease 0.2s forwards;
}

.fadeIn3 {
  opacity: 0;
  animation: fadeInUp 0.85s ease 0.45s forwards;
}

.fadeIn4 {
  opacity: 0;
  animation: fadeInUp 0.75s ease 0.7s forwards;
}

.fadeIn5 {
  opacity: 0;
  animation: fadeInUp 0.75s ease 0.95s forwards;
}

/* ===== スクロールフェードイン ===== */
.fadeInScroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fadeInScroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== デザイントークン ===== */
.lpRoot {
  --ink: #0b0b6e;
  --white: #faf7f0;
  --green: #1a4fa0;
  --green-dim: rgba(26, 79, 160, 0.12);
  --green-border: rgba(26, 79, 160, 0.28);
  --green-text: #7a9ef5;
  --gray: #f0ebe1;
  --border: #d0c9be;
  --muted: #000000;
  --dark-border: rgba(255, 255, 255, 0.08);

  color: var(--ink);
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background-color: var(--white);
}

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.headerInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerLogo {
  height: 36px;
  width: auto;
  display: block;
}

.headerNav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.headerNavLink {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.headerCta {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: var(--green);
  padding: 12px 28px;
  letter-spacing: 0.04em;
}

/* ===== ヒーロー ===== */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 65% 25%, #1a2d90 0%, #0b0b6e 65%);
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 0 64px 96px;
  position: relative;
  overflow: hidden;
}

.heroGridBg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}

.heroGlow {
  position: absolute;
  top: 15%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 70% 30%, rgba(90, 130, 230, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.heroGlow2 {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(90, 130, 230, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.heroContent {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 7px 18px;
  color: var(--green-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.heroBadgeDot {
  width: 5px;
  height: 5px;
  background: var(--green-text);
  border-radius: 50% !important;
  flex-shrink: 0;
}

.heroEyebrow {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  margin-top: 0;
}

.heroTitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.heroTitleLine {
  display: block;
}

.heroTitleAccent {
  color: var(--green-text);
}

.heroRule {
  width: 48px;
  height: 2px;
  background: var(--green);
  margin-bottom: 32px;
}

.heroSub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  line-height: 2;
  margin-bottom: 56px;
  margin-top: 0;
  letter-spacing: 0.03em;
}

.heroCtas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ctaPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 20px 48px;
  letter-spacing: 0.04em;
}

.ctaArrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ctaSecondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-weight: 500;
  padding: 20px 40px;
  letter-spacing: 0.04em;
}

.heroScrollIndicator {
  position: absolute;
  bottom: 48px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.heroScrollText {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  writing-mode: vertical-rl;
}

.heroScrollLine {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}

/* ===== セクション共通 ===== */
.sectionLabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sectionLabelLine {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.sectionTitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  margin-top: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.sectionDesc {
  font-size: 16px;
  color: var(--muted);
  line-height: 2;
  max-width: 580px;
  font-weight: 300;
  margin: 0;
}

/* ===== プラットフォームセクション ===== */
.platformSection {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 128px 64px;
}

.platformSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.platformHeader {
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.platformDiagramWrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.platformSvg {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
}

.platformNote {
  background: var(--gray);
  border-left: 3px solid var(--green);
  padding: 28px 36px;
  max-width: 720px;
  margin: 0 auto;
}

.platformNoteMain {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 12px;
  margin-top: 0;
}

.platformNoteSub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  margin: 0;
}

/* ===== ストック型ビジネスセクション ===== */
.stockSection {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: 128px 64px;
}

.stockSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.stockHeader {
  margin-bottom: 28px;
}

.stockDesc {
  font-size: 16px;
  color: var(--muted);
  line-height: 2;
  max-width: 800px;
  margin-bottom: 64px;
  margin-top: 0;
  font-weight: 300;
}

.stockCharts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto 28px;
}

.stockChartWrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stockChartLabel {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0;
}

.stockChartSvg {
  width: 100%;
  height: auto;
  display: block;
}

.stockLegend {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto 48px;
}

.stockLegendItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.stockLegendDotGray {
  width: 14px;
  height: 14px;
  background: #d0c9be;
  display: inline-block;
  flex-shrink: 0;
}

.stockLegendDotGreen {
  width: 14px;
  height: 14px;
  background: #4a72e0;
  display: inline-block;
  flex-shrink: 0;
}

.stockConclusion {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.75;
  max-width: 800px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===== 料金セクション ===== */
.pricingSection {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 128px 64px;
}

.pricingSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricingHeader {
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.pricingLayout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.pricingCard {
  background: var(--ink);
  color: white;
  padding: 52px;
  position: sticky;
  top: 84px;
}

.pricingCardLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 40px;
  margin-top: 0;
}

.pricingAmount {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 68px;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.pricingAmountUnit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
  margin-left: 6px;
}

.pricingAmountNote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.pricingDivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.pricingList {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricingListItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 300;
  line-height: 1.6;
}

.pricingCheckIcon {
  color: var(--green-text);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricingCardCta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 20px;
  letter-spacing: 0.04em;
}

.comparisonWrap {
  border: 1px solid var(--border);
  overflow: hidden;
}

.comparisonTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 24px 32px;
  background: var(--gray);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
  margin: 0;
}

.compTable {
  width: 100%;
  border-collapse: collapse;
}

.compTable thead th {
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.compTable thead th:first-child {
  text-align: left;
  width: 140px;
}

.compTable tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid #ede7de;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.compTable tbody td:first-child {
  text-align: left;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}

.compTable tbody tr:last-child td {
  border-bottom: none;
}

.compHeadHighlight {
  background: var(--green) !important;
  color: white !important;
  font-size: 17px !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.06em !important;
}

.compCellHighlight {
  background: #eaeefc !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}

/* ===== 販売店向けセクション ===== */
.shopSection {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 128px 64px;
}

.shopSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.shopHeader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.shopHeaderRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.shopCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--ink);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 36px;
  letter-spacing: 0.04em;
}

.shopGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.shopCard {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  background: var(--white);
}

.shopCard:last-child {
  border-right: none;
}

.shopCardNum {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #ddd8ce;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  display: block;
}

.shopCardIcon {
  color: var(--green);
  margin-bottom: 20px;
}

.shopCardTitle {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  margin-top: 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.shopCardDesc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  font-weight: 300;
  margin: 0;
}

/* ===== メーカー向けセクション ===== */
.makerSection {
  background: var(--ink);
  border-top: 1px solid #111;
  padding: 128px 64px;
}

.makerSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.makerLayout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}

.makerSectionLabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.makerSectionLabelLine {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green-text);
  flex-shrink: 0;
}

.makerTitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.makerDesc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 44px;
  margin-top: 0;
}

.makerBanner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--dark-border);
}

.makerBannerRule {
  flex: 1;
  height: 1px;
  background: var(--dark-border);
}

.makerBannerLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.makerBannerTitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.makerPricingBlock {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid rgba(90, 130, 220, 0.25);
  margin-bottom: 40px;
}

.makerPricingItem {
  padding: 28px 32px;
  border-right: 1px solid rgba(90, 130, 220, 0.18);
}

.makerPricingItem:last-child {
  border-right: none;
}

.makerPricingItemLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 12px;
  margin-top: 0;
}

.makerPricingItemValue {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  margin-top: 0;
}

.makerPricingItemUnit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
  margin-left: 4px;
}

.makerPricingItemNote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.05em;
  margin: 0;
}

.makerCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-weight: 600;
  padding: 17px 36px;
  letter-spacing: 0.04em;
}

.makerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--dark-border);
}

.makerCard {
  padding: 36px 32px;
  border-right: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.makerCard:nth-child(2n) {
  border-right: none;
}

.makerCard:nth-child(5),
.makerCard:nth-child(6) {
  border-bottom: none;
}

.makerCardIcon {
  color: var(--green-text);
  margin-bottom: 16px;
}

.makerCardTitle {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 10px;
  margin-top: 0;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.makerCardDesc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
  margin: 0;
}

/* ===== ワークフローセクション ===== */
.workflowSection {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: 128px 64px;
}

.workflowSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.workflowHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.workflowSteps {
  display: flex;
  flex-direction: column;
  max-width: 680px;
}

.workflowStep {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 32px;
  padding-bottom: 52px;
  position: relative;
}

.workflowStep:last-child {
  padding-bottom: 0;
}

.workflowStep:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 50px;
  bottom: 0;
  width: 1px;
  background: #c8c2b6;
}

.workflowStepNum {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #c8c2b6;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.workflowStepTitle {
  grid-column: 2;
  grid-row: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  margin-top: 0;
  letter-spacing: -0.01em;
  padding-top: 2px;
}

.workflowStepDesc {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  font-weight: 300;
  align-self: start;
  margin: 0;
}

/* ===== お問い合わせセクション ===== */
.contactSection {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 128px 64px;
}

.contactSectionInner {
  max-width: 1280px;
  margin: 0 auto;
}

.contactHeader {
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.contactLayout {
  display: grid;
  grid-template-columns: 360px 1fr;
  border: 1px solid var(--border);
}

.contactLeft {
  background: var(--ink);
  padding: 64px 48px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contactLeftTitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  color: white;
  line-height: 1.55;
  margin-bottom: 24px;
  margin-top: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.contactLeftDesc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 48px;
  margin-top: 0;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contactInfoItem {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.contactRight {
  padding: 64px 56px;
  background: var(--white);
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.formGroup {
  display: flex;
  flex-direction: column;
}

.formGroupFull {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.formLabel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 10px;
}

.formInput {
  width: 100%;
  border: 1px solid var(--border);
  padding: 16px 18px;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
}

.formInput:focus {
  outline: 2px solid var(--green);
  outline-offset: -1px;
  border-color: var(--green);
}

.formError {
  font-size: 14px;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: none;
}

.formSubmit {
  width: 100%;
  background: var(--ink);
  color: white;
  border: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 8px;
}

.formSubmit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.successState {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
}

.successIcon {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.successTitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  margin-top: 0;
}

.successDesc {
  font-size: 15px;
  color: var(--muted);
  line-height: 2;
  margin: 0;
}

/* ===== フッター ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid #111;
}

.footerTop {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--dark-border);
}

.footerBrand {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}

.footerTagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.95;
  max-width: 280px;
  font-weight: 300;
  margin: 0;
}

.footerNavTitle {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 0;
}

.footerNavList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footerNavLink {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 300;
}

.footerBottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footerBottom p {
  margin: 0;
}

.footerBottomLinks {
  display: flex;
  gap: 32px;
}

.footerBottomLink {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== モバイル追従CTAボタン ===== */
.stickyCtaWrap {
  display: none;
}

@media (max-width: 640px) {
  .stickyCtaWrap {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 20px 20px 32px;
    background: linear-gradient(to top, rgba(11, 11, 110, 0.97) 55%, rgba(11, 11, 110, 0));
    pointer-events: none;
  }

  .stickyCtaHidden {
    display: none;
  }

  .stickyCta {
    display: block;
    width: 100%;
    background: var(--green);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    pointer-events: auto;
    box-sizing: border-box;
  }
}

/* ===== レスポンシブ ===== */
@media (max-width: 1100px) {
  .hero { padding: 0 40px 80px; }
  .platformSection, .stockSection { padding: 96px 40px; }
  .shopSection { padding: 96px 40px; }
  .makerSection { padding: 96px 40px; }
  .pricingSection { padding: 96px 40px; }
  .workflowSection { padding: 96px 40px; }
  .contactSection { padding: 96px 40px; }
  .headerInner { padding: 0 32px; }

  .makerLayout { grid-template-columns: 1fr; gap: 56px; }

  .pricingLayout { grid-template-columns: 1fr; }
  .pricingCard { position: static; }

  .footerTop { gap: 48px; }
}

@media (max-width: 900px) {
  .shopHeader { grid-template-columns: 1fr; gap: 32px; }
  .shopHeaderRight { align-items: flex-start; }
  .shopGrid { grid-template-columns: 1fr; }
  .shopCard { border-right: none; border-bottom: 1px solid var(--border); }
  .shopCard:last-child { border-bottom: none; }

  .contactLayout { grid-template-columns: 1fr; }
  .contactLeft { padding: 48px 40px; }
  .contactRight { padding: 48px 40px; }

  .workflowHeader { flex-direction: column; align-items: flex-start; gap: 24px; }

  .footerTop { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  /* ヒーロー */
  .hero {
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
  }
  .heroContent { padding-top: 64px; }
  .heroScrollIndicator { display: none; }
  .heroBadge { margin-bottom: 20px; }
  .heroEyebrow { margin-bottom: 10px; font-size: 14px; }
  .heroTitleLine { display: inline; }
  .heroTitle { font-size: clamp(30px, 9vw, 42px); margin-bottom: 16px; word-break: normal; overflow-wrap: anywhere; }
  .heroRule { margin-bottom: 12px; }
  .heroSub { margin-bottom: 28px; font-size: 15px; max-width: 100%; }
  .heroCtas { flex-direction: column; align-items: stretch; }
  .ctaPrimary, .ctaSecondary { padding: 17px 20px; width: 100%; box-sizing: border-box; justify-content: center; }

  .platformSection, .stockSection { padding: 72px 20px; }
  .platformHeader { padding-bottom: 36px; margin-bottom: 36px; }
  .platformNote { padding: 20px 24px; }
  .platformNoteMain { font-size: 16px; }
  .stockCharts { grid-template-columns: 1fr; gap: 40px; }
  .stockDesc { font-size: 15px; margin-bottom: 40px; }

  .shopSection, .makerSection, .pricingSection, .workflowSection, .contactSection { padding: 72px 20px; }

  /* ヘッダー */
  .headerInner { padding: 0 16px; }
  .headerNav { display: flex; gap: 16px; }
  .headerLogo { height: 28px; }
  .headerNavLink { font-size: 13px; letter-spacing: 0.02em; }
  .headerCta { display: none; }

  /* メーカーセクション */
  .makerBanner { flex-wrap: wrap; gap: 12px; }
  .makerBannerTitle { white-space: normal; font-size: clamp(18px, 5.5vw, 24px); }
  .makerBannerRule { display: none; }
  .makerPricingBlock { grid-template-columns: 1fr; }
  .makerPricingItem { border-right: none; border-bottom: 1px solid rgba(90, 130, 220, 0.18); }
  .makerPricingItem:last-child { border-bottom: none; }

  /* 比較テーブル */
  .comparisonWrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compTable { min-width: 480px; }

  .formGrid { grid-template-columns: 1fr; }
  .contactLeft, .contactRight { padding: 40px 20px; }

  .footerTop { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
  .footerBottom { padding: 20px 20px; flex-direction: column; gap: 12px; text-align: center; }
  .footerBottomLinks { gap: 20px; flex-wrap: wrap; justify-content: center; }

  .pricingLayout { grid-template-columns: 1fr; }
  .pricingCard { padding: 36px 28px; }

  .makerGrid { grid-template-columns: 1fr; }
  .makerCard:nth-child(2n) { border-right: none; }
  .makerCard:nth-child(5), .makerCard:nth-child(6) { border-bottom: 1px solid var(--dark-border); }
  .makerCard:last-child { border-bottom: none; }
  .makerCard { border-right: none; }

  .shopHeader { padding-bottom: 40px; margin-bottom: 48px; }
  .workflowHeader { padding-bottom: 40px; margin-bottom: 48px; }
  .pricingHeader { padding-bottom: 40px; margin-bottom: 48px; }
  .contactHeader { padding-bottom: 40px; margin-bottom: 48px; }

  .sectionTitle { word-break: normal; overflow-wrap: anywhere; }
  .makerTitle { word-break: normal; overflow-wrap: anywhere; }
  .contactLeftTitle { word-break: normal; overflow-wrap: anywhere; }
}
