/* ===== LP PAGE STYLES ===== */
/* ===== RESET & BASE ===== */
.lp-wrap *, .lp-wrap *::before, .lp-wrap *::after { box-sizing: border-box; }
.lp-wrap { overflow-x: hidden; }

/* ===== VARIABLES ===== */
:root {
  --lp-navy:  #0f116a;
  --lp-coral: #e8524a;
  --lp-gray:  #888;
  --lp-light: #f5f5f5;
  --lp-border:#e0e0e0;
}

/* ===== HEADER ===== */
.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-border);
  height: 72px; display: flex; align-items: center;
}
.lp-header-inner {
  width: 100%; max-width: 1600px; margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex; align-items: center; gap: 24px;
}
.lp-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; flex-shrink: 0; text-decoration: none; }
.lp-logo-img { height: 18px; width: auto; display: block; }
.lp-logo-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px; color: var(--lp-navy); display: none; }
.lp-logo-sub { font-family: 'Noto Sans JP', sans-serif; font-size: 10px; font-weight: 500; color: var(--lp-gray); white-space: nowrap; }
.lp-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; flex-wrap: wrap; }
.lp-nav a {
  display: flex; align-items: center; gap: 3px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 500; color: #333;
  padding: 6px 12px; white-space: nowrap; transition: color 0.2s; text-decoration: none;
}
.lp-nav a .material-icons { font-size: 13px; color: var(--lp-gray); }
.lp-nav a:hover { color: var(--lp-navy); }
.lp-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lp-coral); color: #fff;
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 128px; white-space: nowrap;
  transition: opacity 0.2s; flex-shrink: 0; text-decoration: none;
}
.lp-header-cta:hover { opacity: 0.85; color: #fff; }
.lp-header-cta .material-icons { font-size: 16px; }
.lp-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.lp-hamburger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; transition: 0.3s; }

/* ===== MOBILE MENU ===== */
.lp-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: #fff; flex-direction: column;
  padding: 80px 32px 32px; gap: 0;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 28px; cursor: pointer; color: #333;
}
.lp-mobile-menu a {
  display: block; font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700; color: #333;
  padding: 16px 0; border-bottom: 1px solid var(--lp-border); text-decoration: none;
}
.lp-mobile-cta {
  margin-top: 24px; background: var(--lp-coral); color: #fff !important;
  text-align: center; padding: 16px !important; border-radius: 128px;
  border-bottom: none !important;
}

/* ===== PAGE OFFSET ===== */
.lp-body { padding-top: 72px; background: #F8F8F8; }

/* ===== HERO ===== */
.lp-hero { padding-top: clamp(40px, 4vw, 60px); overflow: hidden; }
.lp-hero-row-wrap { overflow: hidden; padding-top: 20px; margin-top: -20px; }
.lp-hero-carousel-row {
  display: flex; gap: 16px; width: max-content;
}
.lp-hero-carousel-row.row1 { animation: lpScrollLeft 45s linear infinite; }
.lp-hero-carousel-row.row2 { animation: lpScrollRight 45s linear infinite; }
@keyframes lpScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
@keyframes lpScrollRight {
  0%   { transform: translateX(-25%); }
  100% { transform: translateX(0); }
}
.lp-hero-photo { width: 340px; height: 220px; border-radius: 12px; overflow: hidden; background: #ddd; } 
.lp-hero-photo.tall  { margin-top: -20px; }
.lp-hero-photo.short { margin-top: 20px; }
.lp-hero-photo img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-hero-text-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(30px, 4vw, 60px) clamp(20px, 5vw, 80px);
  max-width: 1280px; margin: 0 auto; flex-wrap: wrap;
}
.lp-hero-title-block { position: relative; display: inline-block; }
.lp-hero-title-img {
  display: block;
  width: clamp(180px, 21vw, 290px);
  height: auto;
}
.lp-hero-beyond {
  position: absolute;
  top: 35%;
  left: 40%;
  font-family: 'Inter', sans-serif; font-weight: 800; font-style: italic;
  font-size: clamp(9px, 1vw, 13px); color: var(--lp-navy); letter-spacing: 0.08em;
  white-space: nowrap;
}
.lp-hero-pitch {
  font-family: 'Noto Sans JP', sans-serif; font-size: clamp(13px, 1.2vw, 15px); letter-spacing: 0.15em;
  font-weight: 500; color: #444; line-height: 2; max-width: 360px;
}
.lp-hero-divider { width: 1px; height: 70px; background: black; flex-shrink: 0; align-self: center; }

/* ===== PROBLEM ===== */
.lp-problem {
  position: relative;
  overflow: visible;
  max-width: 1400px;
  margin: clamp(40px,6vw,80px) auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
  background: #fff;
  border-radius: clamp(60px, 12vw, 200px);
}
.lp-problem-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.lp-problem-sub {
  font-family: 'Noto Sans JP', sans-serif; font-size: 13px; font-weight: 500;
  color: black; margin-bottom: 20px; letter-spacing: 0.15em;
}
.lp-problem-heading {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 500; letter-spacing: 0.15em;
  font-size: clamp(18px, 2.8vw, 30px); color: black; line-height: 1.5;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.lp-problem-body {
  font-family: 'Noto Sans JP', sans-serif; font-size: clamp(13px, 1.2vw, 15px); letter-spacing: 0.15em;
  font-weight: 500; color: #333333; line-height: 2.4; text-align: left;
  max-width: 620px; margin: 0 auto;
}
.lp-deco { position: absolute; pointer-events: none; user-select: none; }
.lp-deco-chevron-green { top: 10%; left: 2%; font-size: clamp(60px,7vw,110px); color: #8dc89e; font-family: 'Inter',sans-serif; font-weight: 900; line-height: 1; }
.lp-deco-rect-pink     { top: 5%; right: 6%; width: clamp(40px,5vw,80px); height: clamp(40px,5vw,80px); background: #e8529a; }
.lp-deco-rect-yellow   { bottom: 20%; left: 10%; width: 20px; height: 20px; background: #f5d84a; }
.lp-deco-slash         { top: 55%; right: 30%; width: 40px; height: 3px; background: #e8b44a; transform: rotate(-45deg); }
.lp-deco-dot-navy      { top: 40%; right: 28%; width: 10px; height: 10px; background: var(--lp-navy); border-radius: 50%; }
.lp-deco-circle-blue   { bottom: 0; left: -2%; width: clamp(80px,10vw,150px); height: clamp(80px,10vw,150px); background: #b3c5e8; border-radius: 50%; }
.lp-deco-chevron-purple{ bottom: 10%; right: 4%; font-size: clamp(30px,4vw,60px); color: #7b7bc8; font-family: 'Inter',sans-serif; font-weight: 900; }
.lp-deco-dot-red       { bottom: 18%; left: 20%; width: 8px; height: 8px; background: #e85240; border-radius: 50%; }
.lp-deco-slash2        { bottom: 30%; right: 14%; width: 50px; height: 3px; background: #e8a84a; transform: rotate(40deg); }
.lp-deco-rect-peach    { top: 12%; left: 28%; width: 14px; height: 14px; background: #f5c6a0; }

/* ===== SECTION HEADING ===== */
.lp-section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 80px); }
.lp-section-en {
  font-family: 'Barlow'; font-weight: 800;
  font-size: clamp(36px, 5vw, 56px); color: var(--lp-navy); line-height: 1.1;
}
.lp-section-ja {
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--lp-gray); letter-spacing: 0.15em; margin-top: 8px;
}

/* ===== STRENGTH ===== */
.lp-strength { padding: clamp(80px,8vw,120px) clamp(20px,5vw,80px); }
.lp-strength-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.lp-strength-card { background: #fff; border-radius: 16px; padding: clamp(24px,3vw,40px); display: flex; flex-direction: column; gap: 12px; }
.lp-strength-label { font-family: 'Inter',sans-serif; font-weight: 700; font-size: 13px; text-align: center; }
.lp-strength-label.specialized { color: #e8524a; }
.lp-strength-label.branding    { color: #4ab8a8; }
.lp-strength-label.consistent  { color: #7b7bc8; }
.lp-strength-card-title { font-family: 'Noto Sans JP',sans-serif; font-weight: 500; font-size: clamp(15px,1.4vw,18px); color: #222; text-align: center; line-height: 1.5; }
.lp-strength-card-body { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: black; line-height: 2; text-align: center; }
.lp-strength-visual { display: flex; align-items: center; justify-content: center; }
.lp-donut-wrap { display: flex; justify-content: center; }
.lp-donut { position: relative; width: 140px; height: 140px; }
.lp-donut svg { transform: rotate(-90deg); }
.lp-donut-track { stroke: #e8e8f0; stroke-width: 14; fill: none; }
.lp-donut-fill { stroke: var(--lp-navy); stroke-width: 14; fill: none; stroke-dasharray: 339.29 339.29; stroke-dashoffset: 33.93; stroke-linecap: round; }
.lp-donut-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lp-donut-pct { font-family: 'Inter',sans-serif; font-weight: 800; font-size: 28px; color: var(--lp-navy); }
.lp-donut-sub { font-family: 'Noto Sans JP',sans-serif; font-size: 9px; color: var(--lp-gray); }
.lp-dots-wrap { display: flex; justify-content: center; height: 120px; align-items: center; position: relative; }
.lp-dot { position: absolute; border-radius: 50%; animation: lpFloat 3s ease-in-out infinite; }
@keyframes lpFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.lp-progress-wrap { display: flex; flex-direction: column; gap: 12px; padding-top: 10px; }
.lp-progress-row { display: flex; flex-direction: column; gap: 6px; }
.lp-progress-label-row { display: flex; justify-content: space-between; font-family: 'Inter',sans-serif; font-size: 11px; color: var(--lp-gray); }
.lp-progress-bar-bg { height: 8px; background: #e8e8e8; border-radius: 4px; overflow: hidden; }
.lp-progress-bar { height: 100%; background: var(--lp-navy); border-radius: 4px; }

/* ===== CASE ===== */
.lp-case { position: relative; overflow: hidden; padding: clamp(80px,8vw,120px) clamp(20px,5vw,80px); }
.lp-case-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.lp-case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: clamp(40px,5vw,60px) 0 24px; }
.lp-case-btn {
  border: 1.5px solid #c8c8d8; border-radius: 8px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s, background 0.2s; background: #fff; text-decoration: none;
}
.lp-case-btn:hover { border-color: var(--lp-navy); background: #f0f1fb; }
.lp-case-btn-company { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 700; color: #222; }
.lp-case-btn-pref    { font-family: 'Noto Sans JP',sans-serif; font-size: 11px; font-weight: 500; color: var(--lp-gray); }
.lp-case-more-row { display: flex; justify-content: flex-end; margin-bottom: 24px; }
.lp-case-contact-row { display: flex; justify-content: center; margin-bottom: clamp(40px,5vw,60px); }
.lp-case-more { display: flex; align-items: center; gap: 4px; font-family: 'Noto Sans JP',sans-serif; font-size: 14px; font-weight: 700; color: #333; transition: color 0.2s; text-decoration: none; }
.lp-case-more:hover { color: var(--lp-navy); }
.lp-case-more .material-icons { font-size: 18px; }
.lp-case-circle1 { position: absolute; left: -10%; top: 5%; z-index: 0; width: clamp(200px,30vw,420px); height: clamp(200px,30vw,420px); background: #c8d4f0; border-radius: 50%; }
.lp-case-circle2 { position: absolute; right: -5%; top: 15%; z-index: 0; width: clamp(100px,15vw,220px); height: clamp(100px,15vw,220px); background: #d0d8f4; border-radius: 50%; }
.lp-btn-coral { display: inline-flex; align-items: center; gap: 8px; background: var(--lp-coral); color: #fff; font-family: 'Noto Sans JP',sans-serif; font-size: 14px; font-weight: 700; padding: 12px 28px; border-radius: 128px; transition: opacity 0.2s; text-decoration: none; }
.lp-btn-coral:hover { opacity: 0.85; color: #fff; }
.lp-btn-coral .material-icons { font-size: 16px; }
.lp-logo-marquee { overflow: hidden; padding: 20px 0; }
.lp-logo-marquee-track { display: flex; gap: 48px; width: max-content; align-items: center; }
.lp-logo-marquee-track.fwd { animation: lpMarqueeLeft 20s linear infinite; }
.lp-logo-marquee-track.rev { animation: lpMarqueeRight 22s linear infinite; }
@keyframes lpMarqueeLeft  { 0%{transform:translateX(0);}    100%{transform:translateX(-50%);} }
@keyframes lpMarqueeRight { 0%{transform:translateX(-50%);} 100%{transform:translateX(0);} }
.lp-logo-marquee-item { flex-shrink: 0; height: 36px; display: flex; align-items: center; font-family: 'Noto Sans JP',sans-serif; font-size: 12px; font-weight: 700; color: #555; white-space: nowrap; padding: 0 8px; }
.lp-logo-marquee-item img {
  height: 28px; width: auto; max-width: 140px; object-fit: contain;
}
.lp-logo-marquee-item:hover img { filter: grayscale(0%); opacity: 1; }
.lp-case-video-card { display: block; text-decoration: none; }
.lp-case-video-thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 8px;
  overflow: hidden; background: #000;
  transition: transform 0.3s ease;
}
.lp-case-video-thumb:hover { transform: scale(1.05); z-index: 5; }
.lp-case-video-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}
.lp-case-video-company { margin-top: 12px; font-family: 'Noto Sans JP',sans-serif; font-size: 14px; font-weight: 700; color: #222; }
.lp-case-video-pref { margin-top: 2px; font-family: 'Noto Sans JP',sans-serif; font-size: 12px; color: var(--lp-gray); }

/* ===== SERVICE FLOW ===== */
.lp-flow { padding: clamp(80px,8vw,120px) clamp(20px,5vw,80px); }
.lp-flow-card { max-width: 960px; margin: 0 auto; background: #fff; border-radius: 20px; box-shadow: 0 4px 40px rgba(0,0,0,0.06); overflow: hidden; }
.lp-flow-item { border-bottom: 1px dashed #bbbbbb; }
.lp-flow-item:last-child { border-bottom: none; }
.lp-flow-btn { width: 100%; display: flex; align-items: center; gap: 24px; padding: 28px 32px; background: none; border: none; cursor: pointer; text-align: left; transition: background 0.2s; }
.lp-flow-num { font-family: 'Montserrat'; font-weight: 600; font-size: clamp(36px,4vw,52px); color: #1D216C; line-height: 1; flex-shrink: 0; width: 60px; }
.lp-flow-title { font-family: 'Noto Sans JP',sans-serif; font-weight: 900; font-size: clamp(15px,1.5vw,18px); color: var(--lp-navy); flex: 1; }
.lp-flow-icon { font-family: 'Material Icons'; font-size: 20px; color: var(--lp-navy); transition: transform 0.3s; flex-shrink: 0; }
.lp-flow-item.open .lp-flow-icon { transform: rotate(180deg); }
.lp-flow-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.lp-flow-item.open .lp-flow-body { max-height: 600px; }
.lp-flow-item.open:hover { background: #fafafa; }
.lp-flow-btn:hover { background: #fafafa; }
.lp-flow-body-inner { padding: 0 32px 28px 116px; }
.lp-flow-body-text { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #444; line-height: 2; margin-bottom: 20px; }
.lp-flow-links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-btn-navy { display: inline-flex; align-items: center; gap: 8px; background: var(--lp-navy); color: #fff; font-family: 'Montserrat'; font-size: 13px; font-weight: 700; padding: 10px 24px; border-radius: 128px; transition: opacity 0.2s; text-decoration: none; }
.lp-btn-navy:hover { opacity: 0.85; color: #fff; }
.lp-btn-navy .material-icons { font-size: 16px; }
.lp-flow-or { font-size: 13px; color: var(--lp-gray); }

/* ===== PRICE ===== */
.lp-price { padding: clamp(80px,8vw,120px) clamp(20px,5vw,80px); position: relative; overflow: hidden; }
.lp-price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(24px,3vw,40px); max-width: 1200px; margin: 0 auto; }
.lp-price-item { display: flex; flex-direction: column; gap: 12px; }
.lp-price-amount { font-family: 'Noto Sans JP'; font-weight: 700; font-size: clamp(16px,1.6vw,20px); color: #222; text-align: center; }
.lp-price-video {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 8px;
  overflow: hidden; background: #1a1a1a;
  transition: transform 0.3s ease;
}
.lp-price-video:hover { transform: scale(1.05); z-index: 5; }
.lp-price-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.lp-price-info { display: flex; flex-direction: column; gap: 4px; }
.lp-price-company { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 700; color: #222; }
.lp-price-desc    { font-family: 'Noto Sans JP',sans-serif; font-size: 12px; font-weight: 500; color: var(--lp-gray); }
.lp-price-deco1 { position: absolute; right: -5%; bottom: 10%; width: clamp(160px,20vw,300px); height: clamp(160px,20vw,300px); background: #d0d8f4; border-radius: 50%; pointer-events: none; z-index: 0; }
.lp-price-deco2 { position: absolute; left: 2%; top: 30%; width: clamp(100px,14vw,220px); height: clamp(100px,14vw,220px); background: #dce4f8; border-radius: 50%; pointer-events: none; z-index: 0; }
.lp-price-grid { position: relative; z-index: 1; }

/* ===== FAQ ===== */
.lp-faq { padding: clamp(80px,8vw,120px) clamp(20px,5vw,80px); }
.lp-faq-grid { display: grid; grid-template-columns: repeat(2,1fr); align-items: start; gap: 16px; max-width: 1200px; margin: 0 auto; }
.lp-faq-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
.lp-faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 24px; background: none; border: none; cursor: pointer; text-align: left; transition: background 0.2s; }
.lp-faq-btn:hover { background: #fafafa; }
.lp-faq-q { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 700; color: var(--lp-navy); line-height: 1.6; flex: 1; }
.lp-faq-plus { font-family: 'Inter',sans-serif; font-size: 22px; font-weight: 300; color: var(--lp-navy); flex-shrink: 0; line-height: 1; transition: transform 0.3s; }
.lp-faq-item.open .lp-faq-plus { transform: rotate(45deg); }
.lp-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.lp-faq-item.open .lp-faq-body { max-height: 320px; }
.lp-faq-body-inner {
  padding: 20px 24px 24px;
  border-top: 1px dashed #bbbbbb;
  font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #444; line-height: 2;
}
.lp-faq-cta { display: flex; width: fit-content; margin: 16px auto 0; }

/* ===== FOOTER ===== */
.lp-footer { background: #161D49; }
.lp-footer-contact { padding: clamp(60px,8vw,100px) clamp(20px,5vw,80px); display: flex; justify-content: center; }
.lp-footer-contact-card {
  width: 100%; max-width: 900px;
  background-image: linear-gradient(rgba(255,255,255,0.12), rgba(255,255,255,0.12)), url('../images/footer-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 125px; padding: clamp(40px,5vw,72px); text-align: center;
}
.lp-footer-contact-en { font-family: 'Barlow'; font-weight: 800; font-size: clamp(32px,4vw,48px); color: #1D216C; line-height: 1.1; }
.lp-footer-contact-ja { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: black; margin-top: 8px; margin-bottom: clamp(24px,3vw,40px); letter-spacing: 0.15em; }
.lp-footer-contact-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.lp-footer-nav { padding: clamp(40px,5vw,60px) clamp(20px,5vw,80px) 0; display: flex; gap: clamp(24px,4vw,60px); flex-wrap: wrap; max-width: 1400px; margin: 0 auto; }
.lp-footer-logo-col { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-right: clamp(20px,3vw,40px); }
.lp-footer-logo-link { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-decoration: none; }
.lp-footer-logo-img { height: 22px; width: auto; display: block; }
.lp-footer-logo-sub { font-family: 'Noto Sans JP',sans-serif; font-size: 10px; color: rgba(255,255,255,0.5); }
.lp-footer-nav-col { display: flex; flex-direction: column; gap: 16px; }
.lp-footer-nav-link { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.lp-footer-nav-link-en { font-family: 'Inter',sans-serif; font-weight: 700; font-size: 14px; color: #fff; min-width: 70px; }
.lp-footer-nav-link-ja { font-family: 'Noto Sans JP',sans-serif; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); }
.lp-footer-nav-link:hover .lp-footer-nav-link-ja { color: #fff; }
.lp-footer-bottom { max-width: 1400px; margin: clamp(40px,5vw,60px) auto 0; padding: clamp(24px,3vw,40px) clamp(20px,5vw,80px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-footer-copy { font-family: 'Inter',sans-serif; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.lp-footer-links-wrap { display: flex; gap: 20px; }
.lp-footer-links-wrap a { font-family: 'Noto Sans JP',sans-serif; font-size: 11px; color: rgba(255,255,255,0.5); transition: color 0.2s; text-decoration: none; }
.lp-footer-links-wrap a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .lp-nav { display: none; }
  .lp-hamburger { display: flex; }
  .lp-header-cta { display: none; }
  .lp-strength-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lp-case-grid { grid-template-columns: repeat(2,1fr); }
  .lp-price-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-flow-body { padding-left: 32px; }
}
@media (max-width: 640px) {
  .lp-hero-text-wrap { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px 32px; }
  .lp-hero-pitch { display: none; }
  .lp-hero-divider { display: none; }
  .lp-case-grid { grid-template-columns: 1fr; }
  .lp-case-circle1, .lp-case-circle2 { display: none; }
  .lp-flow-btn { padding: 20px; gap: 12px; }
  .lp-flow-num { width: 44px; font-size: 32px; }
  .lp-footer-contact-btns { flex-direction: column; }
  .lp-footer-nav { flex-direction: column; }
}

/* ===== SUB PAGES (Contact / Thanks / Privacy Policy) ===== */
.lp-sub-hero { padding: clamp(60px,8vw,100px) clamp(20px,5vw,80px) clamp(30px,4vw,50px); text-align: center; }
.lp-sub-lead { font-family: 'Noto Sans JP',sans-serif; font-size: clamp(13px,1.3vw,15px); font-weight: 500; color: #333; line-height: 2; }

.lp-contact-form-wrap { max-width: 1000px; margin: 0 auto clamp(60px,8vw,100px); padding: 0 clamp(20px,5vw,80px); }

.lp-thanks { padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px); text-align: center; }
.lp-thanks-title { font-family: 'Noto Sans JP',sans-serif; font-size: clamp(20px,2.4vw,28px); font-weight: 700; color: var(--lp-navy); margin-bottom: clamp(24px,3vw,40px); }
.lp-thanks-body { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #333; line-height: 2; margin-bottom: clamp(32px,4vw,48px); }

.lp-privacy { max-width: 900px; margin: 0 auto; padding: clamp(60px,8vw,100px) clamp(20px,5vw,80px) clamp(30px,4vw,50px); }
.lp-privacy-intro { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #333; line-height: 2; margin-bottom: clamp(32px,4vw,48px); }
.lp-privacy-section { margin-bottom: clamp(28px,3vw,40px); }
.lp-privacy-heading { font-family: 'Noto Sans JP',sans-serif; font-size: 16px; font-weight: 700; color: var(--lp-navy); margin-bottom: 12px; }
.lp-privacy-body { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #333; line-height: 2; }
.lp-privacy-body + .lp-privacy-body { margin-top: 12px; }
.lp-privacy-list { list-style: none; padding: 0; margin: 12px 0 0; }
.lp-privacy-list li { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #333; line-height: 1.9; }
.lp-privacy-contact { font-family: 'Noto Sans JP',sans-serif; font-size: 13px; font-weight: 500; color: #333; line-height: 1.9; margin-top: 12px; }
.lp-privacy-confirm-row { display: flex; justify-content: center; margin-top: clamp(32px,4vw,48px); }