@charset "UTF-8";

p.error {
    color: #F50000;
    line-height: 1;
    margin-top: 5px;
    display: block;
    width: 100%;
}
#contact .contact .box-form .form-group .agree p.error {
    text-align: center;
}

#contact .contact .box-form .form-group .agree .topic {
    margin-bottom: 20px;
}
#contact .contact .box-form .form-group .agree .topic strong {
    font-weight: 700;
}
#contact .contact .box-form .form-group .agree .topic a {
    color: #0068B7;
    text-decoration: underline;
}
@media only screen and (max-width: 750px) {
    #contact .contact .box-form .form-group .agree .topic {
        margin-bottom: 15px;
    }
}

#contact .contact .box-form .form-group .box-agree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
    background-color: #F2F2F2;
    border-radius: 4px;
}

.chkbox-btn {
  display: table;
  position: relative;
  padding-left: 30px;
  margin-top: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.3;
}
.chkbox-btn:last-child {
  margin-right: 0;
}
.chkbox-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.chkbox-btn span {
  color: #ED151D;
  font-weight: 700;
}
.chkbox {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #666;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 4px;
}
.chkbox-btn:hover input ~ .chkbox {
  background-color: #FFF;
}
.chkbox-btn input:checked ~ .chkbox {
  background-color: #fff;
  border-color: #1D1D1F;
}
.chkbox:after {
  content: "";
  position: absolute;
  display: none;
}
.chkbox-btn input:checked ~ .chkbox:after {
  display: block;
}
.chkbox-btn .chkbox:after {
  top: 1px;
  left: 6px;
  width: 4px;
  height: 12px;
  border: solid #1D1D1F;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.arrow-left-abs .arrow {
    -webkit-transition: all 0.35s cubic-bezier(0.75, 0.3, 0.25, 1);
    transition: all 0.35s cubic-bezier(0.75, 0.3, 0.25, 1);
}
.btn.arrow-left-abs {
    position: relative;
}
.btn.arrow-left-abs:hover .arrow {
    left: 20px;
}
.btn.arrow-left-abs .arrow {
    position: absolute;
    left: 25px;
    z-index: 1;
}

#contact .contact .box-form.confirm .form-group .row .label {
    margin-top: 0;
}
@media only screen and (min-width: 751px) {
    #contact .contact .box-form.confirm .form-group .row {
        padding: 0.5em 0;
    }
}

#contact .contact .box-form.confirm .btn-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
#contact .contact .box-form.confirm .btn-box .btn {
    width: 47.5%;
}

#contact .contact .form-thanks {
    max-width: 580px;
    margin: 0 auto;
}
#contact .contact .form-thanks p + p {
    margin-top: 1.5em;
}