        /*================================================
         * 基本スタイル & 変数定義
         *================================================*/
        :root {
            --primary-color: #16a085;  /* メインカラー (安心感のあるグリーン) */
            --secondary-color: #2c3e50; /* テキスト・見出しカラー (濃いグレー) */
            --accent-color: #f39c12;   /* アクセントカラー (オレンジ) */
            --bg-light-gray: #f8f9fa;  /* 薄い背景色 */
            --border-color: #e9ecef;   /* 境界線カラー */
            --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: var(--font-family-base);
            line-height: 1.7;
            color: #333;
            background-color: #fff;
        }

        img {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
        }

        hr {
            border: 0;
            height: 1px;
            background-color: var(--border-color);
            margin: 60px auto;
            width: 90%;
        }

        /*================================================
         * コンテナ & セクション共通
         *================================================*/
.content {
  width: 100% !important;
  float: none !important;
}
        .content .container {
            width: 100%;
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
        }

        .content .slope-section {
            padding: 40px 0;
        }

        .content .slope-section h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-top: 0;
            margin-bottom: 30px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        /*================================================
         * ヒーローセクション
         *================================================*/
        .content .slope-hero {
            text-align: center;
            padding: 40px 0;
        }

        .content .slope-hero h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .content .slope-hero .lead {
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        /*================================================
         * 課題解決セクション
         *================================================*/
        .content .problem-grid-slope {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .content .problem-item-slope {
            text-align: center;
            padding: 15px;
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .content .problem-item-slope img {
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        .content .problem-item-slope h3 {
            margin-top: 0;
            color: var(--secondary-color);
            font-size: 1.3rem;
        }

        .content .problem-item-slope p {
            font-size: 0.95rem;
            text-align: left;
        }

        .content .solution-box-slope {
            background-color: #e8f8f5;
            border: 2px solid var(--primary-color);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            font-size: 1.1rem;
        }
        .content .solution-box-slope strong {
          display: block;
          font-weight: bold;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        /*================================================
         * 強み・特徴セクション
         *================================================*/
        .content .feature-grid-slope {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .content .feature-item-slope {
            background-color: var(--bg-light-gray);
            border-radius: 8px;
            padding: 30px;
            transition: background-color 0.3s;
        }
        .content .feature-item-slope:hover {
            background-color: #e9ecef;
        }

        .content .feature-item-slope img {
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .content .feature-item-slope h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-top: 0;
            margin-bottom: 10px;
        }

        /*================================================
         * 製作の流れ
         *================================================*/
        .content .order-flow {
            background-color: var(--bg-light-gray);
            padding-top: 0;
            padding-bottom: 60px;
        }
.content .order-flow h2 {
  font-weight: bold;
  font-size: 2em;
}
        .content .flow-steps-slope {
            list-style: none;
            padding: 0;
            max-width: 800px;
            margin: 0 auto;
        }
        .content .flow-steps-slope li {
            position: relative;
            padding: 0 0 50px 50px;
            border-left: 2px solid var(--primary-color);
        }
        .content .flow-steps-slope li:last-child {
            border-left: 2px solid transparent;
            padding-bottom: 0;
        }
        .content .flow-steps-slope li::before {
            content: attr(data-step);
            position: absolute;
            left: -21px;
            top: -5px;
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .content .flow-steps-slope li span {
            font-size: 0.9rem;
            font-weight: bold;
            color: var(--primary-color);
            display: block;
            margin-bottom: 5px;
        }
        .content .flow-steps-slope li strong {
            display: block;
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        /*================================================
         * CTA（行動喚起）セクション
         *================================================*/
        .content .cta-section {
            background: var(--secondary-color);
            color: #fff;
            text-align: center;
            border-radius: 12px;
            padding: 50px 30px;
        }
        .content .cta-section h2 {
            color: #fff;
          background: none;
          border: none;
        }
        .content .cta-section h2:after {
            content: none;
        }
        .content .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .content .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            font-size: 1.2rem;
            transition: transform 0.3s, background-color 0.3s;
            border: 2px solid var(--primary-color);
        }
        .content .cta-button:hover {
            background-color: #117a65;
            transform: translateY(-3px);
        }
        
        /*================================================
         * レスポンシブ対応
         *================================================*/
        @media (max-width: 992px) {
            .content .problem-grid-slope {
                grid-template-columns: 1fr;
            }
          .content .flow-steps-slope {
            margin-left: 30px;
          }
        }

        @media (max-width: 768px) {
            .content .slope-hero h1 { font-size: 2rem; }
            .content .slope-section h2 { font-size: 1.8rem; }
            .content .feature-grid-slope {
                grid-template-columns: 1fr;
            }
        }