@charset "UTF-8";
body#contact .section p .required {
  color: #d4ad74;
}
body#contact .section form {
  margin-bottom: 2.5em;
}
body#contact .section .table {
  margin-top: 2.5em;
}
body#contact .section .table tbody tr th {
  width: 30%
}
body#contact .section .table tbody tr th label {
  position: relative;
  display: block;
}
body#contact .section .table tbody tr th label.required::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: 'required';
  padding: 0 0.9375em;
  color: #ffffff;
  font-size: 60%;
  line-height: 1.6;
  vertical-align: middle;
  background-color: #b38847;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  border-radius: 0.8em;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body#contact .section .table tbody tr td {
  width: 70%;
}
body#contact .section .table tbody tr td dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body#contact .section .table tbody tr td dl + dl {
  margin-top: 0.625em;
}
body#contact .section .table tbody tr td dl dt {
  flex-basis: 15%;
}
body#contact .section .table tbody tr td dl dd {
  flex-basis: 83%;
}
body#contact .section input[type=text], body#contact .section textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0.3125em 0.625em;
  border: solid 1px #333333;
  outline: none;
  color: #ffffff;
  background-color: #1a1a1a;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
body#contact .section input[type=text]:hover, body#contact .section input[type=text]:focus, body#contact .section textarea:hover, body#contact .section textarea:focus {
  background-color: #262626;
}
body#contact .section input[type=text].short, body#contact .section textarea.short {
  width: 30%;
}
body#contact .section input[type=radio] {
  display: none;
}
body#contact .section input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin-right: 1.25em;
  padding-left: 1.25em;
}
body#contact .section input[type=radio] + label::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.9375em;
  height: 0.9375em;
  border: solid 1px #cccccc;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body#contact .section input[type=radio] + label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0.125em;
  width: 0.6875em;
  height: 0.6875em;
  background-color: #1f995c;
  opacity: 0;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body#contact .section input[type=radio]:checked + label::after {
  opacity: 1;
}
body#contact .section input[type=checkbox] {
  display: none;
}
body#contact .section input[type=checkbox] + label {
  display: inline-block;
  position: relative;
  margin-right: 1.25em;
  padding-left: 1.25em;
}
body#contact .section input[type=checkbox] + label::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: solid 1px #cccccc;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body#contact .section input[type=checkbox] + label::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0.2em;
  width: 0.4em;
  height: 0.625em;
  border-right: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
  opacity: 0;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -moz-transform: rotate(45deg) translate(-50%, -55%);
  -ms-transform: rotate(45deg) translate(-50%, -55%);
  -webkit-transform: rotate(45deg) translate(-50%, -55%);
  transform: rotate(45deg) translate(-50%, -55%);
}
body#contact .section input[type=checkbox]:checked + label::before {
  border: solid 1px #1f995c;
  background-color: #1f995c;
}
body#contact .section input[type=checkbox]:checked + label::after {
  opacity: 1;
}
body#contact .section .checkbox_confirm {
  display: inline-block;
  padding: 0.3125em 1.25em;
  font-size: 87.5%;
  line-height: 1.25;
  background-color: #e5e5e5;
  -moz-border-radius: 0.9375em;
  -webkit-border-radius: 0.9375em;
  border-radius: 0.9375em;
}
body#contact .section .checkbox_confirm + .checkbox_confirm {
  margin-left: 0.3125em;
}
body#contact .section .fieldset {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body#contact .section .fieldset .btn + .btn {
  margin-left: 0.625em;
}
body#contact .section .btn.back {
  border: solid 1px #666666;
  color: #333333;
  background-color: #666666;
}
body#contact .section .btn.back::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  left: 0.75em;
  width: 0.6em;
  height: 0.6em;
  border-right: solid 2px #333333;
  border-bottom: solid 2px #333333;
  -moz-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
body#contact .section .btn.back:hover {
  color: #000000;
  background-color: #333333;
}
body#contact .section .btn.back:hover::before {
  border-right: solid 2px #000000;
  border-bottom: solid 2px #000000;
}
body#contact .section .nav {
  text-align: center;
}
body#contact .section .formError {
  top: auto !important;
  right: 0 !important;
  bottom: 100% !important;
  left: auto !important;
  z-index: 7;
  margin-top: 0 !important;
  margin-bottom: -0.3125em;
  cursor: pointer;
}
body#contact .section .formError .formErrorContent {
  position: relative;
  z-index: 8;
  padding: 0.3125em 0.625em;
  color: #ffffff;
  font-size: 87.5%;
  line-height: 1.25;
  background-color: #cc0000;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
body#contact .section .formError .formErrorContent::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125em 0.3125em 0 0.3125em;
  border-color: #cc0000 transparent transparent transparent;
}
body#contact .section .formError .formErrorArrow {
  z-index: 9;
}
body#contact .section .ui-dialog .formError {
  z-index: 7;
}
body#contact .section .ui-dialog .formError .formErrorContent {
  z-index: 8;
}
body#contact .section .ui-dialog .formError .formErrorArrow {
  z-index: 9;
}

/* RWD
---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  body#contact .section p {
    font-size: 75%;
  }
  body#contact .section .table tbody tr td dl {
    display: block;
  }
  body#contact .section .table tbody tr td dl + dl {
    margin-top: 0.3125em;
  }
  body#contact .section input[type=text].short, body#contact .section textarea.short {
    width: 60%;
  }
  body#contact .section .fieldset {
    flex-direction: column-reverse;
  }
  body#contact .section .fieldset .btn + .btn {
    margin-left: 0;
    margin-bottom: 0.625em;
  }
  body#contact .section .btn {
    font-size: 100%;
  }
  body#contact .section .formError {
    max-width: 10em;
  }
  body#contact .section .formError .formErrorContent {
    font-size: 75%;
  }
}
