/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* アクセシビリティ改善 */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* スクリーンリーダー用のスキップリンク */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    border-radius: 4px;
    text-decoration: none;
    z-index: 10001;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

/* 動きの制御（プリファーなし） */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 基本設定 - ロゴ配色統一 */
:root {
    --primary-color: #00B7EB;
    --secondary-color: #33C4F0;
    --accent-blue: #0099CC;
    --accent-light-blue: #66CCFF;
    --accent-dark-blue: #006699;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --text-color: #2C3E50;
    --light-text: #607D8B;
    --background: #F8FEFF;
    --card-background: #FFFFFF;
    --border-radius: 20px;
    --shadow: 0 10px 40px rgba(0, 183, 235, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #00B7EB, #33C4F0);
    --gradient-accent: linear-gradient(135deg, #0099CC, #66CCFF);
}

body {
    font-family: 'Klee One', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background: var(--gradient-primary);
    padding: 0.4rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(0, 183, 235, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    overflow: visible;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
    background: white;
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7.5px);
    background: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    white-space: nowrap;
}



.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ドロップダウンメニュー - 新実装 */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid rgba(0, 183, 235, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    pointer-events: none;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-menu .dropdown-menu a:hover {
    background: rgba(0, 183, 235, 0.1);
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

/* ドロップダウンメニューの矢印 */
.nav-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* デスクトップ版でのホバー動作 */
@media (min-width: 769px) {
    .nav-menu .dropdown:hover .dropdown-menu,
    .nav-menu .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-menu .dropdown:hover > a::after,
    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
}

/* メインビジュアル */
.hero {
    background: linear-gradient(135deg, var(--background), #F0F8FF);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFB6C1" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%2387CEEB" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%2398FB98" opacity="0.3"/></svg>');
    animation: float 6s ease-in-out infinite;
}

/* 遅延読み込み画像のスタイル */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}

/* 装飾要素 */
.decoration {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    animation: rotate 20s linear infinite;
}

.decoration-2 {
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    animation: float 8s ease-in-out infinite;
}

.decoration-3 {
    bottom: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    animation: pulse 4s ease-in-out infinite;
}

.decoration-4 {
    top: 10%;
    right: 5%;
    width: 90px;
    height: 90px;
    animation: rotate 15s linear infinite reverse;
}

.decoration-5 {
    top: 15%;
    left: 10%;
    width: 110px;
    height: 110px;
    animation: float 10s ease-in-out infinite;
}

.decoration-6 {
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation: pulse 6s ease-in-out infinite;
}

.decoration-7 {
    top: 20%;
    left: 5%;
    width: 120px;
    height: 120px;
    animation: rotate 18s linear infinite;
}

.decoration-8 {
    top: 10%;
    right: 15%;
    width: 100px;
    height: 100px;
    animation: float 12s ease-in-out infinite;
}

.decoration-9 {
    bottom: 15%;
    left: 10%;
    width: 110px;
    height: 110px;
    animation: rotate 22s linear infinite reverse;
}

.decoration-10 {
    top: 20%;
    right: 20%;
    width: 80px;
    height: 80px;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gentle-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
    }
    50% { 
        transform: translateY(-8px) translateX(0px); 
    }
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 183, 235, 0.2);
}

.hero-badge {
    /* display: inline-flex; */
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 183, 235, 0.3);
    /* animation: gentle-float 6s ease-in-out infinite; */
    transform-origin: center center;
    will-change: transform;
    width: 250px;
    text-align: center;
}

.badge-icon {
    width: 16px;
    height: 16px;
    animation: gentle-spin 8s linear infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(0, 183, 235, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin: 0 auto;
    width: 250px;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 183, 235, 0.5);
}

.button-icon {
    width: 20px;
    height: 20px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-image {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

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

.floating-1 {
    top: 5%;
    right: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
    z-index: 2;
}

.floating-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
    animation-duration: 8s;
    z-index: 2;
}

.floating-3 {
    top: 45%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 8s;
    z-index: 2;
}


@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(3deg) scale(1.05); }
    50% { transform: translateY(-25px) rotate(5deg) scale(1.1); }
    75% { transform: translateY(-15px) rotate(3deg) scale(1.05); }
}

/* セクション共通 */
section {
    padding: 45px 0;
}

.section-title {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-icon {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gentle-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* パンくずリスト */
.breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 183, 235, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: var(--light-text);
    font-weight: 300;
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* 保育方針 */
.policy {
    background: linear-gradient(135deg, #FFFFFF, #F8FEFF);
    position: relative;
}

.policy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    /* background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 182, 193, 0.05) 40%, 
        rgba(255, 182, 193, 0.1) 70%, 
        rgba(255, 182, 193, 0.15) 100%); */
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.policy-content {
    /* display: grid;
    grid-template-columns: 1fr 2fr; */
    /* gap: 4rem; */
    align-items: center;
}

.policy-main h3 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* 保育方針のアイコンを非表示 */
.goal-item .goal-icon {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 235, 0.1), transparent);
    transition: var(--transition);
}

.goal-item:hover::before {
    left: 100%;
}

.goal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 183, 235, 0.25);
    border-color: var(--primary-color);
}

.goal-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.goal-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.goal-content p {
    color: var(--light-text);
    margin: 0;
    text-align: left;
}

.goal-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 235, 0.1), transparent);
    transition: var(--transition);
}

.goal-card:hover::before {
    left: 100%;
}

.goal-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.goal-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 183, 235, 0.3);
    z-index: 2;
}

.goal-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.goal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.goal-card:hover .goal-image img {
    transform: scale(1.05);
}

.goal-card h4 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.goal-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 特徴 */
.features {
    background: linear-gradient(135deg, #FFF, #F0F8FF);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFB6C1" opacity="0.2"/><circle cx="80" cy="40" r="1.5" fill="%2387CEEB" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%2398FB98" opacity="0.2"/><circle cx="90" cy="90" r="1.5" fill="%23FFE4B5" opacity="0.2"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.features-content {
    margin-top: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.2rem;
}

.feature-card {
    background: var(--card-background);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.1), transparent);
    transition: var(--transition);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(0, 183, 235, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 183, 235, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.feature-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: 'Yusei Magic', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Yusei Magic', sans-serif;
    text-align: center;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(135, 206, 235, 0.03) 50%, 
        rgba(135, 206, 235, 0.08) 80%, 
        rgba(135, 206, 235, 0.12) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

/* 施設紹介 */
.facility {
    background: linear-gradient(135deg, #E6F3FF, #F0F8FF);
    position: relative;
}

.facility::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(152, 251, 152, 0.04) 45%, 
        rgba(152, 251, 152, 0.09) 75%, 
        rgba(152, 251, 152, 0.13) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.facility-showcase {
    margin-top: 1.5rem;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.facility-item {
    /* background: var(--card-background); */
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow); */
    overflow: hidden;
    transition: var(--transition);
}

.facility-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 183, 235, 0.2);
}

.facility-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.facility-item:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 1rem;
}

.facility-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: 'Yusei Magic', sans-serif;
    font-weight: 600;
}

.facility-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.facility-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.facility-card:hover::before {
    left: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    z-index: 2;
}

.facility-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-card h3 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.facility-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* ご利用概要 */
.overview {
    background: linear-gradient(135deg, #FFFFFF, #F8FEFF);
    position: relative;
}

.overview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 42px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 228, 181, 0.03) 55%, 
        rgba(255, 228, 181, 0.07) 80%, 
        rgba(255, 228, 181, 0.11) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.overview-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-background);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.info-card h3 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.time, .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: var(--light-text);
}

.features-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.features-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.feature-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.feature-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 183, 235, 0.2);
    z-index: 2;
}

.feature-step-number {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 3;
}

.feature-step-content {
    margin-left: 60px;
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
    transition: var(--transition);
}

.feature-step-content:hover {
    transform: translateX(10px);
}

.feature-step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.feature-step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-step-content p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 235, 0.1), transparent);
    transition: var(--transition);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-badge {
    background: linear-gradient(135deg, var(--warning-color), var(--primary-color));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(255, 228, 181, 0.3);
    flex-shrink: 0;
}

.feature-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-item:hover .feature-image img {
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* 月額利用料金 */
.fees {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    position: relative;
    overflow: hidden;
}

.fees::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 183, 235, 0.04) 50%, 
        rgba(0, 183, 235, 0.08) 75%, 
        rgba(0, 183, 235, 0.12) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.fees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.fees-illustration {
    text-align: center;
    padding: 1.5rem;
}

.fees-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.fees-illustration:hover .fees-image {
    transform: scale(1.05);
}

.fees-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fees-notes {
    background: var(--card-background);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.fees-notes h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Yusei Magic', sans-serif;
    text-align: center;
}

.fees-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fees-notes li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.fees-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fee-section {
    background: var(--card-background);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.fee-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-family: 'Yusei Magic', sans-serif;
    text-align: center;
}

.fee-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fee-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #F8FEFF, #F0F8FF);
    border-radius: 12px;
    border: 2px solid rgba(0, 183, 235, 0.1);
    transition: all 0.3s ease;
}

.fee-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 183, 235, 0.15);
    border-color: rgba(0, 183, 235, 0.2);
}

.fee-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    animation: pulse 3s ease-in-out infinite;
}

.fee-info-content {
    flex: 1;
}

.fee-info-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.fee-highlight {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.fee-note {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* 一日の流れ */
.schedule {
    background: linear-gradient(135deg, #F0F8FF, #E6F3FF);
    position: relative;
    overflow: hidden;
}

.schedule::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(230, 230, 250, 0.02) 60%, 
        rgba(230, 230, 250, 0.06) 85%, 
        rgba(230, 230, 250, 0.1) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.tab-button {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.tab-button.active::before {
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

.tab-button.active {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 183, 235, 0.3);
}

.tab-button:hover:not(.active) {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 183, 235, 0.2);
}

.tab-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 183, 235, 0.3);
}

.tab-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tab-button:hover::after {
    transform: translateX(100%);
}

.schedule-timeline {
    max-width: 600px;
    margin: 0 auto;
}

/* スケジュール写真装飾 */
.schedule-photos {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.photo-decoration {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 183, 235, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.photo-decoration.photo-1 {
    top: 8%;
    left: 3%;
    width: 240px;
    height: 240px;
    animation-delay: 0s;
    z-index: 2;
}

.photo-decoration.photo-2 {
    top: 45%;
    right: 2%;
    width: 220px;
    height: 220px;
    animation-delay: 2s;
    z-index: 2;
}

.photo-decoration.photo-3 {
    bottom: 12%;
    left: 5%;
    width: 260px;
    height: 260px;
    animation-delay: 4s;
    z-index: 2;
}

.decoration-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.photo-decoration:hover .decoration-photo {
    transform: scale(1.15);
}

.photo-decoration:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 183, 235, 0.3);
}

/* タイムラインアイコン */
.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 183, 235, 0.3);
    flex-shrink: 0;
}

.timeline-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.schedule-timeline.hidden {
    display: none;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.0rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.timeline-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 183, 235, 0.05), transparent);
    transition: var(--transition);
}

.timeline-item:hover::after {
    left: 100%;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.1);
}

.timeline-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 60px;
}

.activity {
    color: var(--text-color);
    font-weight: 500;
}

/* 入園案内 */
.admission {
    background: linear-gradient(135deg, #FFFFFF, #F8FEFF);
    padding: 40px 0;
    position: relative;
}

.admission::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 46px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(122, 213, 255, 0.03) 50%, 
        rgba(122, 188, 255, 0.08) 75%, 
        rgba(122, 173, 255, 0.12) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.admission-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 600px;
    margin: 0 auto;
}

.process-step {
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.process-step-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.process-step-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-family: 'Yusei Magic', sans-serif;
}

.process-step-content {
    padding: 1.5rem;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: var(--transition);
}

.document-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(10px);
}

.document-check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.document-item span {
    color: var(--text-color);
    font-weight: 500;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.item-category {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: var(--transition);
}

.item-category:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.item-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.item-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-tag {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
}

.item-tag:hover {
    transform: scale(1.05);
}

/* お問い合わせ */
.contact {
    background: linear-gradient(135deg, #F0F8FF, #E5F9FF);
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 183, 235, 0.02) 55%, 
        rgba(0, 183, 235, 0.06) 80%, 
        rgba(0, 183, 235, 0.1) 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.5;
}

.contact-form {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 183, 235, 0.1);
}

/* select要素専用のスタイル */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300B7EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 18px;
    padding-right: 2.5rem;
}

.form-group select option {
    padding: 0.5rem;
    background: white;
    color: var(--text-color);
}

.form-group select:invalid {
    color: #999;
}

.form-group select:valid {
    color: var(--text-color);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 183, 235, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 183, 235, 0.4);
}

.submit-button:disabled {
    background: linear-gradient(135deg, #ccc, #999);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

.submit-button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 入園案内 - 毎日の持参物テーブル */
.daily-items-table {
    margin: 2rem 0;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 183, 235, 0.15);
    margin-bottom: 2rem;
}

/* デスクトップ版ではテーブルを表示、モバイル版ではカードを表示 */
.items-mobile {
    display: none;
}

.items-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.items-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.items-table tr:last-child td {
    border-bottom: none;
}

.items-table tr:hover {
    background-color: #f8feff;
}

.item-detail {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: block;
}

.daily-items-notes {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.daily-items-notes h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.daily-items-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daily-items-notes li {
    color: #856404;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.daily-items-notes li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

.daily-items-notes li:last-child {
    margin-bottom: 0;
}

/* 入園案内 - 書類リストの注意事項 */
.document-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.document-note p {
    color: #856404;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* 一時預かりサービス */
.temporary-care {
    background: linear-gradient(135deg, #f8feff 0%, #e0f7fa 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.temporary-care-content {
    max-width: 1000px;
    margin: 0 auto;
}

.temp-care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.temp-care-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 183, 235, 0.15);
    transition: var(--transition);
}

.temp-care-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 183, 235, 0.25);
}

.temp-care-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.temp-care-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #98FB98;
}

.temp-care-icon .material-icons {
    font-size: 24px;
    color: white;
}

/* Google Icons のスタイル調整 */
.title-icon.material-icons {
    font-size: 1.2em;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.fee-info-icon .material-icons {
    font-size: 24px;
    color: white;
}

.fee-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00B7EB;
    flex-shrink: 0;
}

.temp-care-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.price-info {
    text-align: center;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8feff;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.item-name {
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
}

.item-quantity {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.temp-care-notes {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.temp-care-notes h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.temp-care-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.temp-care-notes li {
    color: #856404;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.temp-care-notes li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

.temp-care-notes li:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .temp-care-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .temp-care-item {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* タブレット版 - 持ち物表をカード形式に変更 */
    .items-table {
        display: none;
    }
    
    .items-mobile {
        display: block;
    }
    
    /* タブレット版 - 送信完了モーダルのサイズ調整 */
    .success-modal {
        max-width: 360px !important;
        padding: 1.8rem !important;
    }
    
    .success-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 1.2rem !important;
    }
    
    .success-icon svg {
        width: 35px !important;
        height: 35px !important;
    }
    
    .success-message {
        font-size: 1.05rem !important;
        margin-bottom: 1.3rem !important;
    }
    
    .close-modal-btn {
        padding: 0.7rem 1.8rem !important;
        font-size: 0.95rem !important;
    }
    
    .item-quantity {
        align-self: flex-end;
    }
}

/* フッター */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem 0 1.2rem;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo-image {
    height: 100px;
    width: auto;
}

.footer-info h3 {
    font-family: 'Yusei Magic', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.footer-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

/* 中画面サイズ用調整 */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .admission-process {
        width: 90%;
        max-width: 600px;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header {
        padding: 0.25rem 0;
    }
    
    .header .container {
        position: relative;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 183, 235, 1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 80px 1.5rem 1rem;
        align-items: center;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height:100vh;
        top:45px;
        padding-top: 30px;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 10px;
        text-align: center;
        margin: 0;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.3px;
    }
    
    /* モバイル用ドロップダウンメニュー - 新実装 */
    .nav-menu .dropdown {
        position: relative;
        width: 100%;
    }
    
    .nav-menu .dropdown > a::after {
        content: '▼';
        margin-left: 0.5rem;
        font-size: 0.8rem;
        transition: var(--transition);
    }
    
    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        padding: 0;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 1002;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0;
        pointer-events: auto;
        z-index: 1002;
    }
    
    .nav-menu .dropdown-menu li {
        margin: 0.3rem 0;
    }
    
    .nav-menu .dropdown-menu a {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin: 0 1rem;
        padding: 0.7rem 1rem;
        font-size: 1rem;
        color: white;
    }
    
    .nav-menu .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    /* モバイル用ドロップダウンの矢印を削除 */
    .nav-menu .dropdown-menu::before {
        display: none;
    }
    
    .nav-menu a {
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
    
    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
        width: 200px;
        margin: 0 auto;
    }
    
    .policy-content {
        grid-template-columns: 1fr;
    }
    
    .policy-goals {
        grid-template-columns: 1fr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .admission-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .admission-process {
        width: 95%;
        max-width: 500px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .floating-image {
        width: 100px;
        height: 100px;
    }
    
    .floating-1 {
        top: 8%;
        right: 12%;
    }
    
    .floating-2 {
        bottom: 18%;
        left: 8%;
    }
    
    .floating-3 {
        top: 48%;
        right: 6%;
    }
    
    .photo-decoration {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .breadcrumb {
        padding: 0.8rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-number {
        font-size: 1.5rem;
    }
    
    .schedule-tabs {
        padding: 0.3rem;
        border-radius: 40px;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .tab-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .goal-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    
    .goal-content h4 {
        text-align: center;
    }
    
    /* 保育方針のアイコンを非表示 */
    .goal-item .goal-icon {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .tab-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .tab-button svg {
        width: 14px;
        height: 14px;
    }
    
    .schedule-tabs {
        padding: 0.2rem;
        border-radius: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fees-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fees-illustration {
        padding: 1.5rem;
    }
    
    .fees-image {
        max-width: 250px;
    }
    
    .fee-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fee-info-item {
        padding: 1.2rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .feature-number {
        font-size: 1.3rem;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facility-item {
        margin-bottom: 1rem;
    }
    
    .facility-image {
        height: 200px;
    }
    
    .facility-content {
        padding: 1.2rem;
    }
    
    .facility-content h3 {
        font-size: 1.2rem;
    }
    
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .facility-image {
        height: 180px;
    }
    
    .facility-content {
        padding: 0 1rem;
    }
    
    .facility-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .facility-content p {
        font-size: 0.9rem;
    }
    
    .fees-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fees-illustration {
        padding: 1rem;
    }
    
    .fees-image {
        max-width: 200px;
    }
    
    .fees-notes,
    .fee-section {
        padding: 1.5rem;
    }
    
    .fees-notes h3,
    .fee-section h3 {
        font-size: 1.2rem;
    }
    
    .fee-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .fee-info-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .fee-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .fee-highlight {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        padding: 0.6rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        margin: 0 0.3rem;
    }
    
    .admission-process {
        width: 100%;
        max-width: none;
    }
    
    /* モバイル用写真装飾サイズ調整 */
    .photo-decoration.photo-1,
    .photo-decoration.photo-2,
    .photo-decoration.photo-3 {
        display: none;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-logo-image {
        height: 130px;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-image {
        width: 80px;
        height: 80px;
    }
    
    .floating-1 {
        top: 10%;
        right: 10%;
    }
    
    .floating-2 {
        bottom: 20%;
        left: 5%;
    }
    
    .floating-3 {
        top: 50%;
        right: 5%;
    }
    
    /* モバイルメニューの調整 */
    .nav-menu {
        padding: 0px 1rem 1rem;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 0.5rem 1.2rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .nav-toggle {
        padding: 0.4rem;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }
    
    /* モバイル版 - 持ち物表をカード形式に変更 */
    .items-table {
        display: none;
    }
    
    .items-mobile {
        display: block;
    }
    
    .item-card {
        background: white;
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 183, 235, 0.1);
        border: 2px solid rgba(0, 183, 235, 0.1);
    }
    
    .item-card-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 1rem;
        border-radius: 10px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .item-card-content {
        color: var(--text-color);
        line-height: 1.6;
    }
    
    .item-detail-mobile {
        color: var(--light-text);
        font-size: 0.9rem;
        margin-top: 0.5rem;
        padding-left: 1rem;
        border-left: 3px solid var(--primary-color);
    }
    
    /* モバイル版 - 送信完了モーダルのサイズ調整 */
    .success-modal {
        max-width: 320px !important;
        padding: 1.5rem !important;
    }
    
    .success-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
    }
    
    .success-icon svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .success-message {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .close-modal-btn {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* FAQ セクション - AEO対応 */
.faq {
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #f8feff 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
    padding: 0 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 183, 235, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-out;
    border: 2px solid transparent;
    margin-bottom: 5px;
    width: 100%;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 183, 235, 0.2);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.faq-question:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease-out;
    user-select: none;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: white;
    margin: 0;
    display: block;
    height: 0;
}

.faq-item.active .faq-answer {
    padding: 30px 30px 35px 30px;
    /* max-heightはJavaScriptで動的に設定 */
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: none !important;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: block;
}

/* FAQ レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 25px 20px 30px 20px;
    }
    
    .faq-item {
        margin-bottom: 3px;
    }
}
