    .lp-ai-crostyle {
      --primary: #2B8FD9;
      --primary-dark: #1E6FB3;
      --primary-light: #E8F4FC;
      --accent: #FF6B35;
      --accent-dark: #E55A28;
      --dark: #3C4858;
      --dark-secondary: #4A5568;
      --gray-900: #1A202C;
      --gray-700: #4A5568;
      --gray-500: #718096;
      --gray-300: #CBD5E0;
      --gray-200: #E2E8F0;
      --gray-100: #F7FAFC;
      --white: #FFFFFF;
      --success: #10B981;
      --warning: #F59E0B;
      --error: #EF4444;
      --gradient-primary: linear-gradient(135deg, #2B8FD9 0%, #1E6FB3 100%);
      --gradient-hero: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;

      font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-900);
      line-height: 1.8;
      background: var(--white);
      overflow-x: hidden;
      padding-bottom: 100px;
      scroll-behavior: smooth;
      font-size: 18px;
    }

    .lp-ai-crostyle * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .lp-ai-crostyle .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
    }

    .lp-ai-crostyle .container-wide {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .lp-ai-crostyle h1,
    .lp-ai-crostyle h2,
    .lp-ai-crostyle h3,
    .lp-ai-crostyle h4,
    .lp-ai-crostyle h5,
    .lp-ai-crostyle h6 {
      font-weight: 700;
      line-height: 1.4;
    }

    .lp-ai-crostyle .section-label {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }

    .lp-ai-crostyle .section-title {
      font-size: clamp(34px, 4.5vw, 52px);
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .lp-ai-crostyle .section-subtitle {
      font-size: 22px;
      color: var(--gray-700);
      max-width: 750px;
    }

    .lp-ai-crostyle .text-center {
      text-align: center;
    }

    .lp-ai-crostyle .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .lp-ai-crostyle .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 18px 36px;
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      border-radius: var(--radius-md);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
    }

    .lp-ai-crostyle .btn-primary {
      background: var(--gradient-primary);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(43, 143, 217, 0.3);
    }

    .lp-ai-crostyle .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(43, 143, 217, 0.4);
    }

    .lp-ai-crostyle .btn-accent {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }

    .lp-ai-crostyle .btn-accent:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    }

    .lp-ai-crostyle .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .lp-ai-crostyle .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
    }

    .lp-ai-crostyle .btn-lg {
      padding: 22px 52px;
      font-size: 19px;
      border-radius: var(--radius-lg);
    }

    /* Header */
    .lp-ai-crostyle .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 120px;
    }

    .lp-ai-crostyle .header.scrolled {
      height: 80px;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .lp-ai-crostyle .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .lp-ai-crostyle .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .lp-ai-crostyle .logo img {
      height: 100px;
      width: auto;
      transition: all 0.3s ease;
    }

    .lp-ai-crostyle .header.scrolled .logo img {
      height: 70px;
    }

    .lp-ai-crostyle .nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .lp-ai-crostyle .lp-nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .lp-ai-crostyle .lp-nav-links a {
      text-decoration: none;
      color: var(--gray-700);
      font-weight: 500;
      font-size: 16px;
      transition: color 0.2s;
    }

    .lp-ai-crostyle .lp-nav-links a:hover {
      color: var(--primary);
    }

    .lp-ai-crostyle .nav-cta {
      display: flex;
      gap: 12px;
    }

    .lp-ai-crostyle .nav-cta .btn {
      padding: 12px 24px;
      font-size: 15px;
    }

    .lp-ai-crostyle .header.scrolled .nav-cta .btn {
      padding: 10px 20px;
      font-size: 14px;
    }

    .lp-ai-crostyle .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .lp-ai-crostyle .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      margin: 6px 0;
      transition: all 0.3s;
    }

    /* Fixed Footer CTA */
    .lp-ai-crostyle .fixed-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
      z-index: 999;
      padding: 18px 0;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .lp-ai-crostyle .fixed-footer.visible {
      transform: translateY(0);
    }

    .lp-ai-crostyle .fixed-footer-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .lp-ai-crostyle .fixed-footer-phone {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .lp-ai-crostyle .fixed-footer-phone-label {
      font-size: 14px;
      color: var(--gray-500);
    }

    .lp-ai-crostyle .fixed-footer-phone-number {
      font-family: 'Inter', sans-serif;
      font-size: 38px;
      font-weight: 800;
      color: var(--accent);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lp-ai-crostyle .fixed-footer-phone-number svg {
      width: 36px;
      height: 36px;
    }

    .lp-ai-crostyle .fixed-footer-buttons {
      display: flex;
      gap: 16px;
    }

    .lp-ai-crostyle .fixed-footer .btn {
      padding: 16px 32px;
      font-size: 18px;
      font-weight: 700;
    }

    .lp-ai-crostyle .fixed-footer .btn-outline-white {
      background: var(--white);
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .lp-ai-crostyle .fixed-footer .btn-outline-white:hover {
      background: var(--primary-light);
    }

    .lp-ai-crostyle .fixed-footer .btn-accent {
      background: var(--accent);
      color: var(--white);
      font-size: 18px;
    }

    .lp-ai-crostyle .fixed-footer .btn-text-full {
      display: inline;
    }

    .lp-ai-crostyle .fixed-footer .phone-number-text {
      display: inline;
    }

    .lp-ai-crostyle .fixed-footer .phone-mobile-text {
      display: none;
    }

    .lp-ai-crostyle .fixed-footer .btn-text-short {
      display: none;
    }

    /* Hero Section */
    .lp-ai-crostyle .hero {
      padding: 160px 0 100px;
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
    }

    .lp-ai-crostyle .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(43, 143, 217, 0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .lp-ai-crostyle .hero-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .lp-ai-crostyle .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: var(--primary-light);
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 24px;
    }

    .lp-ai-crostyle .hero-title {
      font-size: clamp(36px, 4.5vw, 52px);
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .lp-ai-crostyle .hero-title .highlight {
      color: var(--primary);
    }

    .lp-ai-crostyle .hero-title .time {
      color: var(--accent);
      position: relative;
    }

    .lp-ai-crostyle .hero-subtitle {
      font-size: 20px;
      color: var(--gray-700);
      margin-bottom: 36px;
      line-height: 1.9;
    }

    .lp-ai-crostyle .hero-subtitle strong {
      color: var(--dark);
    }

    .lp-ai-crostyle .hero-cta {
      display: flex;
      gap: 16px;
    }

    /* PC: show desktop CTA, hide mobile CTA */
    .lp-ai-crostyle .hero-cta-desktop {
      display: flex;
      align-items: stretch;
    }

    .lp-ai-crostyle .hero-cta-desktop .btn {
      height: 100%;
    }

    .lp-ai-crostyle .hero-cta-mobile {
      display: none;
      flex-wrap: wrap;
      margin-bottom: 44px;
    }

    /* FV資料請求ボタンの下線余白 */
    .lp-ai-crostyle .hero-cta-desktop .btn-outline {
      margin-bottom: 16px;
    }

    .lp-ai-crostyle .hero-stats {
      display: flex;
      gap: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--gray-200);
    }

    .lp-ai-crostyle .hero-stat {
      text-align: left;
    }

    .lp-ai-crostyle .hero-stat-value {
      font-family: 'Inter', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .lp-ai-crostyle .hero-stat-value span {
      font-size: 22px;
    }

    .lp-ai-crostyle .hero-stat-label {
      font-size: 14px;
      color: var(--gray-500);
      margin-top: 6px;
    }

    .lp-ai-crostyle .hero-visual {
      position: relative;
    }

    .lp-ai-crostyle .hero-image {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    }

    /* Problems Section */
    .lp-ai-crostyle .problems {
      padding: 110px 0;
      background: var(--gray-100);
    }

    .lp-ai-crostyle .problems-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .problems-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 950px;
      margin: 0 auto 60px;
    }

    .lp-ai-crostyle .problem-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .lp-ai-crostyle .problem-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .lp-ai-crostyle .problem-checkbox {
      width: 28px;
      height: 28px;
      border: 2px solid var(--gray-300);
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lp-ai-crostyle .problem-checkbox.checked {
      background: var(--accent);
      border-color: var(--accent);
    }

    .lp-ai-crostyle .problem-checkbox.checked svg {
      width: 16px;
      height: 16px;
      color: var(--white);
    }

    .lp-ai-crostyle .problem-text {
      font-size: 17px;
      font-weight: 500;
      color: var(--gray-700);
      line-height: 1.5;
    }

    .lp-ai-crostyle .problems-solution {
      text-align: center;
      padding: 52px;
      background: var(--gradient-primary);
      border-radius: var(--radius-xl);
      color: var(--white);
      position: relative;
    }

    .lp-ai-crostyle .problems-solution-arrow {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .lp-ai-crostyle .problems-solution-text {
      font-size: 28px;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
    }

    .lp-ai-crostyle .problems-solution-logo {
      height: 80px;
      margin-left: 16px;
      vertical-align: middle;
    }

    /* Service Overview */
    .lp-ai-crostyle .service-overview {
      padding: 110px 0;
      background: var(--white);
    }

    .lp-ai-crostyle .service-overview-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .service-overview-text {
      font-size: 20px;
      color: var(--gray-700);
      text-align: center;
      max-width: 850px;
      margin: 0 auto 60px;
      line-height: 2;
    }

    .lp-ai-crostyle .service-overview-text strong {
      color: var(--primary);
    }

    .lp-ai-crostyle .before-after-image {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: block;
      border-radius: var(--radius-lg);
    }

    /* Before/After PC/モバイル切り替え */
    .lp-ai-crostyle .before-after-desktop {
      display: block;
    }

    .lp-ai-crostyle .before-after-mobile {
      display: none;
    }

    .lp-ai-crostyle .before-after-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-md);
    }

    .lp-ai-crostyle .before-card {
      border: 2px solid var(--gray-300);
    }

    .lp-ai-crostyle .after-card {
      border: 2px solid var(--success);
      background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    }

    .lp-ai-crostyle .before-after-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--gray-200);
    }

    .lp-ai-crostyle .before-after-label {
      font-size: 14px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
    }

    .lp-ai-crostyle .before-card .before-after-label {
      background: var(--gray-200);
      color: var(--gray-700);
    }

    .lp-ai-crostyle .after-card .before-after-label {
      background: var(--success);
      color: var(--white);
    }

    .lp-ai-crostyle .before-after-subtitle {
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
    }

    .lp-ai-crostyle .before-after-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .lp-ai-crostyle .before-after-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      font-size: 17px;
      font-weight: 600;
      color: var(--gray-700);
      border-bottom: 1px solid var(--gray-100);
    }

    .lp-ai-crostyle .before-after-list li:last-child {
      border-bottom: none;
    }

    .lp-ai-crostyle .before-card .before-after-list li svg {
      color: var(--error);
      flex-shrink: 0;
    }

    .lp-ai-crostyle .after-card .before-after-list li svg {
      color: var(--success);
      flex-shrink: 0;
    }

    .lp-ai-crostyle .before-after-arrow-mobile {
      display: flex;
      justify-content: center;
      padding: 16px 0;
    }

    .lp-ai-crostyle .before-after-arrow-mobile svg {
      color: var(--primary);
      width: 32px;
      height: 32px;
    }

    /* Features Section */
    .lp-ai-crostyle .features {
      padding: 110px 0;
      background: var(--gray-100);
    }

    .lp-ai-crostyle .features-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .lp-ai-crostyle .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .lp-ai-crostyle .feature-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 44px 32px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .lp-ai-crostyle .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .lp-ai-crostyle .feature-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);
    }

    .lp-ai-crostyle .feature-card:hover::before {
      transform: scaleX(1);
    }

    .lp-ai-crostyle .feature-number {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .lp-ai-crostyle .feature-icon {
      width: 88px;
      height: 88px;
      background: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .lp-ai-crostyle .feature-icon svg {
      width: 44px;
      height: 44px;
      color: var(--white);
    }

    .lp-ai-crostyle .feature-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .lp-ai-crostyle .feature-desc {
      font-size: 16px;
      color: var(--gray-700);
      line-height: 1.9;
    }

    /* Feature Detail Sections */
    .lp-ai-crostyle .feature-detail {
      padding: 110px 0;
      background: var(--white);
    }

    .lp-ai-crostyle .feature-detail:nth-child(even) {
      background: var(--gray-100);
    }

    .lp-ai-crostyle .feature-detail-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .lp-ai-crostyle .feature-detail-reverse .feature-detail-inner {
      direction: rtl;
    }

    .lp-ai-crostyle .feature-detail-reverse .feature-detail-inner > * {
      direction: ltr;
    }

    .lp-ai-crostyle .feature-detail-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--primary-light);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .lp-ai-crostyle .feature-detail-title {
      font-size: 46px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 28px;
      line-height: 1.5;
      width: 120%;
    }

    .lp-ai-crostyle .feature-detail-title .highlight {
      color: var(--primary);
    }

    .lp-ai-crostyle .feature-detail-title-small {
      font-size: 30px;
      display: block;
    }

    .lp-ai-crostyle .feature-detail-desc {
      font-size: 22px;
      color: var(--gray-700);
      margin-bottom: 40px;
      line-height: 2;
    }

    .lp-ai-crostyle .feature-detail-list {
      list-style: none;
    }

    .lp-ai-crostyle .feature-detail-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--gray-200);
      font-size: 22px;
    }

    .lp-ai-crostyle .feature-detail-list li:last-child {
      border-bottom: none;
    }

    .lp-ai-crostyle .feature-detail-list .check {
      width: 24px;
      height: 24px;
      background: var(--success);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .lp-ai-crostyle .feature-detail-list .check svg {
      width: 14px;
      height: 14px;
      color: var(--white);
    }

    .lp-ai-crostyle .feature-detail-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .lp-ai-crostyle .feature-detail-image {
      width: 100%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
    }

    .lp-ai-crostyle .feature-detail-image-second {
      display: block;
    }

    .lp-ai-crostyle .document-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .lp-ai-crostyle .document-item {
      background: var(--gray-100);
      padding: 18px;
      border-radius: var(--radius-sm);
    }

    .lp-ai-crostyle .document-item-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .lp-ai-crostyle .document-item-desc {
      font-size: 15px;
      color: var(--gray-500);
    }

    .lp-ai-crostyle .check-levels {
      display: flex;
      gap: 16px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .lp-ai-crostyle .check-level {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      background: var(--white);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
    }

    .lp-ai-crostyle .check-level-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .lp-ai-crostyle .check-level-dot.error { background: var(--error); }
    .lp-ai-crostyle .check-level-dot.warning { background: var(--warning); }
    .lp-ai-crostyle .check-level-dot.info { background: var(--primary); }

    /* Results Section */
    .lp-ai-crostyle .results {
      padding: 110px 0;
      background: var(--white);
    }

    .lp-ai-crostyle .results-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .results-card {
      background: linear-gradient(135deg, var(--primary-light) 0%, #F0F7FF 100%);
      border-radius: var(--radius-xl);
      padding: 60px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      align-items: center;
    }

    .lp-ai-crostyle .results-metric {
      text-align: center;
    }

    .lp-ai-crostyle .results-graph {
      margin-bottom: 32px;
    }

    .lp-ai-crostyle .results-bar-container {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .lp-ai-crostyle .results-bar-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .lp-ai-crostyle .results-bar-label {
      font-size: 16px;
      font-weight: 600;
      color: var(--gray-700);
      min-width: 70px;
      text-align: right;
    }

    .lp-ai-crostyle .results-bar {
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 16px;
      transition: width 0.8s ease-out;
    }

    .lp-ai-crostyle .results-bar-before {
      width: 100%;
      background: linear-gradient(90deg, #94a3b8, #64748b);
    }

    .lp-ai-crostyle .results-bar-after {
      width: 30%;
      background: linear-gradient(90deg, var(--success), #059669);
    }

    .lp-ai-crostyle .results-bar-value {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
    }

    .lp-ai-crostyle .results-metric-value {
      font-family: 'Inter', sans-serif;
      font-size: 110px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .lp-ai-crostyle .results-metric-value span {
      font-size: 52px;
    }

    .lp-ai-crostyle .results-metric-label {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      margin-top: 12px;
    }

    .lp-ai-crostyle .results-content h3 {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .lp-ai-crostyle .results-content p {
      font-size: 18px;
      color: var(--gray-700);
      margin-bottom: 36px;
      line-height: 1.9;
    }

    .lp-ai-crostyle .results-comparison {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 24px;
      align-items: center;
    }

    .lp-ai-crostyle .results-before, .results-after {
      padding: 28px;
      border-radius: var(--radius-md);
      text-align: center;
    }

    .lp-ai-crostyle .results-before {
      background: var(--white);
      border: 2px dashed var(--gray-300);
    }

    .lp-ai-crostyle .results-after {
      background: var(--white);
      border: 2px solid var(--success);
    }

    .lp-ai-crostyle .results-label {
      font-size: 20px;
      font-weight: 700;
      color: var(--gray-500);
      margin-bottom: 8px;
    }

    .lp-ai-crostyle .results-time {
      font-family: 'Inter', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--dark);
    }

    .lp-ai-crostyle .results-after .results-time {
      color: var(--success);
    }

    .lp-ai-crostyle .results-arrow {
      width: 52px;
      height: 52px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
    }

    /* Comparison Section */
    .lp-ai-crostyle .comparison {
      padding: 110px 0;
      background: var(--gray-100);
    }

    .lp-ai-crostyle .comparison-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .comparison-table-wrapper {
      overflow-x: auto;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .lp-ai-crostyle .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 700px;
    }

    .lp-ai-crostyle .comparison-table th,
    .lp-ai-crostyle .comparison-table td {
      padding: 20px 22px;
      text-align: center;
      border-bottom: 1px solid var(--gray-200);
      font-size: 16px;
    }

    .lp-ai-crostyle .comparison-table thead th {
      background: var(--gray-100);
      font-weight: 600;
      color: var(--gray-700);
    }

    .lp-ai-crostyle .comparison-table thead th:first-child {
      text-align: left;
    }

    .lp-ai-crostyle .comparison-table thead th.highlight {
      background: var(--primary);
      color: var(--white);
    }

    .lp-ai-crostyle .comparison-table tbody th {
      text-align: left;
      font-weight: 500;
      color: var(--gray-700);
    }

    .lp-ai-crostyle .comparison-table td.highlight {
      background: rgba(43, 143, 217, 0.05);
      font-weight: 600;
      color: var(--primary);
    }

    .lp-ai-crostyle .comparison-table .check-icon {
      color: var(--gray-500);
      font-size: 24px;
      font-weight: 700;
    }

    .lp-ai-crostyle .comparison-table td.highlight .check-icon {
      color: var(--success);
      font-size: 28px;
    }

    .lp-ai-crostyle .comparison-table .dash-icon {
      color: var(--gray-300);
    }

    /* Pricing Section */
    .lp-ai-crostyle .pricing {
      padding: 140px 0 110px;
      background: var(--white);
    }

    .lp-ai-crostyle .pricing-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .pricing-table-wrapper {
      overflow-x: auto;
      margin-bottom: 32px;
    }

    .lp-ai-crostyle .pricing-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-width: 900px;
    }

    .lp-ai-crostyle .pricing-table th,
    .lp-ai-crostyle .pricing-table td {
      padding: 20px 16px;
      padding-top: 28px;
      text-align: center;
      border-bottom: 1px solid var(--gray-100);
      font-size: 15px;
    }

    .lp-ai-crostyle .pricing-table thead th {
      background: var(--dark);
      color: var(--white);
      font-weight: 600;
    }

    .lp-ai-crostyle .pricing-table thead th:first-child {
      background: var(--dark-secondary);
    }

    .lp-ai-crostyle .pricing-table thead th.popular {
      background: var(--primary);
      position: relative;
    }

    .lp-ai-crostyle .pricing-table thead th.popular::before {
      content: '一番人気';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      padding: 1px 14px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .lp-ai-crostyle .pricing-table tbody tr:hover {
      background: var(--gray-100);
    }

    .lp-ai-crostyle .pricing-table tbody th {
      text-align: left;
      font-weight: 600;
      color: var(--gray-700);
      background: var(--gray-100);
    }

    .lp-ai-crostyle .pricing-table .price {
      font-family: 'Inter', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--primary);
    }

    .lp-ai-crostyle .pricing-table .price-suffix {
      font-size: 14px;
      color: var(--primary);
      font-weight: 600;
    }

    .lp-ai-crostyle .pricing-table .price-free {
      font-size: 20px;
      font-weight: 700;
      color: var(--accent);
    }

    .lp-ai-crostyle .pricing-table td.popular-col {
      background: rgba(43, 143, 217, 0.05);
    }

    .lp-ai-crostyle .pricing-note {
      text-align: center;
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.8;
    }

    /* Process Section */
    .lp-ai-crostyle .process {
      padding: 110px 0;
      background: var(--dark);
      color: var(--white);
    }

    .lp-ai-crostyle .process-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .lp-ai-crostyle .process-header .section-label {
      color: var(--accent);
    }

    .lp-ai-crostyle .process-header .section-title {
      color: var(--white);
    }

    .lp-ai-crostyle .process-header .section-subtitle {
      color: var(--gray-300);
      font-size: 20px;
    }

    .lp-ai-crostyle .process-flow {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      position: relative;
    }

    .lp-ai-crostyle .process-flow::before {
      content: '';
      position: absolute;
      top: 55px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .lp-ai-crostyle .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .lp-ai-crostyle .process-step-number {
      width: 110px;
      height: 110px;
      background: var(--dark-secondary);
      border: 3px solid var(--primary);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      transition: all 0.3s ease;
    }

    .lp-ai-crostyle .process-step:hover .process-step-number {
      background: var(--primary);
      transform: scale(1.1);
    }

    .lp-ai-crostyle .process-step-number span {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
    }

    .lp-ai-crostyle .process-step:hover .process-step-number span {
      color: var(--white);
    }

    .lp-ai-crostyle .process-step-icon {
      width: 36px;
      height: 36px;
      color: var(--white);
    }

    .lp-ai-crostyle .process-step-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .lp-ai-crostyle .process-step-desc {
      font-size: 14px;
      color: var(--gray-300);
      line-height: 1.7;
    }

    /* FAQ Section */
    .lp-ai-crostyle .faq {
      padding: 110px 0;
      background: var(--gray-100);
    }

    .lp-ai-crostyle .faq-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .faq-list {
      max-width: 850px;
      margin: 0 auto;
    }

    .lp-ai-crostyle .faq-item {
      background: var(--white);
      border-radius: var(--radius-md);
      margin-bottom: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .lp-ai-crostyle .faq-question {
      width: 100%;
      padding: 26px 32px;
      background: none;
      border: none;
      text-align: left;
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }

    .lp-ai-crostyle .faq-question:hover {
      color: var(--primary);
    }

    .lp-ai-crostyle .faq-icon {
      width: 24px;
      height: 24px;
      color: var(--primary);
      transition: transform 0.3s;
    }

    .lp-ai-crostyle .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .lp-ai-crostyle .faq-answer {
      padding: 0 32px 26px;
      font-size: 17px;
      color: var(--gray-700);
      line-height: 1.9;
      display: none;
    }

    .lp-ai-crostyle .faq-item.active .faq-answer {
      display: block;
    }

    /* CTA Section */
    .lp-ai-crostyle .cta {
      padding: 110px 0;
      background: var(--gradient-primary);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

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

    .lp-ai-crostyle .cta-content {
      position: relative;
      z-index: 1;
    }

    .lp-ai-crostyle .cta-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 18px;
    }

    .lp-ai-crostyle .cta-subtitle {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 44px;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.9;
    }

    .lp-ai-crostyle .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .lp-ai-crostyle .cta .btn-white {
      background: var(--white);
      color: var(--primary);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .lp-ai-crostyle .cta .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .lp-ai-crostyle .cta-phone {
      color: rgba(255, 255, 255, 0.9);
      font-size: 17px;
    }

    .lp-ai-crostyle .cta-phone a {
      color: var(--white);
      font-weight: 800;
      font-size: 36px;
      text-decoration: none;
    }

    /* Back to Top Button */
    .lp-ai-crostyle .back-to-top {
      position: fixed;
      bottom: 150px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(43, 143, 217, 0.4);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
    }

    .lp-ai-crostyle .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lp-ai-crostyle .back-to-top:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }

    .lp-ai-crostyle .back-to-top svg {
      width: 24px;
      height: 24px;
    }

    /* Booking Section */
    .lp-ai-crostyle .booking {
      padding: 110px 0;
      background: var(--gray-100);
    }

    .lp-ai-crostyle .booking-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .booking-content {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 60px;
      align-items: start;
    }

    .lp-ai-crostyle .booking-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .lp-ai-crostyle .booking-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--white);
      padding: 24px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    .lp-ai-crostyle .booking-info-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .lp-ai-crostyle .booking-info-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
    }

    .lp-ai-crostyle .booking-info-text h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .lp-ai-crostyle .booking-info-text p {
      font-size: 18px;
      color: var(--gray-700);
    }

    .lp-ai-crostyle .booking-phone a {
      font-family: 'Inter', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--accent);
      text-decoration: none;
    }

    .lp-ai-crostyle .booking-hours {
      font-size: 14px;
      color: var(--gray-500);
    }

    .lp-ai-crostyle .booking-form-container {
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .lp-ai-crostyle .google-calendar-embed {
      width: 100%;
      min-height: 900px;
      border-radius: 8px;
      overflow: hidden;
    }

    .lp-ai-crostyle .google-calendar-embed iframe {
      width: 100%;
      min-height: 900px;
      border: none;
      border-radius: 8px;
    }

    .lp-ai-crostyle .booking-form .form-group {
      margin-bottom: 24px;
    }

    .lp-ai-crostyle .booking-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .lp-ai-crostyle .booking-form label {
      display: block;
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .lp-ai-crostyle .booking-form .required {
      font-size: 12px;
      color: var(--error);
      margin-left: 4px;
    }

    .lp-ai-crostyle .booking-form input,
    .lp-ai-crostyle .booking-form textarea {
      width: 100%;
      padding: 14px 16px;
      font-size: 16px;
      border: 2px solid var(--gray-200);
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .lp-ai-crostyle .booking-form input:focus,
    .lp-ai-crostyle .booking-form textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(43, 143, 217, 0.1);
    }

    .lp-ai-crostyle .booking-form input::placeholder,
    .lp-ai-crostyle .booking-form textarea::placeholder {
      color: var(--gray-300);
    }

    .lp-ai-crostyle .booking-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .lp-ai-crostyle .booking-form .form-checkbox-group {
      margin-top: 8px;
    }

    .lp-ai-crostyle .booking-form .checkbox-label {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      padding: 16px 20px;
      background: var(--primary-light);
      border-radius: var(--radius-md);
      border: 2px solid transparent;
      transition: all 0.2s ease;
    }

    .lp-ai-crostyle .booking-form .checkbox-label:hover {
      border-color: var(--primary);
    }

    .lp-ai-crostyle .booking-form .checkbox-label input[type="checkbox"] {
      width: 22px;
      height: 22px;
      accent-color: var(--primary);
      cursor: pointer;
      flex-shrink: 0;
    }

    .lp-ai-crostyle .booking-form .checkbox-text {
      font-size: 16px;
      color: var(--gray-700);
      font-weight: 500;
    }

    .lp-ai-crostyle .booking-submit {
      width: 100%;
      margin-top: 16px;
    }

    /* Company Section */
    .lp-ai-crostyle .company {
      padding: 110px 0;
      background: var(--white);
    }

    .lp-ai-crostyle .company-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .company-card {
      background: var(--gray-100);
      border-radius: var(--radius-xl);
      padding: 60px;
      max-width: 850px;
      margin: 0 auto;
    }

    .lp-ai-crostyle .company-table {
      width: 100%;
    }

    .lp-ai-crostyle .company-table tr {
      border-bottom: 1px solid var(--gray-200);
    }

    .lp-ai-crostyle .company-table tr:last-child {
      border-bottom: none;
    }

    .lp-ai-crostyle .company-table th,
    .lp-ai-crostyle .company-table td {
      padding: 22px 0;
      text-align: left;
      vertical-align: top;
    }

    .lp-ai-crostyle .company-table th {
      width: 150px;
      font-weight: 600;
      color: var(--gray-500);
      font-size: 18px;
    }

    .lp-ai-crostyle .company-table td {
      color: var(--dark);
      font-size: 20px;
    }

    .lp-ai-crostyle .company-table a {
      color: var(--primary);
      text-decoration: none;
    }

    .lp-ai-crostyle .company-table a:hover {
      text-decoration: underline;
    }

    /* Footer */
    .lp-ai-crostyle .footer {
      background: var(--dark);
      color: var(--white);
      padding: 80px 0 40px;
    }

    .lp-ai-crostyle .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .lp-ai-crostyle .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .lp-ai-crostyle .footer-logo {
      height: 36px;
      filter: brightness(0) invert(1);
    }

    .lp-ai-crostyle .footer-desc {
      font-size: 15px;
      color: var(--gray-300);
      line-height: 1.9;
    }

    .lp-ai-crostyle .footer-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 20px;
    }

    .lp-ai-crostyle .footer-links {
      list-style: none;
    }

    .lp-ai-crostyle .footer-links li {
      margin-bottom: 14px;
    }

    .lp-ai-crostyle .footer-links a {
      font-size: 15px;
      color: var(--gray-300);
      text-decoration: none;
      transition: color 0.2s;
    }

    .lp-ai-crostyle .footer-links a:hover {
      color: var(--white);
    }

    .lp-ai-crostyle .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid var(--dark-secondary);
      text-align: center;
    }

    .lp-ai-crostyle .footer-copyright {
      font-size: 14px;
      color: var(--gray-500);
    }

    /* Desktop line breaks */
    .lp-ai-crostyle .br-pc { display: inline; }
    .lp-ai-crostyle .br-sp { display: none; }

    /* Responsive */
    @media (max-width: 1024px) {
      .lp-ai-crostyle .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .lp-ai-crostyle .hero-visual {
        order: -1;
        max-width: 700px;
        margin: 0 auto;
      }

      .lp-ai-crostyle .hero-content {
        text-align: center;
      }

      .lp-ai-crostyle .hero-cta {
        justify-content: center;
      }

      .lp-ai-crostyle .hero-stats {
        justify-content: center;
      }

      .lp-ai-crostyle .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
      }

      .lp-ai-crostyle .feature-detail-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .lp-ai-crostyle .feature-detail-reverse .feature-detail-inner {
        direction: ltr;
      }

      .lp-ai-crostyle .process-flow {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .lp-ai-crostyle .process-flow::before {
        display: none;
      }

      .lp-ai-crostyle .results-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
      }

      .lp-ai-crostyle .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .lp-ai-crostyle .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .lp-ai-crostyle {
        font-size: 16px;
        padding-bottom: 80px;
      }

      .lp-ai-crostyle .problems-solution-text {
        flex-direction: column;
      }

      .lp-ai-crostyle .problems-solution-logo {
        height: auto;
        max-height: 50px;
        max-width: 100%;
        object-fit: contain;
        margin-left: 8px;
      }

      .lp-ai-crostyle .br-pc { display: none; }
      .lp-ai-crostyle .br-sp { display: inline; }

      .lp-ai-crostyle .feature-detail-image-second {
        display: none;
      }

      .lp-ai-crostyle .lp-nav-links,
      .lp-ai-crostyle .nav-cta {
        display: none;
      }

      .lp-ai-crostyle .mobile-menu-btn {
        display: block;
      }

      /* Mobile menu button active state */
      .lp-ai-crostyle .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }

      .lp-ai-crostyle .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
      }

      .lp-ai-crostyle .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }

      /* Mobile navigation active state */
      .lp-ai-crostyle .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        gap: 0;
      }

      .lp-ai-crostyle .nav.active {
        display: flex;
      }

      .lp-ai-crostyle .nav.active .lp-nav-links,
      .lp-ai-crostyle .nav.active .nav-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      .lp-ai-crostyle .nav.active .lp-nav-links {
        gap: 0;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 16px;
        margin-bottom: 16px;
      }

      .lp-ai-crostyle .nav.active .lp-nav-links li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
      }

      .lp-ai-crostyle .nav.active .nav-cta {
        gap: 12px;
      }

      .lp-ai-crostyle .nav.active .nav-cta .btn {
        width: 100%;
        justify-content: center;
      }

      .lp-ai-crostyle .header {
        height: 100px;
      }

      .lp-ai-crostyle .header-inner {
        position: relative;
      }

      .lp-ai-crostyle .header.scrolled {
        height: 80px;
      }

      .lp-ai-crostyle .header .logo img {
        height: 56px;
      }

      .lp-ai-crostyle .header.scrolled .logo img {
        height: 44px;
      }

      .lp-ai-crostyle .hero {
        padding: 100px 0 60px;
      }

      .lp-ai-crostyle .hero-inner {
        gap: 40px;
      }

      .lp-ai-crostyle .hero-visual {
        order: -1;
      }

      .lp-ai-crostyle .hero-title {
        font-size: 28px;
        line-height: 1.4;
      }

      .lp-ai-crostyle .hero-subtitle {
        font-size: 16px;
      }

      .lp-ai-crostyle .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }

      .lp-ai-crostyle .hero-cta {
        flex-direction: column;
        gap: 12px;
      }

      .lp-ai-crostyle .hero-cta .btn {
        width: 100%;
        justify-content: center;
      }

      /* Mobile: hide desktop CTA, show mobile CTA */
      .lp-ai-crostyle .hero-cta-desktop {
        display: none;
      }

      .lp-ai-crostyle .hero-cta-mobile {
        display: flex;
      }

      .lp-ai-crostyle .problems-header .section-title {
        font-size: 26px;
      }

      .lp-ai-crostyle .problems-grid {
        grid-template-columns: 1fr;
      }

      .lp-ai-crostyle .problem-card {
        border-radius: 0;
        padding: 20px 24px;
      }

      .lp-ai-crostyle .problem-text {
        font-size: 15px;
      }

      .lp-ai-crostyle .service-overview-text {
        font-size: 16px;
        text-align: left;
      }

      .lp-ai-crostyle .before-after-desktop {
        display: none;
      }

      .lp-ai-crostyle .before-after-mobile {
        display: block;
      }

      .lp-ai-crostyle .features-header .section-title {
        font-size: 24px;
      }

      .lp-ai-crostyle .features-header .section-subtitle {
        font-size: 15px;
      }

      .lp-ai-crostyle .feature-card {
        padding: 32px 24px;
      }

      .lp-ai-crostyle .feature-title {
        font-size: 20px;
      }

      .lp-ai-crostyle .feature-desc {
        font-size: 14px;
      }

      .lp-ai-crostyle .feature-detail {
        padding: 80px 0;
      }

      .lp-ai-crostyle .feature-detail-title {
        font-size: 28px;
      }

      .lp-ai-crostyle .feature-detail-title {
        width: 100%;
      }

      .lp-ai-crostyle .feature-detail-title-small {
        font-size: 22px;
      }

      .lp-ai-crostyle .feature-detail-desc {
        font-size: 18px;
      }

      .lp-ai-crostyle .feature-detail-list li {
        font-size: 17px;
      }

      .lp-ai-crostyle .results-header .section-subtitle {
        font-size: 16px;
      }

      .lp-ai-crostyle .results-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .lp-ai-crostyle .results-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
      }

      .lp-ai-crostyle .document-list {
        grid-template-columns: 1fr;
      }

      .lp-ai-crostyle .comparison-header .section-subtitle {
        font-size: 15px;
      }

      .lp-ai-crostyle .process-header .section-subtitle {
        font-size: 16px;
      }

      .lp-ai-crostyle .process-step-desc {
        font-size: 13px;
      }

      .lp-ai-crostyle .cta-title {
        font-size: 24px;
      }

      .lp-ai-crostyle .cta-subtitle {
        font-size: 16px;
      }

      .lp-ai-crostyle .cta-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .lp-ai-crostyle .cta-buttons .btn {
        width: 100%;
      }

      .lp-ai-crostyle .cta-phone {
        font-size: 15px;
      }

      .lp-ai-crostyle .company-card {
        padding: 24px 16px;
      }

      .lp-ai-crostyle .pricing-table tbody th {
        min-width: 120px;
        white-space: nowrap;
      }

      .lp-ai-crostyle .company-table th {
        width: 100px;
        font-size: 15px;
        padding-right: 8px;
      }

      .lp-ai-crostyle .company-table td {
        font-size: 16px;
      }

      .lp-ai-crostyle .footer-inner {
        grid-template-columns: 1fr;
      }

      /* Booking Mobile */
      .lp-ai-crostyle .booking {
        padding: 80px 0;
      }

      .lp-ai-crostyle .booking-form-container {
        padding: 24px;
      }

      .lp-ai-crostyle .booking-form .form-row {
        grid-template-columns: 1fr;
      }

      .lp-ai-crostyle .booking-phone a {
        font-size: 22px;
      }

      /* Back to Top Mobile */
      .lp-ai-crostyle .back-to-top {
        bottom: 126px;
        right: 16px;
        width: 48px;
        height: 48px;
      }

      /* Fixed Footer Mobile */
      .lp-ai-crostyle .fixed-footer {
        padding: 8px 4px;
      }

      .lp-ai-crostyle .fixed-footer-inner {
        flex-direction: column;
        justify-content: space-between;
        gap: 6px;
      }

      .lp-ai-crostyle .fixed-footer-phone {
        width: 100%;
      }

      .lp-ai-crostyle .fixed-footer-phone > div {
        width: 100%;
      }

      .lp-ai-crostyle .fixed-footer-phone-label {
        display: none;
      }

      .lp-ai-crostyle .fixed-footer-phone-number {
        font-size: 13px;
        color: var(--primary);
        background: var(--white);
        border: 2px solid var(--primary);
        padding: 8px 12px;
        border-radius: 8px;
        text-align: center;
        flex-direction: column;
        line-height: 1.3;
        height: 48px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .lp-ai-crostyle .fixed-footer-phone-number svg {
        display: none;
      }

      .lp-ai-crostyle .fixed-footer .phone-number-text {
        display: none;
      }

      .lp-ai-crostyle .fixed-footer .phone-mobile-text {
        display: block;
      }

      .lp-ai-crostyle .fixed-footer .phone-mobile-text small {
        font-size: 10px;
        opacity: 0.9;
      }

      .lp-ai-crostyle .fixed-footer-buttons {
        width: 100%;
        justify-content: flex-end;
        gap: 8px;
      }

      .lp-ai-crostyle .fixed-footer .btn {
        padding: 8px 12px;
        font-size: 13px;
        flex: 1;
        min-width: 0;
        text-align: center;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .lp-ai-crostyle .fixed-footer .btn-outline-white {
        display: none;
      }

      .lp-ai-crostyle .fixed-footer .btn-text-full {
        display: none;
      }

      .lp-ai-crostyle .fixed-footer .btn-text-short {
        display: inline;
      }
    }

    /* Fixed Footer - Wider Mobile (横並び半々) */
    @media (min-width: 400px) and (max-width: 768px) {
      .lp-ai-crostyle .fixed-footer-inner {
        flex-direction: row;
        gap: 6px;
      }

      .lp-ai-crostyle .fixed-footer-phone {
        flex: 1;
        width: 50%;
      }

      .lp-ai-crostyle .fixed-footer-buttons {
        flex: 1;
        width: 50%;
      }
    }

    /* Roadmap Section */
    .lp-ai-crostyle .roadmap {
      padding: 100px 0;
      background: var(--white);
    }

    .lp-ai-crostyle .roadmap-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .lp-ai-crostyle .roadmap-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .lp-ai-crostyle .roadmap-intro {
      margin-bottom: 40px;
    }

    .lp-ai-crostyle .roadmap-intro p {
      font-size: 24px;
      color: var(--gray-700);
      line-height: 1.9;
      text-align: center;
    }

    .lp-ai-crostyle .roadmap-table-wrapper {
      overflow-x: auto;
    }

    .lp-ai-crostyle .roadmap-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .lp-ai-crostyle .roadmap-table th {
      background: var(--gray-100);
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-700);
      text-align: left;
      border-bottom: 1px solid var(--gray-200);
    }

    .lp-ai-crostyle .roadmap-th-phase {
      width: 100px;
      text-align: center;
    }

    .lp-ai-crostyle .roadmap-th-period {
      width: 140px;
    }

    .lp-ai-crostyle .roadmap-table td {
      padding: 20px;
      border-bottom: 1px solid var(--gray-200);
      vertical-align: top;
    }

    .lp-ai-crostyle .roadmap-table tbody tr:last-child td {
      border-bottom: none;
    }

    .lp-ai-crostyle .roadmap-phase-cell {
      text-align: center;
    }

    .lp-ai-crostyle .roadmap-phase-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: var(--primary);
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      border-radius: 50%;
    }

    .lp-ai-crostyle .roadmap-period-cell {
      font-size: 22px;
      color: var(--gray-700);
      line-height: 1.6;
      white-space: nowrap;
    }

    .lp-ai-crostyle .roadmap-content-cell strong {
      display: block;
      font-size: 26px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .lp-ai-crostyle .roadmap-detail {
      font-size: 18px;
      color: var(--gray-500);
      line-height: 1.7;
    }

    .lp-ai-crostyle .roadmap-note {
      margin-top: 24px;
      font-size: 13px;
      color: var(--gray-500);
      text-align: right;
    }

    /* PC/SP切り替え */
    .lp-ai-crostyle .roadmap-desktop {
      display: block;
    }

    .lp-ai-crostyle .roadmap-mobile {
      display: none;
    }

    /* SPカードスタイル */
    .lp-ai-crostyle .roadmap-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .lp-ai-crostyle .roadmap-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .lp-ai-crostyle .roadmap-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--gray-100);
      border-bottom: 1px solid var(--gray-200);
    }

    .lp-ai-crostyle .roadmap-card-period {
      font-size: 18px;
      color: var(--gray-600);
      font-weight: 500;
    }

    .lp-ai-crostyle .roadmap-card-body {
      padding: 20px;
    }

    .lp-ai-crostyle .roadmap-card-body strong {
      display: block;
      font-size: 22px;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .lp-ai-crostyle .roadmap-card-body p {
      font-size: 17px;
      color: var(--gray-500);
      line-height: 1.7;
      margin: 0;
    }

    @media (max-width: 768px) {
      .lp-ai-crostyle .roadmap {
        padding: 60px 0;
      }

      .lp-ai-crostyle .roadmap-header {
        margin-bottom: 32px;
      }

      .lp-ai-crostyle .roadmap-intro {
        margin-bottom: 24px;
      }

      .lp-ai-crostyle .roadmap-intro p {
        font-size: 15px;
        text-align: left;
      }

      .lp-ai-crostyle .roadmap-desktop {
        display: none;
      }

      .lp-ai-crostyle .roadmap-mobile {
        display: flex;
      }

      .lp-ai-crostyle .roadmap-phase-num {
        width: 28px;
        height: 28px;
        font-size: 13px;
      }

      .lp-ai-crostyle .roadmap-note {
        text-align: center;
        font-size: 12px;
        margin-top: 20px;
      }
    }

    /* Sheet (Modal) z-index override for LP */
    .lp-ai-crostyle [data-slot="sheet-overlay"] {
      z-index: 1100 !important;
    }

    .lp-ai-crostyle [data-slot="sheet-content"] {
      z-index: 1101 !important;
    }

    /* Sheet close button position - align with hamburger menu icon */
    .lp-ai-crostyle [data-slot="sheet-content"] > button[data-slot="sheet-close"] {
      top: 44px !important;
      right: 24px !important;
      width: 48px !important;
      height: 48px !important;
    }

    .lp-ai-crostyle [data-slot="sheet-content"] > button[data-slot="sheet-close"] svg {
      width: 24px !important;
      height: 24px !important;
    }

/* Modal Styles */
.lp-ai-crostyle .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-ai-crostyle .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lp-ai-crostyle .modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.lp-ai-crostyle .modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.lp-ai-crostyle .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.lp-ai-crostyle .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.lp-ai-crostyle .modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-500);
  transition: color 0.2s ease;
}

.lp-ai-crostyle .modal-close:hover {
  color: var(--dark);
}

.lp-ai-crostyle .modal-body {
  padding: 2rem;
}

.lp-ai-crostyle .modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-ai-crostyle .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-ai-crostyle .form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.lp-ai-crostyle .form-group label .required {
  color: var(--error);
  margin-left: 0.25rem;
}

.lp-ai-crostyle .form-group input,
.lp-ai-crostyle .form-group select,
.lp-ai-crostyle .form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-ai-crostyle .form-group input:focus,
.lp-ai-crostyle .form-group select:focus,
.lp-ai-crostyle .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43, 143, 217, 0.15);
}

.lp-ai-crostyle .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.lp-ai-crostyle .form-submit {
  margin-top: 0.5rem;
}

.lp-ai-crostyle .form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.lp-ai-crostyle .form-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
}

.lp-ai-crostyle .form-note a {
  color: var(--primary);
  text-decoration: underline;
}

.lp-ai-crostyle .download-info {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.lp-ai-crostyle .download-info-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-ai-crostyle .download-info-desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .lp-ai-crostyle .modal {
    width: 95%;
    max-height: 85vh;
  }

  .lp-ai-crostyle .modal-header {
    padding: 1.25rem 1.5rem;
  }

  .lp-ai-crostyle .modal-body {
    padding: 1.5rem;
  }
}

/* LP用フッター：固定CTAバーとの被り防止 */
.lp-ai-crostyle-page #footer .footerBottom {
  padding-bottom: 160px;
}
