@charset "UTF-8";
/* CSS Document */

/** contact **/

.btn_area {
	text-align: center;
	margin-bottom: 55px;
}

.btn_area input[type="submit"] {
    padding: 6px 30px;
    font-size: 16px;
    background: #043B8B;
    border: solid #043B8B 1px;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
}



/** checkbox **/

input[type=radio], input[type=checkbox] {
  display: none;
}

.radio {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  /*margin: 0 20px 8px 0;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;*/
  /*background-color: #f6f7f8;
  vertical-align: middle;*/
  cursor: pointer;
}

.checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 0px 8px 0;
  padding: 0px 12px 12px 25px;
  border-radius: 8px;
  /*background-color: #fff;
  vertical-align: middle;*/
  cursor: pointer;
}

.radio:hover, .checkbox:hover {
  /*background-color: #e2edd7;*/
}
.radio:hover:after, .checkbox:hover:after {
  border-color: #043B8B;
}
.radio:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 60%;
  left: 50%;
  display: block;
  margin-top: 10px;
  margin-left: -15px;
  width: 16px;
  height: 16px;
  border: 1px solid #bbb;
  border-radius: 15px;
  content: ' ';
}

.checkbox:after {
    background: #fff;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 0%;
  left: 0%;
  display: block;
  margin-top: 0px;
  width: 16px;
  height: 16px;
  border: 1px solid #bbb;
  content: ' ';
  
}

.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 60%;
  left: 50%;
  display: block;
  margin-top: 10px;
  margin-left: -15px;
  width: 16px;
  height: 16px;
  border: 1px solid #043B8B;
  border-radius: 15px;
  background-color: #043B8B;
  content: ' ';
  opacity: 0;
}



input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.active .radio:before {
  opacity: 1;
}

.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 3px;
  margin-top: -1px;
  display: block;
  width: 8px;
  height: 12px;
  border-right: 3px solid #043B8B;
  border-bottom: 3px solid #043B8B;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}