/* ================================================
   Pantogar Diagrams CSS
   Add this to your WordPress theme's Custom CSS
   ================================================ */


/* pantogar-comparison styles */
        .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 1.1em;
        }
        
        .recommended-badge {
            background: #8AB858;
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9em;
            display: inline-block;
            margin-bottom: 40px;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 50px;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-table thead {
            background: #8AB858;
            color: white;
        }
        
        .comparison-table th {
            padding: 20px;
            font-size: 1.2em;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table th:first-child {
            width: 40%;
        }
        
        .comparison-table tbody tr {
            border-bottom: 1px solid #e5e5e5;
        }
        
        .comparison-table tbody tr:hover {
            background: #fafafa;
        }
        
        .comparison-table tbody tr:last-child {
            border-bottom: none;
        }
        
        .comparison-table td {
            padding: 18px 20px;
            vertical-align: middle;
            color: #666;
        }
        
        .feature-name {
            font-weight: 600;
            color: #2d3748;
            font-size: 1.05em;
        }
        
        .vegan-column {
            background: #f8fbf5;
        }
        
        .checkmark {
            color: #8AB858;
            font-size: 1.3em;
            font-weight: bold;
        }
        
        .crossmark {
            color: #999;
            font-size: 1.3em;
            font-weight: bold;
        }
        
        .highlight-box {
            background: #f8fbf5;
            border: 2px solid #8AB858;
            padding: 35px;
            border-radius: 8px;
            margin: 40px 0;
        }
        
        .highlight-box h3 {
            color: #2d3748;
            margin-bottom: 20px;
            font-size: 1.6em;
            font-weight: 600;
        }
        
        .highlight-box ul {
            list-style: none;
            padding: 0;
        }
        
        .highlight-box li {
            padding: 12px 0;
            color: #666;
            line-height: 1.7;
            padding-left: 30px;
            position: relative;
        }
        
        .highlight-box li:before {
            content: "✓";
            color: #8AB858;
            font-weight: bold;
            font-size: 1.2em;
            position: absolute;
            left: 0;
        }
        
        .key-differences {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        
        .difference-card {
            background: #fafafa;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
        }
        
        .difference-card:hover {
            border-color: #8AB858;
            background: #f8fbf5;
        }
        
        .difference-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .difference-title {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 12px;
            font-size: 1.2em;
        }
        
        .difference-text {
            color: #666;
            line-height: 1.7;
            font-size: 0.95em;
        }
        
        .bottom-line {
            background: #f8fbf5;
            border: 2px solid #8AB858;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            margin-top: 50px;
        }
        
        .bottom-line
        
        .bottom-line p {
            color: #666;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        @media (max-width: 968px) {
            .comparison-table {
                font-size: 0.9em;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 12px 10px;
            }
            
            .key-differences {
                grid-template-columns: 1fr;
            }
        }


/* pantogar-cycle styles */
        .cycle-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .phase {
            text-align: center;
            padding: 30px 20px;
            background: #fafafa;
            border-radius: 8px;
            border: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }
        
        .phase:hover {
            background: #f8fbf5;
            border-color: #8AB858;
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(138, 184, 88, 0.1);
        }
        
        .phase-number {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: #8AB858;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: 600;
        }
        
        .phase-name {
            font-size: 1.5em;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }
        
        .phase-duration {
            font-size: 1em;
            color: #8AB858;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .phase-description {
            color: #666;
            line-height: 1.7;
            font-size: 0.95em;
            margin-bottom: 20px;
        }
        
        .phase-stat {
            background: white;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            color: #2d3748;
            font-size: 0.9em;
            border: 1px solid #e5e5e5;
        }
        
        .intervention-section {
            background: #f8fbf5;
            border-radius: 8px;
            padding: 40px;
            border: 2px solid #8AB858;
            margin-bottom: 40px;
        }
        
        .intervention-section
        
        .intervention-content {
            color: #666;
            line-height: 1.8;
            font-size: 1.05em;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .intervention-content strong {
            color: #8AB858;
            font-weight: 600;
        }
        
        .key-points-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .key-point {
            padding: 25px;
            background: #f8fbf5;
            border-radius: 8px;
            border-left: 4px solid #8AB858;
        }
        
        .key-point-icon {
            font-size: 2em;
            margin-bottom: 15px;
        }
        
        .key-point-title {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .key-point-text {
            color: #666;
            line-height: 1.7;
            font-size: 0.95em;
        }
        
        @media (max-width: 968px) {
            .cycle-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .key-points-grid {
                grid-template-columns: 1fr;
            }
        }

      /* pantogar-timeline styles */
        .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 60px;
            font-size: 1.1em;
        }
        
        .timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: #e5e5e5;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            align-items: flex-start;
        }
        
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        
        .timeline-item.left .timeline-content {
            margin-right: auto;
            margin-left: 0;
            text-align: right;
        }
        .timeline-item.left .key-points ul {
            text-align: left !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            list-style-position: inside !important;
        }

        .timeline-item.right .timeline-content {
            margin-left: auto;
            margin-right: 0;
            text-align: left;
        }
        
        .timeline-content {
            width: 45%;
            background: #fafafa;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #e5e5e5;
        }
        
        .timeline-item.milestone .timeline-content {
            background: #f8fbf5;
            border: 2px solid #8AB858;
        }
        
        .timeline-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: 3px solid #8AB858;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8AB858;
            font-weight: 600;
            font-size: 1.1em;
            z-index: 10;
        }
        
        .timeline-item.milestone .timeline-marker {
            background: #8AB858;
            color: white;
            width: 60px;
            height: 60px;
            font-size: 1.2em;
        }
        
        .month-label {
            font-size: 1.6em;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
        }
        
        .phase-label {
            display: inline-block;
            padding: 4px 12px;
            background: #8AB858;
            color: white;
            border-radius: 4px;
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 0.95em;
            text-align: left;
        }
        
        .key-points {
            background: white;
            padding: 15px;
            border-radius: 6px;
            border: 1px solid #e5e5e5;
        }
        
        .key-points ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .key-points li {
            padding: 0;
            color: #666;
            font-size: 0.9em;
            padding-left: 20px;
            position: relative;
        }
        
        .key-points li:before {
            content: "•";
            color: #8AB858;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .progress-bar-container {
            margin-top: 15px;
            background: #e5e5e5;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: #8AB858;
            transition: width 0.5s ease;
        }
        
        .important-note {
            background: #f8fbf5;
            border: 2px solid #8AB858;
            border-radius: 8px;
            padding: 40px;
            margin: 50px 0 0;
            text-align: center;
        }
        
        .important-note h3 {
            color: #2d3748;
            font-size: 1.8em;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .important-note p {
            color: #666;
            font-size: 1.05em;
            line-height: 1.8;
        }
        
        @media (max-width: 968px) {
            .timeline:before {
                left: 30px;
            }
            
            .timeline-marker {
                left: 30px;
            }
            
            .timeline-item.left .timeline-content,
            .timeline-item.right .timeline-content {
                width: calc(100% - 100px);
                margin-left: 100px;
                padding-left: 20px;
                text-align: left;
            }
        }


/* pantogar-price styles */
.subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 1.1em;
        }
        
        .comparison-section {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 1.8em;
            color: #2d3748;
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .price-comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
        }
        
        .price-comparison-table thead {
            background: #8AB858;
            color: white;
        }
        
        .price-comparison-table th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
        }
        
        .price-comparison-table tbody tr {
            border-bottom: 1px solid #e5e5e5;
        }
        
        .price-comparison-table tbody tr:hover {
            background: #fafafa;
        }
        
        .price-comparison-table tbody tr.winner {
            background: #f8fbf5;
        }
        
        .price-comparison-table td {
            padding: 20px;
            color: #666;
        }
        
        .retailer-cell {
            font-weight: 600;
            color: #2d3748;
        }
        
        .winner-badge {
            background: #8AB858;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75em;
            margin-left: 10px;
            font-weight: 600;
        }
        
        .price-cell {
            font-size: 1.4em;
            font-weight: 600;
            color: #2d3748;
        }
        
        .price-cell.best {
            color: #8AB858;
        }
        
        .shipping-free {
            color: #8AB858;
            font-weight: 600;
        }
        
        .bundle-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .bundle-card {
            background: #fafafa;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .bundle-card:hover {
            border-color: #8AB858;
            background: #f8fbf5;
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(138, 184, 88, 0.1);
        }
        
        .bundle-card.best {
            border-color: #8AB858;
            border-width: 3px;
            background: #f8fbf5;
        }
        
        .best-value-badge {
            background: #8AB858;
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            display: inline-block;
            font-weight: 600;
            font-size: 0.9em;
            margin-bottom: 20px;
        }
        
        .bundle-title {
            font-size: 1.5em;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }
        
        .bundle-price {
            font-size: 2.5em;
            font-weight: 600;
            color: #2d3748;
            margin: 15px 0;
        }
        
        .bundle-card.best .bundle-price {
            color: #8AB858;
        }
        
        .price-per-box {
            color: #666;
            font-size: 1em;
            margin-bottom: 15px;
        }
        
        .savings-badge {
            background: #2d3748;
            color: white;
            padding: 6px 15px;
            border-radius: 4px;
            display: inline-block;
            font-weight: 600;
            font-size: 0.9em;
        }
        
        .features-list {
            list-style: none;
            margin-top: 20px;
            text-align: left;
        }
        
        .features-list li {
            padding: 0;
            color: #666;
            font-size: 0.95em;
        }
        
        .features-list li:before {
            content: "✓";
            color: #8AB858;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .savings-highlight {
            background: #f8fbf5;
            border: 2px solid #8AB858;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            margin: 50px 0;
        }
        
        .savings-highlight
        
        .savings-amount {
            font-size: 4em;
            font-weight: 600;
            color: #8AB858;
            margin: 20px 0;
        }
        
        .savings-text {
            font-size: 1.1em;
            color: #666;
            line-height: 1.8;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .comparison-box {
            background: #fafafa;
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #e5e5e5;
        }
        
        .comparison-box h3 {
            color: #2d3748;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 1.3em;
        }
        
        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .price-row:last-child {
            border-bottom: none;
        }
        
        .price-label {
            color: #666;
        }
        
        .price-amount {
            font-weight: 600;
            font-size: 1.2em;
        }
        
        .price-amount.winner {
            color: #8AB858;
        }
        
        .price-amount.competitor {
            color: #999;
        }
        
        .total-savings {
            background: #8AB858;
            color: white;
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            margin-top: 20px;
            font-weight: 600;
            font-size: 1.1em;
        }
        
        @media (max-width: 968px) {
            .bundle-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .price-comparison-table {
                font-size: 0.9em;
            }
        }


/* 毛髪サイクル図解 */
.jp-cycle-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.jp-phase {
    text-align: center;
    padding: 30px 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.jp-phase:hover {
    background: #f8fbf5;
    border-color: #8AB858;
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(138, 184, 88, 0.15);
}

.jp-phase-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #8AB858;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 600;
}

.jp-phase-name {
    font-size: 1.3em;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.jp-phase-duration {
    font-size: 1em;
    color: #8AB858;
    font-weight: 600;
    margin-bottom: 20px;
}

.jp-phase-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.jp-phase-stat {
    background: white;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9em;
    border: 1px solid #e5e5e5;
}

/* 重要ポイントグリッド */
.jp-key-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.jp-key-point {
    padding: 25px;
    background: #f8fbf5;
    border-radius: 8px;
    border-left: 4px solid #8AB858;
}

.jp-key-point-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.jp-key-point-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.jp-key-point-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95em;
}

/* タイムライン図解 */
.jp-timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.jp-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #e5e5e5;
}

.jp-timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

.jp-timeline-item:last-child {
    margin-bottom: 0;
}

.jp-timeline-item.jp-left .jp-timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}
.jp-timeline-item.jp-left .jp-description {
  text-align: left;
}
.jp-timeline-item.jp-right .jp-timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.jp-timeline-content {
    width: 45%;
    background: #fafafa;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
}

.jp-timeline-item.jp-milestone .jp-timeline-content {
    background: #f8fbf5;
    border: 3px solid #8AB858;
}
.jp-key-points .wp-block-list {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.jp-timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #8AB858;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8AB858;
    font-weight: 700;
    font-size: 1.1em;
    z-index: 10;
}

.jp-timeline-item.jp-milestone .jp-timeline-marker {
    background: #8AB858;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 1.3em;
    border-width: 4px;
}

.jp-month-label {
    font-size: 1.4em;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.jp-phase-label {
    display: inline-block;
    padding: 5px 12px;
    background: #8AB858;
    color: white;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 15px;
}

.jp-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.jp-important-note {
    background: #f8fbf5;
    border: 3px solid #8AB858;
    border-radius: 8px;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
}

.jp-important-note h3 {
    color: #2d3748;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
}

.jp-important-note p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .jp-cycle-container {
        grid-template-columns: 1fr;
    }
    
    .jp-key-points-grid {
        grid-template-columns: 1fr;
    }
    
    .jp-timeline:before {
        left: 30px;
    }
    
    .jp-timeline-marker {
        left: 30px;
    }
    
    .jp-timeline-item.jp-left .jp-timeline-content,
    .jp-timeline-item.jp-right .jp-timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
        padding-left: 20px;
        text-align: left;
    }
}
/* 価格比較図解 */
.jp-price-comparison {
    margin: 40px 0;
}

.jp-best-value-box {
    background: #f8fbf5;
    border: 3px solid #8AB858;
    border-radius: 10px;
    padding: 40px;
    margin: 30px 0;
}

.jp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.jp-benefit-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.jp-benefit-item:hover {
    border-color: #8AB858;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(138, 184, 88, 0.15);
}

.jp-benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.jp-benefit-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.jp-benefit-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .jp-benefits-grid {
        grid-template-columns: 1fr;
    }
}
/* 重要な注意喚起ボックス */
.jp-important-alert {
    background: #fff3cd;
    border-left: 5px solid #ff9800;
    border-radius: 8px;
    padding: 25px 30px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jp-important-alert h4 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.jp-important-alert p {
    color: #856404;
    line-height: 1.7;
    margin-bottom: 15px;
}

.jp-important-alert ul {
    color: #856404;
    margin-left: 20px;
}

.jp-important-alert ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .jp-important-alert {
        padding: 20px;
    }
}
/* 期待値ボックス */
.jp-expectation-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.jp-can-do, .jp-cannot-do {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid;
}

.jp-can-do {
    background: #f8fbf5;
    border-color: #8AB858;
}

.jp-cannot-do {
    background: #fff3f3;
    border-color: #dc3545;
}

.jp-can-do h6, .jp-cannot-do h6 {
    margin-bottom: 15px;
}

.jp-realistic-expectations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.jp-expect-yes, .jp-expect-no {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid;
}

.jp-expect-yes {
    background: #f8fbf5;
    border-color: #8AB858;
}

.jp-expect-no {
    background: #fff3f3;
    border-color: #dc3545;
}

.jp-expect-yes h6, .jp-expect-no h6 {
    margin-bottom: 15px;
}
h5 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

h6 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}
@media (max-width: 768px) {
    .jp-expectation-box,
    .jp-realistic-expectations {
        grid-template-columns: 1fr;
    }
}
/* アイコン付きリスト用クラス（黒丸を非表示） */
.no-bullet-list {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.no-bullet-list li {
    padding-left: 0 !important;
    margin-bottom: 12px !important;
    line-height: 1.8 !important;
}

/* ネストされたリストの調整 */
.no-bullet-list .wp-block-list {
    padding-left: 30px !important;
}
.no-bullet-list li::before {
    content: none !important;
    display: none !important;
}