* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    /* overflow: hidden; <-- この行を削除しました */
    background-color: #fff;
}

#sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #87CEEB; /* 青空の色 */
    overflow: hidden;
    z-index: -1; /* 背景として表示 */
}

#clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    /* ↓ このパスは仮のものです。
          実際の画像（雲）のパスに差し替えてください 
    */
    background: url('path/to/clouds.png') repeat-x;
    animation: cloudMovement 30s linear infinite;
}

@keyframes cloudMovement {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

#airplane {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 150px;
    height: 50px;
    /* ↓ このパスは仮のものです。
          実際の画像（飛行機）のパスに差し替えてください 
    */
    background: url('path/to/airplane.png') no-repeat center center;
    animation: airplaneMovement 90s linear infinite;
}

@keyframes airplaneMovement {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100vw); /* 画面の右端まで飛ばす */
    }
}

#window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 50vh;
    transform: translate(-50%, -50%);
    border: 10px solid white;
    overflow: hidden;
    z-index: 1;
}

#skyview {
    width: 100%;
    height: 100%;
    background-color: #87CEEB; /* 青空 */
    position: relative;
    text-align: center;
    padding-top: 20%;
}

h1 {
    color: white;
    font-size: 4rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#main-content {
    margin-top: 60vh; /* 画面の半分を越えた位置からメインコンテンツを表示 */
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section p {
    font-size: 1.2rem;
}

#main-content {
    background-color: #f0f0f0;
    padding: 2rem;
    height: 200vh; /* コンテンツを長くしてスクロール可能にする */
}