
        /* 入園についてセクション */
        .admission-section {
            text-align: center;
        }

        .admission-text {
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: left;
        }

        /* 見学についてセクション */
        .tour-section {
        }

        .tour-content {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 30px;
        }

        .tour-text {
            flex: 1;
            line-height: 1.8;
        }

        .tour-image {
            flex: 0 0 400px;
            overflow: hidden;
            border-radius: 8px;
        }

        .tour-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .notice-box {
            background: #FFF5F5;
            border: 2px solid #FFE3E3;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }

        .notice-box p {
            line-height: 1.6;
            color: #666;
        }

        /* 予約・お問い合わせセクション */
        .contact-section {
            text-align: left;
        }

        .contact-time {
            margin-bottom: 30px;
        }

        .contact-time dl{
            margin-top: 2em;
        }
        .contact-time dt{
            margin-top: 1em;
            color: #e04f54;
        }
        .contact-time dd{
            margin-bottom: 1em;
            line-height: 2;
        }
        .contact-time dd strong{
            font-size: 2em;
            line-height: 1.2;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }

        .contact-method {
            background: white;
            border-radius: 15px;
            padding: 30px;
            border: 2px solid #e0e0e0;
            flex: 1;
            max-width: 300px;
        }

        .contact-phone {
            background: #ff7b47;
            color: white;
        }

        .contact-email {
            background: #7cb342;
            color: white;
        }

        .contact-method h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .contact-method .phone-number {
            color: white;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .contact-method .hours {
            color: white;
            font-size: 1rem;
        }

        .contact-method p {
            color: white;
            font-size: 1.1rem;
            line-height: 1.5;
        }

        .phone-icon, .email-icon {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* 途中入園・新学期入園セクション */
        .enrollment-section {
        }

        .enrollment-content {
            display: flex;
            justify-content: space-around;
            gap: 40px;
            margin-top: 30px;
        }

        .enrollment-box {
            border-radius: 15px;
            flex: 1;
            line-height: 2;
            letter-spacing: 1px;
        }

        .enrollment-title {
            color: #e04f54;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: left;
        }

        .enrollment-details {
            line-height: 1.6;
        }

        .enrollment-details strong {
            color: #333;
            font-weight: bold;
        }

        /* 入園案内タブセクション */
        .admission-guide-section {
        }

        /* タブスタイル（園での生活.htmlを参考） */
        .tab-container {
            margin: 30px 0;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 0;
            overflow-x: auto;
        }

        .tab-button {
            background: #bbb;
            color: white;
            border: none;
            padding: 12px 24px;
            cursor: pointer;
            font-weight: 500;
            font-family: 'Zen Maru Gothic', sans-serif;
            border-radius: 8px 8px 0 0;
            white-space: nowrap;
            min-width: 120px;
            text-align: center;
        }

        .tab-button:first-child {
            background: #FFB6C1;
        }

        .tab-button.active {
            background: #FFB6C1;
        }

        .tab-button:not(.active) {
            background: #bbb;
        }

        /* タブコンテンツ */
        .tab-content {
            background: white;
            border: 3px solid #FFB6C1;
            border-radius: 15px;
            padding: 40px;
            max-height: 500px;
            overflow-y: auto;
            display: none;
        }

        .tab-content.active {
            display: block;
        }
        .tab-content dl dd{
            margin-bottom: 1em;
        }
        .tab-content dl dd:last-child{
            margin: 0;
        }
        .tab-content table{
            width: 100%;
            border-collapse: collapse;
            border-top: 1px solid #e0e0e0;
            border-right: 1px solid #e0e0e0;
        }
        .tab-content table th,
        .tab-content table td {
            padding: 15px;
            border-bottom: 1px solid #e0e0e0;
            border-left: 1px solid #e0e0e0;
        }
        .tab-content table th{
            background: #FFB6C1;
        }
        .admission-details {
            padding: 25px;
            margin-top: 20px;
        }

        .admission-schedule {
            color: #e04f54;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: left;
        }

        .requirements-list {
            list-style-type: none;
        }

        .requirements-list li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }

        .requirements-list li::before {
            content: "●";
            color: #e04f54;
            position: absolute;
            left: 0;
        }

        /* セクション内見出しスタイル */
        .section-h3 {
            font-size: 2rem;
            color: #e04f54;
            margin: 40px 0 20px 0;
            text-align: left;
            font-weight: bold;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .tour-content {
                flex-direction: column;
            }
            
            .tour-image {
                flex: none;
            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }

            .enrollment-content {
                flex-direction: column;
            }

            .tab-buttons {
                justify-content: flex-start;
                gap: 5px;
            }

            .tab-button {
                margin-bottom: 0;
                padding: 10px 16px;
            }

            .tab-content {
                max-height: 400px;
                padding: 20px;
            }
            .tab-content table th,
            .tab-content table td{
                display: block;
            }
        }


        .section-container .p-top-contact__button-num {
            font-size: 3em;
        }
          .section-container .p-top-contact__button-text {
            font-size: 1em;
        }

        .section-container .p-top-contact__contents{
            margin: 0;
        }

        .kome{
            padding: 10px;
            font-size: 1.5rem;
        }

        .red{
            color:#e04f54;
        }
        .bold{
            font-weight: bold;
        }

        .underline{
            text-decoration: underline;
        }