/* 全体 */
body {
    margin: 0;
    padding: 0;
    
    background: #f5f5f7;
    color: #222;
}

header {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 720px;
    height: auto;
    margin: 0 0 24px 0;
}

.container {
    max-width: 720px;
    margin: 0px auto;
    padding: 0 24px;
}

/* 屋号 */
.brand {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* タイトル */
.title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

/*リスト*/
.apps-list {
    box-sizing: border-box;
    max-width: 720px;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
}

.grid-list {
    list-style: none;
    padding-left: 0;
}

.grid-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: repeat(6,auto);
    gap: 2vh;
}

.grid-list ul {
    width: 100%;
    aspect-ratio: 1/1;
}

.grid-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /*border-radius:5px;*/
    /*background-color:#666;*/
}





/* フッター */
.footer {
    font-family: "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
    margin-top: 40px;
    font-size: 12px;
    color: #666;
    text-align: center;
}
