@charset "UTF-8";

/* ラベルカラー */
.red_bg {
  background: -moz-linear-gradient(rgb(243, 104, 104) 0%, rgb(190, 72, 80) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(243, 104, 104)), color-stop(100%, rgb(190, 72, 80)));
}
.blue_bg {
  background: -moz-linear-gradient( top, #00afef 0%, #0076a1);
  background: -webkit-gradient( linear, left top, left bottom, from(#00afef), to(#0076a1));
}
.green_bg {
  background: -moz-linear-gradient(rgb(129, 220, 108) 0%, rgb(106, 186, 89) 100%); 
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(129, 220, 108)), color-stop(100%, rgb(106, 186, 89)));
}
.orange_bg {
  background: -moz-linear-gradient(rgb(255, 155, 77) 0%, rgb(194, 68, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 155, 77)), color-stop(100%, rgb(194, 68, 0)));
}
.gold_bg {
  background: -moz-linear-gradient(rgb(222, 196, 59) 0%, rgb(119, 90, 19) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(222, 196, 59)), color-stop(100%, rgb(119, 90, 19)));
}
.pink_bg {
  background: -moz-linear-gradient(rgb(241, 147, 238) 0%, rgb(255, 31, 216) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(241, 147, 238)), color-stop(100%, rgb(255, 31, 216)));
}
.purple_bg {
  background: -moz-linear-gradient(rgb(214, 71, 255) 0%, rgb(74, 27, 111) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(214, 71, 255)), color-stop(100%, rgb(74, 27, 111)));
}
.skyblue_bg {
  background: -moz-linear-gradient(rgb(104, 228, 243) 0%, rgb(0, 144, 194) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(104, 228, 243)), color-stop(100%, rgb(0, 144, 194)));
}
.brown_bg {
  background: -moz-linear-gradient(rgb(226, 133, 90) 0%, rgb(91, 38, 16) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(226, 133, 90)), color-stop(100%, rgb(91, 38, 16)));
}
.black_bg {
  background: -moz-linear-gradient(rgb(135, 135, 135) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(135, 135, 135)), color-stop(100%, rgb(0, 0, 0)));
}

.red {
  color: #FF0000;
}
.blue {
  color: #49bee8;
}
div.line {
  height:5px;
}
.label {
  color: #FFFFFF;
  display: block;
  font-weight: bold;
  line-height: 1.5em;
  padding: 5px 5px 5px 10px;
}
.label h2 {
  font-size: 16px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}
.thanks {
  margin: 50px 0px;
  text-align: center;
}
