@charset "utf-8";

/* ヘッダーのスタイル */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.header-title {
    text-decoration: none;
    font-weight: bold;
}

a,
a:hover,
a:visited {
    color: inherit;
}

/* Twitterリンクのスタイル */
.header-right {
    text-decoration: none;
    font-weight: bold;
    margin-right: 10%;
}

/* 本文のスタイル */
body {
    margin-top: 60px;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

.body-section {
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.game-section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.game-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.game-section h2 {
    color: #333;
}

.game-section p {
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    header {
        font-size: 14px;
    }

    .game-section {
        padding: 15px;
    }
}