/* ヒーローセクション */
.heroSection {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

    .heroContainer {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        
        .heroImage {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.8;
            }
        }

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
            z-index: 1;
        }

        .heroContent {
            position: relative;
            z-index: 2;
            text-align: center;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;

            h1 {
                font-size: 3rem;
                font-weight: bold;
                margin-bottom: 20px;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
                color: #ffffff;
                animation: fadeInUp 1s ease-out;
            }

            .heroSubtitle {
                font-size: 1.5rem;
                margin-bottom: 30px;
                text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
                color: #f0f0f0;
                animation: fadeInUp 1s ease-out 0.3s both;
            }

            .ctaButton {
                display: inline-block;
                background: linear-gradient(45deg, #00FFFF, #00CCCC);
                color: #1a1a2e;
                padding: 15px 40px;
                border-radius: 50px;
                font-size: 1.2rem;
                font-weight: bold;
                transition: all 0.3s ease;
                box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
                animation: fadeInUp 1s ease-out 0.6s both;

                &:hover {
                    background: linear-gradient(45deg, #00CCCC, #009999);
                    transform: translateY(-3px);
                    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
                }
            }
        }
    }
}

/* サービスセクション */
.serviceSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

    h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #1a1a2e;
        margin-bottom: 50px;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #00FFFF, #00CCCC);
        }
    }

    .serviceGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;

        .serviceCard {
            background-color: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(0, 255, 255, 0.2);
            }

            .serviceIcon {
                margin-bottom: 20px;
                
                img {
                    width: 180px;
                    height: 180px;
                    border-radius: 8px;
                    margin: 0 auto;
                    border: 3px solid #00CCCC;
                }
            }

            h3 {
                font-size: 1.5rem;
                color: #1a1a2e;
                margin-bottom: 15px;
            }

            p {
                color: #495057;
                line-height: 1.6;
            }
        }
    }
}

/* コースセクション */
.coursesSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

    h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #1a1a2e;
        margin-bottom: 50px;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #00FFFF, #00CCCC);
        }
    }

    .coursesGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-top: 50px;

        .courseCard {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(0, 255, 255, 0.2);
            }

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

            .courseContent {
                padding: 30px;

                h3 {
                    font-size: 1.3rem;
                    color: #1a1a2e;
                    margin-bottom: 15px;
                    line-height: 1.4;
                }

                .coursePrice {
                    font-size: 1.8rem;
                    color: #dc3545;
                    font-weight: bold;
                    margin-bottom: 10px;

                    .originalPrice {
                        text-decoration: line-through;
                        color: #6c757d;
                        font-size: 1.2rem;
                        margin-right: 10px;
                    }

                    .priceUnit {
                        font-size: 1rem;
                        color: #495057;
                    }
                }

                .courseDescription {
                    color: #495057;
                    margin-bottom: 20px;
                    font-weight: 500;
                }

                .courseDetails {
                    p {
                        color: #343a40;
                        margin-bottom: 15px;
                        line-height: 1.6;
                    }

                    .courseInfo, .courseMenu {
                        li {
                            color: #495057;
                            margin-bottom: 8px;
                            padding-left: 15px;
                            position: relative;

                            &::before {
                                content: '•';
                                position: absolute;
                                left: 0;
                                color: #00CCCC;
                                font-weight: bold;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* アクセスセクション */
.accessSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);

    h2 {
        text-align: center;
        font-size: 2.5rem;
        color: #1a1a2e;
        margin-bottom: 50px;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #00FFFF, #00CCCC);
        }
    }

    .accessGrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;

        .accessInfo {
            h3 {
                font-size: 1.8rem;
                color: #1a1a2e;
                margin-bottom: 20px;
            }

            p {
                color: #495057;
                margin-bottom: 10px;
                font-size: 1.1rem;
            }
        }

        .accessMap {
            img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                border-radius: 10px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }
        }
    }
}

/* コンタクトセクション */
.contactSection {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 204, 0.05));
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 2;
    }

    h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        position: relative;
        color: #ffffff;

        &::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #00FFFF, #ffffff);
        }
    }

    .contactContent {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;

        .contactInfo {
            h3 {
                font-size: 1.8rem;
                margin-bottom: 20px;
                color: #f0f0f0;
            }

            .phoneNumber {
                font-size: 2.5rem;
                font-weight: bold;
                margin-bottom: 10px;
                color: #dc3545;
                text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
            }

            p {
                font-size: 1.1rem;
                margin-bottom: 10px;
                color: #e9ecef;
            }
        }

        .reserveAction {
            text-align: center;

            .reserveButton {
                display: inline-block;
                background: linear-gradient(45deg, #00FFFF, #ffffff);
                color: #1a1a2e;
                padding: 20px 40px;
                border-radius: 50px;
                font-size: 1.5rem;
                font-weight: bold;
                transition: all 0.3s ease;
                box-shadow: 0 6px 20px rgba(0, 255, 255, 0.3);

                &:hover {
                    background: linear-gradient(45deg, #ffffff, #00CCCC);
                    transform: translateY(-3px);
                    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
                }
            }
        }
    }
}

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

/* レスポンシブ設定 */
@media (max-width: 768px) {
    .heroSection {
        .heroContainer {
            .heroContent {
                h1 {
                    font-size: 2rem;
                }

                .heroSubtitle {
                    font-size: 1.2rem;
                }

                .ctaButton {
                    padding: 12px 30px;
                    font-size: 1rem;
                }
            }
        }
    }

    .serviceSection, .coursesSection, .accessSection, .contactSection {
        padding: 60px 0;

        h2 {
            font-size: 2rem;
        }
    }

    .coursesSection {
        .coursesGrid {
            grid-template-columns: 1fr;
        }
    }

    .accessSection {
        .accessGrid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    .contactSection {
        .contactContent {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }
    }
}

@media (max-width: 480px) {
    .heroSection {
        .heroContainer {
            .heroContent {
                h1 {
                    font-size: 1.5rem;
                }

                .heroSubtitle {
                    font-size: 1rem;
                }
            }
        }
    }

    .serviceSection {
        .serviceGrid {
            grid-template-columns: 1fr;
        }
    }

    .coursesSection {
        .coursesGrid {
            .courseCard {
                margin: 0 10px;
            }
        }
    }
}