/* リセット */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* ボディ設定 */
    body {
        font-family: 'Helvetica Neue', sans-serif;
        background: linear-gradient(135deg, #00C300, #00bcd4);  /* LINEグリーンとブルーのグラデーション */
        color: #fff;
        line-height: 1.6;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        text-align: center;
        margin: 0;
        flex-direction: column; /* 縦並び（デフォルト） */
    }
    
    /* ヘッダー */
    header {
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    header .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
        font-weight: 700;
        color: #fff;
    }
    
    /* メインコンテンツ */
    main {
        width: 100%;
        max-width: 800px;
        margin: 30px 0;
        display: flex;
        flex-direction: column; /* デフォルトは縦並び */
        justify-content: center;
        align-items: center;
    }
    
    /* インストロセクション */
    .intro h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .intro p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* CTA ボタン */
    .cta {
        margin-top: 30px;
    }
    
    .cta-button {
        padding: 15px 30px;
        background-color: #fff;
        color: #00C300; /* ボタンの文字色はLINEグリーン */
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 25px;
        transition: background-color 0.3s, color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #00C300;  /* ボタンの背景色をLINEグリーン */
        color: #fff;  /* ホバー時は文字色を白に */
    }
    
    /* フッター */
    footer {
        position: absolute;
        bottom: 20px;
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* スマホ用レイアウト調整 */
    @media (max-width: 768px) {
        .cta-button {
            padding: 12px 25px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .cta-button {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
    }
    