body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* 縦方向に要素を並べる */
    align-items: center; /* 横方向の中央揃え */
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
    margin: 20px 0; /* 上下に余白を追加 */
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.cell.x {
    color: #ff4d4d;
}

.cell.circle {
    color: #4d79ff;
}

.winning-message {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.winning-message.show {
    display: block;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #4d79ff;
    color: #fff;
}

button:hover {
    background-color: #3a5dcc;
}

.cell.x::before {
    content: "×"; /* 本物のバツ記号を使用 */
    font-family: Arial, sans-serif; /* 必要に応じてフォントを変更 */
    font-size: 3rem; /* フォントサイズを大きくする */
    font-weight: normal; /* 太さを調整 */
}

.cell.circle::before {
    content: "○"; /* 本物の丸記号を使用 */
    font-family: Arial, sans-serif; /* 必要に応じてフォントを変更 */
    font-size: 3rem; /* フォントサイズを大きくする */
    font-weight: normal; /* 太さを調整 */
}