        /* 経営理念キャッチフレーズ */
        .philosophy-catch {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-main);
            margin-bottom: 16px;
        }

        /* 代表挨拶 */
        .greeting {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        .greeting__img {
            flex: 0 0 280px;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .greeting__body {
            flex: 1;
        }
        .greeting__body h3 {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--color-heading);
            margin-bottom: 16px;
        }
        .greeting__body p {
            font-size: .9375rem;
            line-height: 1.9;
            margin-bottom: 16px;
        }
        .greeting__name {
            text-align: right;
            font-weight: 700;
            color: var(--color-heading);
            margin-top: 24px;
        }
        .greeting__name small {
            display: block;
            font-size: .8125rem;
            font-weight: 400;
            color: var(--color-body);
        }

        @media (max-width: 767px) {
            .greeting {
                flex-direction: column;
            }
            .greeting__img {
                flex: none;
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }
        }
