@charset "UTF-8";
/* ==========================================================================
  施設共通（基本スタイル）
========================================================================== */
        .facility-comment-container {
            padding: 40px;
            text-align: center;
        }
.facility-comment-catchcopy {
            font-size: 2.8rem;
            margin-bottom: 30px;
            font-weight: bold;
        }
.facility-comment-text {
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
            line-height: 2;
        }
        
.facility-comment-gallery {
            display: flex;
            justify-content: center;
            gap: 30px;

        }
        
.facility-comment-gallery-item {
            transform: rotate(-5deg);
            transition: all 0.3s;
        }

.facility-comment-gallery-item img {
            width: 200px;
            height: auto;
            border-radius: 20px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transform: rotate(-5deg);
            transition: all 0.3s;
        }
        
.facility-comment-gallery-item:nth-child(2) {
            transform: rotate(3deg) translateY(20px);
        }
        
.facility-comment-gallery-item:nth-child(3) {
            transform: rotate(-3deg);
        }
        
.facility-comment-gallery-item:hover {
            transform: rotate(0deg) scale(1.1);
        }


        /* 施設情報セクション全体のスタイル */
        .facility-information-section {
            border-radius: 20px;
            padding: 40px;
            margin: 40px auto;
            max-width: 1200px;
            position: relative;
            overflow: hidden;
        }



        /* 見出しスタイル */
        .facility-information h2 {
            color: #2c3e50;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }



        /* カードグリッドレイアウト */
        .facility-information-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        /* 情報グループ */
        .facility-information-group {
            padding: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }


        /* 各情報項目 */
        .facility-information-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 12px;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }

        .facility-information-item:last-child {
            margin-bottom: 0;
        }

        /* ラベルスタイル */
        .info-label {
            background: #fff;
            color: #2c3e50;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 1.6rem;
            font-weight: 600;
            margin-right: 15px;
            min-width: 85px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
            white-space: nowrap;
        }

        /* 値のスタイル */
        .info-value {
            color: #4a5568;
            font-size: 1.6rem;
            flex: 1;
            font-weight: 400;
            line-height: 2.5;
        }

        .info-value br {
            margin-bottom: 5px;
        }
        .phone-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            display: inline-flex;
            align-items: center;
            line-height: 2.5;
        }

        /* 地図コンテナ */
        .map-container {
            margin-top: 35px;
            border-radius: 15px;
            overflow: hidden;
            height: 450px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            position: relative;
            z-index: 1;
            background: white;
            border: 2px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
        }

        .map-container:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
.facility-comment-catchcopy {
font-size: 1.8rem;
}

.facility-comment-gallery-item img {
            height: auto;
}
        .facility-information-section {
            padding: 20px 10px;
}
        .facility-information-card-grid {
            gap: 0;
            margin-bottom: 10px;
        }
        .facility-information-group {
            padding: 10px;
        }
        .map-container {
            margin-top: 0;
        }
}

/* ==========================================================================
  施設共通（予約フォーム）
========================================================================== */

        .facility-reservation-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .facility-reservation-header {
            background: #ccc;
            color: white;
            padding: 30px;
            text-align: center;
        }

        .facility-reservation-header h1 {
            font-size: 28px;
        }

        .facility-reservation-content {
            display: flex;
            gap: 40px;
            padding: 40px;
        }

        /* カレンダースタイル */
        .facility-reservation-calendar-section {
            flex: 1;
            min-width: 350px;
        }

        .facility-reservation-calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .facility-reservation-calendar-header h2 {
            font-size: 20px;
            color: #333;
        }

        .facility-reservation-navi-button {
            background: #667eea;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }

        .facility-reservation-navi-button:hover:not(:disabled) {
            background: #5a67d8;
        }

        .facility-reservation-navi-button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .facility-reservation-calendar {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .facility-reservation-calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }

        .calendar-day-header {
            text-align: center;
            font-weight: bold;
            padding: 10px 5px;
            color: #666;
            font-size: 14px;
        }

        .calendar-day-header.sunday {
            color: #e53e3e;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
            position: relative;
            background: white;
            border: 2px solid transparent;
        }

        .calendar-day:hover:not(.disabled):not(.selected) {
            background: #f0f4ff;
            transform: scale(1.05);
        }

        .calendar-day.other-month {
            color: #cbd5e0;
        }

        .calendar-day.disabled {
            background: #f5f5f5;
            color: #999;
            cursor: not-allowed;
        }

        .calendar-day.sunday,
        .calendar-day.holiday {
            color: #e53e3e;
        }

        .calendar-day.sunday.disabled,
        .calendar-day.holiday.disabled {
            background: #f5f5f5;
            color: #ffb3b3;
        }

        .calendar-day.selected {
            background: yellow;
            font-weight: bold;
            border-color: #ccc;
            transform: scale(1.1);
        }

        .calendar-day.today {
            border-color: #000;
            font-weight: bold;
        }

        /* 更新ボタンエリア */
        .calendar-refresh-area {
            text-align: center;
            padding: 15px 0;
            border-top: 1px solid #e2e8f0;
            margin-top: 15px;
        }
        
        #refreshCalendar {
            background: #ccc;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.4rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        #refreshCalendar:hover:not(:disabled) {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
        }
        
        #refreshCalendar:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }
        
        #lastUpdate {
            display: block;
            font-size: 1.2rem;
            color: #666;
            margin-top: 8px;
        }

        /* フォームスタイル */
        .facility-reservation-form-section {
            flex: 1;
            min-width: 350px;
        }

        .facility-reservation-block {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .facility-reservation-block h3 {
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ccc;
        }

.facility-reservation-form-section label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

        label.required::after {
            content: " *";
            color: #e53e3e;
        }

        input, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1.6rem;
            transition: border-color 0.3s;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        input[readonly] {
            background: #f8f9fa;
            cursor: not-allowed;
        }

        #submit {
            width: 100%;
            margin-top: 30px;
            padding: 15px;
            background: #ccc;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.8rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        #submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        #submit:active {
            transform: translateY(0);
        }

        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .facility-reservation-content {
                flex-direction: column;
                padding: 20px;
                gap: 30px;
            }

            .facility-reservation-calendar-section,
            .facility-reservation-form-section {
                min-width: auto;
            }

            .facility-reservation-calendar {
                padding: 15px;
            }

            .calendar-day {
                font-size: 14px;
            }

            .facility-reservation-block {
                padding: 20px;
            }

        .facility-reservation-header {
            padding: 10px;
        }

            .facility-reservation-header h1 {
                font-size: 24px;
            }
        #submit {
            padding: 5px;
        }
        }

/* ==========================================================================
  本園
========================================================================== */

/* ==========================================================================
  児童館
========================================================================== */

/* ==========================================================================
  中京
========================================================================== */

/* ==========================================================================
  ルーム
========================================================================== */

/* ==========================================================================
  朱雀
========================================================================== */

/* ==========================================================================
  吉秀
========================================================================== */

/* ==========================================================================
  清水
========================================================================== */

/* ==========================================================================
  炭山
========================================================================== */
.sumiyama-interview-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    letter-spacing: 0.08em;
    color: #333;
}

.sumiyama-interview-container h1 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.sumiyama-interview-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sumiyama-interview-img {
    flex: 0 0 300px;
    position: relative;
}

.sumiyama-interview-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sumiyama-interview-text {
    position: relative;
    flex: 1;
    background: linear-gradient(to right, #ffffe5, #f1fbe5);
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.sumiyama-interview-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.sumiyama-interview-text .highlight {
    background-color: #fff3cd;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.img-caption {
    font-size: 1.2rem;
    color: #666;
    text-align: right;
    margin-top: 5px;
    margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
.sumiyama-interview-content {
    display: block;
}
.sumiyama-interview-img img {
    margin-top: 10px;
}
}