body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f5f5f5;
}

/* ヘッダー */
header {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* セクション */
section {
    padding: 40px 20px;
    text-align: center;
}

/* 実績 */
.works {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.works img {
    width: 250px;
    border-radius: 10px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: pink;
    text-decoration: none;
    color: black;
    border-radius: 5px;
}

/* フッター */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}