:root {
    --lilac: #c7b5e9;
    --lilac-dark: #a892d6;
    --bg: #faf9ff;
    --text: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

/* ヘッダー */
.hero {
    background: var(--lilac);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.container {
    width: min(90%, 900px);
    margin: auto;
}

.section {
    margin-top: 40px;
}

/* アプリカード */
.app-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.app-card {
    background: #fff;
    border: 1px solid #e5e1f3;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.app-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.app-card img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #eee;
    object-fit: cover;
}

.app-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

/* FAQ */
details {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px;
    background: #fff;
    margin-bottom: 14px;
}

summary {
    cursor: pointer;
    font-weight: bold;
    color: var(--lilac-dark);
}

details[open] {
    border-color: var(--lilac-dark);
    background: #f7f2ff;
}

/* ボタン */
.btn {
    display: inline-block;
    background: var(--lilac-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.85;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    color: #777;
    margin-top: 50px;
    font-size: 14px;
}