/* ================================================
   URUTEQ LP — Ad Landing Page
   Refined BtoB SaaS aesthetic
   Typography: Noto Sans JP (100–900)
   Palette:
     --lp-navy:   #0e1b3d
     --lp-blue:   #29A9FF
     --lp-dark:   #0a0e19
     --lp-text:   #2d3548
     --lp-muted:  #6b7a94
     --lp-light:  #f5f7fb
     --lp-border: rgba(14,27,61,.07)
   ================================================ */

:root {
  --lp-navy:   #0e1b3d;
  --lp-blue:   #29A9FF;
  --lp-dark:   #0a0e19;
  --lp-text:   #2d3548;
  --lp-muted:  #6b7a94;
  --lp-light:  #f5f7fb;
  --lp-border: rgba(14,27,61,.07);
  --lp-radius: 14px;
}

/* --- Reset & Base --- */
.landingPage #Contents {
  max-width: 100%; overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--lp-text);
}

.pc-view { display: block; }
.sp-view { display: none; }
@media (max-width: 768px) {
  .pc-view { display: none; }
  .sp-view { display: block; }
}

/* --- Section Rhythm --- */
.lp-section { padding: 96px 0; }
.lp-section__inner { max-width: 1040px; margin: 0 auto; padding: 0 32px; }

.lp-section__heading {
  font-size: 30px; font-weight: 900; line-height: 1.6;
  color: var(--lp-navy); text-align: center;
  margin-bottom: 20px; letter-spacing: .01em;
}
.lp-section__heading--left { text-align: left; }

.lp-section__lead {
  font-size: 15px; color: var(--lp-muted); text-align: center;
  margin-bottom: 56px; letter-spacing: .03em;
}

@media (max-width: 768px) {
  .lp-section { padding: 64px 0; }
  .lp-section__inner { padding: 0 20px; }
  .lp-section__heading { font-size: 22px; }
  .lp-section__lead { margin-bottom: 36px; }
}

/* --- Bridge Block --- */
.lp-bridge {
  margin-top: 48px; padding: 32px 36px;
  background: var(--lp-light);
  border-left: 3px solid var(--lp-blue);
  border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
  font-size: 16px; line-height: 1.85; color: var(--lp-text);
}
.lp-bridge p { margin-bottom: 12px; }
.lp-bridge p:last-child { margin-bottom: 0; }
.lp-bridge strong { color: var(--lp-navy); font-weight: 700; }
.lp-bridge__accent {
  margin-top: 8px; padding-top: 16px;
  border-top: 1px solid var(--lp-border);
  font-weight: 500;
}

@media (max-width: 768px) {
  .lp-bridge { padding: 24px 20px; font-size: 15px; }
}

/* --- Buttons --- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700;
  border-radius: 60px; cursor: pointer; border: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.lp-btn--primary {
  background: var(--lp-blue); color: #fff;
  font-size: 15px; padding: 16px 36px;
  box-shadow: 0 2px 12px rgba(41,169,255,.2);
}
.lp-btn--primary:hover {
  background: #1d9dee;
  box-shadow: 0 6px 24px rgba(41,169,255,.3);
  transform: translateY(-2px);
}
.lp-btn--glow {
  box-shadow: 0 0 0 1px rgba(41,169,255,.3), 0 4px 24px rgba(41,169,255,.25);
}
.lp-btn--glow:hover {
  box-shadow: 0 0 0 1px rgba(41,169,255,.5), 0 8px 32px rgba(41,169,255,.35);
}
.lp-btn--ghost {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 15px; padding: 15px 32px;
  border-radius: 60px; font-weight: 500;
}
.lp-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  transform: translateY(-2px);
}
.lp-btn--white {
  background: #fff; color: var(--lp-navy);
  font-size: 15px; padding: 16px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.lp-btn--white:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
.lp-btn--lg { font-size: 17px; padding: 20px 48px; }

/* ================================================
   1. HERO
   ================================================ */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 120px;
  background: var(--lp-dark);
  text-align: center;
}
.lp-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
/* Subtle grid pattern */
.lp-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,169,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,169,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}
.lp-hero__glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(41,169,255,.08) 0%,
    rgba(14,27,61,.05) 40%,
    transparent 65%);
}
.lp-hero__glow--2 {
  top: 70%; width: 600px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(41,169,255,.04) 0%,
    transparent 60%);
}
.lp-hero__logo {
  position: absolute; top: 36px; left: 44px; z-index: 2;
}
.lp-hero__logo img { height: 24px; width: auto; opacity: .7; }
.lp-hero__inner {
  max-width: 800px; margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
}
.lp-hero__label {
  display: inline-block;
  font-size: 13px; font-weight: 500; letter-spacing: .16em;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 60px;
}
.lp-hero__heading {
  font-size: 40px; font-weight: 900; line-height: 1.55;
  color: #fff; margin-bottom: 28px;
  letter-spacing: .02em;
}
.lp-hero__sub {
  font-size: 16px; line-height: 1.9;
  color: rgba(255,255,255,.7);
  margin-bottom: 48px; max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.lp-hero__sub em {
  font-style: normal; color: #fff; font-weight: 700;
}
.lp-hero__actions {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

@media (max-width: 768px) {
  .lp-hero { padding: 100px 0 80px; }
  .lp-hero__logo { top: 24px; left: 24px; }
  .lp-hero__logo img { height: 20px; }
  .lp-hero__label { font-size: 11px; padding: 6px 16px; letter-spacing: .12em; }
  .lp-hero__heading { font-size: 26px; }
  .lp-hero__sub { font-size: 14px; }
  .lp-hero__actions { flex-direction: column; align-items: center; }
  .lp-hero__grid { background-size: 48px 48px; }
}

/* ================================================
   2. PROBLEM CARDS
   ================================================ */
.lp-problem { background: #fff; }

.lp-card-grid { display: grid; gap: 20px; }
.lp-card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.lp-card {
  border-radius: var(--lp-radius);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.lp-card--problem {
  background: var(--lp-light);
  border: 1px solid var(--lp-border);
  padding: 36px 32px;
  position: relative;
}
.lp-card--problem:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(14,27,61,.07);
  border-color: rgba(41,169,255,.12);
}
.lp-card__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--lp-navy); color: #fff;
  font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.lp-card__title {
  font-size: 18px; font-weight: 700; color: var(--lp-navy);
  margin-bottom: 10px; line-height: 1.5;
}
.lp-card__text {
  font-size: 15px; line-height: 1.7; color: var(--lp-muted);
}

@media (max-width: 768px) {
  .lp-card-grid--3 { grid-template-columns: 1fr; }
  .lp-card--problem { padding: 28px 24px; }
}

/* ================================================
   3. GTM
   ================================================ */
.lp-gtm { background: var(--lp-light); position: relative; overflow: hidden; }

/* Decorative corner elements */
.lp-gtm__deco {
  position: absolute; pointer-events: none; opacity: .7;
}
.lp-gtm__deco--tl { top: 32px; left: 32px; }
.lp-gtm__deco--br { bottom: 32px; right: 32px; }

.lp-gtm__body {
  max-width: 680px; margin: 0 auto 36px; text-align: center;
}
.lp-gtm__body p {
  font-size: 16px; line-height: 1.85; color: var(--lp-text);
}

/* Highlight box */
.lp-gtm__highlight {
  text-align: center; margin-bottom: 56px;
}
.lp-gtm__highlight span {
  display: inline-block;
  font-size: 20px; font-weight: 900; color: var(--lp-navy);
  padding: 16px 36px;
  background: rgba(41,169,255,.04);
  border: 1.5px solid rgba(41,169,255,.18);
  border-radius: 12px;
  box-shadow: 0 0 32px rgba(41,169,255,.06);
}

/* Flow — Card layout */
.lp-gtm__flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 780px; margin: 0 auto;
}

/* Step cards */
.lp-gtm__card {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 20px 16px 18px;
  min-width: 100px;
  box-shadow: 0 2px 12px rgba(14,27,61,.04);
  transition: all .3s ease;
  position: relative;
}
.lp-gtm__card:hover {
  border-color: rgba(41,169,255,.3);
  box-shadow: 0 4px 24px rgba(41,169,255,.1);
  transform: translateY(-2px);
}
.lp-gtm__card-num {
  font-size: 12px; font-weight: 700; color: var(--lp-blue);
  letter-spacing: .05em;
}
.lp-gtm__card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(41,169,255,.08);
  color: var(--lp-blue);
}
.lp-gtm__card-label {
  font-size: 15px; font-weight: 700; color: var(--lp-navy);
  letter-spacing: .02em;
}

/* Curved connectors */
.lp-gtm__connector {
  flex-shrink: 0; display: flex; align-items: center;
  padding: 0 2px; margin-bottom: 8px;
}

@media (max-width: 768px) {
  .lp-gtm__deco { display: none; }
  .lp-gtm__flow {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .lp-gtm__card { min-width: 80px; padding: 14px 10px 12px; border-radius: 12px; }
  .lp-gtm__card-icon { width: 44px; height: 44px; }
  .lp-gtm__card-icon svg { width: 24px; height: 24px; }
  .lp-gtm__card-label { font-size: 13px; }
  .lp-gtm__card-num { font-size: 11px; }
  .lp-gtm__connector svg { width: 32px; height: 16px; }
  .lp-gtm__highlight span { font-size: 17px; padding: 12px 24px; }
}

/* ================================================
   4. DEFINITION
   ================================================ */
.lp-definition { background: #fff; }

.lp-definition__content {
  display: flex; gap: 56px; align-items: flex-start; margin-top: 48px;
}
.lp-definition__text { flex: 1; }
.lp-definition__text p {
  font-size: 16px; line-height: 1.85; color: var(--lp-text);
  margin-bottom: 14px;
}
.lp-definition__points {
  list-style: none; padding: 0; margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lp-definition__points li {
  font-size: 15px; font-weight: 600; color: var(--lp-navy);
  padding: 20px 20px 20px 52px; position: relative;
  background: var(--lp-light);
  border-radius: 12px;
  border: 1px solid var(--lp-border);
  line-height: 1.5;
}
.lp-definition__points li::before {
  content: ''; position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lp-blue);
}
.lp-definition__points li::after {
  content: ''; position: absolute; left: 24px; top: 50%;
  transform: translateY(-50%) translateY(-1px) rotate(-45deg);
  width: 9px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
}
.lp-definition__diagram { flex: 0 0 420px; }

/* Diagram */
.lp-diagram {
  display: flex; align-items: center; gap: 10px;
  background: var(--lp-light); border-radius: 16px;
  padding: 28px 18px;
  border: 1px solid var(--lp-border);
}
.lp-diagram__col { display: flex; flex-direction: column; gap: 6px; }
.lp-diagram__col-label {
  font-size: 11px; font-weight: 700; color: var(--lp-navy);
  text-align: center; margin-bottom: 4px;
  letter-spacing: .08em;
}
.lp-diagram__item {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--lp-text);
  background: #fff; border: 1px solid var(--lp-border);
  border-radius: 8px; padding: 7px 12px;
  text-align: center; white-space: nowrap;
}
.lp-diagram__arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; opacity: .4;
}
.lp-diagram__core {
  background: var(--lp-navy); border-radius: 12px;
  padding: 20px 14px;
  display: flex; align-items: center; justify-content: center;
}
.lp-diagram__core img { filter: brightness(0) invert(1); }

@media (max-width: 768px) {
  .lp-definition__content { flex-direction: column; gap: 32px; }
  .lp-definition__diagram { flex: none; width: 100%; overflow-x: auto; }
  .lp-diagram { min-width: 480px; }
  .lp-definition__points { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
}

/* ================================================
   5. RESULTS
   ================================================ */
.lp-results { background: var(--lp-light); }

.lp-results__body {
  max-width: 720px; margin: 0 auto 48px; text-align: center;
}
.lp-results__body p {
  font-size: 16px; line-height: 1.85; color: var(--lp-text);
}

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

.lp-card--result {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
}
.lp-card--result:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,27,61,.06);
}
.lp-card__result-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(41,169,255,.08);
  border-radius: 10px;
}
.lp-card--result .lp-card__text {
  font-size: 15px; font-weight: 500; color: var(--lp-text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lp-card-grid--2x2 { grid-template-columns: 1fr; }
}

/* ================================================
   MID CTA
   ================================================ */
.lp-mid-cta {
  background: var(--lp-navy);
  text-align: center;
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.lp-mid-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(41,169,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.lp-mid-cta__text {
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 32px; position: relative;
  letter-spacing: .01em;
}
.lp-mid-cta__note {
  font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px;
  position: relative; letter-spacing: .04em;
}
.lp-mid-cta .lp-btn { position: relative; }

/* ================================================
   6. FEATURES — Alternating text + image layout
   ================================================ */
.lp-features { background: #fff; }

.lp-feature-list {
  max-width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; gap: 80px;
}

.lp-feature-item {
  display: flex; align-items: center; gap: 56px;
}
.lp-feature-item--reverse {
  flex-direction: row-reverse;
}

/* Text content side */
.lp-feature-item__content {
  flex: 1; min-width: 0;
}
.lp-feature-item__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lp-navy); color: #fff;
  font-size: 15px; font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.lp-feature-item__title {
  font-size: 22px; font-weight: 900; color: var(--lp-navy);
  margin-bottom: 14px; line-height: 1.5;
  letter-spacing: .01em;
}
.lp-feature-item__text {
  font-size: 16px; line-height: 1.85; color: var(--lp-muted);
}

/* Image side */
.lp-feature-item__image {
  flex: 0 0 52%;
  max-width: 52%;
}
.lp-feature-item__image img {
  width: 100%; height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(14,27,61,.08);
  border: 1px solid var(--lp-border);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s cubic-bezier(.4,0,.2,1);
}
.lp-feature-item:hover .lp-feature-item__image img {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(14,27,61,.12);
}

@media (max-width: 768px) {
  .lp-feature-list { gap: 56px; }
  .lp-feature-item {
    flex-direction: column; gap: 28px;
  }
  .lp-feature-item--reverse {
    flex-direction: column;
  }
  .lp-feature-item__image {
    flex: none; max-width: 100%; width: 100%;
    order: -1;
  }
  .lp-feature-item__num {
    width: 38px; height: 38px; font-size: 13px;
    border-radius: 10px; margin-bottom: 16px;
  }
  .lp-feature-item__title { font-size: 19px; }
  .lp-feature-item__text { font-size: 15px; }
  .lp-feature-item__image img { border-radius: 12px; }
}

/* ================================================
   7. TARGET
   ================================================ */
.lp-target { background: var(--lp-light); }

.lp-target__content {
  display: flex; gap: 64px; align-items: flex-start;
}
.lp-target__left { flex: 0 0 300px; }
.lp-target__sub {
  font-size: 15px; color: var(--lp-muted);
  line-height: 1.7; margin-top: 16px;
}
.lp-target__right { flex: 1; }

.lp-checklist { list-style: none; padding: 0; margin: 0; }
.lp-checklist__item {
  font-size: 16px; line-height: 1.55; color: var(--lp-text);
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 1px solid var(--lp-border);
}
.lp-checklist__item:last-child { border-bottom: none; }
.lp-checklist__item::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lp-blue);
}
.lp-checklist__item::after {
  content: ''; position: absolute; left: 7px; top: 23px;
  width: 10px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .lp-target__content { flex-direction: column; gap: 28px; }
  .lp-target__left { flex: none; width: 100%; }
  .lp-checklist__item { font-size: 15px; }
}

/* ================================================
   8. FINAL CTA
   ================================================ */
.lp-final-cta {
  background: var(--lp-navy);
  text-align: center;
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.lp-final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(41,169,255,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(41,169,255,.04) 0%, transparent 50%);
  pointer-events: none;
}
.lp-final-cta__heading {
  font-size: 30px; font-weight: 900; color: #fff;
  line-height: 1.55; margin-bottom: 24px;
  position: relative; letter-spacing: .01em;
}
.lp-final-cta__body {
  font-size: 16px; color: rgba(255,255,255,.6);
  line-height: 1.8; margin-bottom: 12px;
  position: relative;
}
.lp-final-cta .lp-btn { position: relative; margin-top: 16px; }
.lp-final-cta__note {
  font-size: 13px; color: rgba(255,255,255,.35);
  margin-top: 20px; position: relative;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .lp-final-cta { padding: 64px 0; }
  .lp-final-cta__heading { font-size: 22px; }
}

/* ========================================
   LP スタンドアロン用リセット・フッター
   ======================================== */
body.lp-standalone {
  margin: 0; padding: 0;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lp-standalone * { box-sizing: border-box; }

.lp-footer {
  background: var(--lp-navy);
  padding: 48px 0 32px;
  text-align: center;
}
.lp-footer__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-footer__logo {
  display: inline-block;
  margin-bottom: 24px;
}
.lp-footer__logo img {
  height: 22px;
  width: auto;
  opacity: .7;
}
.lp-footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lp-footer__nav a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.lp-footer__nav a:hover { color: rgba(255,255,255,.7); }
.lp-footer__copy {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
