body {
    font-family:  "DotGothic16", "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: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #30ADD1;
    color: #ffffff;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1em;
}

main {
    background-image: url(../img/24034766.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.main_inner {
    max-width: 700px;
    margin: 0px auto;
    padding: 30px 25px;
    height: calc(100vh - 130px);
    background-color: #9fa0a0;
}

/* 結果を表示 */
.result_wrap {
    font-size: 24px;
    font-weight: 600;
    background-color: #ffffff;
    padding: 20px;
    height: 70px;
    margin: 0px auto 30px;
    width: 100%;
    border-radius: 10px;
}

#result {
    text-align: center;
}

/* 手を表示 */
.hand_wrap {
    display: flex;
    column-gap: 50px;
    justify-content: center;
    text-align: center;
    margin: 30px auto;
}

.user_hand_wrap, .pc_hand_wrap{
    width: calc((100% - 50px) / 2);
}

.hand-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.user_hand_wrap .hand-title {
    background-color: #0066CC;
}

.pc_hand_wrap .hand-title {
    background-color: #374251;
}

#user_hand, #pc_hand{
    height: 200px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
}

#user_hand img, #pc_hand img  {
    width: 100px;
}

/* 手を選択 */
.choose_hand_wrap {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
}

.choose_hand_wrap p{
    font-size: 18px;
    font-weight: 600;
}

.choose_user_hand {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 20px;
}

li{
    font-size: 20px;
    font-weight: 600;
    background-color: #0066CC;
    cursor: pointer;
    color: #ffffff;
    border-radius: 10px;
    width: 200px;
    padding: 15px;
    text-align: center;
}

li:hover{
    transform: translateY(-2px);
    box-shadow: 0 2px 0 #003783;
}

li:active{
    transform: translateY(0px);
    box-shadow: none;
}

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

/* --------------------
    for SP size 
-------------------- */
@media screen and (max-width: 768px){

    .main_inner {
        height: calc(100vh - 110px);
    }

    header {
        height: 60px;
    }

    h1 {
        font-size: 28px;
    }

    .result_wrap {
        font-size: 18px;
        padding: 0px;
        height: 50px;
        line-height: 50px;
        margin: 0px auto 30px;
    }

    .hand_wrap {
        column-gap: 20px;
        margin: 30px auto;
    }

    .user_hand_wrap, .pc_hand_wrap{
        width: 50%;
    }

    .hand-title {
        font-size: 12px;
        padding: 10px;
    }

    .choose_hand_wrap {
        padding: 15px;
    }

    .choose_hand_wrap p{
        font-size: 14px;
    }

    .choose_user_hand {
        column-gap: 10px;
        margin-top: 15px;
    }

    li{
        font-size: 14px;
        padding: 10px;
    }

}