/* p5.js アニメーション用CSS */

/* キャンバスコンテナのスタイル */
#p5-canvas-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -10 !important;
    pointer-events: none !important;
}

/* p5.jsが生成するキャンバスのスタイル */
#p5-canvas-container canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* ページ全体のスタイル調整 */
.page-wrapper {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* メインヘッダーの背景を半透明に */
.main-header {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* バナーセクションの背景を調整 */
.banner-section-three {
    background: transparent !important;
}

/* その他のセクションの背景を調整 */
.about-section-three,
.service-section-two,
.objective-section,
.related-product {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

/* フッターの背景を調整 */
.main-footer {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

/* プリローダーのz-index調整 */
.preloader {
    z-index: 9999 !important;
}