/* 私たちについて - 哲学セクション */

.about-philosophy-section {
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.about-philosophy-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 40px;
    text-align: left;
    position: relative;
    letter-spacing: 0.05em;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 16px;
}

.about-philosophy-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 4px;
}

.about-philosophy-section .about-card {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.about-philosophy-section .about-card::before {
    display: none;
}

.about-lead,
.about-philosophy-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.8;
}

.about-philosophy-lead {
    font-style: italic;
    letter-spacing: 0.08em;
}

.about-signature {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.about-signature-text {
    font-weight: 600;
    color: var(--gray-700);
}

