/* style.css */

body {
    margin: 0;
    overflow: hidden; /* スクロールを無効化し、背景を固定 */
    font-family: sans-serif; /* フォントは適宜調整 */
    color: #fff; /* 背景が暗いのでテキストは明るく */
    background-color: #000; /* Three.jsの背景が描画されるまでのフォールバック */
}

/* Three.jsのCanvasを格納するコンテナ */
#threejs-background {
    position: fixed; /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 他のコンテンツの下に配置 */
}

/* Three.jsによって追加されるCanvas要素のスタイル */
#threejs-background canvas {
    display: block; /* 余白をなくす */
}


/* ヒーローコンテンツなど、背景の上に重ねる要素のスタイル */
.hero-content {
    position: relative; /* 背景より手前に表示 */
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 画面いっぱいに表示 */
    padding: 20px;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.8); /* 幻想的なテキストシャドウ */
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    color: #fff; /* 明るいテキスト色 */
    text-shadow: 0 0 15px rgba(0, 170, 255, 1); /* より強いシャドウ */
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 2em;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00aaff, #0077cc); /* グラデーション */
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 120, 200, 0.3); /* シャドウ */
}

.cta-button:hover {
    transform: translateY(-3px); /* 少し浮き上がる */
    box-shadow: 0 8px 20px rgba(0, 120, 200, 0.5); /* シャドウを強く */
}


.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    }








/* 他のセクションは必要に応じてスタイルを追加 */
/* 例: */
/*
.content-section {
    position: relative; // 背景の上に重ねる
    z-index: 1;
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.9); // 背景が透けるように半透明に
    color: #333;
}
*/

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
}

