/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-image: url('../images/topback.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* メインレイアウト */
.container {
    display: flex;
    min-height: 100vh;
}

.main-content {
    overflow-y: auto;
}

/* PC表示：三分割レイアウト */
@media (min-width: 769px) {
    .left-space,
    .right-space {
        flex: 1;
    }
    
    .main-content {
        flex: 1;
        max-width: 800px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }
}

/* スマホ表示：中央コンテンツのみ */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .left-space,
    .right-space {
        display: none;
    }
    
    .main-content {
        flex: 1;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
    }
}