body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.top-links {
    background-color: antiquewhite;
    display: flex;
    align-items: center;
    padding: 10px;
}

.top-links img {
    max-width: 50px; /* 画像のサイズを調整 */
    margin-right: 20px; /* 画像とボタンの間のスペース */
}

.link-button {
    display: inline-block;
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #0056b3;
}
