﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --steel: #1E4D6B;
  --cyan: #00C2E0;
  --cyan-light: #E0F8FC;
  --gray-img: #EAECF0;
  --gray-light: #F5F7FA;
  --gray-mid: #CBD2DA;
  --text-dark: #0D1B2A;
  --text-mid: #3E5265;
  --text-light: #6B8096;
  --white: #FFFFFF;
  --danger: #E84040;
  --warning: #F5A623;
  --success: #22C55E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

/* 笏笏笏 STICKY CTA BAR 笏笏笏 */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 999;
  border-top: 2px solid var(--cyan);
}
.sticky-cta a {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: var(--cyan);
  color: var(--navy);
  transition: opacity .2s;
}
.sticky-cta a:hover { opacity: .85; }

/* 笏笏笏 HEADER 笏笏笏 */
header {
  background: var(--navy);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 2px solid var(--steel);
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}
.logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .05em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.logo span { color: var(--cyan); }
.header-logo { height: 32px; width: auto; display: block; }
.header-cta {
  background: var(--cyan);
  color: var(--navy);
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}
.header-nav a {
  color: #C4D3DE;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.header-nav a:hover { color: var(--cyan); }
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--navy);
    border-bottom: 2px solid var(--steel);
    padding: 4px 24px 12px;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .logo { font-size: 15px; }
  .header-logo { height: 26px; }
}

@media (max-width: 430px) {
  .logo-group .logo { display: none; }
}

/* 笏笏笏 SECTION BASE 笏笏笏 */
section { padding: 80px 24px; scroll-margin-top: 68px; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
h2.section-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 48px;
  max-width: 600px;
}

/* 笏笏笏 IMAGE PLACEHOLDER 笏笏笏 */
.img-placeholder {
  background: var(--gray-img);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--gray-mid);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
  text-align: center;
  padding: 16px;
}
.img-placeholder .img-size {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-mid);
  letter-spacing: .02em;
}
.img-placeholder .img-desc {
  font-size: 12px;
  color: var(--text-light);
}

/* 笏笏笏 SECTION 1: FV 笏笏笏 */
#fv {
  background: var(--navy);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.fv-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}
.fv-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--cyan);
  margin-bottom: 16px;
}
.fv-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.fv-title em {
  color: var(--cyan);
  font-style: normal;
}
.fv-sub {
  color: #A8BECC;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.fv-sub strong { color: var(--cyan); font-weight: 700; }
.fv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.fv-badge {
  background: rgba(0,194,224,.12);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.fv-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,194,224,.35); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .15s;
}
.btn-outline:hover { border-color: var(--cyan); }

.fv-image-frame {
  width: 100%;
  aspect-ratio: 1200 / 760;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.fv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 笏笏笏 STAT STRIP 笏笏笏 */
.stat-strip {
  background: var(--steel);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: #A8BECC;
  margin-top: 4px;
}

/* 笏笏笏 SECTION 2: 謔ｩ縺ｿ 笏笏笏 */
#pain { background: var(--gray-light); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--danger);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pain-icon {
  width: 44px; height: 44px;
  background: #FEE; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.pain-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.pain-card p { font-size: 13px; color: var(--text-mid); }
.pain-image-frame {
  width: 100%;
  aspect-ratio: 1080 / 480;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-img);
}
.pain-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 笏笏笏 SECTION 3: 謳榊､ｱ 笏笏笏 */
#loss { background: var(--navy); }
#loss h2.section-title { color: var(--white); }
#loss .section-label { color: var(--cyan); }
.loss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.loss-card {
  background: var(--navy-mid);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.loss-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  opacity: .4;
}
.loss-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.loss-card p { font-size: 13px; color: #8BA7BD; }
.loss-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.loss-tag {
  background: rgba(232,64,64,.15);
  color: #F87171;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* 笏笏笏 SECTION 4: 隗｣豎ｺ遲・笏笏笏 */
#solution { background: var(--white); }
.solution-diagram {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}
.diagram-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-light);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.diagram-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.diagram-node {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.diagram-node.hub {
  border-color: var(--cyan);
  background: var(--navy);
  color: var(--white);
}
.diagram-node.hub .dn-label { color: var(--white); }
.dn-icon { font-size: 22px; margin-bottom: 4px; }
.dn-label { font-size: 12px; font-weight: 700; color: var(--navy); }
.dn-sub { font-size: 10px; color: var(--text-light); margin-top: 2px; }
.hub .dn-sub { color: var(--cyan); }
.diagram-arrow {
  font-size: 20px;
  color: var(--cyan);
  padding: 0 8px;
  font-weight: 700;
}
.diagram-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 笏笏笏 SECTION 5: 陬ｽ蜩∵ｧ区・ 笏笏笏 */
#products { background: var(--gray-light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .2s;
}
.product-card:hover { transform: translateY(-4px); }
.product-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.product-body { padding: 24px; }
.product-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; }
.product-features { list-style: none; }
.product-features li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-features li::before {
  content: '笨・;
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* 笏笏笏 SECTION 6: 4繧ｳ繧｢讖溯・ 笏笏笏 */
#features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--cyan);
  transition: background .2s;
}
.feature-card:hover { background: var(--cyan-light); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

/* 笏笏笏 SECTION 7: 逡ｰ蟶ｸ讀懃衍繝輔Ο繝ｼ 笏笏笏 */
#detection-flow { background: var(--navy); }
#detection-flow h2.section-title { color: var(--white); }
#detection-flow .section-label { color: var(--cyan); }
#detection-flow .section-sub { color: #8BA7BD; }
.flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--navy-mid);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.flow-step {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.flow-step:last-child { border-right: none; }
.flow-step::after {
  content: '窶ｺ';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--cyan);
  font-weight: 700;
  z-index: 1;
}
.flow-step:last-child::after { display: none; }
.flow-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cyan);
  margin-bottom: 10px;
}
.flow-step-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.flow-step h3 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.flow-step p { font-size: 11px; color: #8BA7BD; }
.flow-image-frame {
  width: 100%;
  aspect-ratio: 1080 / 480;
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-img);
}
.flow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 笏笏笏 SECTION 8: 驕髫泌ｾｩ譌ｧ繝輔Ο繝ｼ 笏笏笏 */
#recovery-flow { background: var(--white); }
.recovery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.recovery-steps { display: flex; flex-direction: column; gap: 0; }
.recovery-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  position: relative;
}
.recovery-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--gray-mid);
}
.rs-dot {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rs-dot.active { background: var(--cyan); }
.rs-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.rs-body p { font-size: 13px; color: var(--text-mid); }
.recovery-highlight {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid var(--cyan);
  margin-top: 24px;
}
.recovery-highlight h3 { font-size: 18px; font-weight: 900; color: var(--cyan); margin-bottom: 8px; }
.recovery-highlight p { font-size: 14px; color: #A8BECC; }
.recovery-image-frame {
  width: 100%;
  aspect-ratio: 640 / 720;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-img);
}
.recovery-image { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 笏笏笏 SECTION 9: 邂｡逅・判髱｢ 笏笏笏 */
#callpoint { background: var(--gray-light); }
.callpoint-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.cp-features { display: flex; flex-direction: column; gap: 16px; }
.cp-feature {
  background: var(--white);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.cp-feature-icon {
  width: 40px; height: 40px;
  background: var(--cyan-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cp-feature h3 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.cp-feature p { font-size: 12px; color: var(--text-light); }
.cp-screenshot-frame {
  width: 100%;
  aspect-ratio: 1292 / 760;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-img);
}
.cp-screenshot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 笏笏笏 SECTION 10: 蟆主・蜉ｹ譫・笏笏笏 */
#effects { background: var(--white); }
.effects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.effect-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  color: var(--white);
}
.effect-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.effect-kpi {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.effect-unit { font-size: 13px; color: var(--cyan); }
.effect-label {
  font-size: 12px;
  color: #8BA7BD;
  margin-top: 6px;
  line-height: 1.5;
}

/* 笏笏笏 SECTION 11: 蟆主・繧ｷ繝ｼ繝ｳ 笏笏笏 */
#scenes { background: var(--gray-light); }
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scene-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .2s;
}
.scene-card:hover { transform: translateY(-3px); }
.scene-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.scene-body { padding: 18px; }
.scene-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.scene-body p { font-size: 12px; color: var(--text-light); }

/* 笏笏笏 SECTION 12: 陬ｽ蜩∽ｻ墓ｧ・笏笏笏 */
#specs { background: var(--white); }
.spec-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-mid);
}
.spec-tab {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .15s;
}
.spec-tab.active {
  color: var(--navy);
  border-bottom-color: var(--cyan);
}
.spec-panel { display: none; }
.spec-panel.active { display: block; }
.spec-accordion { border: 1px solid var(--gray-mid); border-radius: 10px; overflow: hidden; }
.spec-item {
  border-bottom: 1px solid var(--gray-mid);
}
.spec-item:last-child { border-bottom: none; }
.spec-q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background .15s;
}
.spec-q:hover { background: var(--gray-light); }
.spec-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s, padding .3s;
  font-size: 13px;
  color: var(--text-mid);
  background: var(--gray-light);
}
.spec-item.open .spec-a {
  max-height: 200px;
  padding: 14px 20px;
}
.spec-chevron { transition: transform .3s; color: var(--cyan); }
.spec-item.open .spec-chevron { transform: rotate(180deg); }

/* 笏笏笏 SECTION 13: FAQ 笏笏笏 */
#faq { background: var(--gray-light); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-q::before {
  content: 'Q';
  background: var(--navy);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-a {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 34px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.faq-a::before {
  content: 'A';
  background: var(--cyan-light);
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* 笏笏笏 SECTION 14: 髫懷｣∬ｧ｣豸医ヰ繝翫・ 笏笏笏 */
.barrier-strip {
  background: var(--steel);
  padding: 40px 24px;
}
.barrier-strip .container {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.barrier-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.barrier-check {
  width: 32px; height: 32px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}
.barrier-text { font-size: 15px; font-weight: 700; }
.barrier-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* 笏笏笏 SECTION 15: 譛邨・TA 笏笏笏 */
#final-cta {
  background: var(--navy);
  text-align: center;
  padding: 100px 24px;
}
#final-cta h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}
#final-cta h2 em { color: var(--cyan); font-style: normal; }
#final-cta p {
  font-size: 16px;
  color: #8BA7BD;
  margin-bottom: 44px;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-lg {
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
}
.btn-lg.primary {
  background: var(--cyan);
  color: var(--navy);
}
.btn-lg.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,194,224,.4); }
.btn-lg.outline-white {
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn-lg.outline-white:hover { border-color: var(--cyan); }

/* 笏笏笏 FOOTER 笏笏笏 */
footer {
  background: #070F18;
  padding: 32px 24px;
  text-align: center;
  color: #4A6070;
  font-size: 12px;
}
footer a { color: #6B8096; text-decoration: none; }
footer a:hover { color: var(--cyan); }
.footer-logo { height: 28px; width: auto; margin: 0 auto 16px; display: block; }

/* 笏笏笏 RESPONSIVE 笏笏笏 */
@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .fv-inner { grid-template-columns: 1fr; padding: 60px 16px 40px; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .loss-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { flex-direction: column; }
  .flow-step::after { display: none; }
  .recovery-layout { grid-template-columns: 1fr; }
  .callpoint-layout { grid-template-columns: 1fr; }
  .effects-grid { grid-template-columns: repeat(2, 1fr); }
  .scenes-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .barrier-strip .container { flex-direction: column; }
  .barrier-div { width: 80%; height: 1px; }
  .spec-tabs { overflow-x: auto; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .effects-grid { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
}

/* 笏笏笏 CONTACT FORM 笏笏笏 */
#final-cta { background: var(--navy); padding: 80px 24px 100px; text-align: left; }
#final-cta h2 { color: var(--white); text-align: center; }
#final-cta em { color: var(--cyan); font-style: normal; }
#final-cta p { color: #8BA7BD; text-align: center; }

.form-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 0;
}

/* 蟾ｦ・壼ｮ牙ｿ・・繧､繝ｳ繝・*/
.form-left { padding-top: 4px; }
.form-trust-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.trust-icon {
  width: 26px; height: 26px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-label { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.trust-sub { font-size: 12px; color: #8BA7BD; line-height: 1.5; }
.form-note {
  margin-top: 28px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: #8BA7BD;
  line-height: 1.6;
}

/* 蜿ｳ・壹ヵ繧ｩ繝ｼ繝譛ｬ菴・*/
.form-right {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
}
.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.type-grid-lp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 0;
}
.type-btn-lp {
  padding: 10px 12px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  background: var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .15s, background .15s;
}
.type-btn-lp.selected {
  border-color: var(--steel);
  background: var(--cyan-light);
}
.tbtn-icon { font-size: 20px; flex-shrink: 0; }
.tbtn-name { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); }
.tbtn-sub { display: block; font-size: 11px; color: var(--text-light); margin-top: 1px; }
.type-btn-lp.selected .tbtn-name { color: var(--steel); }

.lp-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.lp-field { display: flex; flex-direction: column; gap: 5px; }
.lp-label { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.lp-req { color: var(--danger); margin-left: 3px; }
.lp-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
}
.lp-input:focus { border-color: var(--steel); }
.lp-textarea { min-height: 90px; resize: vertical; }

.lp-check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.lp-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
}
.lp-check-item input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--steel);
  cursor: pointer;
  flex-shrink: 0;
}

.lp-privacy-box {
  margin-top: 20px;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}
.lp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.lp-privacy-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  margin: 14px 0 16px;
  cursor: pointer;
}
.lp-privacy-agree input {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--steel);
  cursor: pointer;
  flex-shrink: 0;
}
.lp-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: background .15s, opacity .15s;
  letter-spacing: .04em;
}
.lp-submit-btn:hover:not(:disabled) { background: var(--steel); }
.lp-submit-btn:disabled { opacity: .4; cursor: not-allowed; }

/* 螳御ｺ・*/
.lp-success {
  text-align: center;
  padding: 48px 20px;
}
.lp-success-icon {
  width: 64px; height: 64px;
  background: var(--cyan-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--steel);
  margin: 0 auto 20px;
  font-weight: 900;
}
.lp-success h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.lp-success p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-left { display: none; }
  .form-right { padding: 24px 20px; }
}
@media (max-width: 560px) {
  .lp-row2 { grid-template-columns: 1fr; }
  .type-grid-lp { grid-template-columns: 1fr 1fr; }
}

/* ─── お問い合わせ 確認モーダル ─── */
.lp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,.72);
  z-index: 2000;
  padding: 24px;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}
.lp-modal-overlay.open { display: flex; }
.lp-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  margin: 40px auto;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.lp-modal-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.lp-modal h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.lp-modal-note { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }

.lp-confirm-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.lp-confirm-table th, .lp-confirm-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 13px;
  vertical-align: top;
}
.lp-confirm-table th {
  width: 130px;
  color: var(--text-light);
  font-weight: 700;
  white-space: nowrap;
}
.lp-confirm-table td { color: var(--text-dark); white-space: pre-wrap; word-break: break-word; }

.lp-modal-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.lp-modal-back {
  flex: 1;
  min-width: 140px;
  background: var(--white);
  color: var(--text-mid);
  border: 1.5px solid var(--gray-mid);
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: border-color .15s;
}
.lp-modal-back:hover { border-color: var(--text-light); }
.lp-modal .lp-submit-btn { flex: 1.4; min-width: 180px; width: auto; }

@media (max-width: 560px) {
  .lp-modal { padding: 24px 20px; margin: 20px auto; }
  .lp-confirm-table th { width: 96px; font-size: 12px; }
}

/* ─── POLICY PAGES (会社概要・プライバシーポリシー・セキュリティポリシー) ─── */
.policy-hero {
  background: var(--navy);
  padding: 56px 24px 40px;
  text-align: center;
}
.policy-hero .section-label { color: var(--cyan); }
.policy-hero h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-top: 8px;
}
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.policy-back:hover { text-decoration: underline; }

.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}
.policy-updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 40px;
  text-align: right;
}
.policy-section { margin-bottom: 40px; }
.policy-section h2 {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--cyan);
}
.policy-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 8px;
}
.policy-section p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 10px;
}
.policy-section ul, .policy-section ol {
  margin: 8px 0 14px 22px;
}
.policy-section li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.policy-table th, .policy-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: top;
  line-height: 1.7;
}
.policy-table th {
  width: 200px;
  color: var(--text-light);
  font-weight: 700;
  white-space: nowrap;
}
.policy-table td { color: var(--text-dark); }
.policy-signoff {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-mid);
  font-size: 14px;
  color: var(--text-mid);
  text-align: right;
  line-height: 1.8;
}
.policy-contact {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}
@media (max-width: 560px) {
  .policy-table th { width: 120px; font-size: 12px; }
}
