/* 単語選択画面-Easy */
* {
    margin: 0;
    padding: 0;
}

/* 画面サイズ */
.display_size {
    position: relative;
    width: 1920px;
    height: 1080px;
}

#wordchoice_Easy.display_size {
    background-color: black;
    display: none;
}

/* 単語を選んでね */
.please_wordchoice {
    position: absolute;
    height: 78px;
    width: 832px;
    top: 70px;
    left: 616px;
    font-size: 60px;
    color: white;
    user-select: none;
}

/* ふりがな */
.can_read_japanese_left {
    position: absolute;
    height: 30px;
    left: 157px;
    font-size: 30px;
    line-height: 1;
    color: white;
    user-select: none;
}

.can_read_japanese_right {
    position: absolute;
    height: 30px;
    width: 325px;
    right: 299px;
    font-size: 30px;
    line-height: 1;
    color: white;
    user-select: none;
}

/* 単語 */
.word_easy {
    position: absolute;
    height: 84px;
    width: 405px;
    font-size: 84px;
    line-height: 1;
    color: white;

    animation-name: border_color;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    border: white 1px;
    border-bottom: solid;

    cursor: pointer;

}

@keyframes border_color {
    0% {
      border-color: black;
    }
    50% {
      border-color: white;
    }
  
  }

/* 枠線 */
.border_wordchoice {
    position: absolute;
    width: 1542px;
    height: 772px;
    top: 167px;
    left: 189px;
    border-style: solid;
    border-width: 4px;
    border-color: white;
}

/* icon_image */
.image_icon {
    position: absolute;
    height: 140px;
    width: 140px;
}

#can_read_japanese_fire.can_read_japanese_left {
    top: 35px;
}

#fire_easy.word_easy {
    top: 67px;
    left: 157px;
}

#img_fire {
    top: 50px;
    left: 622px;
}

#can_read_japanese_water.can_read_japanese_left {
    top: 172px;
}

#water_easy.word_easy {
    top: 209px;
    left: 157px;
}

#img_water {
    top: 190px;
    left: 622px;
}

#can_read_japanese_grass.can_read_japanese_left {
    top: 312px;
}

#grass_easy.word_easy {
    top: 347px;
    left: 157px;
}

#img_grass {
    top: 328px;
    left: 622px;
}

#can_read_japanese_thunder.can_read_japanese_left {
    top: 450px;
}

#thunder_easy.word_easy {
    top: 485px;
    left: 157px;
}

#img_thunder {
    top: 466px;
    left: 622px;
}

#can_read_japanese_ice.can_read_japanese_left {
    top: 588px;
}

#ice_easy.word_easy {
    top: 623px;
    left: 157px;
}

#img_ice {
    top: 604px;
    left: 622px;
}

#can_read_japanese_wind.can_read_japanese_right {
    top: 35px;
}

#wind_easy.word_easy {
    top: 72px;
    right: 217px;
}

#img_wind {
    top: 52px;
    right: 20px;
}

#can_read_japanese_rock.can_read_japanese_right {
    top: 172px;
}

#rock_easy.word_easy {
    top: 209px;
    right: 217px;
}

#img_rock {
    top: 190px;
    right: 20px;
}

#can_read_japanese_poison.can_read_japanese_right {
    top: 312px;
}

#poison_easy.word_easy {
    top: 347px;
    right: 217px;
}

#img_poison {
    top: 328px;
    right: 20px;
}

#can_read_japanese_light.can_read_japanese_right {
    top: 450px;
}

#light_easy.word_easy {
    top: 485px;
    right: 217px;
}

#img_light {
    top: 466px;
    right: 20px;
}

#can_read_japanese_darkness.can_read_japanese_right {
    top: 588px;
}

#darkness_easy.word_easy {
    top: 623px;
    right: 217px;
}

#img_darkness {
    top: 604px;
    right: 20px;
}





