@charset "UTF-8";
/*--------------------------
color
---------------------------*/ /*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  width: 100%;
  height: 1200px;
  background-image: url("../image/main_visual01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #main_visual {
    height: 100vh;
  }
}
#main_visual .txt_box {
  position: absolute;
  width: 100%;
  top: 180px;
  left: 0;
  padding: 0 5%;
}
@media only screen and (max-width: 768px) {
  #main_visual .txt_box {
    top: 100px;
    padding: 2.5%;
  }
}
#main_visual .txt_box strong {
  display: block;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  #main_visual .txt_box strong {
    font-size: 24px;
  }
}
@media only screen and (max-width: 380px) {
  #main_visual .txt_box strong {
    font-size: 20px;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  position: relative;
  margin: -210px 0 0;
}
@media only screen and (max-width: 768px) {
  #section01 {
    margin: -18vh 0 0;
  }
}
#section01::before {
  position: absolute;
  content: "";
  width: 85%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section01::before {
    width: 95%;
  }
}
#section01 .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 70px;
}
@media only screen and (max-width: 768px) {
  #section01 .inner {
    padding: 60px 5%;
  }
}
#section01 .inner::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 0;
  top: 0;
  left: 0;
  background: #ff741f;
  -webkit-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section01 .inner::before {
    width: 8px;
    height: 160px;
  }
}
#section01 .inner h2 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  #section01 .inner h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 380px) {
  #section01 .inner h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #section01 .inner h2 {
    margin: 0 0 60px;
  }
}
#section01 .inner .txt_box {
  max-width: 746px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .txt_box {
    margin: 0 auto 40px;
  }
}
#section01 .inner .txt_box span {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, #ff741f));
  background: linear-gradient(transparent 80%, #ff741f 80%);
}
#section01 .inner .icon_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .icon_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#section01 .inner .icon_list li {
  width: calc(25% - 10px);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .icon_list li {
    width: calc(50% - 10px);
    margin: 0 0 20px;
  }
}
#section01 .inner .icon_list li i {
  display: block;
  margin: 0 0 16px;
}
#section01 .inner .icon_list li h3 {
  font-size: 22px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  #section01 .inner .icon_list li h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 380px) {
  #section01 .inner .icon_list li h3 {
    font-size: 16px;
  }
}
#section01.is-active .inner::before {
  height: 257px;
}
@media only screen and (max-width: 768px) {
  #section01.is-active .inner::before {
    height: 160px;
  }
}

/*--------------------------
section02
---------------------------*/
#section02 {
  background-image: url("../image/sec02_bg_img01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#section02 .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 70px 140px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner {
    padding: 60px 5%;
  }
}
#section02 .inner::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 0;
  top: 0;
  right: 0;
  background: #ff741f;
  -webkit-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section02 .inner::after {
    width: 8px;
    height: 240px;
  }
}
#section02 .inner h2 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-align: right;
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 380px) {
  #section02 .inner h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #section02 .inner h2 {
    margin: 0 0 60px;
  }
}
#section02 .inner .txt_box {
  margin: 0 0 50px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .txt_box {
    margin: 0 0 40px;
  }
}
#section02 .inner .txt_box p {
  color: #fff;
}
#section02 .inner .strong_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1170px) {
  #section02 .inner .strong_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#section02 .inner .strong_list li {
  width: calc(25% - 40px);
}
@media only screen and (max-width: 1170px) {
  #section02 .inner .strong_list li {
    width: calc(50% - 40px);
    margin: 0 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  #section02 .inner .strong_list li {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 380px) {
  #section02 .inner .strong_list li {
    width: 100%;
  }
}
#section02 .inner .strong_list li i {
  display: block;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .strong_list li i {
    margin: 0 0 16px;
  }
}
#section02 .inner .strong_list li i img {
  display: block;
  margin: 0 auto;
}
#section02 .inner .strong_list li h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 26px;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .strong_list li h3 {
    font-size: 18px;
    margin: 0 0 20px;
  }
}
#section02 .inner .strong_list li h3 span {
  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;
  width: 51px;
  min-width: 51px;
  height: 51px;
  font-size: 28px;
  font-family: "Marcellus", serif;
  color: #fff;
  margin: 0 10px 0 0;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .strong_list li h3 span {
    width: 45px;
    min-width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
#section02 .inner .strong_list li .txt_box {
  text-align: left;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .strong_list li .txt_box {
    margin: 0 0 16px;
  }
}
#section02 .inner .strong_list li p {
  color: #fff;
}
#section02 .inner .strong_list li p.dotted {
  padding: 0 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section02 .inner .strong_list li p.dotted {
    padding: 0 0 0 18px;
  }
}
#section02 .inner .strong_list li p.dotted::before {
  position: absolute;
  content: "・";
  left: 0;
}
#section02.is-active .inner::after {
  height: 328px;
}
@media only screen and (max-width: 768px) {
  #section02.is-active .inner::after {
    height: 240px;
  }
}

/*--------------------------
section03
---------------------------*/
#section03 .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 40px 80px;
}
@media only screen and (max-width: 768px) {
  #section03 .inner {
    padding: 60px 5%;
  }
}
#section03 .inner::before {
  position: absolute;
  content: "";
  width: 0;
  height: 12px;
  top: 0;
  left: 0;
  background: #ff741f;
  -webkit-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section03 .inner::before {
    width: 160px;
    height: 8px;
  }
}
#section03 .inner h2 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 70px;
}
@media only screen and (max-width: 768px) {
  #section03 .inner h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 380px) {
  #section03 .inner h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #section03 .inner h2 {
    margin: 0 0 50px;
  }
}
#section03 .inner .case_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1170px) {
  #section03 .inner .case_list::after {
    content: "";
    display: block;
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  #section03 .inner .case_list::after {
    content: none;
  }
}
#section03 .inner .case_list li {
  width: calc(25% - 35px);
  margin: 0 0 40px;
}
@media only screen and (max-width: 1170px) {
  #section03 .inner .case_list li {
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  #section03 .inner .case_list li {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 380px) {
  #section03 .inner .case_list li {
    width: 100%;
  }
}
#section03 .inner .case_list li figure img {
  display: block;
  width: 100%;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section03 .inner .case_list li figure img {
    margin: 0 0 16px;
  }
}
#section03 .inner .case_list li figure figcaption h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section03 .inner .case_list li figure figcaption h3 {
    font-size: 20px;
    margin: 0 0 16px;
  }
}
#section03 .inner .case_list li figure figcaption p {
  font-size: 14px;
}
#section03.is-active .inner::before {
  width: 564px;
}
@media only screen and (max-width: 768px) {
  #section03.is-active .inner::before {
    width: 160px;
  }
}

/*--------------------------
section04
---------------------------*/
#section04 {
  position: relative;
  background: #001026;
}
@media only screen and (max-width: 1170px) {
  #section04 {
    background: rgba(0, 16, 38, 0.5);
  }
}
#section04 .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 80px 220px;
}
@media only screen and (max-width: 1170px) {
  #section04 .inner {
    padding: 140px 5% 340px;
  }
}
@media only screen and (max-width: 768px) {
  #section04 .inner {
    padding: 60px 5% 340px;
  }
}
@media only screen and (max-width: 380px) {
  #section04 .inner {
    padding: 60px 5% 380px;
  }
}
#section04 .inner::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 0;
  top: 0;
  left: 0;
  background: #ff741f;
  -webkit-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section04 .inner::before {
    width: 8px;
    height: 160px;
  }
}
#section04 .inner::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url("../image/sec04_bg_img01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 1170px) {
  #section04 .inner::after {
    width: 100%;
    z-index: -1;
  }
}
#section04 .inner .content {
  max-width: 50%;
}
@media only screen and (max-width: 1170px) {
  #section04 .inner .content {
    max-width: 100%;
  }
}
#section04 .inner .content h2 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  #section04 .inner .content h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 380px) {
  #section04 .inner .content h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #section04 .inner .content h2 {
    margin: 0 0 60px;
  }
}
#section04 .inner .content .about_box {
  padding: 0 80px 0 40px;
}
@media only screen and (max-width: 768px) {
  #section04 .inner .content .about_box {
    padding: 0;
  }
}
#section04 .inner .content .about_box .txt_box {
  margin: 0 0 80px;
}
@media only screen and (max-width: 768px) {
  #section04 .inner .content .about_box .txt_box {
    margin: 0 0 40px;
  }
}
#section04 .inner .content .about_box .txt_box p {
  color: #fff;
}
#section04 .inner .content .about_box h3 {
  color: #fff;
  margin: 0 0 10px;
}
#section04 .inner .content .about_box table {
  width: 100%;
}
#section04 .inner .content .about_box table tr {
  border-top: 1px solid #455467;
  border-bottom: 1px solid #455467;
}
#section04 .inner .content .about_box table tr th,
#section04 .inner .content .about_box table tr td {
  color: #fff;
  line-height: 1.75;
  padding: 20px 15px;
}
@media only screen and (max-width: 768px) {
  #section04 .inner .content .about_box table tr th,
  #section04 .inner .content .about_box table tr td {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 380px) {
  #section04 .inner .content .about_box table tr th,
  #section04 .inner .content .about_box table tr td {
    display: block;
  }
}
#section04 .inner .content .about_box table tr th {
  width: 180px;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  #section04 .inner .content .about_box table tr th {
    width: 100px;
  }
}
@media only screen and (max-width: 380px) {
  #section04 .inner .content .about_box table tr th {
    width: auto;
    text-align: left;
    padding: 15px 10px 0;
  }
}
#section04.is-active .inner::before {
  height: 278px;
}
@media only screen and (max-width: 768px) {
  #section04.is-active .inner::before {
    height: 160px;
  }
}

/*--------------------------
section_contact{
---------------------------*/
.section_contact {
  position: relative;
  display: none;
  background: #ff741f;
  z-index: 99;
}
.section_contact .title {
  position: absolute;
  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;
  width: 48px;
  height: 48px;
  top: -48px;
  background: #ff741f;
  cursor: pointer;
}
.section_contact .title::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section_contact .title.close::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.section_contact .content {
  display: none;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .section_contact .content {
    padding: 10px 0;
  }
}
.section_contact .content .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}
@media only screen and (max-width: 1170px) {
  .section_contact .content .flex_box {
    display: block;
    max-width: 768px;
    padding: 0 2.5%;
  }
}
.section_contact .content .flex_box .left_box {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1170px) {
  .section_contact .content .flex_box .left_box {
    width: 100%;
    margin: 0 0 10px;
  }
}
.section_contact .content .flex_box .left_box p {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .section_contact .content .flex_box .left_box p {
    font-size: 12px;
  }
}
.section_contact .content .flex_box .right_box {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 1170px) {
  .section_contact .content .flex_box .right_box {
    width: 100%;
  }
}
.section_contact .content .flex_box .right_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .section_contact .content .flex_box .right_box ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 5px;
  }
}
.section_contact .content .flex_box .right_box ul li {
  width: calc(50% - 100px);
}
@media only screen and (max-width: 768px) {
  .section_contact .content .flex_box .right_box ul li {
    width: calc(50% - 2.5px);
    margin: 5px 0 0;
  }
}
@media only screen and (max-width: 380px) {
  .section_contact .content .flex_box .right_box ul li {
    width: 100%;
  }
  .section_contact .content .flex_box .right_box ul li:not(:last-child) {
    margin: 0 0 5px;
  }
}
.section_contact .content .flex_box .right_box ul li a {
  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;
  height: 60px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .section_contact .content .flex_box .right_box ul li a {
    font-size: 14px;
    height: 50px;
  }
}
@media only screen and (max-width: 380px) {
  .section_contact .content .flex_box .right_box ul li a {
    font-size: 12px;
    height: 40px;
  }
}
.section_contact .content .flex_box .right_box ul li a i {
  margin: 0 8px 0 0;
}
.section_contact .content .flex_box .right_box ul li a:hover {
  background: rgba(255, 255, 255, 0.125);
}

/*--------------------------
form
---------------------------*/
.page-id-21 #header,
.page-id-21 #footer,
.page-id-23 #header,
.page-id-23 #footer,
.page-id-35 #header,
.page-id-35 #footer {
  display: none;
}
.page-id-21 .bge-entry-content,
.page-id-23 .bge-entry-content,
.page-id-35 .bge-entry-content {
  width: 90% !important;
  max-width: 768px !important;
  padding: 60px 0 120px !important;
  margin: 0 auto !important;
}
.page-id-21 .bge-entry-content h2,
.page-id-23 .bge-entry-content h2,
.page-id-35 .bge-entry-content h2 {
  position: relative;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .page-id-21 .bge-entry-content h2,
  .page-id-23 .bge-entry-content h2,
  .page-id-35 .bge-entry-content h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 380px) {
  .page-id-21 .bge-entry-content h2,
  .page-id-23 .bge-entry-content h2,
  .page-id-35 .bge-entry-content h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .page-id-21 .bge-entry-content h2,
  .page-id-23 .bge-entry-content h2,
  .page-id-35 .bge-entry-content h2 {
    margin: 0 0 20px;
  }
}
.page-id-21 .form-columns-1,
.page-id-21 .form-columns-2,
.page-id-23 .form-columns-1,
.page-id-23 .form-columns-2,
.page-id-35 .form-columns-1,
.page-id-35 .form-columns-2 {
  max-width: 100% !important;
  margin: 0 0 20px !important;
}
.page-id-21 .hs-input,
.page-id-23 .hs-input,
.page-id-35 .hs-input {
  width: 100% !important;
  font-size: 16px !important;
  padding: 12px 16px !important;
  border: 1px solid #455467;
}
@media (max-width: 400px) {
  .page-id-21 .input,
  .page-id-23 .input,
  .page-id-35 .input {
    margin: 0 !important;
  }
}
.page-id-21 .hs-error-msg,
.page-id-21 .hs-form-required,
.page-id-23 .hs-error-msg,
.page-id-23 .hs-form-required,
.page-id-35 .hs-error-msg,
.page-id-35 .hs-form-required {
  color: red;
}
.page-id-21 .actions,
.page-id-23 .actions,
.page-id-35 .actions {
  text-align: center !important;
  margin: 40px 0 0;
}
.page-id-21 .actions .hs-button,
.page-id-23 .actions .hs-button,
.page-id-35 .actions .hs-button {
  width: 100% !important;
  max-width: 280px !important;
  font-size: 18px;
  color: #fff;
  padding: 10px 0;
  margin: 0 auto !important;
  background: #ff741f;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.page-id-21 .actions .hs-button:hover,
.page-id-23 .actions .hs-button:hover,
.page-id-35 .actions .hs-button:hover {
  opacity: 0.7;
}
.page-id-21 .legal-consent-container, .page-id-21 .hs-richtext, .page-id-21 .hs-dependent-field,
.page-id-23 .legal-consent-container,
.page-id-23 .hs-richtext,
.page-id-23 .hs-dependent-field,
.page-id-35 .legal-consent-container,
.page-id-35 .hs-richtext,
.page-id-35 .hs-dependent-field {
  margin: 20px 0 0 !important;
}
.page-id-21 .hs-form-booleancheckbox,
.page-id-23 .hs-form-booleancheckbox,
.page-id-35 .hs-form-booleancheckbox {
  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;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page-id-21 .hs-form-booleancheckbox,
  .page-id-23 .hs-form-booleancheckbox,
  .page-id-35 .hs-form-booleancheckbox {
    width: 90%;
    text-align: left;
  }
}
.page-id-21 .hs-form-booleancheckbox-display,
.page-id-23 .hs-form-booleancheckbox-display,
.page-id-35 .hs-form-booleancheckbox-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.page-id-21 .hs-form-booleancheckbox-display input,
.page-id-23 .hs-form-booleancheckbox-display input,
.page-id-35 .hs-form-booleancheckbox-display input {
  width: auto !important;
}
.page-id-21 .hs-form-booleancheckbox-display span,
.page-id-23 .hs-form-booleancheckbox-display span,
.page-id-35 .hs-form-booleancheckbox-display span {
  margin: 0 0 0 6px !important;
}