/* style.css */

body {
    margin: 0;
    overflow: hidden; /* スクロールバーを消す */
}

#sky-canvas {
    display: block;
    background-color: #000; /* 背景を黒に */
}


/* 既存のスタイル ... */

/* ポップアップのスタイル */
#wish-popup {
    display: none;
    position: fixed; /* 画面に固定 */
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 12px 18px; /* 少し大きく */
    max-width: 280px;
    pointer-events: none;
    z-index: 100;
    font-size: 14px; /* フォントサイズを少し大きく */
}
#wish-popup strong {
    display: block;
    margin-bottom: 5px;
    color: #aaccff;
    font-size: 16px;
}
#wish-popup p { margin: 0; }

/* フォームのスタイル */
#form-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(20, 20, 40, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid #445;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    z-index: 200;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}


/* ▼▼▼ スマートフォン用のスタイルを追加 ▼▼▼ */
@media (max-width: 600px) {
    /* フォームのフォントサイズを大きくする */
    #wish-form input,
    #wish-form textarea,
    #wish-form button {
        font-size: 16px;
    }

    #wish-form textarea {
        height: 100px; /* テキストエリアを少し高く */
    }
    
    /* ポップアップのフォントをさらに大きく */
    #wish-popup {
        font-size: 16px;
    }
    #wish-popup strong {
        font-size: 18px;
    }
}



#wish-form h3 {
    color: white;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

#wish-form input,
#wish-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #556;
    background-color: #1a1a2a;
    color: white;
    border-radius: 6px;
    font-family: sans-serif;
}

#wish-form textarea {
    height: 80px;
    resize: vertical;
}

#wish-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #4a69bd;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#wish-form button:hover {
    background-color: #5d82d1;
}

#wish-form button:disabled {
    background-color: #555;
    cursor: not-allowed;
}