/* ==========================================
           5. 各セクションの独自スタイル
           ========================================== */
        
        /* 魅力・メリット */
        .charm-grid {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }

        .charm-card {
            flex: 1;
            background-color: #ffffff;
            border: 1px solid #f2ece6;
            border-radius: 8px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            text-align: center;
        }
        .charm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212,108,99,0.08);
            border-color: #e1b4b0;
        }

        .charm-icon {
            font-size: 2.2rem;
            color: var(--color-rose-btn);
            margin-bottom: 20px;
        }

        .charm-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111111;
            margin-bottom: 15px;
            letter-spacing: 0.02em;
        }

        .charm-card-text {
            font-size: 0.92rem;
            color: #555555;
            line-height: 1.8;
            text-align: justify;
        }

        /* 費用体系 */
        .fee-section {
            background-color: #fdfcfb;
            border-top: 1px solid #f2ece6;
            border-bottom: 1px solid #f2ece6;
        }

        .fee-box {
            display: flex;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.03);
            border: 1px solid #e1b4b0;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .fee-left {
            flex: 1.2;
            padding: 50px;
            background: linear-gradient(to bottom right, #ffffff, #fff9f8);
        }

        .fee-right {
            flex: 0.8;
            background-color: #fbf0ee;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-left: 1px solid #fde7e4;
        }

        .fee-badge {
            display: inline-block;
            background-color: var(--color-rose-btn);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .fee-value-wrap {
            margin-bottom: 15px;
        }

        .fee-value-large {
            font-family: var(--font-serif);
            font-size: 3.2rem;
            font-weight: 700;
            color: #111111;
            line-height: 1;
        }
        .fee-unit {
            font-size: 1.1rem;
            font-weight: 700;
            color: #111111;
            margin-left: 2px;
        }

        .fee-comparison {
            margin-bottom: 40px;
        }
        .fee-comparison-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px dashed #e5ded8;
            font-size: 0.95rem;
        }
        .fee-comparison-row:last-child {
            border-bottom: none;
        }
        .fee-label {
            font-weight: 500;
            color: #555555;
        }
        .fee-desc {
            font-weight: 700;
            color: #111111;
        }
        .fee-desc.highlight {
            color: var(--color-rose-btn);
        }
        .fee-desc.strike {
            color: #999999;
            text-decoration: line-through;
            font-weight: 400;
            font-size: 0.85rem;
            margin-right: 8px;
        }

        /* お仕事の流れ */
        .flow-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        .flow-step {
            display: flex;
            gap: 40px;
            margin-bottom: 45px;
            position: relative;
        }
        .flow-step:last-child {
            margin-bottom: 0;
        }
        .flow-step::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 50px;
            width: 2px;
            height: calc(100% + 20px);
            background-color: #f2ece6;
            z-index: 1;
        }
        .flow-step:last-child::before {
            display: none;
        }
        .flow-num {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 2px solid var(--color-rose-btn);
            color: var(--color-rose-btn);
            font-family: var(--font-serif);
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(212,108,99,0.1);
        }
        .flow-content {
            flex: 1;
            background-color: #ffffff;
            border: 1px solid #f2ece6;
            border-radius: 8px;
            padding: 25px 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.01);
        }
        .flow-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #111111;
            margin-bottom: 8px;
        }
        .flow-text {
            font-size: 0.9rem;
            color: #555555;
            line-height: 1.7;
        }

        /* サポート体制 */
        .support-section {
            background-color: #fdfcfb;
            border-top: 1px solid #f2ece6;
        }

        .support-grid {
            display: flex;
            gap: 30px;
        }
        .support-card {
            flex: 1;
            background-color: #ffffff;
            border-radius: 8px;
            padding: 35px 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.02);
            border: 1px solid #f2ece6;
            text-align: center;
        }
        .support-card-icon {
            font-size: 2rem;
            color: var(--color-rose-btn);
            margin-bottom: 15px;
        }
        .support-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #111111;
            margin-bottom: 12px;
        }
        .support-card-text {
            font-size: 0.88rem;
            color: #555555;
            line-height: 1.7;
            text-align: justify;
        }

        @media (max-width: 992px) {
            .charm-grid { flex-direction: column; gap: 20px; }
            .fee-box { flex-direction: column; }
            .fee-left { padding: 40px 30px; }
            .fee-right { padding: 40px 30px; border-left: none; border-top: 1px solid #fde7e4; }
            .support-grid { flex-direction: column; gap: 20px; }
        }
        @media (max-width: 768px) {
            .flow-step { gap: 20px; }
            .flow-num { width: 44px; height: 44px; font-size: 1.1rem; }
            .flow-content { padding: 20px; }
            .flow-step::before { left: 21px; }
        }
