/* ================================================
   MynetAI+ LP Stylesheet
   Target: 製造業・中小企業
   Design: ビジネス・信頼感（ブルー基調）
   Font: Noto Sans JP / min 16px / color #171717
   ================================================ */

/* ------------------------------------------------
   Base & Variables
   ------------------------------------------------ */
:root {
  --lp-blue: #31a8d9;
  --lp-blue-dark: #1e7ca3;
  --lp-blue-light: #5cbde3;
  --lp-orange: #ef7f00;
  --lp-orange-light: #f5a623;
  --lp-green: #2d9a4e;
  --lp-red: #c06040;
  --lp-brown: #8c5a2e;
  --lp-navy: #1a3548;
  --lp-accent-warm: #d4764e;
  --lp-text: #171717;
  --lp-text-sub: #555555;
  --lp-bg-white: #ffffff;
  --lp-bg-gray: #f5f6f8;
  --lp-border: #e0e0e0;
  --lp-radius: 12px;
  --lp-radius-sm: 8px;
  --lp-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --lp-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --lp-max-width: 1100px;
  --lp-font: 'Noto Sans JP', "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

/* ------------------------------------------------
   LP Container & Section Base
   ------------------------------------------------ */
.lp-container {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--lp-font);
  color: var(--lp-text);
  font-size: 18px;
  line-height: 1.8;
  box-sizing: border-box;
}

.lp-container *,
.lp-container *::before,
.lp-container *::after {
  box-sizing: border-box;
}

.lp-section {
  padding: 80px 0;
}

.lp-section--white {
  background: var(--lp-bg-white);
}

.lp-section--gray {
  background: var(--lp-bg-gray);
}

.lp-section__lead {
  text-align: center;
  color: var(--lp-text-sub);
  font-size: 18px;
  margin-bottom: 40px;
}

/* ------------------------------------------------
   Section Header
   ------------------------------------------------ */
.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.lp-section-header__en {
  display: block;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-section-header__ja {
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.lp-section-header__line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--lp-orange);
  border-radius: 2px;
}

/* ------------------------------------------------
   Label / Badge
   ------------------------------------------------ */
.lp-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.lp-label--blue {
  background: var(--lp-blue);
  color: #fff;
}

.lp-label--orange {
  background: var(--lp-orange);
  color: #fff;
}

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.lp-btn {
  display: inline-block;
  font-family: var(--lp-font);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 40px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lp-btn--primary {
  background: var(--lp-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 127, 0, 0.3);
}

.lp-btn--primary:hover {
  background: #d67000;
  box-shadow: 0 6px 20px rgba(239, 127, 0, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.lp-btn--white {
  background: #fff;
  color: var(--lp-blue-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lp-btn--white:hover {
  background: #f0f4ff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: var(--lp-blue-dark);
  text-decoration: none;
}

.lp-btn--blue {
  background: var(--lp-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(49, 168, 217, 0.3);
  border: none;
}

.lp-btn--blue:hover {
  background: var(--lp-blue-dark);
  box-shadow: 0 6px 20px rgba(49, 168, 217, 0.4);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.lp-btn--lg {
  font-size: 20px;
  padding: 20px 48px;
}

/* ================================================
   HERO (First View)
   ================================================ */
.lp-hero {
  background: linear-gradient(160deg, #0f2133 0%, #1a3a55 30%, #1e4d6e 60%, #24607e 100%);
  color: #fff;
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(49, 168, 217, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 127, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.lp-hero__inner {
  max-width: var(--lp-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-family: var(--lp-font);
}

.lp-hero__inner *,
.lp-hero__inner *::before,
.lp-hero__inner *::after {
  box-sizing: border-box;
}

.lp-hero__label {
  display: inline-block;
  font-family: var(--lp-font);
  font-size: 18px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 28px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  color: #fff;
}

.lp-hero__title {
  font-family: var(--lp-font);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
  color: #fff;
}

.lp-hero__title em {
  color: var(--lp-orange-light);
  font-style: normal;
}

.lp-hero__subtitle {
  font-family: var(--lp-font);
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

.lp-hero__subtitle strong {
  color: #fff;
  font-weight: 700;
}

.lp-hero__cta {
  margin-bottom: 32px;
}

.lp-hero__hdr-btns,
.lp-mid-cta__btns,
.lp-final-cta__hdr-btns,
.lp-problems__bridge-btns {
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
}

.lp-hero__hdr-btns .lp-hdr-btn,
.lp-mid-cta__btns .lp-hdr-btn,
.lp-final-cta__hdr-btns .lp-hdr-btn,
.lp-problems__bridge-btns .lp-hdr-btn {
  font-size: 19px;
  padding: 14px 28px;
}

.lp-hdr-btns--balanced {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.lp-hdr-btns--balanced .lp-hdr-btn {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.lp-hero__cta-note {
  font-family: var(--lp-font);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.lp-hero__badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-hero__badge {
  font-family: var(--lp-font);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-hero__badge i {
  color: var(--lp-orange-light);
  font-size: 18px;
}

/* ================================================
   お困りセクション（問題提起）
   ================================================ */
.lp-problems {
  background: #fff;
  padding: 80px 0;
}

.lp-problems__title {
  font-size: 34px;
  font-weight: 900;
  color: var(--lp-red);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
}

.lp-problems__subtitle {
  font-size: 18px;
  color: var(--lp-text-sub);
  text-align: center;
  margin-bottom: 48px;
}

.lp-problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.lp-problems__item {
  background: var(--lp-bg-gray);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  border-left: 4px solid var(--lp-red);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-problems__item:hover {
  box-shadow: var(--lp-shadow-hover);
  transform: translateY(-4px);
}

.lp-problems__icon {
  width: 56px;
  height: 56px;
  background: rgba(192, 96, 64, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lp-problems__icon i {
  font-size: 26px;
  color: var(--lp-red);
}

.lp-problems__item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.lp-problems__item p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
}

/* Bridge (after problems) */
.lp-problems__bridge {
  text-align: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edf8 100%);
  border-radius: var(--lp-radius);
  padding: 40px 32px;
  border: 2px solid var(--lp-blue);
}

.lp-problems__bridge-arrow {
  width: 48px;
  height: 48px;
  background: var(--lp-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lp-problems__bridge-arrow i {
  color: #fff;
  font-size: 22px;
}

.lp-problems__bridge-text {
  font-size: 24px;
  color: var(--lp-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.lp-problems__bridge-text strong {
  color: var(--lp-blue);
  font-weight: 700;
}

/* ================================================
   サービスコンセプト
   ================================================ */
.lp-concept__catch {
  text-align: center;
  margin-bottom: 48px;
}

.lp-concept__catch h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-concept__catch em {
  color: var(--lp-orange);
  font-style: normal;
  font-weight: 900;
}

.lp-concept__catch p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.8;
}

/* Vision / Mission */
.lp-concept__vm {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-concept__vm-item {
  flex: 1;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
}

.lp-concept__vm-item .lp-label {
  margin-bottom: 12px;
}

.lp-concept__vm-item p {
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-text);
  line-height: 1.7;
}

/* Before / After Compare */
.lp-compare {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 32px;
}

.lp-compare__item {
  flex: 1;
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  text-align: center;
}

.lp-compare__item--before {
  border: 2px solid var(--lp-red);
}

.lp-compare__item--after {
  border: 2px solid var(--lp-blue);
}

.lp-compare__hd {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lp-compare__hd--red { color: var(--lp-red); }
.lp-compare__hd--green { color: var(--lp-blue); }

.lp-compare__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.lp-compare__hd--red .lp-compare__icon {
  background: var(--lp-red);
}

.lp-compare__hd--green .lp-compare__icon {
  background: var(--lp-blue);
}

.lp-compare__lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-text);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-compare__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.lp-compare__item ul li {
  font-size: 18px;
  color: var(--lp-text);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.lp-compare__item--before ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--lp-red);
  font-weight: 700;
}

.lp-compare__item--after ul li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--lp-blue);
  font-weight: 700;
}

.lp-compare__arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 26px;
  color: var(--lp-blue);
  flex-shrink: 0;
}

/* ================================================
   市場の課題
   ================================================ */
.lp-challenges__h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  margin-bottom: 16px;
}

.lp-challenges__catch {
  font-size: 18px;
  color: var(--lp-text-sub);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.7;
}

.lp-challenges__catch strong {
  color: var(--lp-red);
  font-weight: 700;
}

/* Stats */
.lp-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-stats__item {
  flex: 1;
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--lp-shadow);
}

.lp-stats__num {
  font-size: 50px;
  font-weight: 900;
  color: var(--lp-red);
  line-height: 1.2;
  margin-bottom: 8px;
}

.lp-stats__num span {
  font-size: 22px;
  font-weight: 700;
}

.lp-stats__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.lp-stats__text {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
  text-align: center;
}

/* 3 Walls */
.lp-walls {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-walls__item {
  flex: 1;
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--lp-shadow);
  transition: transform 0.3s ease;
}

.lp-walls__item:hover {
  transform: translateY(-4px);
}

.lp-walls__item--orange { border-top: 4px solid var(--lp-orange); }
.lp-walls__item--blue { border-top: 4px solid var(--lp-blue); }
.lp-walls__item--brown { border-top: 4px solid var(--lp-brown); }

.lp-walls__num {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.lp-walls__item--orange .lp-walls__num {
  background: rgba(239, 127, 0, 0.1);
  color: var(--lp-orange);
}

.lp-walls__item--blue .lp-walls__num {
  background: rgba(49, 168, 217, 0.1);
  color: var(--lp-blue);
}

.lp-walls__item--brown .lp-walls__num {
  background: rgba(140, 90, 46, 0.1);
  color: var(--lp-brown);
}

.lp-walls__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-walls__item--orange .lp-walls__icon { background: rgba(239, 127, 0, 0.1); }
.lp-walls__item--blue .lp-walls__icon { background: rgba(49, 168, 217, 0.1); }
.lp-walls__item--brown .lp-walls__icon { background: rgba(140, 90, 46, 0.1); }

.lp-walls__item--orange .lp-walls__icon i { color: var(--lp-orange); font-size: 24px; }
.lp-walls__item--blue .lp-walls__icon i { color: var(--lp-blue); font-size: 24px; }
.lp-walls__item--brown .lp-walls__icon i { color: var(--lp-brown); font-size: 24px; }

.lp-walls__item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
}

.lp-walls__item p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
  text-align: center;
}

/* Solution Bridge */
.lp-bridge {
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 40px 32px;
  box-shadow: var(--lp-shadow);
}

.lp-bridge__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--lp-blue);
  text-align: center;
  margin-bottom: 28px;
}

.lp-bridge__rows {
  margin-bottom: 28px;
}

.lp-bridge__row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.lp-bridge__from {
  flex: 1;
  background: var(--lp-bg-gray);
  border-radius: var(--lp-radius-sm);
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-text-sub);
  text-align: center;
}

.lp-bridge__arrow {
  color: var(--lp-blue);
  font-size: 22px;
  flex-shrink: 0;
}

.lp-bridge__to {
  flex: 1;
  background: var(--lp-blue);
  border-radius: var(--lp-radius-sm);
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.lp-bridge__bottom {
  background: linear-gradient(135deg, #f0f4ff, #e8edf8);
  border-radius: var(--lp-radius-sm);
  padding: 24px;
  text-align: center;
}

.lp-bridge__bottom-main {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-bridge__bottom-sub {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
}

/* ================================================
   6つのコアソリューション
   ================================================ */
/* Solution Map */
.lp-solmap {
  margin-bottom: 48px;
}

.lp-solmap__row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.lp-solmap__item {
  flex: 1;
  border-radius: var(--lp-radius);
  padding: 20px 16px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.lp-solmap__item:hover {
  transform: translateY(-3px);
}

.lp-solmap__item--blue { background: #31a8d9; }
.lp-solmap__item--orange { background: #ef7f00; }

.lp-solmap__cat-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-solmap__cat-label--orange { color: var(--lp-orange); }
.lp-solmap__cat-label--blue { color: var(--lp-blue); }
.lp-solmap__cat-label i { font-size: 16px; }

.lp-solmap__num {
  display: inline-block;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 4px;
}

.lp-solmap__item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.4;
}

.lp-solmap__item p {
  font-size: 15px;
  color: #fff;
  opacity: 0.8;
}

/* Solution Detail Cards */
.lp-sol-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.lp-sol-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
}

/* Solmap item active state */
.lp-solmap__item.is-active {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.lp-solmap__item {
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  transition: box-shadow 0.3s ease;
}

.lp-sol-card:hover {
  box-shadow: var(--lp-shadow-hover);
}

.lp-sol-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--lp-border);
}

.lp-sol-card__num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.lp-sol-card__header h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--lp-text);
}

.lp-sol-card__body {
  display: flex;
}

.lp-sol-card__desc {
  flex: 1;
  padding: 24px 32px;
}

.lp-sol-card__desc .lp-label {
  margin-bottom: 12px;
}

.lp-sol-card__desc p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lp-sol-card__desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-sol-card__desc ul li {
  font-size: 18px;
  color: var(--lp-text);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
}

.lp-sol-card__desc ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--lp-orange);
  font-weight: 700;
}

.lp-sol-card__result {
  width: 300px;
  flex-shrink: 0;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-sol-card__result-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.lp-sol-card__result-icon i {
  font-size: 24px;
  color: #fff;
}

.lp-sol-card__result-label {
  font-size: 15px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 8px;
}

.lp-sol-card__result-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-sol-card__target {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--lp-radius-sm);
  padding: 12px 16px;
  width: 100%;
}

.lp-sol-card__target-label {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 4px;
}

.lp-sol-card__target p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Mid CTA */
.lp-mid-cta {
  text-align: center;
  background: var(--lp-bg-gray);
  border-radius: var(--lp-radius);
  padding: 40px 32px;
}

.lp-mid-cta p {
  font-size: 20px;
  font-weight: 500;
  color: var(--lp-text);
  margin-bottom: 20px;
}

/* ================================================
   私たちのこだわり
   ================================================ */
.lp-commit {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-commit__item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--lp-shadow);
  transition: box-shadow 0.3s ease;
}

.lp-commit__item:hover {
  box-shadow: var(--lp-shadow-hover);
}

.lp-commit__item--blue { border-left: 4px solid var(--lp-blue); }
.lp-commit__item--orange { border-left: 4px solid var(--lp-orange); }
.lp-commit__item--green { border-left: 4px solid var(--lp-blue); }

.lp-commit__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-commit__item--blue .lp-commit__icon { background: rgba(49, 168, 217, 0.1); }
.lp-commit__item--orange .lp-commit__icon { background: rgba(239, 127, 0, 0.1); }
.lp-commit__item--green .lp-commit__icon { background: rgba(49, 168, 217, 0.1); }

.lp-commit__item--blue .lp-commit__icon i { color: var(--lp-blue); font-size: 28px; }
.lp-commit__item--orange .lp-commit__icon i { color: var(--lp-orange); font-size: 28px; }
.lp-commit__item--green .lp-commit__icon i { color: var(--lp-blue); font-size: 28px; }

.lp-commit__cont h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-commit__cont p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
}

/* ================================================
   実績と信頼
   ================================================ */
.lp-trust__top {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--lp-bg-gray);
  border-radius: var(--lp-radius);
  padding: 32px;
  margin-bottom: 32px;
}

.lp-trust__number {
  text-align: center;
  flex-shrink: 0;
}

.lp-trust__num {
  font-size: 66px;
  font-weight: 900;
  color: var(--lp-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.lp-trust__num-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-trust__desc {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.8;
}

.lp-trust__services {
  display: flex;
  gap: 24px;
}

.lp-trust__svc {
  flex: 1;
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--lp-shadow);
}

.lp-trust__svc--orange { border-top: 3px solid var(--lp-orange); }
.lp-trust__svc--blue { border-top: 3px solid var(--lp-blue); }
.lp-trust__svc--gray { border-top: 3px solid #888; }

.lp-trust__svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-trust__svc--orange .lp-trust__svc-icon { background: rgba(239, 127, 0, 0.1); }
.lp-trust__svc--blue .lp-trust__svc-icon { background: rgba(49, 168, 217, 0.1); }
.lp-trust__svc--gray .lp-trust__svc-icon { background: rgba(136, 136, 136, 0.1); }

.lp-trust__svc--orange .lp-trust__svc-icon i { color: var(--lp-orange); font-size: 24px; }
.lp-trust__svc--blue .lp-trust__svc-icon i { color: var(--lp-blue); font-size: 24px; }
.lp-trust__svc--gray .lp-trust__svc-icon i { color: #888; font-size: 24px; }

.lp-trust__svc h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-trust__svc p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.6;
}

/* ================================================
   導入事例
   ================================================ */
.lp-cases {
  display: flex;
  gap: 24px;
}

.lp-cases__item {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  transition: box-shadow 0.3s ease;
}

.lp-cases__item:hover {
  box-shadow: var(--lp-shadow-hover);
}

.lp-cases__item--orange { border-top: 4px solid var(--lp-orange); }
.lp-cases__item--blue { border-top: 4px solid var(--lp-blue); }

.lp-cases__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--lp-bg-gray);
}

.lp-cases__header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-cases__item--orange .lp-cases__header-icon { background: var(--lp-orange); }
.lp-cases__item--blue .lp-cases__header-icon { background: var(--lp-blue); }

.lp-cases__header-icon i {
  color: #fff;
  font-size: 22px;
}

.lp-cases__header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-cases__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

.lp-cases__item--orange .lp-cases__tag { background: rgba(239, 127, 0, 0.12); color: var(--lp-orange); }
.lp-cases__item--blue .lp-cases__tag { background: rgba(49, 168, 217, 0.12); color: var(--lp-blue); }

.lp-cases__body {
  padding: 24px;
}

.lp-cases__label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-cases__item--orange .lp-cases__label { color: var(--lp-orange); }
.lp-cases__item--blue .lp-cases__label { color: var(--lp-blue); }

.lp-cases__body > p {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lp-cases__result {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(49, 168, 217, 0.08);
  border-radius: var(--lp-radius-sm);
  padding: 12px 16px;
  margin-bottom: 12px;
}

.lp-cases__result--blue {
  background: rgba(49, 168, 217, 0.08);
}

.lp-cases__result-icon {
  width: 28px;
  height: 28px;
  background: var(--lp-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-cases__result--blue .lp-cases__result-icon {
  background: var(--lp-blue);
}

.lp-cases__result span:last-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-blue);
}

.lp-cases__result--blue span:last-child {
  color: var(--lp-blue);
}

.lp-cases__detail {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.7;
}

/* ================================================
   最終CTA
   ================================================ */
.lp-final-cta {
  background: linear-gradient(160deg, #0f2133 0%, #1a3a55 30%, #1e4d6e 60%, #24607e 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: var(--lp-font);
}

.lp-final-cta h2 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 20px;
  line-height: 1.4;
}

.lp-final-cta .lp-container > p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.lp-final-cta__badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.lp-final-cta__badges span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-final-cta__badges i {
  color: var(--lp-orange-light);
  font-size: 20px;
}

/* ------------------------------------------------
   CTA Button Pair (inline)
   ------------------------------------------------ */
.lp-cta-pair {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ------------------------------------------------
   Header CTA Buttons
   ------------------------------------------------ */
.lp-hdr-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lp-hdr-btn {
  display: inline-block;
  font-family: var(--lp-font);
  font-size: 15px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lp-hdr-btn--primary {
  background: var(--lp-orange);
  color: #fff;
  border: 2px solid var(--lp-orange);
}
.lp-hdr-btn--primary:hover {
  background: #d67000;
  border-color: #d67000;
  color: #fff;
  text-decoration: none;
}

.lp-hdr-btn--outline {
  background: #fff;
  color: var(--lp-orange);
  border: 2px solid var(--lp-orange);
}
.lp-hdr-btn--outline:hover {
  background: var(--lp-orange);
  color: #fff;
  text-decoration: none;
}

/* ------------------------------------------------
   Outline-orange Button (for inline CTA)
   ------------------------------------------------ */
.lp-btn--outline-orange {
  background: #fff;
  color: var(--lp-orange);
  border: 2px solid var(--lp-orange);
}
.lp-btn--outline-orange:hover {
  background: var(--lp-orange);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.lp-btn--outline-orange i {
  margin-right: 8px;
}

/* ------------------------------------------------
   Outline-white Button
   ------------------------------------------------ */
.lp-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.lp-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.lp-btn--outline-white i {
  margin-right: 8px;
}

/* ================================================
   ROI Simulator
   ================================================ */
.lp-roi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-roi__input-area,
.lp-roi__result-area {
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 32px;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-border);
}

.lp-roi__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lp-blue);
}

.lp-roi__heading i {
  color: var(--lp-blue);
  margin-right: 8px;
}

.lp-roi__field {
  margin-bottom: 20px;
}

.lp-roi__field label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.lp-roi__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-roi__input,
.lp-roi__select {
  flex: 1;
  font-family: var(--lp-font);
  font-size: 18px;
  padding: 10px 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-bg-gray);
  color: var(--lp-text);
  outline: none;
  transition: border-color 0.2s;
}

.lp-roi__input:focus,
.lp-roi__select:focus {
  border-color: var(--lp-blue);
}

.lp-roi__unit {
  font-size: 16px;
  color: var(--lp-text-sub);
  white-space: nowrap;
  min-width: 60px;
}

.lp-roi__result-card {
  background: var(--lp-bg-gray);
  border-radius: var(--lp-radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.lp-roi__result-card--highlight {
  background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-dark));
  color: #fff;
}

.lp-roi__result-card--highlight .lp-roi__result-label {
  color: rgba(255, 255, 255, 0.85);
}

.lp-roi__result-card--highlight .lp-roi__result-value {
  color: #fff;
}

.lp-roi__result-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text-sub);
  margin-bottom: 8px;
}

.lp-roi__result-value {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--lp-blue-dark);
  line-height: 1.2;
}

.lp-roi__result-value--sm {
  font-size: 22px;
}

.lp-roi__result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lp-roi__note {
  font-size: 15px;
  color: var(--lp-text-sub);
  margin-top: 16px;
  text-align: center;
}

.lp-roi__cta {
  text-align: center;
  margin-top: 20px;
}

/* ROI Placeholder (grayed-out) state */
.lp-roi__result-area--placeholder {
  opacity: 0.45;
  pointer-events: none;
  position: relative;
}

.lp-roi__placeholder-msg {
  text-align: center;
  font-size: 16px;
  color: var(--lp-text-sub);
  background: var(--lp-bg-gray);
  border-radius: var(--lp-radius-sm);
  padding: 14px 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.lp-roi__placeholder-msg i {
  color: var(--lp-blue);
  margin-right: 6px;
}

/* ================================================
   無料資料ダウンロード CTA
   ================================================ */
.lp-section--download {
  background: var(--lp-bg-gray);
}

.lp-download-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 32px;
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-download-cta__icon {
  font-size: 50px;
  color: var(--lp-orange);
  margin-bottom: 16px;
}

.lp-download-cta__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 16px;
}

.lp-download-cta__text {
  font-size: 18px;
  color: var(--lp-text-sub);
  line-height: 1.8;
  margin-bottom: 28px;
}

.lp-download-cta__note {
  font-size: 15px;
  color: var(--lp-text-sub);
  margin-top: 12px;
}

.lp-download-cta .lp-btn i {
  margin-right: 8px;
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 991px) {
  .lp-hdr-btns {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  .lp-hdr-btns--balanced .lp-hdr-btn {
    flex: none;
    width: 100%;
    max-width: 420px;
  }
  .lp-hdr-btn {
    text-align: center;
  }

  .lp-hero__title {
    font-size: 32px;
  }

  .lp-hero__subtitle {
    font-size: 16px;
  }

  .lp-section-header__ja {
    font-size: 28px;
    white-space: normal;
  }

  .lp-problems__title {
    font-size: 26px;
  }

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

  .lp-concept__vm {
    flex-direction: column;
  }

  .lp-compare {
    flex-direction: column;
    gap: 16px;
  }

  .lp-compare__arrow {
    justify-content: center;
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .lp-stats {
    flex-direction: column;
  }

  .lp-walls {
    flex-direction: column;
  }

  .lp-bridge__row {
    flex-direction: column;
    gap: 8px;
  }

  .lp-bridge__arrow {
    transform: rotate(90deg);
  }

  .lp-solmap__row {
    flex-direction: column;
  }

  .lp-sol-card__body {
    flex-direction: column;
  }

  .lp-sol-card__result {
    width: 100%;
  }

  .lp-trust__top {
    flex-direction: column;
    text-align: center;
  }

  .lp-trust__services {
    flex-direction: column;
  }

  .lp-cases {
    flex-direction: column;
  }

  .lp-roi {
    grid-template-columns: 1fr;
  }

  .lp-final-cta h2 {
    font-size: 26px;
    white-space: normal;
  }

  .lp-final-cta__hdr-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .lp-hero {
    padding: 80px 16px 60px;
  }

  .lp-hero__title {
    font-size: 26px;
  }

  .lp-hero__badges {
    flex-direction: column;
    gap: 12px;
  }

  .lp-section {
    padding: 60px 0;
  }

  .lp-problems__grid {
    grid-template-columns: 1fr;
  }

  .lp-btn--lg {
    font-size: 16px;
    padding: 16px 32px;
  }

  .lp-commit__item {
    flex-direction: column;
    text-align: center;
  }

  .lp-final-cta__badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .lp-roi__result-grid {
    grid-template-columns: 1fr;
  }
}