@media (max-width: 767px) {
            
        }

        

        

        /* Flow Section */
        .flow-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .flow-step-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .flow-step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .flow-icon-wrap {
            width: 56px;
            height: 56px;
            background: #f9f9f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: #333;
        }

        .flow-icon-wrap svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .flow-step-num {
            color: var(--color-accent-gold);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .flow-step-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 12px;
            color: #111;
            line-height: 1.4;
        }

        .flow-step-desc {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .flow-assurances {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
        }

        .flow-assurance-badge {
            background: #fdfdfd;
            border: 1px solid #eaeaea;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .flow-assurance-badge::before {
            content: "✓";
            color: var(--color-accent-gold);
            font-weight: bold;
        }

        /* Zigzag Service Layout */
        .zigzag-row {
            display: flex;
            align-items: center;
            gap: 6%;
            margin-bottom: 80px;
        }
        .zigzag-row:last-child {
            margin-bottom: 0;
        }
        .zigzag-row:nth-child(even) {
            flex-direction: row-reverse;
        }
        .zigzag-image {
            width: 50%;
        }
        .zigzag-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            object-fit: cover;
            aspect-ratio: 16 / 10;
        }
        .zigzag-content {
            width: 44%;
        }

        /* Image Link Hover Effect */
        .zigzag-image a {
            display: block;
            overflow: hidden;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .zigzag-image a:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .zigzag-image img {
            transition: opacity 0.3s ease;
        }
        .zigzag-image a:hover img {
            opacity: 0.9;
        }
        .zigzag-badge {
            background-color: #ff5a3d;
            color: #fff;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .zigzag-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        .zigzag-desc {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 24px;
        }

        @media (max-width: 991px) {
            .flow-steps {
                grid-template-columns: repeat(3, 1fr);
            }
            .zigzag-row {
                gap: 4%;
            }
        }

        @media (max-width: 767px) {
            .zigzag-row, .zigzag-row:nth-child(even) {
                flex-direction: column;
                margin-bottom: 40px;
                gap: 18px;
            }
            .zigzag-image, .zigzag-content {
                width: 100%;
            }
            .zigzag-image img {
                aspect-ratio: 16 / 9;
            }
            .zigzag-title {
                font-size: 1.35rem;
                margin-bottom: 12px;
            }
            .zigzag-desc {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-bottom: 16px;
                font-size: 0.9rem;
            }
            .service-feature-list {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                background: transparent;
                padding: 0;
                margin-bottom: 18px;
            }
            .service-feature-item {
                display: inline-flex;
                margin: 0;
                padding: 7px 10px;
                border: 1px solid #e7e7e7;
                border-radius: 999px;
                background: #fff;
                font-size: 0.78rem;
                line-height: 1.4;
            }
            .flow-steps {
                display: block;
                margin-top: 28px;
                text-align: left;
            }
            .flow-step-card {
                display: grid;
                grid-template-columns: 44px 1fr;
                gap: 0 14px;
                margin-bottom: 14px;
                padding: 18px;
                text-align: left;
            }
            .flow-icon-wrap {
                grid-row: span 3;
                width: 44px;
                height: 44px;
                margin: 0;
            }
            .flow-icon-wrap svg {
                width: 22px;
                height: 22px;
            }
            .flow-step-num {
                margin-bottom: 4px;
                font-size: 0.74rem;
            }
            .flow-step-title {
                margin-bottom: 6px;
                font-size: 0.98rem;
            }
            .flow-step-title br {
                display: none;
            }
            .flow-step-desc {
                font-size: 0.82rem;
            }
        }
/* =============================================
   services/index.html ページ固有スタイル
   ============================================= */

/* サービス画像プレースホルダー（現在はIMGがないためBG色で代用） */
.service-img-placeholder {
    background: var(--color-bg-tertiary);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* services/index.html はサブフォルダのため、このCSSを読み込む場合は
   <link rel="stylesheet" href="../css/services.css"> を追記してください */
