@charset "utf-8";
    /* 基本スタイルとリセット */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background-color: #f9fafb;
      color: #374151;
    }
    img { max-width: 100%; height: auto; display: block; }
    h1,h2,h3,h4,h5,h6,p,ul,ol { margin: 0; padding: 0; }
    ul { list-style: none; }
    a { text-decoration: none; color: inherit; }
    button { background: none; border: none; padding: 0; cursor: pointer; }

    /* 汎用・ユーティリティクラス */
    .container {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .main-wrapper {
      max-width: 56rem;
      margin-left: auto;
      margin-right: auto;
      background-color: #ffffff;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    .highlight {
        background: linear-gradient(transparent 60%, #fefce8 60%);
        font-weight: bold;
    }
    .font-bold { font-weight: 700; }
    .text-center { text-align: center; }
    .pulse-button { animation: pulse 2s infinite; }
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* ヘッダー */
    .hero { position: relative; border-bottom: 8px solid #991b1b; }
    .hero-logo { position: absolute; top: 0.5rem; left: 50%; z-index: 10; width: 4rem; height: 4rem; }
    .hero-image-container { display: flex; flex-direction: column; height: 400px; }
    .hero-image-half { width: 100%; height: 100%; background-size: cover; background-position: center; }
    .bg-image-1 { background-image: url('../img/32393155_m.jpg'); }
    .bg-image-2 { background-image: url('../img/32953469_m.jpg'); }
    .hero-overlay { position: absolute; inset: 0; background-color: rgba(17, 24, 39, 0.6); display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 0 1rem; text-align: center; color: #ffffff; }
    .hero-catchphrase { font-weight: 900; line-height: 1.25; margin-bottom: 0.5rem; font-size: 1.125rem; text-shadow: 2px 2px 6px rgba(0,0,0,0.8); }
    .hero-catchphrase.catch2 {display: flex; justify-content: center; align-items: center;}
    .hero-catchphrase.catch2 span {color: #b91c1c;}
    .hero-catchphrase span { color: #fde047; }
    .hero-sub-headline { margin-bottom: 2rem; position: relative; }
    .hero-sub-headline div { display: inline-block; background-color: #facc15; color: #1f2937; padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 900; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); transform: rotate(-2deg); font-size: 1.125rem; }
    .hero-main-keyword { display: inline-block; padding: 0.5rem; border-radius: 1.5rem;}
    .hero-main-keyword img { display: flex; justify-self: center; align-items: center;}
    .hero-main-keyword h2 { display: flex; justify-self: center; align-items: center; font-size: 2.25rem; font-weight: 800; line-height: 1.25; color: #991b1b; letter-spacing: 0.05em; }

    /* セクション共通 */
    .section { padding: 2rem 0; }
    .section-bg-gray { background-color: #f9fafb; }
    .section-title { font-size: 1.5rem; font-weight: 700; text-align: center; }
    .section-subtitle { margin-top: 1rem; font-size: 1rem; color: #4b5563; text-align: center; line-height: 1.75; }
    
    /* コンテンツカード */
    .content-card { background-color: white; padding: 1.5rem; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
    .content-card-title { text-align: center; font-size: 1.875rem; font-weight: 700; }
    .content-card-body { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 2rem; }
    
    /* ポイントセクション */
    .points-section-flex { display: flex; flex-direction: column; gap: 2rem; }
    .points-section-content { display: flex; flex-direction: column; gap: 1.5rem; }
    .point-card { background-color: #ffffff; padding: 1.5rem; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); border-left: 4px solid #991b1b; }
    .point-card h3 { font-size: 1.125rem; font-weight: 700; }
    .point-card span { color: #991b1b; }
    .points-section-image { display: flex; justify-content: center; }
    .points-section-image img { border-radius: 0.5rem; max-width: 16rem; }
    
    /* お悩みセクション */
    .concerns-title { padding: 0 0.5rem; font-size: 1.25rem; }
    .concerns-wrapper { margin-top: 3rem; display: flex; flex-direction: column; gap: 3rem; }
    .concerns-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .concerns-item-image { text-align: center; flex-shrink: 0; width: 10rem; margin: 0 auto; }
    .concerns-item-image img {border-radius: 9999px; margin: 0 auto; }
    .concerns-item-text-wrapper { display: flex; justify-content: center; width: 100%; }
    .concerns-item-text { background-color: #ffffff; padding: 1.5rem; border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); max-width: 24rem; position: relative; }
    .concerns-item-text p { font-weight: 600; line-height: 1.625; }
    .concerns-item-text.bordered-top { border-top: 4px solid #e5e7eb; }
    .speech-bubble-arrow { display: none; position: absolute; top: 50%; transform: translateY(-50%) rotate(45deg); width: 1.5rem; height: 1.5rem; background-color: #ffffff; }
    .speech-bubble-arrow.left { left: -0.75rem; }
    .speech-bubble-arrow.right { right: -0.75rem; }

    /* 不安の深掘りセクション */
    .anxiety-image-wrapper { position: relative; max-width: 32rem; margin: 0 auto; }
    .anxiety-image-wrapper img { width: 100%; border-radius: 0.5rem; }
    .anxiety-bubble { position: absolute; background-color: #374151; color: white; padding: 0.75rem 1.5rem; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); font-weight: 700; font-size: 1.125rem; }
    .anxiety-bubble-1 { top: 0.5rem; left: 0.5rem; transform: translate(-25%, -25%) rotate(-12deg); }
    .anxiety-bubble-2 { top: 0.5rem; right: 0.5rem; transform: translate(25%, -25%) rotate(12deg); }
    .anxiety-bubble-3 { bottom: 0.5rem; left: 0.5rem; transform: translate(-25%, 25%) rotate(6deg); padding: 1rem 2rem; }
    .anxiety-bubble-4 { bottom: 0.5rem; right: 0.5rem; transform: translate(25%, 25%) rotate(-12deg); }
    .anxiety-text-wrapper { margin-top: 6rem; display: flex; flex-direction: column; gap: 1rem; }
    .anxiety-text-wrapper .lead-text { font-size: 1.25rem; font-weight: 700; }
    .anxiety-text-wrapper .highlight-text { color: #2563eb; font-size: 1.875rem; font-weight: 800; display: inline-block; padding: 0.5rem 1rem; background-color: #f5fffa; border-radius: 0.5rem; }

    /* 解決策リスト */
    .solution-list { display: flex; flex-direction: column; gap: 1.25rem; font-size: 1.125rem; font-weight: 600; color: #374151; }
    .solution-list li { display: flex; align-items: center; }
    .solution-list svg { width: 1.5rem; height: 1.5rem; color: #ec4899; margin-right: 0.75rem; flex-shrink: 0; }
    .solution-image { display: flex; justify-content: center; }
    .solution-image img { max-width: 16rem; }
    .solution-conclusion { text-align: center; margin-top: 4rem; }
    .solution-conclusion-text { font-size: 1.5rem; font-weight: 800; color: #dc2626; display: flex; flex-direction: column; gap: 1rem; }
    
    /* サービス紹介 */
    .service-logo-box { display: inline-block; background-color: white; border: 4px solid #991b1b; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); padding: 1rem; border-radius: 0.5rem; transform: rotate(-3deg); }
    .service-catchphrase { margin-top: 2rem; background-color: #991b1b; display: inline-block; padding: 1rem; border-radius: 0.5rem; }
    .service-catchphrase p { color: white; font-size: 1.25rem; font-weight: 700; }
    .service-benefits-wrapper { margin-top: 4rem; text-align: left; max-width: 48rem; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 1.5rem; }
    .service-benefits-wrapper > p { font-size: 1.125rem; font-weight: 600; color: #4b5563; text-align: center; }
    .benefit-card { background-color: white; border-radius: 0.75rem; padding: 1.5rem; display: flex; align-items: center; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
    .benefit-card.blue { border: 2px solid #dbeafe; }
    .benefit-card.green { border: 2px solid #d1fae5; }
    .benefit-card.yellow { border: 2px solid #fef3c7; }
    .benefit-icon { border-radius: 9999px; padding: 0.75rem; }
    .benefit-icon.blue { background-color: #ffe4e1; color: #dc2626; }
    .benefit-icon.green { background-color: #d1fae5; color: #059669; }
    .benefit-icon.yellow { background-color: #fef3c7; color: #d97706; }
    .benefit-icon svg { width: 2rem; height: 2rem; }
    .benefit-card p { margin-left: 1.5rem; font-size: 1.25rem; font-weight: 700; }
    .benefit-card .highlight.blue { color: #dc2626; }
    .benefit-card .highlight.green { color: #059669; }
    .benefit-card .highlight.yellow { color: #d97706; }
    .service-conclusion { margin-top: 3rem; font-size: 1.25rem; font-weight: 600; line-height: 2; }

    /* コスト削減事例 */
    .case-studies-wrapper { margin-top: 4rem; display: flex; flex-direction: column; gap: 3rem; }
    .case-study-card { background-color: white; padding: 2rem; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); border: 1px solid #e5e7eb; }
    .case-study-item { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
    .case-study-item img { width: 11rem; border-radius: 9999px; margin: 0 auto; border: 4px solid #e5e7eb; }
    .case-study-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
    .case-study-tag { background-color: #374151; color: white; font-size: 0.875rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; }
    .case-study-savings { margin-top: 1rem; border-top: 1px solid #e5e7eb; padding-top: 1rem; }
    .case-study-savings p { font-size: 1.125rem; font-weight: 700; text-align: center; }
    .case-study-savings span { font-size: 2.25rem; font-weight: 900; color: #ef4444; }
    .case-study-comparison { margin-top: 1rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; font-size: 1rem; color: #4b5563; }
    .case-study-before { font-weight: 700; font-size: 1.25rem; color: #2563eb; }
    .case-study-after { font-weight: 700; font-size: 1.5rem; color: #ef4444; }
    .case-study-arrow { height: 1.5rem; width: 1.5rem; color: #9ca3af; }
    .chance-banner { margin-top: 4rem; background-color: #fef08a; border: 2px dashed #facc15; border-radius: 1.5rem; padding: 2rem; }
    .chance-banner-content { display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; }
    .chance-banner-content svg { height: 3rem; width: 3rem; color: #f59e0b; margin-bottom: 1rem; }
    .chance-banner-content p { font-size: 1.25rem; font-weight: 700; line-height: 1.625; color: #dc2626; }

    /* サービス特徴 */
    .features-grid { margin-top: 0; display: grid; grid-template-columns: 1fr; gap: 2rem; }
    .feature-card { background-color: white; padding: 1.5rem; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); text-align: center; }
    .feature-card-image { width: 8rem; height: 8rem; margin: 0 auto 1.5rem auto; border-radius: 9999px; overflow: hidden; border: 4px solid #e5e7eb; display: flex; align-items: center; justify-content: center; }
    .feature-card-image img { width: 100%; height: 100%; object-fit: cover; }
    .feature-card h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }
    .feature-card p { margin-top: 1rem; color: #4b5563; line-height: 1.625; }

    /* お客様の声 */
    .testimonials-wrapper { margin-top: 3rem; display: flex; flex-direction: column; gap: 5rem; }
    .testimonial-item { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .testimonial-item-image { text-align: center; flex-shrink: 0; width: 10rem; margin: 0 auto; }
    .testimonial-item-image img { width: 11rem; border-radius: 9999px; margin: 0 auto; }
    .testimonial-item-image p { margin-top: 0.5rem; font-weight: 700; font-size: 1.125rem; }
    .testimonial-item-text-wrapper { flex: 1; position: relative; width: 100%; }
    .testimonial-item-text { background-color: #f3f4f6; padding: 2rem; border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
    .testimonial-item-text p { color: #374151; line-height: 1.625; }
    .testimonial-arrow { display: none; position: absolute; top: 50%; width: 1.5rem; height: 1.5rem; background-color: #f3f4f6; transform: translateY(-50%) rotate(45deg); }
    .testimonial-arrow.left { left: -0.75rem; }
    .testimonial-arrow.right { right: -0.75rem; }

    /* FAQ */
    .faq-wrapper { margin-top: 4rem; max-width: 48rem; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: 1rem; }
    .faq-item { background-color: #ffffff; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
    .faq-question { width: 100%; text-align: left; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
    .faq-question span { font-size: 1.125rem; font-weight: 700; color: #1f2937; }
    .faq-question svg { width: 1.5rem; height: 1.5rem; color: #3b82f6; transition: transform 0.3s; }
    .faq-answer { overflow: hidden; }
    .faq-answer p { padding: 0 1.5rem 1.5rem 1.5rem; color: #4b5563; line-height: 1.625; padding-top: 1rem; border-top: 1px solid #e5e7eb; }

    /* ご利用の流れ */
    .flow-timeline { margin-top: 5rem; max-width: 48rem; margin-left: auto; margin-right: auto; position: relative; border-left: 4px solid #dbeafe; margin-left: 0.5rem; display: flex; flex-direction: column; gap: 4rem; }
    .flow-item { position: relative; padding-left: 2rem; }
    .flow-number { position: absolute; left: -1.75rem; top: 0; width: 3rem; height: 3rem; background-color: #991b1b; color: white; font-weight: 700; font-size: 1.25rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
    .flow-card { background-color: white; padding: 2rem; border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); border: 1px solid #e5e7eb; }
    .flow-card h3 { font-size: 1.5rem; font-weight: 700; }
    .flow-card > p { margin-top: 1rem; color: #374151; line-height: 1.625; }
    .flow-card-content { margin-top: 1.5rem; }
    .flow-card-content-inner { background-color: #f9fafb; padding: 1.5rem; border-radius: 0.5rem; border: 1px solid #e5e7eb; }
    .flow-card-content-inner img { border-radius: 0.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
    .flow-steps { display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; font-size: 0.875rem; font-weight: 700; color: #9a3412; }
    .flow-step { flex: 1; background-color: #ffedd5; padding: 0.75rem; border-radius: 0.5rem; border: 2px solid #fed7aa; }
    .flow-arrow { flex-shrink: 0; margin: 0.5rem; color: #fb923c; font-size: 1.5rem; transform: rotate(90deg); }
    .flow-conclusion { text-align: center; margin-top: 1.5rem; font-size: 1.125rem; font-weight: 700; color: #c2410c; }
    
    /* クロージング */
    .closing-wrapper { margin-top: 5rem; max-width: 56rem; margin-left: auto; margin-right: auto; background-color: #fff; border-radius: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); border: 4px solid #dc2626; overflow: hidden; }
    .closing-header { background-color: #dc2626; text-align: center; padding: 1rem 0; }
    .closing-header h3 { font-size: 1.875rem; font-weight: 900; color: white; letter-spacing: 0.05em; }
    .closing-body { padding: 1rem; text-align: center; }
    .closing-text { font-size: 1.25rem; font-weight: 700; line-height: 1.5; }
    .closing-text .highlight-red { color: #dc2626; font-size: 1.5rem; }
    .closing-text .highlight-block { margin-top: 0.5rem; display: inline-block; }
    .closing-text .contact-link { color: #dc2626; }
    .closing-cta { margin-top: 2.5rem; }
    .closing-note { margin-top: 3rem; background-color: #fef08a; border: 2px dashed #facc15; border-radius: 1.5rem; padding: 0.5rem; }
    .closing-note p { color: #dc2626; font-weight: 700; font-size: 1.125rem; line-height: 1.625; }

    /* CTAボタン */
    .cta-wrapper {position: fixed; bottom: 0; left:0; width: 100%; background-color: rgba(17, 24, 39, 0.6); display: flex; align-items: center; justify-content: center; padding: 1rem 0;}
    .cta-button { display: inline-block; font-weight: 900; padding: 0.75rem 1.5rem; border-radius: 9999px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); transform: scale(1); transition: all 0.3s; background-image: linear-gradient(to bottom, #008000, #228b22); color: white; font-size: 1.125rem; border-bottom: 6px solid #228b22; }
    .cta-button:hover { transform: scale(1.05); }
    .fixed-cta {width: 400px; display:block; background-image: linear-gradient(to bottom, #008000, #228b22); color: white; font-weight: 700; padding: 0.75rem; border-radius: 0.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); z-index: 50; transition: transform 0.3s; text-align: center; line-height: 1.25; }
    .fixed-cta:hover { transform: scale(1.1); }
    .fixed-cta .text-lg { font-size: 1.125rem; }

    /* フッター */
    .footer { background-color: #ddd; color: #dc2626; padding:1rem 3rem; padding-bottom:2rem;}
    .footer-content { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding-bottom: 3rem;}
    .footer .footer-cls-1, .footer .footer-cls-2, .footer .footer-cls-3, .footer .footer-cls-4 { fill: #ffffff; }
    .footer .footer-cls-5 { stroke: #ffffff; }

    .service-logo-box svg text,
    .footer svg text {
      font-family: 'Zen Kaku Gothic New', sans-serif !important;
    }

    .mobile-only-break {
      flex-basis: 100%;
      height: 0;
    }
    .sp-br {
      display: none;
    }

    /* レスポンシブ */
    /* スマートフォン専用スタイル（768px未満） */
    @media (max-width: 767px) {
      .hero-image-half:last-child { display: none; }
      .anxiety-image-wrapper { max-width: 14rem; margin: 0 auto; }
      .anxiety-image-wrapper img { width: 100%; }
      .anxiety-bubble { font-size: 0.75rem; padding: 0.375rem 0.75rem; }
      .anxiety-bubble-1 { top: 0.25rem; left: 0.25rem; transform: translate(-30%, -30%) rotate(-12deg); }
      .anxiety-bubble-2 { top: 0.25rem; right: 0.25rem; transform: translate(30%, -30%) rotate(12deg); }
      .anxiety-bubble-3 { bottom: 0.25rem; left: 0.25rem; transform: translate(-30%, 30%) rotate(6deg); padding: 0.375rem 0.75rem; }
      .anxiety-bubble-4 { bottom: 0.25rem; right: 0.25rem; transform: translate(30%, 30%) rotate(-12deg); }
      .flow-card { padding: 0.5rem; }
      .flow-card h3 { font-size: 1.25rem; }
      .flow-card > p { font-size: 0.875rem; }
      .flow-steps { flex-direction: column; gap: 0.5rem; }
      .flow-arrow { transform: rotate(90deg); }
      .flow-step { padding: 0.5rem; font-size: 1.2rem; }
      .case-study-comparison { gap: 0.75rem; }
      .sp-br {
        display: initial;
      }
      .desktop-br {
        display: none;
      }
      .fixed-cta {width: 330px;}
    }
    
    /* 300px以上のスタイル */
    @media (min-width: 300px) { /* sm */
      .container { padding-left: 1.5rem; padding-right: 1.5rem; }
      .section-title { font-size: 1.5rem; }
      .hero-logo { top: 1rem; left: 1rem; width: 5rem; height: 5rem; }
      .hero-image-container { height: 500px; }
      .hero-catchphrase { font-size: 1.25rem; }
      .hero-sub-headline div { font-size: 1.25rem; }
      .hero-main-keyword h2 { font-size: 3rem; }
      .content-card-title {font-size: 1.3rem; }
      .points-section-image img { max-width: 14rem; }
      .cta-button { padding: 1rem 2rem; font-size: 1.25rem; }
      .case-study-comparison {font-size: 1.125rem;}
      .anxiety-text-wrapper {margin-top: 4rem; }
      .mobile-only-break { display: none; }
      .case-studies-wrapper {margin-top: 1rem;}
      .testimonials-wrapper {margin-top: 1rem;}
      .faq-wrapper { margin-top: 1rem; }
      .flow-timeline {margin-top: 1rem;}
      .closing-wrapper {margin-top: 3rem;}
      .closing-text .highlight-red { font-size: 1.3rem;}
      .flow-conclusion, .chance-banner-content p, .service-conclusion, .service-catchphrase p {font-size: 1rem;}
      .hero-main-keyword h2 {font-size: 2.5rem;}
    }
    @media (min-width: 768px) { /* md */
      .section { padding: 4rem 0; }
      .section-title { font-size: 2.25rem; }
      .hero-logo { width: 6rem; height: 6rem; }
      .hero-image-container { flex-direction: row; height: 600px; }
      .hero-image-half { width: 50%; }
      .hero-catchphrase { font-size: 1.875rem; }
      .hero-sub-headline div { font-size: 1.5rem; }
      .hero-main-keyword h2 { font-size: 3.75rem; }
      .points-section-flex { flex-direction: row; align-items: center; gap: 3rem; }
      .points-section-content { width: 60%; }
      .points-section-image { width: 40%; margin-top: 0; }
      .points-section-image img { max-width: 100%; }
      .concerns-item, .testimonial-item, .case-study-item { flex-direction: row; gap: 3rem; align-items: center; }
      .concerns-item.reverse, .testimonial-item.reverse { flex-direction: row-reverse; }
      .concerns-item-image, .testimonial-item-image { width: 10rem; }
      .concerns-item-image img { width: 8rem; }
      .concerns-item-text-wrapper, .testimonial-item-text-wrapper { flex: 1; margin-top: 0; }
      .concerns-item-text-wrapper { justify-content: flex-start; }
      .concerns-item.reverse .concerns-item-text-wrapper { justify-content: flex-end; }
      .speech-bubble-arrow, .testimonial-arrow { display: block; }
      .cta-button { padding: 1.25rem 2.5rem; font-size: 1.5rem; }
      .flow-timeline { margin-left: 0; }
      .flow-item { padding-left: 3rem; }
      .features-grid { grid-template-columns: repeat(3, 1fr); margin-top: 5rem; }
      .flow-steps { flex-direction: row; }
      .flow-arrow { transform: rotate(0deg); }
    }
     @media (min-width: 1024px) { /* lg */
      .section { padding: 5rem 0; }
      .section-title { font-size: 3rem; }
      .hero-logo { width: 8rem; height: 8rem; }
      .hero-catchphrase { font-size: 2.25rem; }
      .hero-sub-headline div { font-size: 1.875rem; }
      .hero-main-keyword h2 { font-size: 4.5rem; }
      .cta-button { font-size: 1.875rem; }

    }
