body{
    margin:0;
    font-family:-apple-system,BlinkMacSystemFont,"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
    background:#f5f6f8;
    color:#333;
    line-height:1.7;
    }
    
    .container{
    max-width:800px;
    margin:auto;
    padding:20px;
    }
    
    /* header */
    
    .site-header{
    background:#fff;
    border-bottom:1px solid #e5e5e5;
    text-align:center;
    padding:40px 20px;
    }
    
    .site-title{
    margin:0;
    font-size:28px;
    }
    
    .site-desc{
    color:#666;
    margin-top:10px;
    font-size:14px;
    }
    
    
    /* section */
    
    .app-section{
    margin-top:30px;
    }
    
    .section-title{
    font-size:20px;
    margin-bottom:15px;
    }
    
    
    /* app list */
    
    .app-list{
    display:flex;
    flex-direction:column;
    gap:15px;
    }
    
    
    /* card */
    
    .app-card{
    
    display:flex;
    align-items:center;
    gap:15px;
    
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    
    padding:15px;
    
    text-decoration:none;
    color:#333;
    
    transition:.2s;
    }
    
    .app-card:hover{
    background:#fafafa;
    border-color:#ccc;
    }
    
    
    /* icon */
    
    .app-icon{
    width:60px;
    height:60px;
    border-radius:14px;
    }
    
    
    /* info */
    
    .app-name{
    font-size:16px;
    font-weight:700;
    }
    
    .app-desc{
    font-size:13px;
    color:#777;
    }
    
    
    /* footer */
    
    .site-footer{
    text-align:center;
    margin-top:40px;
    padding:20px;
    font-size:12px;
    color:#777;
    }