@charset "UTF-8";
<style>
       /* 提供サービス・領域セクション */
        .service-area {
            margin: 60px 0;
        }

        /* 新規構築サービスセクション */
        .new-construction {
            margin-bottom: 80px;
        }

        /* カードグリッド */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        /* サービスカード */
        .service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .service-card .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .service-card h4 {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin: 15px 0 10px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card .catchcopy {
            font-size: 14px;
            color: #FF6B00 !important;
            font-weight: bold;
            margin-bottom: 15px;
            min-height: 20px;
        }

        .service-card .description {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: left;
        }

        .service-card .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #0071c1;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            margin-top: auto;
        }

        .service-card .btn:hover {
            background-color: #005a9c;
        }

        /* 既存サービス用のカードスタイル（ボタンなし） */
        .existing-service-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .existing-service-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .existing-service-card .icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .existing-service-card .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .existing-service-card h3 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin: 10px 0;
        }

        .existing-service-card .catchcopy {
            font-size: 14px;
            color: #FF6B00 !important;
            font-weight: bold;
            margin-bottom: 15px;
            min-height: 20px;
        }

        .existing-service-card .description {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            text-align: left;
        }

        /* レスポンシブ対応 */
        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 17px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 13px;
            }

            .service-card h4 {
                min-height: auto;
            }

            .service-card .description {
                min-height: auto;
            }
        }
    </style>