/* ========================================
   サービス案内ページ専用スタイル
   ======================================== */

/* ページタイトルセクション */
.page-title-section {
    background: linear-gradient(135deg, rgba(197, 212, 218, 0.8), rgba(139, 218, 194, 0.8)), url('../koya.img/tree2.jpg!d');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    color: #ffffff;
    margin-top: 180px; /* 固定ヘッダーの高さ分 */
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.page-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #666666; /* より濃いグレーに変更 */
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 白い影を追加 */
}

/* 保育時間・料金セクション */
.service-overview-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.service-overview-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-overview-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.service-overview-content p {
    margin-bottom: 0.5rem;
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
}

.service-time, .service-age, .service-capacity, .service-price {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 500;
    color: #4a6741;
}

.service-note {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* 特色ある保育内容セクション */
.unique-features-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.unique-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
    margin-top: 3rem;
}

.unique-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.unique-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.unique-feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.feature-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: #4a6741;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
}

/* 一日の流れセクション */
.daily-schedule-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

.schedule-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    border-radius: 2px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.schedule-time {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-width: 80px;
    text-align: center;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.schedule-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}

.schedule-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.schedule-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    line-height: 1.5;
}

/* 年間行事セクション */
.annual-events-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.event-season {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}



.season-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: white;
    border-radius: 25px;
    display: inline-block;
}

.event-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.event-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #4a6741;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.event-list li:last-child {
    border-bottom: none;
}

.event-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
    font-size: 1.2em;
}

/* 安全・衛生管理セクション */
.safety-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 248, 220, 0.1));
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
}

.safety-card {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 103, 65, 0.1);
    backdrop-filter: blur(10px);
}



.safety-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7FDBDA, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.safety-icon svg {
    width: 40px;
    height: 40px;
}

.safety-title {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 1.5rem;
}

.safety-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.safety-list li {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #4a6741;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.safety-list li:last-child {
    border-bottom: none;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a6741;
    font-weight: bold;
}





/* お問い合わせセクション */
.contact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 248, 255, 0.1));
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-description {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Rounded Mplus 1c', 'Rounded Mplus 1p', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.primary {
    background: linear-gradient(135deg, #40E0D0, #20B2AA);
    color: #ffffff;
}

.contact-btn.primary:hover {
    background: linear-gradient(135deg, #48D1CC, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    color: #20B2AA;
    border-color: #20B2AA;
}

.contact-btn.secondary:hover {
    background: rgba(32, 178, 170, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

/* アクティブなナビゲーションリンク */
.nav-link.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.nav-link.active .nav-text-ja,
.nav-link.active .nav-text-en {
    color: #007bff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .schedule-timeline::before {
        left: 60px;
    }
    
    .schedule-time {
        min-width: 60px;
        margin-right: 1.5rem;
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .unique-features-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    

}

@media screen and (max-width: 480px) {
    .page-title-section {
        margin-top: 160px;
        padding: clamp(2rem, 6vw, 4rem) 0;
    }
    
    .schedule-timeline::before {
        left: 50px;
    }
    
    .schedule-time {
        min-width: 50px;
        margin-right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    }
    
    .schedule-content {
        padding: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .service-overview-grid,
    .unique-features-grid,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-btn {
        padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* スマートフォン対応 */
@media screen and (max-width: 480px) {
    .contact-section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .contact-btn {
        padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem);
        font-size: clamp(0.8rem, 1.8vw, 1rem);
        min-width: 100%;
    }
}

/* 超小画面対応 */
@media screen and (max-width: 360px) {
    .contact-section {
        padding: clamp(1.5rem, 5vw, 2.5rem) 0;
    }
    
    .contact-content {
        padding: 0 0.5rem;
    }
    
    .contact-description {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .contact-btn {
        padding: clamp(0.6rem, 1.6vw, 0.9rem) clamp(1rem, 2.2vw, 1.6rem);
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
    }
}

/* 大画面対応 */
@media screen and (min-width: 1200px) {
    .contact-section {
        padding: clamp(5rem, 8vw, 7rem) 0;
    }
    
    .contact-content {
        max-width: 900px;
    }
    
    .contact-description {
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
    }
    
    .contact-buttons {
        gap: 1.5rem;
    }
    
    .contact-btn {
        padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(2.5rem, 4vw, 3rem);
        font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    }
}

/* アニメーション効果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-overview-card,
.unique-feature-card,
.schedule-item,
.event-season,
.safety-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-overview-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-overview-card:nth-child(3) {
    animation-delay: 0.4s;
}

.unique-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.unique-feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.schedule-item:nth-child(even) {
    animation-delay: 0.1s;
}

.event-season:nth-child(2) {
    animation-delay: 0.1s;
}

.event-season:nth-child(3) {
    animation-delay: 0.2s;
}

.event-season:nth-child(4) {
    animation-delay: 0.3s;
}

.safety-card:nth-child(2) {
    animation-delay: 0.2s;
}

.safety-card:nth-child(3) {
    animation-delay: 0.4s;
}

.corporate-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.corporate-feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.4s;
}
