/* ===========================
   HELP YOU+Tech Landing Page CSS
   =========================== */

/* CSS Variables */
:root {
  --red: #e60012;
  --red-dark: #dc2626;
  --purple: #7c3aed;
  --blue: #2563eb;
  --green: #16a34a;
  --yellow: #ffea00;
  --yellow-dark: #eab308;
  --amber: #f59e0b;
  --dark: #030712;
  --text-dark: #0f172a;
  --text-mid: #1e293b;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --text-slate: #64748b;
  --bg-light: #f8fafc;
  --bg-slate: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --white: #ffffff;
  --font: 'Noto Sans JP', sans-serif;
  --max-width: 1280px;
  --container-px: 80px;
}

/* Reset */
#lp-tech *, #lp-tech *::before, #lp-tech *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

#lp-tech body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

#lp-tech img {
  max-width: 100%;
  display: block;
}

#lp-tech a {
  text-decoration: none;
  color: inherit;
}

#lp-tech p {
  margin-bottom: 0;
}

#lp-tech button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

#vk-mobile-nav-menu-btn,
#vk-mobile-nav {
  display: none;
}

/* Utility */
#lp-tech .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

#lp-tech .section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.12em;
}

#lp-tech .section-divider {
  width: 64px;
  height: 4px;
  background: var(--red-dark);
  margin: 16px auto 0;
  border-radius: 2px;
}

#lp-tech .gradient-text {
  background: linear-gradient(to right, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#lp-tech .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

#lp-tech .btn-primary:hover {
  transform: translateY(-2px);
}

#lp-tech .btn-red {
  color: white;
  background: linear-gradient(to right, var(--red), var(--purple));
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
}

#lp-tech .btn-yellow {
  color: var(--dark);
  background: linear-gradient(to right, var(--yellow), var(--amber));
  box-shadow: 0 10px 30px rgba(255, 234, 0, 0.3);
}

/* ===========================
   HEADER
   =========================== */
#lp-tech .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#lp-tech .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lp-tech .header-logo img {
  height: 27px;
  width: auto;
  filter: drop-shadow(0 4px 4px rgba(255, 255, 255, 0.2));
}

#lp-tech .header-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

#lp-tech .header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  white-space: nowrap;
}

#lp-tech .header-btn:hover {
  transform: translateY(-1px);
}

#lp-tech .header-btn-red {
  color: white;
  background: linear-gradient(to right, var(--red), var(--purple));
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
}

#lp-tech .header-btn-yellow {
  color: var(--dark);
  background: linear-gradient(to right, var(--yellow), var(--amber));
  box-shadow: 0 10px 30px rgba(255, 234, 0, 0.3);
}

#lp-tech .header-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hamburger */
#lp-tech .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

#lp-tech .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

#lp-tech .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#lp-tech .hamburger.open span:nth-child(2) {
  opacity: 0;
}

#lp-tech .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
#lp-tech .mobile-nav {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  background: rgba(3, 7, 18, 0.97);
  z-index: 99;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

#lp-tech .mobile-nav.open {
  max-height: 100vh;
}

#lp-tech .mobile-nav-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#lp-tech .mobile-nav-text {
  color: var(--white);
  padding: 0 0 16px;
  border-bottom: 1px solid var(--text-mid);
}

#lp-tech .mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

#lp-tech .mobile-nav-btn-red {
  color: white;
  background: linear-gradient(to right, var(--red), var(--purple));
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.3);
}

#lp-tech .mobile-nav-btn-yellow {
  color: var(--dark);
  background: linear-gradient(to right, var(--yellow), var(--amber));
  box-shadow: 0 10px 30px rgba(255, 234, 0, 0.3);
}

/* ===========================
   HERO SECTION
   =========================== */
#lp-tech .hero {
  background: var(--dark);
  min-height: 836px;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#lp-tech .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
  background-image: url(../img/tech/common/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#lp-tech .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

#lp-tech .hero-content {
  flex: 0 0 660px;
  max-width: 660px;
}

#lp-tech .hero-logo-badge {
  height: 27px;
  width: 273px;
  margin-bottom: 40px;
  filter: drop-shadow(0 4px 4px rgba(255, 255, 255, 0.2));
}

#lp-tech .hero-heading {
  margin-bottom: 40px;
}

#lp-tech .hero-heading h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
}

#lp-tech .hero-heading h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.03em;
  background: linear-gradient(to right, var(--red), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#lp-tech .hero-sub {
  margin-bottom: 40px;
}

#lp-tech .hero-sub p {
  color: rgba(203, 213, 225, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
}

#lp-tech .hero-sub-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--purple));
  border-radius: 2px;
  margin-top: 16px;
}

#lp-tech .hero-btns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

#lp-tech .hero-char {
  flex: 0 0 500px;
  max-width: 500px;
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#lp-tech .hero-char-glow {
  position: absolute;
  inset: 15% 10% 25%;
  background: rgba(37, 99, 235, 0.2);
  filter: blur(50px);
  border-radius: 9999px;
}

#lp-tech .hero-char img {
  height: 500px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ===========================
   STATS BAR
   =========================== */
#lp-tech .stats-bar {
  background: white;
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

#lp-tech .stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

#lp-tech .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#lp-tech .stat-icon {
  margin-bottom: 4px;
}

#lp-tech .stat-icon svg {
  width: 28px;
  height: 28px;
  color: #a88a3a;
}

#lp-tech .stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

#lp-tech .stat-value {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-top: 2px;
}

#lp-tech .stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ===========================
   AIMS SECTION (目指すこと)
   =========================== */
#lp-tech .aims {
  background: white;
  padding: 112px 0;
}

#lp-tech .aims-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .aims-header {
  text-align: center;
  margin-bottom: 64px;
}

#lp-tech .aims-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

#lp-tech .aim-card {
  background: rgba(248, 250, 252, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 33px;
}

#lp-tech .aim-icon-wrap {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  margin-bottom: 23px;
}

#lp-tech .aim-icon-wrap svg {
  width: 28px;
  height: 28px;
}

#lp-tech .aim-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

#lp-tech .aim-card p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ===========================
   STRENGTHS SECTION (得意なこと)
   =========================== */
#lp-tech .strengths {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 129px 0;
}

#lp-tech .strengths-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .strengths-header {
  text-align: center;
  margin-bottom: 64px;
}

#lp-tech .strengths-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

#lp-tech .strength-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  width: calc(50% - 24px);
  max-width: 386px;
  padding: 33px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

#lp-tech .strength-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

#lp-tech .strength-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  flex-shrink: 0;
  line-height: 1.1;
}

#lp-tech .strength-title-wrap {
  flex: 1;
}

#lp-tech .strength-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
}

#lp-tech .strength-body {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 20px;
  flex: 1;
}

#lp-tech .strength-body p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}

#lp-tech .strength-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 450px;
  margin: 10px auto 0;
}

#lp-tech .strength-card-footer p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  text-align: center;
  width: calc(100% - 35%);
  background-image: url('data:image/svg+xml;utf8,<svg width="55" height="78" viewBox="0 0 55 78" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.05204 46.5101C2.47645 46.5126 1.91212 46.307 1.42461 45.9171C0.937095 45.5273 0.546417 44.9692 0.297962 44.3078C0.0495066 43.6463 -0.0465276 42.9086 0.0210171 42.1804C0.0885618 41.4522 0.316913 40.7633 0.679539 40.1938L30.792 0.668842C31.0179 0.336683 31.3257 0.112223 31.6649 0.0323064C32.0042 -0.04761 32.3546 0.0217652 32.6588 0.229045C32.963 0.436325 33.2028 0.769192 33.3389 1.17301C33.475 1.57683 33.4994 2.0276 33.4079 2.45134L27.5679 25.7788C27.3957 26.366 27.3378 26.9976 27.3993 27.6195C27.4608 28.2414 27.6398 28.835 27.921 29.3494C28.2021 29.8638 28.577 30.2836 29.0135 30.5728C29.45 30.8621 29.935 31.0121 30.427 31.0101H51.7187C52.2943 31.0076 52.8586 31.2132 53.3461 31.6031C53.8336 31.9929 54.2243 32.551 54.4728 33.2124C54.7212 33.8739 54.8173 34.6116 54.7497 35.3398C54.6822 36.068 54.4538 36.7569 54.0912 37.3263L23.9787 76.8513C23.7528 77.1835 23.445 77.408 23.1058 77.4879C22.7666 77.5678 22.4161 77.4984 22.1119 77.2911C21.8078 77.0839 21.5679 76.751 21.4318 76.3472C21.2957 75.9434 21.2714 75.4926 21.3629 75.0688L27.2029 51.7413C27.3751 51.1542 27.4329 50.5226 27.3714 49.9007C27.3099 49.2788 27.1309 48.6852 26.8498 48.1708C26.5686 47.6564 26.1937 47.2366 25.7572 46.9473C25.3208 46.6581 24.8357 46.5081 24.3437 46.5101H3.05204Z" fill="%23E60012" fill-opacity="0.2"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#lp-tech .strength-card-img {
  width: 35%;
  height: auto;
}

/* Featured strength cards (1st and 4th) */
#lp-tech .strength-card-featured {
  min-height: 360px;
}

/* ===========================
   CASES SECTION (事例)
   =========================== */
#lp-tech .cases {
  background: white;
  padding: 128px 0;
}

#lp-tech .cases-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .cases-header {
  text-align: center;
  margin-bottom: 96px;
}

#lp-tech .case-block:last-child {
  margin-bottom: 0;
}

#lp-tech .case-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px 18px 18px;
  border-radius: 30px;
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  line-height: 1;
}

#lp-tech .case-frame {
  position: relative;
  border-radius: 60px;
  padding: 60px;
  margin-bottom: 48px;
}

#lp-tech .case-hero-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

#lp-tech .case-avatar {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

#lp-tech .case-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lp-tech .case-speech {
  flex: 1;
  background: white;
  border-radius: 30px;
  padding: 33px 23px;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

#lp-tech .case-speech::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: white;
}

#lp-tech .case-speech p {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-mid);
  line-height: 1.6;
}

#lp-tech .case-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#lp-tech .case-item {
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 16px;
  padding: 25px;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

#lp-tech .case-item-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

#lp-tech .case-item-icon svg {
  width: 24px;
  height: 24px;
}

#lp-tech .case-item-text {
  width: calc(100% - 64px);
}

#lp-tech .case-item-text h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

#lp-tech .case-item-text p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
}

#lp-tech .case-label-sales {
  background: var(--red);
}
#lp-tech .case-frame-sales {
  background: rgba(254, 232, 232, 1);
}
#lp-tech .case-avatar-sales {
  border: 3px solid var(--red);
}
#lp-tech .case-speech-sales {
  border: 1px solid rgba(230, 0, 18, 0.13);
}
#lp-tech .case-speech-sales::before {
  border-left: 1px solid rgba(230, 0, 18, 0.13);
  border-bottom: 1px solid rgba(230, 0, 18, 0.13);
}
#lp-tech .case-item-sales {
  border: 1px solid rgba(230, 0, 18, 0.13);
}
#lp-tech .case-item-icon-sales svg {
  stroke: var(--red);
}

#lp-tech .case-label-finance {
  background: var(--blue);
}
#lp-tech .case-frame-finance {
  background: rgba(232, 245, 254, 1);
}
#lp-tech .case-avatar-finance {
  border: 3px solid var(--blue);
}
#lp-tech .case-speech-finance {
  border: 1px solid rgba(37, 99, 235, 0.13);
}
#lp-tech .case-speech-finance::before {
  border-left: 1px solid rgba(37, 99, 235, 0.13);
  border-bottom: 1px solid rgba(37, 99, 235, 0.13);
}
#lp-tech .case-item-finance {
  border: 1px solid rgba(37, 99, 235, 0.13);
}
#lp-tech .case-item-icon-finance svg {
  stroke: var(--blue);
}

#lp-tech .case-label-marketing {
  background: var(--green);
}
#lp-tech .case-frame-marketing {
  background: rgba(242, 254, 232, 1);
}
#lp-tech .case-avatar-marketing {
  border: 3px solid var(--green);
}
#lp-tech .case-speech-marketing {
  border: 1px solid rgba(22, 163, 74, 0.13);
}
#lp-tech .case-speech-marketing::before {
  border-left: 1px solid rgba(22, 163, 74, 0.13);
  border-bottom: 1px solid rgba(22, 163, 74, 0.13);
}
#lp-tech .case-item-marketing {
  border: 1px solid rgba(22, 163, 74, 0.13);
}
#lp-tech .case-item-icon-marketing svg {
  stroke: var(--green);
}

#lp-tech .case-label-recruit {
  background: var(--yellow-dark);
}
#lp-tech .case-frame-recruit {
  background: rgba(254, 252, 232, 1);
}
#lp-tech .case-avatar-recruit {
  border: 3px solid var(--yellow-dark);
}
#lp-tech .case-speech-recruit {
  border: 1px solid rgba(234, 179, 8, 0.13);
}
#lp-tech .case-speech-recruit::before {
  border-left: 1px solid rgba(234, 179, 8, 0.13);
  border-bottom: 1px solid rgba(234, 179, 8, 0.13);
}
#lp-tech .case-item-recruit {
  border: 1px solid rgba(234, 179, 8, 0.13);
}
#lp-tech .case-item-icon-recruit svg {
  stroke: var(--yellow-dark);
}

#lp-tech .case-label-secretary {
  background: var(--purple);
}
#lp-tech .case-frame-secretary {
  background: rgba(240, 232, 254, 1);
}
#lp-tech .case-avatar-secretary {
  border: 3px solid var(--purple);
}
#lp-tech .case-speech-secretary {
  border: 1px solid rgba(124, 58, 237, 0.13);
}
#lp-tech .case-speech-secretary::before {
  border-left: 1px solid rgba(124, 58, 237, 0.13);
  border-bottom: 1px solid rgba(124, 58, 237, 0.13);
}
#lp-tech .case-item-secretary {
  border: 1px solid rgba(124, 58, 237, 0.13);
}
#lp-tech .case-item-icon-secretary svg {
  stroke: var(--purple);
}



/* ===========================
   ABOUT SECTION (レンジャーとは)
   =========================== */
#lp-tech .about {
  background: var(--bg-light);
  padding: 100px 0;
}

#lp-tech .about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .about-logo {
  position: relative;
  width: 80%;
  max-width: 450px;
  margin: 0 auto -80px;
  z-index: 1;
}

#lp-tech .about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  overflow: visible;
  display: flex;
  position: relative;
  align-items: center;
}

#lp-tech .about-text {
  flex: 1;
  padding: 40px 56px 56px 56px;
  border-right: 1px solid var(--border-light);
}

#lp-tech .about-label {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-mid);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 17px;
}

#lp-tech .about-badge {
  display: inline-block;
  background: linear-gradient(to right, var(--red), var(--purple));
  color: white;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 6px 18px;
  border-radius: 4px;
  transform: skewX(-12deg);
  margin: 0 4px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

#lp-tech .about-badge-inner {
  display: inline-block;
  transform: skewX(12deg);
}

#lp-tech .about-desc {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-mid);
  line-height: 2;
}

#lp-tech .about-char {
  flex: 0 0 391px;
  background: linear-gradient(128deg, #f8fafc 0%, #eff6ff 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

#lp-tech .about-char img {
  width: auto;
  max-height: 500px;
  object-fit: contain;
}

#lp-tech .about-cta {
  text-align: center;
  margin-top: 48px;
}

#lp-tech .about-cta .btn-primary {
  font-size: 1.5rem;
  padding: 24px 48px;
  border-radius: 30px;
}

/* ===========================
   SAAS SECTION
   =========================== */
#lp-tech .saas {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
}

#lp-tech .saas-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .saas-header {
  text-align: center;
  margin-bottom: 48px;
}

#lp-tech .saas-grid-wrap {
  background: white;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 40px;
  padding: 57px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

#lp-tech .saas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  opacity: 0.8;
}

#lp-tech .saas-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

#lp-tech .saas-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-light);
}

#lp-tech .saas-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===========================
   FLOW SECTION (ご利用の流れ)
   =========================== */
#lp-tech .flow {
  background: var(--bg-light);
  padding: 128px 0;
}

#lp-tech .flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .flow-header {
  text-align: center;
  margin-bottom: 80px;
}

#lp-tech .flow-steps {
  display: flex;
  gap: 48px;
  position: relative;
}

#lp-tech .flow-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  margin: auto;
  background: var(--bg-slate);
  z-index: 0;
}

#lp-tech .flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lp-tech .flow-step-num {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--bg-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

#lp-tech .flow-step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 33px 30px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

#lp-tech .flow-step-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}

#lp-tech .flow-step-card p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
}

#lp-tech .flow-step-card img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  margin-top: auto;
}

/* ===========================
   FAQ SECTION
   =========================== */
#lp-tech .faq {
  background: white;
  padding: 128px 0;
}

#lp-tech .faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .faq-header {
  text-align: center;
  margin-bottom: 80px;
}

#lp-tech .faq-list {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 33px;
}

#lp-tech .faq-item {
  border-bottom: 1px solid var(--border-light);
}

#lp-tech .faq-item:last-child {
  border-bottom: none;
}

#lp-tech .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  text-align: left;
}

#lp-tech .faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

#lp-tech .faq-q-mark {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.4;
  flex-shrink: 0;
}

#lp-tech .faq-q-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-mid);
  line-height: 1.5;
}

#lp-tech .faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

#lp-tech .faq-toggle.open {
  transform: rotate(45deg);
}

#lp-tech .faq-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-light);
}

#lp-tech .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

#lp-tech .faq-answer.open {
  max-height: 200px;
}

#lp-tech .faq-answer-inner {
  padding: 0 0 24px 44px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   CTA / DOWNLOAD SECTION
   =========================== */
#lp-tech .cta-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

#lp-tech .cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 80px;
  align-items: center;
}

#lp-tech .cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#lp-tech .cta-brochure {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#lp-tech .cta-brochure h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.4;
}

#lp-tech .cta-brochure-tel {
  text-align: center;
}
#lp-tech .cta-brochure-tel a {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red-dark);
}

#lp-tech .cta-brochure-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

#lp-tech .cta-brochure-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#lp-tech .cta-recommend {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid white;
  border-radius: 32px;
  padding: 41px;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

#lp-tech .cta-recommend h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red-dark);
  text-align: center;
  margin-bottom: 32px;
}

#lp-tech .cta-recommend-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#lp-tech .cta-recommend-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

#lp-tech .cta-check {
  width: 24px;
  height: 24px;
  background: #fef2f2;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

#lp-tech .cta-check svg {
  width: 16px;
  height: 16px;
  stroke: var(--red-dark);
}

#lp-tech .cta-recommend-item span {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

#lp-tech .cta-right {
  flex: 0 0 480px;
  max-width: 480px;
}

#lp-tech .cta-form-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 49px;
}


/* ===========================
   TESTIMONIALS
   =========================== */
#lp-tech .testimonials {
  background: white;
  padding: 128px 0;
}

#lp-tech .testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#lp-tech .testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

#lp-tech .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

#lp-tech .testimonial-card {
  width: calc(33.3333% - 24px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s;
}

#lp-tech .testimonial-card:hover {
  transform: translateY(-2px);
}

#lp-tech .testimonial-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#lp-tech .testimonial-img img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

#lp-tech .testimonial-text {
  padding: 24px 32px 32px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
}

#lp-tech .testimonial-text h3 {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 700;
}


/* ===========================
   RESPONSIVE - TABLET (768-1024px)
   =========================== */
@media (max-width: 1024px) {
  :root {
    --container-px: 40px;
  }

  #lp-tech .header-btns {
    display: none;
  }

  #lp-tech .hamburger {
    display: flex;
  }

  #lp-tech .hero-inner {
    padding: 60px 40px;
    gap: 24px;
  }

  #lp-tech .hero-content {
    flex: 0 0 50%;
    max-width: 50%;
  }

  #lp-tech .hero-char {
    flex: 0 0 45%;
    max-width: 45%;
  }

  #lp-tech .hero-heading h1,
  #lp-tech .hero-heading h2 {
    font-size: 2.4rem;
  }

  #lp-tech .stats-inner {
    padding: 0 40px;
    gap: 40px;
  }

  #lp-tech .aims-cards {
    gap: 24px;
  }

  #lp-tech .strengths-cards {
    gap: 24px;
  }

  #lp-tech .strength-card {
    width: calc(50% - 16px);
  }

  #lp-tech .case-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #lp-tech .case-label {
    font-size: 1.6rem;
  }

  #lp-tech .about-card {
    flex-direction: column;
  }

  #lp-tech .about-char {
    flex: none;
  }

  #lp-tech .about-text {
    padding-top: 100px;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  #lp-tech .cta-inner {
    padding: 0 40px;
    flex-direction: column;
    gap: 48px;
  }

  #lp-tech .cta-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

}

/* ===========================
   RESPONSIVE - MOBILE (max 767px)
   =========================== */
@media (max-width: 767px) {
  :root {
    --container-px: 20px;
  }

  #lp-tech .hero {
    min-height: auto;
  }

  #lp-tech .hero-inner {
    flex-direction: column-reverse;
    padding: 40px 20px;
    align-items: flex-start;
    gap: 0;
  }

  #lp-tech .hero-content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  #lp-tech .hero-heading h1,
  #lp-tech .hero-heading h2 {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
  }

  #lp-tech .hero-sub p {
    font-size: 0.9rem;
  }

  #lp-tech .hero-btns {
    flex-direction: column;
    gap: 16px;
  }

  #lp-tech .hero-btns .btn-primary {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  #lp-tech .hero-char {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 280px;
    align-self: center;
  }

  #lp-tech .hero-char img {
    height: 280px;
  }

  #lp-tech .hero-logo-badge {
    width: 200px;
    height: auto;
  }

  #lp-tech .section-title {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }

  #lp-tech .stats-bar {
    padding: 32px 0;
  }

  #lp-tech .stats-inner {
    padding: 0 20px;
    gap: 10px;
  }

  #lp-tech .stat-label {
    font-size: 0.7rem;
  }

  #lp-tech .stat-value {
    font-size: 1rem;
  }

  #lp-tech .aims {
    padding: 64px 0;
  }

  #lp-tech .aims-cards {
    grid-template-columns: 1fr;
  }

  #lp-tech .strengths {
    padding: 64px 0;
  }

  #lp-tech .strengths-cards {
    flex-direction: column;
    gap: 24px;
  }

  #lp-tech .strength-card {
    width: 100%;
    max-width: 100%;
  }

  #lp-tech .cases {
    padding: 64px 0;
  }

  #lp-tech .cases-header {
    margin-bottom: 48px;
  }

  #lp-tech .case-block {
    margin-bottom: 64px;
  }

  #lp-tech .case-frame {
    padding: 30px 20px;
    border-radius: 24px;
  }

  #lp-tech .case-hero-row {
    flex-direction: column;
    align-items: center;
  }

  #lp-tech .case-speech::before {
    left: 50%;
    top: -12px;
    transform: translateX(-50%) rotate(135deg);
  }

  #lp-tech .case-speech p {
    font-size: 1rem;
  }

  #lp-tech .case-items-grid {
    grid-template-columns: 1fr;
  }

  #lp-tech .about {
    padding: 64px 0;
  }

  #lp-tech .about-logo {
    margin-bottom: -12vw;
  }

  #lp-tech .about-card {
    flex-direction: column;
    padding-top: 40px;
  }

  #lp-tech .about-text {
    padding: 10vw 24px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  #lp-tech .about-char {
    flex: none;
  }

  #lp-tech .about-desc {
    font-size: 1rem;
  }

  #lp-tech .saas {
    padding: 64px 0;
  }

  #lp-tech .saas-grid-wrap {
    padding: 32px 24px;
  }

  #lp-tech .flow {
    padding: 64px 0;
  }

  #lp-tech .flow-steps {
    flex-direction: column;
    gap: 24px;
  }

  #lp-tech .flow-steps::before {
    display: none;
  }

  #lp-tech .flow-step {
    width: 100%;
  }

  #lp-tech .faq {
    padding: 64px 0;
  }

  #lp-tech .faq-list {
    padding: 20px;
  }

  #lp-tech .faq-q-mark {
    margin-top: -0.2rem;
  }

  #lp-tech .faq-q-label {
    font-size: 0.95rem;
  }

  #lp-tech .cta-section {
    padding: 64px 0;
  }

  #lp-tech .cta-inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  #lp-tech .cta-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  #lp-tech .cta-form-card {
    padding: 32px 24px;
  }

  #lp-tech .form-row {
    flex-direction: column;
    gap: 16px;
  }

  #lp-tech .testimonials {
    padding: 64px 0;
  }

  #lp-tech .testimonial-card {
    width: 100%;
  }

}
