/* body */
body {
    margin: 0px;
}

/* 表示領域 */
#display {
    position: relative;
    background-color: pink;
    max-width: 600px;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
}

/* オセロ盤 */
#board {
    position: relative;
    background-color: black;
}

/* マス */
.cell {
    position: absolute;
    background-color: green;
}

/* 石 */
.stone {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* メッセージ */
#msg {
    position: relative;
    background-color: pink;
    text-align: center;
}

/* 各種ボタンのラッピング */
.wrapper {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
}

/* リセットボタン */
#reset {
    position: relative;
}

/* オンラインマルチプレイボタン */
#togetherjs {
    position: relative;
}

/* プレイヤー選択 */
.playerSelect {
    position: relative;
}

/* 対局スピード */
#speed {
    position: relative;
}

/* カスタムコンピュータAタイトル */
#customComA_title {
    text-align: center;
    background-color: lightskyblue;
}

/* カスタムコンピュータAタイトルホバー */
#customComA_title:hover {
    background-color: rgb(100, 190, 250);
}

/* カスタムコンピュータA設定 */
#customComA_config {
    display: none;
    border: solid lightskyblue;
    background-color: white;
}

/* カスタムコンピュータメッセージ */
.customCom_msg {
    text-align: center;
    margin: 2%;
}

/* カスタムコンピュータスライダー */
.customCom_slider {
    width: 70%;
}

/* カスタムコンピュータBタイトル */
#customComB_title {
    text-align: center;
    background-color: lightgreen;
}

/* カスタムコンピュータBタイトルホバー */
#customComB_title:hover {
    background-color: rgb(100, 230, 100);
}

/* カスタムコンピュータB設定 */
#customComB_config {
    display: none;
    border: solid lightgreen;
    background-color: white;
}

/* 折れ線グラフ */
#canvas {
    background-color: white;
}

/* シミュレーションメッセージ */
.sim_msg {
    position: relative;
    background-color: pink;
    text-align: center;
}

/* シミュレーションのプレイヤー選択 */
.sim_comSelect {
    position: relative;
}