    /* Reset & Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.5;
      color: #1f2937;
      background: #ffffff;
    }

    /* タイポグラフィシステム - PC表示（768px以上 ※タブレット含む） */
    @media (min-width: 768px) {
      body, p, div, span, a, li, td, th {
        font-size: 16px;
        font-weight: normal;
        line-height: 1.5;
      }
      
      small, .small {
        font-size: 11px;
        font-weight: normal;
        line-height: 1.5;
      }
      
      h1 {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.5;
      }
      
      h2 {
        font-size: 24px;
        font-weight: bold;
        line-height: 1.5;
      }
      
      h3 {
        font-size: 22px;
        font-weight: bold;
        line-height: 1.5;
      }
      
      h4, h5, h6 {
        font-size: 16px;
        font-weight: bold;
        line-height: 1.5;
      }
    }

    /* タイポグラフィシステム - スマホ表示（max-width: 767px） */
    @media (max-width: 767px) {
      body, p, div, span, a, li, td, th {
        font-size: 14px;
        font-weight: normal;
        line-height: 1.5;
      }
      
      small, .small {
        font-size: 10px;
        font-weight: normal;
        line-height: 1.5;
      }
      
      h1 {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
      }
      
      h2 {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
      }
      
      h3 {
        font-size: 16px;
        font-weight: bold;
        line-height: 1.5;
      }
      
      h4, h5, h6 {
        font-size: 16px;
        font-weight: bold;
        line-height: 1.5;
      }
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* レスポンシブコンテナ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* スマホ: max-width: 767px */
    @media (max-width: 767px) {
      .container {
        padding-left: 8px;
        padding-right: 8px;
      }
    }

    /* タブレット: 768px ～ 1023px */
    @media (min-width: 768px) and (max-width: 1023px) {
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }
    }

    /* PC (中): 1024px ～ 1249px */
    @media (min-width: 1024px) and (max-width: 1249px) {
      .container {
        padding-left: 32px;
        padding-right: 32px;
      }
    }

    /* PC (大): 1250px 以上 */
    @media (min-width: 1250px) {
      .container {
        padding-left: 32px;
        padding-right: 32px;
      }
    }

    /* Header */

    .btn {
      padding: 0 2rem;
      height: 72px;
      min-height: 72px;
      border-radius: 40px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .btn-gradient {
      background: linear-gradient(90deg, #00546C 0%, #1C9F91 100%);
      color: white;
    }

    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 84, 108, 0.3);
    }

    .btn-outline {
      background: white;
      border: 2px solid #00546C;
      color: #00546C;
    }

    .btn-outline:hover {
      background: #00546C;
      color: white;
    }

    /* Hero Section */
    .hero {
      position: relative;
      background: linear-gradient(90deg, rgba(255, 255, 255, .3) .56%, rgba(95, 215, 201, .3) 45.02%, rgba(177, 215, 132, .3) 56.97%, rgba(207, 243, 239, .3) 68.45%, rgba(255, 255, 255, .3) 98.09%);
      overflow: hidden;
      padding: 0;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0rem;
      align-items: center;
      padding: 5rem 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      min-height: 670px;
    }

    .hero-right {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 3.75rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5rem;
      color: #1f2937;
    }

    .hero-text .subtitle {
      font-size: 3rem;
      font-weight: 700;
      color: #00b982;
      margin-bottom: 1.5rem;
    }

    .hero-text .tagline {
      font-size: 1.75rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 1rem;
    }

    .hero-text .description {
      font-size: 1.25rem;
      font-weight: 700;
      color: #4b5563;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .hero-image {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 600px;
    }

    .hero-image img {
      position: absolute;
    }

    .hero-image .phone {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .hero-image .bubble {
      position: absolute;
      filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
      animation: fadeInDown 0.8s ease-out forwards;
      opacity: 0;
    }

    /* 右上: bubble-1 (fuki2_new.png) */
    .hero-image .bubble-1 {
      width: 100%;
      max-width: 540px;
      top: calc(10% + 50px + 20px);
      right: calc(-5% + 0px);
      z-index: 40;
      animation-delay: 0.5s;
    }

    /* 右下: bubble-2 (fuki3.png) */
    .hero-image .bubble-2 {
      width: 100%;
      max-width: 540px;
      top: calc(10% + 100px + 40px + 96px);
      right: calc(-5% + 0px);
      z-index: 30;
      animation-delay: 0.9s;
    }

    /* 左下: bubble-3 (fuki1_new.png) */
    .hero-image .bubble-3 {
      width: 100%;
      max-width: 540px;
      bottom: 10%;
      left: calc(-5% - 130px);
      z-index: 20;
      animation-delay: 1.3s;
    }

    /* 左上: bubble-4 (fuki5.png) */
    .hero-image .bubble-4 {
      width: 100%;
      max-width: 540px;
      bottom: calc(20% + 100px + 10px);
      left: calc(-5% - 130px);
      z-index: 10;
      animation-delay: 1.7s;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Section Styles */
    section {
      padding: 3rem 0;
    }

    section.py-24 {
      padding: 6rem 0;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 4rem;
      color: #1f2937;
    }

    .bg-gray {
      background: #f3f3f3;
    }

    /* Problem Cards */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .problem-card {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
    }

    .problem-card:hover {
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    .problem-card-image {
      height: 16rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      overflow: hidden;
    }

    .problem-card-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 0 2rem;
      max-width: 300px;
      max-height: 300px;
    }

    .problem-card-content {
      padding: 2rem;
      text-align: center;
    }

    .problem-card-title {
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .problem-card-desc {
      color: #6b7280;
      line-height: 1.8;
    }

    /* Solution Section */
    .solution-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .solution-text {
      font-size: 1.7rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .solution-highlight {
      color: #00b982;
    }

    .solution-image {
      margin: 3rem 0;
    }

    .solution-image img {
      width: 100%;
      max-width: 800px;
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    /* Feature Grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .feature-card {
      background: white;
      border-radius: 1rem;
      padding: 2.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00546C, #1C9F91);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .feature-desc {
      color: #6b7280;
      line-height: 1.8;
      font-size: 1.125rem;
    }

    /* Scenario Cards */
    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .scenario-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
    }

    .scenario-card:hover {
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
      transform: translateY(-5px);
    }

    .scenario-image {
      height: 200px;
      overflow: hidden;
      background: #f3f4f6;
    }

    .scenario-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .scenario-content {
      padding: 2rem;
    }

    .scenario-label {
      display: inline-block;
      background: linear-gradient(135deg, #00546C, #1C9F91);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .scenario-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .scenario-desc {
      color: #6b7280;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .scenario-example {
      background: #f9fafb;
      padding: 1rem;
      border-radius: 0.5rem;
      border-left: 4px solid #00b982;
    }

    .scenario-example-title {
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 0.5rem;
    }

    .scenario-example-text {
      color: #6b7280;
      font-size: 0.875rem;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(90deg, rgba(255, 255, 255, .3) .56%, rgba(95, 215, 201, .3) 45.02%, rgba(177, 215, 132, .3) 56.97%, rgba(207, 243, 239, .3) 68.45%, rgba(255, 255, 255, .3) 98.09%);
      text-align: center;
    }

    .cta-content {
      max-width: 1000px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 3.75rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 2rem;
      color: #1f2937;
    }

    .cta-subtitle {
      font-size: 1.5rem;
      color: #00546C;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .cta-text {
      font-size: 1.125rem;
      color: #4b5563;
      margin-bottom: 3rem;
      line-height: 1.8;
    }

    .cta-buttons {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    @media (max-width: 767px) {
      .hero-content {
        padding: 2rem 1.5rem;
      }
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    .btn-large {
      padding: 0 2.5rem;
      font-size: 1.375rem;
    }

    /* ヘッダー用小型ボタン */
    .btn-sm {
      height: 44px;
      min-height: 44px;
      padding: 0 1.5rem;
      font-size: 0.875rem;
    }

    /* Pricing Section */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .pricing-card {
      background: white;
      border-radius: 1rem;
      padding: 2.5rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
      text-align: center;
    }

    .pricing-card:hover {
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
      transform: translateY(-5px);
    }

    .pricing-name {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .pricing-price {
      font-size: 2.5rem;
      font-weight: 700;
      color: #00546C;
      margin-bottom: 0.5rem;
    }

    .pricing-unit {
      font-size: 1rem;
      color: #6b7280;
      margin-bottom: 2rem;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .pricing-features li {
      padding: 0.75rem 0;
      border-bottom: 1px solid #e5e7eb;
      color: #4b5563;
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    /* Pricing Section - Responsive */
    /* 料金セクション: タブレット以下（768px-1023px）では2列 */
    @media (min-width: 768px) and (max-width: 1023px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
      }
    }
    /* 料金セクション: スマホでは縦並びに */
    @media (max-width: 767px) {
      .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
      }
      
      .pricing-card {
        transform: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
      }
    }

    /* 3 Steps Section - Responsive */
    @media (max-width: 767px) {
      /* 3ステップセクション: スマホでは画像を下部に配置 */
      .step-card-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
      }
      
      .step-card-text {
        order: 1;
        padding: 2rem 1.5rem !important;
      }
      
      .step-card-image {
        order: 2;
        padding: 1rem !important;
      }
      
      .step-card-text span {
        font-size: 2.5rem !important;
      }
      
      .step-card-text h3 {
        font-size: 1.5rem !important;
      }
      
      /*.step-card-text p { font-size: 1rem !important;}*/
    }

    /* Testimonial Section */
    .testimonial-section {
      background: #f3f3f3;
    }

    .testimonial-item {
      display: flex;
      gap: 1.5rem;
      max-width: 896px;
      margin: 0 auto 2rem;
      align-items: flex-start;
    }

    .testimonial-avatar {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      background: #e0f2f1;
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-bubble {
      background: white;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: relative;
      flex: 1;
    }

    .testimonial-bubble::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 2rem;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 8px solid white;
    }

    .testimonial-text {
      color: #1f2937;
      line-height: 1.8;
      font-size: 1.125rem; /* 18px */
    }

    /* Seminar Section */
    .seminar-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1024px;
      margin: 0 auto;
    }

    .seminar-banner {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
    }

    .seminar-banner:hover {
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    .seminar-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Seminar Section - スマホ表示: 画像2点を横幅100%できれいに収める */
    @media (max-width: 767px) {
      .seminar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
      }
      .seminar-banner {
        display: block;
        width: 100%;
      }
      .seminar-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        vertical-align: top;
      }
    }

    /* FAQ Section */
    .faq-container {
      max-width: 768px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border-radius: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .faq-question {
      padding: 1.5rem;
      font-size: 1.125rem;
      font-weight: 700;
      color: #1f2937;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }

    .faq-question:hover {
      background: #f9fafb;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: #00546C;
    }

    .faq-question.active::after {
      content: '−';
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer-content {
      padding: 1rem 1.5rem 1.5rem;
      color: #4b5563;
      line-height: 1.8;
      white-space: pre-line;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-right {
        position: static;
        width: 100%;
      }

      .hero-image {
        height: 500px;
        min-height: 500px;
      }

      /* タブレット以下では吹き出しのサイズを縮小 */
      .hero-image .bubble-1 {
        width: 100%;
        max-width: 520px;
        right: 0;
      }
      .hero-image .bubble-2 {
        width: 100%;
        max-width: 520px;
        right: 0;
      }
      .hero-image .bubble-3{
        width: 100%;
        max-width: 480px;
        left: -46px;
        top: 300px;
      }
      .hero-image .bubble-4 {
        width: 100%;
        max-width: 480px;
        left: 13px;
        top: 170px;
      }

      .problem-grid,
      .feature-grid,
      .scenario-grid,
      .seminar-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-image {
        height: 400px;
        min-height: 400px;
      }

      /* スマホでは吹き出しをさらに縮小 */
      .hero-image .bubble-1 {
        width: 100%;
        max-width: 320px;
        right: -75px;
        top: 28%;
      }
      .hero-image .bubble-2 {
        width: 100%;
        max-width: 320px;
        right: -75px;
        top: 58%;
      }
      .hero-image .bubble-3 {
        width: 100%;
        max-width: 300px;
        left: -90px;
        bottom: 10%;
      }
      .hero-image .bubble-4 {
        width: 100%;
        max-width: 300px;
        left: -108px;
        bottom: 40%;
      }

      .hero-text h1 {
        font-size: 2.5rem;
      }

      .hero-text .subtitle {
        font-size: 1.8rem;
      }

      .hero-text .tagline {
        font-size: 1.5rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .cta-title {
        font-size: 2.5rem;
      }

      .testimonial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .testimonial-bubble::before {
        display: none;
      }
    }

    /* ========================================
       index.php 直書きスタイルのクラス定義（移設）
       ======================================== */
    .lp-gtm-noscript {
      display: none;
      visibility: hidden;
    }

    .lp-delay-10 { transition-delay: 0.1s; }
    .lp-delay-15 { transition-delay: 0.15s; }
    .lp-delay-20 { transition-delay: 0.2s; }
    .lp-delay-30 { transition-delay: 0.3s; }
    .lp-delay-40 { transition-delay: 0.4s; }

    .lp-solution-mt { margin-top: 60px; }
    .lp-solution-highlight {
      font-size: 2.75rem;
      color: #00546C;
      margin-bottom: 40px;
    }

    .lp-section-gradient {
      background: linear-gradient(90deg, rgba(255, 255, 255, .3) .56%, rgba(95, 215, 201, .3) 45.02%, rgba(177, 215, 132, .3) 56.97%, rgba(207, 243, 239, .3) 68.45%, rgba(255, 255, 255, .3) 98.09%);
    }

    .lp-scenarios-header {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 80px;
    }
    .lp-scenarios-subtitle {
      font-size: 1.875rem;
      font-weight: 700;
      color: #333333;
      margin-bottom: 40px;
    }

    .lp-scenario-block { margin-bottom: 1.5rem; }
    .lp-scenario-title-inner {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }
    .lp-scenario-subtitle {
      font-size: 1.25rem;
      font-weight: 600;
      color: #00546C;
    }
    .lp-before-box {
      background: #f3f4f6;
      padding: 1rem;
      border-radius: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .lp-before-label {
      font-size: 1rem;
      font-weight: 700;
      color: #4b5563;
      margin-bottom: 0.5rem;
    }
    .lp-before-desc {
      font-size: 1rem;
      font-weight: 700;
      color: #6b7280;
    }
    .lp-after-box {
      background: white;
      border: 2px solid rgba(0, 185, 130, 0.3);
      border-radius: 0.5rem;
      padding: 1.5rem;
    }
    .lp-flex-col-center {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .lp-scenario-after-img {
      width: 100%;
      height: auto;
      margin: 1rem 0 2rem 0;
    }
    .lp-after-desc {
      font-size: 1.25rem;
      font-weight: 700;
      color: #374151;
      text-align: left;
    }

    .lp-mid-cta-section {
      padding: 6rem 0;
      background: white;
    }
    .lp-mid-cta-inner {
      max-width: 56rem;
      margin: 0 auto;
      text-align: center;
    }
    .lp-mid-cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 2rem;
      line-height: 1.2;
    }
    .lp-mid-cta-subtitle {
      font-size: 1.5rem;
      font-weight: 700;
      color: #00546C;
      margin-bottom: 1.5rem;
    }
    .lp-mid-cta-text {
      font-size: 1.125rem;
      font-weight: 700;
      color: #6b7280;
      margin-bottom: 3rem;
      line-height: 1.8;
    }
    .lp-cta-btn-mid {
      font-size: 22px;
      padding: 0 2.5rem;
    }

    .lp-steps-header {
      text-align: center;
      margin-bottom: 80px;
    }
    .lp-steps-subtitle {
      font-size: 1.875rem;
      font-weight: 700;
      color: #6b7280;
    }
    .lp-steps-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }
    .lp-step-outer {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .lp-step-card-grid-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .lp-step-card-text-inner {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .lp-step-mb { margin-bottom: 1.5rem; }
    .lp-step-num {
      color: #BFBFBF;
      font-size: 3.75rem;
      font-weight: 700;
    }
    .lp-step-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 1.5rem;
    }
    .lp-step-desc {
      font-size: 1.25rem;
      line-height: 1.8;
    }
    .lp-step-card-image-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      overflow: hidden;
    }
    .lp-step-img {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: contain;
      display: block;
    }
    .lp-steps-footer {
      text-align: center;
      margin-top: 4rem;
    }
    .lp-steps-footer-p {
      font-size: 1.25rem;
      color: #374151;
      font-weight: 500;
    }
    .lp-steps-footer-span {
      font-size: 2.25rem;
    }

    .lp-pricing-header {
      text-align: center;
      margin-bottom: 80px;
    }
    .lp-pricing-subtitle {
      font-size: 1.25rem;
      color: #6b7280;
    }
    .lp-pricing-grid-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }
    .lp-pricing-feature-box {
      background: #f3f3f3;
      border-radius: 0.5rem;
      padding: 1rem;
      margin-bottom: 1.5rem;
    }
    .lp-pricing-feature-label {
      font-size: 0.875rem;
      color: #6b7280;
      margin-bottom: 0.25rem;
    }
    .lp-pricing-feature-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: #00546C;
    }
    .lp-pricing-desc {
      font-size: 1rem;
      font-weight: 700;
      color: #6b7280;
      line-height: 1.6;
    }
    .lp-pricing-card-popular {
      border: 2px solid #00b982;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
      transform: scale(1.05);
      position: relative;
    }
    .lp-pricing-badge {
      position: absolute;
      top: -1rem;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, #00546C 0%, #1C9F91 100%);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .lp-pricing-name-mt { margin-top: 1rem; }
    .lp-pricing-note {
      text-align: center;
      font-size: 0.875rem;
      color: #6b7280;
      margin-top: 2rem;
    }

    .lp-seal-hidden { display: none; }
    .lp-mask-alpha { mask-type: alpha; }

    /* スマホ表示: .lp-after-box 内の img を左にはみ出して 120% 表示（4つとも共通） */
    @media (max-width: 767px) {
      .lp-after-box {
        overflow: visible;
      }
      .lp-after-box img {
        width: 100%;
        transform: scale(1.4);
        /*transform-origin: right center;*/
      }
    }

    /* スマホ表示: 各所文章の line-height を 1.5 に統一 */
    @media (max-width: 767px) {
      .hero-text h1,
      .hero-text .subtitle,
      .hero-text .tagline,
      .hero-text .description,
      .section-title,
      .problem-card-title,
      .problem-card-desc,
      .solution-text,
      .solution-content p,
      .lp-scenarios-subtitle,
      .lp-scenario-title-inner,
      .lp-scenario-subtitle,
      .lp-before-label,
      .lp-before-desc,
      .lp-after-desc,
      .lp-mid-cta-title,
      .lp-mid-cta-subtitle,
      .lp-mid-cta-text,
      .lp-steps-subtitle,
      .lp-step-num,
      .lp-step-title,
      .lp-step-desc,
      .lp-steps-footer-p,
      .lp-steps-footer-span,
      .lp-pricing-subtitle,
      .lp-pricing-feature-label,
      .lp-pricing-feature-value,
      .lp-pricing-desc,
      .lp-pricing-name,
      .lp-pricing-note,
      .testimonial-text,
      .faq-question,
      .faq-answer-content,
      .cta-title,
      .cta-subtitle,
      .cta-text,
      .scenario-title,
      .scenario-desc,
      .feature-title,
      .feature-desc {
        line-height: 1.5;
      }
    }