.Dragon {
    background-color:#e100ff;
}
.Fire {
    background-color:#ff0000;
}
.Water{
    color:#ffffff;
    background-color:#0011ff;
}
.Frozen{
    background-color:#00aeff;
}
.Lightning{
    background-color:#eeff00;
}
.Bomb{
    color:#ffffff;
    background-color:#4d2a2a;
}
.charge5{
    background-color:#00ff55;
}
.monsterWeak{
    color:#ffffff;
    background-color:#ff0000;
}
.weapon_columns{
    float: left;
    width:70%;
    min-width: 600px;
}

.mons_columns{
    width: 30%;
    min-width: 300px;
}

table, td, th{
    border: 1px solid black;
}

.weapontable{
    border-collapse: collapse;
    border: solid 1px black;
    border-color: black;
    width:100%
}
.monstertable{
    float: right;
    border-collapse: separate;
    border: solid 1px black;
    border-color: black;
    width:100%
}

.weapon_culc_tabele{
    width:70%
}

.skill_select{
    float: left;
    min-width: 215px;
    width: 50%;
}

.range{
    width: 100%;
    float: left;
}
.c_range{
    width: 100%;
    float: left;
}

.paddline{
    width: 100%;
    clear:both;
}

/* トグルボタン用*/
.toggle_input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  
  .toggle_label {
    width: 40px;
    height: 20px;
    background: #ccc;
    position: relative;
    display: inline-block;
    border-radius: 40px;
    transition: 0.4s;
    box-sizing: border-box;
  }
  
  .toggle_label:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
  }
  
  .toggle_input:checked + .toggle_label {
    background-color: #4BD865;
  }
  
  .toggle_input:checked + .toggle_label:after {
    left: 20px;
  }
  
  .toggle_button {
    position: relative;
    width: 40px;
    height: 20px;
    margin: 0;
  }