@charset "UTF-8";

#wrap{
  width: 100%;
  height: 100vh;
  min-width: 568px;
  padding: 10px;
  text-align: center;

  font-family: 'roboto_mono_b', monospace, sans-serif;
  /*font-weight: 700;*/

  display: flex;
  justify-content: space-between;
}
#wrap h1.title{
  position: absolute;
  left: -0.5em;
  top: 0;
  color: #f7f7f7;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1;
  z-index: 0;
}
/*===============================
  leftWrap
================================*/
.leftWrap{
  width: 40%;
  height: 100%;
  padding: 10px;
  border-right: solid 1px #d1d1d1;
  position: relative;
  z-index: 1;
}
.leftWrap>.top{
  width: 100%;
  height: 40%;
  border: solid 1px #d1d1d1;
  background: #ffffff73;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}
.leftWrap>.top::after{
  content: "result";
  position: absolute;
  left: 10px;
  top: 5px;
  color: #d1d1d1;
}
.leftWrap>.top>.resultNumBlk #result{
  font-size: 5rem;
}
.leftWrap>.top>.resultNumBlk #baseNum{
  font-weight: 500;
}
/*======== bottom ========*/
.leftWrap>.bottom{
  width: 100%;
  height: 60%;
  padding-top: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  position: relative;
  z-index: 1;
}
.leftWrap>.bottom::after{
  content: "Hand";
  text-align: center;
  display: inline-block;
  width: 4em;
  height: 1em;
  position: absolute;
  left: 0px;
  right: 0px;
  top: -0.8em;
  bottom: 0px;
  margin: auto;
  color: #efefef;
  font-size: 5rem;
}
.leftWrap>.bottom>li{
  width: 32%;
  height: 48%;
  padding-bottom: 0.5rem;
  border: solid 1px #d1d1d1;
  font-size: 3rem;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.leftWrap>.bottom>li>label{
  width: 100%;
  height: 100%;
}

/*===============================
  rightWrap
================================*/
.rightWrap{
  width: 60%;
  height: 100%;
}
.dangerList{
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;

  flex-wrap: wrap;
}
.dangerList>li{
  width: 30%;
  height: 48%;
  background-color: #d1d1d1;
  position: relative;
}
.dangerList>li>label{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.dangerList>li>label>input[type=checkbox]{
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.dangerList>li>label>input[type=checkbox]::after{
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  /*background-color: #bfe6b5;*/
}
.dangerList>li>label>input[type=checkbox]:checked::after{
  opacity: 0.3;
}
.dangerList>li>label>.name{
  position: absolute;
  right: 5px;
  bottom: 3px;
  font-size: 1.2rem;
  color: #fff;
  font-family: 'roboto_mono_exl-i', sans-serif;
  letter-spacing: 0em;
}
.dangerList>li>label>input[type=checkbox]#jackalope::after{
  background: url(../img/jackalope.jpg) center left no-repeat;
  background-size: cover;
}
.dangerList>li>label>input[type=checkbox]#tsuchinoko::after{
  background: url(../img/tsuchinoko.jpg) center center no-repeat;
  background-size: cover;
}
.dangerList>li>label>input[type=checkbox]#chupacabra::after{
  background: url(../img/chupacabra.jpg) center right no-repeat;
  background-size: cover;
}
.dangerList>li>label>input[type=checkbox]#mothman::after{
  background: url(../img/mothman.jpg) center left no-repeat;
  background-size: cover;
}
.dangerList>li>label>input[type=checkbox]#nessie::after{
  background: url(../img/nessie.jpg) center center no-repeat;
  background-size: cover;
}
.dangerList>li>label>input[type=checkbox]#bigfoot::after{
  background: url(../img/bigfoot.jpg) center center no-repeat;
  background-size: cover;
}





