#character .character_box .voice,
#character .character_sub_box .voice {
  opacity: 0;
  width: 420px;
  margin-top: 30px;
  padding: 26px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

#character .character_box .voice .voice_play,
#character .character_sub_box .voice .voice_play {
  width: 38px;
  height: 38px;
  margin: 0 26px;
  border-radius: 4px;
  background-image: url(../img_2x/character_voice.png);
  background-size: 76px 38px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  -webkit-transition: 0.2s ease opacity, 0.2s ease transform;
  transition: 0.2s ease opacity, 0.2s ease transform;
  cursor: pointer;
}

#character .character_box .voice .voice_play:hover,
#character .character_sub_box .voice .voice_play:hover {
  opacity: 0.5;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

#character .character_box .voice .voice_play.active,
#character .character_sub_box .voice .voice_play.active {
  background-position: -38px 0;
}

#character .character_box .voice .comingsoon,
#character .character_sub_box .voice .comingsoon {
  width: 38px;
  height: 38px;
  margin: 0 26px;
  border-radius: 4px;
  background-image: url(../img_2x/character_voice.png);
  background-size: 76px 38px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  opacity: 0.3;
}
/*# sourceMappingURL=add_style_2x.css.map */