body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    letter-spacing: 0.1em;
    font-weight: 400;
    background-color: #ffffff;
    color: #222222;
}

/* ヘッダー */
header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #171717;
    color: #ffffff;
    position: relative;
}

h1 {
    font-size: 24px;
    font-weight: 600;
}

main {
    background-image: url(../img/24764882.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

/* メイン */
#game-area {
    max-width: 1200px;
    margin: 0px auto;
    padding: 30px 25px 0;
    height: calc(100vh - 50px);
    position: relative;
}

/* ボタン */
#start-btn {
    background-color: #13c196;
    color: #ffffff;
    width: 100px;
    height: 100px;
    text-align: center;
    position: absolute;
    bottom: 160px;
    left: 30px;

    border-top: 4px solid #48ecc4;
    border-right: 4px solid #0a5f4a;
    border-bottom: 4px solid #0f745b;
    border-left: 4px solid #8cf9de;
}

#start-btn:hover {
    background-color: #11a37f;
}

#start-btn:active {
    border-top: 4px solid #0f745b;
    border-right: 4px solid #8cf9de;
    border-bottom: 4px solid #48ecc4;
    border-left: 4px solid #0a5f4a;
}

#reset-btn {
    background-color: #666666;
    color: #ffffff;
    width: 100px;
    height: 50px;
    text-align: center;
    position: absolute;
    bottom: 80px;
    left: 30px;

    border-top: 4px solid #aaaaaa;
    border-right: 4px solid #333333;
    border-bottom: 4px solid #333333;
    border-left: 4px solid #aaaaaa;
}

#reset-btn:hover {
    border-top: 4px solid #333333;
    border-right: 4px solid #aaaaaa;
    border-bottom: 4px solid #aaaaaa;
    border-left: 4px solid #333333;
}

/* コンビ名 */
.result-wrap {
    height: 70px;
}

#combi-name {
    display: none;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    width: 400px;
    text-align: center;
    margin: 0 auto;
    padding: 14px 20px 15px;
    /* ゴールド設定 */
    border-top: 4px solid #ffce08;
    border-right: 4px solid #704308;
    border-bottom: 4px solid #704308;
    border-left: 4px solid #e1ce08;
    background-image: linear-gradient(135deg, #b8751e 0%, #ffce08 37%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%);
}

/* 個人 */
.name-wrap {
    display: flex;
    column-gap: 100px;
    justify-content: center;
    margin: 25px auto 0;
}

.bubble {
    height: 73px;
}

#boke-words, #tukkomi-words {
    display: none;
    font-size: 20px;
    font-weight: 500;
    background-color: #ffffff;
    width: 300px;
    padding: 15px 20px;
    text-align: center;
    border-radius: 50px;
}

.triangle {
    display: none;
    width: 30px;
    height: 15px;
    margin: 0 auto 5px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#boke-name, #tukkomi-name {
    width: 300px;
}

#boke-name img, #tukkomi-name img {
    width: 90%;
    display: block;
    margin: 0 auto;
}

/* 観客 */
#audience {
    display: none;
    position: absolute;
    bottom: 0;
    left: calc(50% - 300px);
}

#audience img {
    width: 600px;
}


/* フッター */
footer {
    display: none;
    font-size: 12px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    background-color: #171717;
    color: #ffffff;
}