/* ========================================
   Philosophy Section - 違いを明確にする
   ======================================== */
.philosophy {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.03), rgba(131, 58, 180, 0.03));
    padding: 80px 0;
}

.philosophy-image {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: block;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-core {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.core-message {
    font-size: 26px;
    line-height: 1.9;
    color: var(--text-dark);
}

.core-message strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.philosophy-column {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
}

.philosophy-highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.02));
    border-color: var(--success-color);
}

.philosophy-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.philosophy-column:not(.philosophy-highlight) .philosophy-list li:before {
    content: "×";
    color: #FF9800;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    height: 25.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    margin: 0;
}

.philosophy-highlight .philosophy-list li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    height: 25.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    margin: 0;
}

/* ========================================
   Consultation Benefits Section
   ======================================== */
.consultation-benefits {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.05), rgba(131, 58, 180, 0.05));
    border-radius: 20px;
}

.benefits-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.15);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.benefit-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.benefits-note {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.benefits-note p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.benefits-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   Responsive - Philosophy & Benefits
   ======================================== */
@media (max-width: 768px) {
    .philosophy {
        padding: 60px 0;
    }

    .philosophy-image {
        margin: 50px auto;
        padding: 0 12px;
    }

    .philosophy-core {
        padding: 35px 24px;
        margin-top: 50px;
    }

    .core-message {
        font-size: 20px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .core-message strong {
        font-size: 22px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .philosophy-column {
        padding: 32px 24px;
    }

    .philosophy-heading {
        font-size: 18px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .philosophy-list li {
        font-size: 15px;
        line-height: 1.6;
        word-break: keep-all;
        overflow-wrap: break-word;
        gap: 8px;
    }

    .philosophy-column:not(.philosophy-highlight) .philosophy-list li:before,
    .philosophy-highlight .philosophy-list li:before {
        font-size: 18px;
        height: 24px;
        width: 18px;
    }

    .consultation-benefits {
        padding: 60px 0;
    }

    .benefits-intro {
        padding: 32px 24px;
        margin-bottom: 40px;
    }

    .benefits-intro p {
        font-size: 16px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .benefits-note {
        padding: 32px 24px;
    }

    .benefits-note p {
        font-size: 17px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .philosophy-image {
        margin: 40px auto;
        padding: 0 12px;
    }

    .core-message {
        font-size: 18px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .core-message strong {
        font-size: 20px;
    }

    .philosophy-heading {
        font-size: 17px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .philosophy-list li {
        font-size: 14px;
        line-height: 1.6;
        word-break: keep-all;
        overflow-wrap: break-word;
        gap: 6px;
    }

    .philosophy-column:not(.philosophy-highlight) .philosophy-list li:before,
    .philosophy-highlight .philosophy-list li:before {
        font-size: 16px;
        height: 22.4px;
        width: 16px;
    }

    .benefits-intro p {
        font-size: 15px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .benefit-title {
        font-size: 17px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .benefit-desc {
        font-size: 14px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .benefits-note p {
        font-size: 16px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}
