/* このページ固有のスタイル */
        
        /* ごあいさつセクション */
        .greeting-section {
        }

        .greeting-top {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 40px;
        }

        .greeting-text-1,
        .greeting-text-2 {
            flex: 1;
            line-height: 1.8;
        }

        .greeting-text-2 {
            clear: both;
        }

        .greeting-image {
            flex: 0 0 30%;
            overflow: hidden;
        }

        .greeting-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* 教育理念セクション */
        .philosophy-section {
            text-align: center;
        }

        .philosophy-circles {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
        }

        .philosophy-circle {
            width: 225px;
            height: 225px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            position: relative;
        }

        .philosophy-circle.health {
            background: #E87062;
        }

        .philosophy-circle.education {
            background: #F9D373;
        }

        .philosophy-circle.cooperation {
            background: #51A8D4;
        }

        .philosophy-circle h3 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .philosophy-circle .subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
        }

        .philosophy-circle .main-text {
            font-size: 4rem;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin: 8px 0;
        }

        .philosophy-description {
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 50px;
            margin: 0 auto;
            justify-content: center;
        }

        .philosophy-description img {
            width: 30%;
            object-fit: cover;
        }

        .philosophy-description p {
            text-align: left;
            font-size: 2rem;
            line-height: 1.8;
        }

        /* 理念テキストのスタイリング */
        .highlight-orange {
            color: #F9D373;
            font-weight: 600;
            border-bottom: 3px solid #FFE9E6;
            font-size: 1.2em;
        }

        .highlight-pink {
            color: #E87062;
            font-weight: 600;
            border-bottom: 3px solid #FFE9E6;
            font-size: 1.2em;
        }

        .highlight-blue {
            color: #51A8D4;
            font-weight: 600;
            border-bottom: 3px solid #FFE9E6;
            font-size: 1.2em;
        }

        /* 教育方針セクション */
        .policy-section {
            padding: 40px;
        }

        .policy-content {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .policy-image {
            width: 300px;
        }

        .policy-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .policy-text {
            max-width: 600px;
            line-height: 3;
            padding: 0 20px;
            text-align: center;
        }

        /* 認可定員数セクション */
        .capacity-section {
        }

        .capacity-overview {
            margin: 30px 0;
        }

        .capacity-overview div {
            margin-bottom: 10px;
        }

        .capacity-overview .age-number {
            font-weight: bold;
        }

        .capacity-table-wrapper {
            overflow-x: auto;
            margin-top: 20px;
        }

        .capacity-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
        }

        .capacity-table th,
        .capacity-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }

        .capacity-table .age-column {
            background: #FFC8CA;
            font-weight: 600;
            max-width: 170px;
            width: 170px;
        }

        .capacity-table .type-column {
            background: #FFEEEE;
            max-width: 350px;
            width: 350px;
        }

        .capacity-table .number-column {
            background: #FFF5F5;
        }

        /* 各認定に関してセクション */
        .certification-section {
            text-align: center;
        }

        .certification-text {
            margin: 0 0 20px 0;
            line-height: 1.6;
        }

        .spbr{
                display: none;
            }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .greeting-top {
                flex-direction: column;
            }
            .policy-section {
                padding: 0px;
            }
            .greeting-image{
                flex: none;
            }

            .greeting-image img {
              height: auto;
             }

            .philosophy-description{
                display: block;
            }
              .philosophy-description img {
            width: 100%;
            margin-bottom: 20px;
        }


            .philosophy-circles {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .policy-content {
                flex-direction: column;
                gap: 30px;
            }

            .capacity-table-wrapper {
                overflow-x: auto;
            }

            .spbr{
                display: inline-block;
            }
        }