@charset "UTF-8";
/*
font-family: 'Lato', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/
/*common*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}
body a {
  text-decoration: none;
}

/*commonHeading*/
.bl-commonHeadingBox {
  display: flex;
}
.bl-commonHeadingBox .el-commonHeadingBoxTtl {
  font-size: 48px;
  font-family: "Lato", sans-serif;
  color: #000;
  margin-right: 15px;
}
@media (max-width: 520px) {
  .bl-commonHeadingBox .el-commonHeadingBoxTtl {
    font-size: 28px;
    margin-right: 10px;
  }
}
.bl-commonHeadingBox .el-commonHeadingBoxTtlSep {
  width: 1px;
  height: 40px;
  border-left: 3px solid #000;
  transform: rotate(30deg);
  margin-top: 5px;
  margin-right: 15px;
}
@media (max-width: 520px) {
  .bl-commonHeadingBox .el-commonHeadingBoxTtlSep {
    height: 20px;
    margin-top: 7px;
    margin-right: 10px;
  }
}
.bl-commonHeadingBox .el-commonHeadingBoxSubTtl {
  font-size: 24px;
  margin-top: 20px;
}
@media (max-width: 520px) {
  .bl-commonHeadingBox .el-commonHeadingBoxSubTtl {
    font-size: 14px;
    margin-top: 10px;
  }
}

/*commonBtn*/
.bl-commonBtn {
  background-color: #EA641C;
  width: 250px;
  height: 60px;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 520px) {
  .bl-commonBtn {
    width: 200px;
  }
}
.bl-commonBtn:hover {
  opacity: 0.7;
}
.bl-commonBtn .el-commonBtnTxt {
  line-height: 60px;
  color: #fff;
}
@media (max-width: 520px) {
  .bl-commonBtn .el-commonBtnTxt {
    font-size: 14px;
  }
}

/*header*/
.header {
  background-color: #fff;
  height: 80px;
  width: 100%;
  z-index: 9999;
  position: relative;
}
.header .bl-header {
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.header .bl-header .bl-headerLogo {
  margin-left: 20px;
  margin-top: 20px;
  width: 200px;
  height: 40px;
}
.header .bl-header .bl-headerLogo img {
  width: 100%;
  height: 100%;
}
.header .bl-header .bl-headerNav {
  margin-top: 30px;
}
@media (max-width: 920px) {
  .header .bl-header .bl-headerNav {
    display: none;
  }
}
.header .bl-header .bl-headerNav .bl-headerNavLists {
  display: flex;
}
.header .bl-header .bl-headerNav .bl-headerNavLists .el-headerNavList {
  list-style: none;
  margin-right: 15px;
}
.header .bl-header .bl-headerNav .bl-headerNavLists .el-headerNavList a {
  color: #707070;
  font-size: 20px;
  font-family: "Lato", sans-serif;
}
.header .bl-header .bl-headerNav .bl-headerNavLists .el-headerNavList a:hover {
  color: #E36524;
}
.header .bl-header .bl-headerNav .bl-headerNavLists .el-headerNavSep {
  height: 20px;
  width: 2px;
  border-right: 2px solid #707070;
  transform: rotate(45deg);
  margin-right: 15px;
}
.header .bl-header .bl-humbergerMenu {
  margin-top: 15px;
  margin-right: 20px;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
@media (min-width: 921px) {
  .header .bl-header .bl-humbergerMenu {
    display: none;
  }
}
.header .bl-header .bl-humbergerMenu .openbtn1 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: #E36524;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.header .bl-header .bl-humbergerMenu .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.header .bl-header .bl-humbergerMenu .openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.header .bl-header .bl-humbergerMenu .openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.header .bl-header .bl-humbergerMenu .openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.header .bl-header .bl-humbergerMenu .openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.header .bl-header .bl-humbergerMenu .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.header .bl-header .bl-humbergerMenu .openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.header .bl-humbergerMenuNav {
  background-color: rgba(112, 112, 112, 0.8);
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 8000;
  display: none;
}
.header .bl-humbergerMenuNav .bl-humbergerMenuNavLists {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.header .bl-humbergerMenuNav .bl-humbergerMenuNavLists .el-humbergerMenuNavList {
  text-align: center;
}
.header .bl-humbergerMenuNav .bl-humbergerMenuNavLists .el-humbergerMenuNavList a {
  display: block;
  font-size: 20px;
  color: #fff;
  line-height: 60px;
}
.header .bl-humbergerMenuNav .bl-humbergerMenuNavLists .el-humbergerMenuNavList a:hover {
  color: #E36524;
}

/*top*/
.top {
  width: 100%;
  height: 800px;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 920px) {
  .top {
    height: 600px;
  }
}
@media (max-width: 520px) {
  .top {
    margin-bottom: 220px;
  }
}
.top .bl-top {
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
}
.top .bl-top .bl-topContents {
  padding-top: 170px;
}
.top .bl-top .bl-topContents h1 {
  font-size: 80px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0 #5C5C5C;
  margin-bottom: 125px;
  margin-left: 20px;
}
@media (max-width: 920px) {
  .top .bl-top .bl-topContents h1 {
    font-size: 60px;
  }
}
@media (max-width: 520px) {
  .top .bl-top .bl-topContents h1 {
    font-size: 28px;
  }
}
.top .bl-top .bl-topContents .el-topCatchcopy {
  background-color: #fff;
  width: 300px;
  height: 60px;
  text-align: center;
  position: relative;
  margin-left: 20px;
}
@media (max-width: 920px) {
  .top .bl-top .bl-topContents .el-topCatchcopy {
    width: 250px;
  }
}
@media (max-width: 520px) {
  .top .bl-top .bl-topContents .el-topCatchcopy {
    width: 180px;
    height: 40px;
  }
}
.top .bl-top .bl-topContents .el-topCatchcopy:first-child {
  margin-bottom: 25px;
}
.top .bl-top .bl-topContents .el-topCatchcopy::after {
  content: "";
  display: block;
  background-color: rgba(112, 112, 112, 0.5);
  width: 300px;
  height: 60px;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: -8888;
}
@media (max-width: 920px) {
  .top .bl-top .bl-topContents .el-topCatchcopy::after {
    width: 250px;
  }
}
@media (max-width: 520px) {
  .top .bl-top .bl-topContents .el-topCatchcopy::after {
    width: 180px;
    height: 40px;
  }
}
.top .bl-top .bl-topContents .el-topCatchcopy p {
  font-size: 32px;
  line-height: 60px;
}
@media (max-width: 920px) {
  .top .bl-top .bl-topContents .el-topCatchcopy p {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .top .bl-top .bl-topContents .el-topCatchcopy p {
    font-size: 16px;
    line-height: 40px;
  }
}
.top .bl-top .bl-topPickupNews {
  background-color: #fff;
  position: absolute;
  bottom: -20px;
  right: 0;
}
@media (max-width: 520px) {
  .top .bl-top .bl-topPickupNews {
    top: 600px;
    left: 0;
  }
}
.top .bl-top .bl-topPickupNews::after {
  position: absolute;
  bottom: -5px;
  left: -5px;
  z-index: -7777;
  content: "";
  display: block;
  background-color: rgba(112, 112, 112, 0.5);
  width: 100%;
  height: 100%;
}
@media (max-width: 520px) {
  .top .bl-top .bl-topPickupNews::after {
    display: none;
  }
}
.top .bl-top .bl-topPickupNews .el-topPickupNewsTtl {
  padding-bottom: 20px;
  margin: 30px 30px 20px;
  border-bottom: 1px solid #707070;
}
@media (max-width: 520px) {
  .top .bl-top .bl-topPickupNews .el-topPickupNewsTtl {
    padding-bottom: 10px;
    margin: 15px 30px 0;
  }
}
.top .bl-top .bl-topPickupNews .el-topPickupNewsTtl p {
  font-size: 28px;
  font-family: "Lato", sans-serif;
  color: #212121;
  padding-left: 10px;
  border-left: 5px solid #707070;
}
@media (max-width: 520px) {
  .top .bl-top .bl-topPickupNews .el-topPickupNewsTtl p {
    font-size: 16px;
  }
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems {
  margin: 0 30px;
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem {
  display: flex;
  padding: 10px;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem {
    margin-bottom: 0;
  }
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemImg {
  width: 100px;
  height: 100px;
  margin-right: 15px;
}
@media (max-width: 920px) {
  .top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemImg {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 520px) {
  .top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemImg {
    display: none;
  }
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemImg img {
  width: 100%;
  height: 100%;
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemContents {
  padding: 10px;
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemContents .el-topPickupNewsItemConTime {
  font-size: 14px;
  margin-bottom: 10px;
}
.top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemContents .el-topPickupNewsItemConTtl {
  font-size: 18px;
  color: #000;
}
@media (max-width: 920px) {
  .top .bl-top .bl-topPickupNews .bl-topPickupNewsItems .bl-topPickupNewsItem .bl-topPickupNewsItemContents .el-topPickupNewsItemConTtl {
    font-size: 14px;
  }
}
.top .bl-top .swiper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -9999;
  width: 100%;
  height: 800px;
}
@media (max-width: 920px) {
  .top .bl-top .swiper {
    height: 600px;
  }
}
.top .bl-top .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  min-height: 800px;
}
.top .bl-top .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*service*/
.service {
  margin-bottom: 120px;
}
@media (max-width: 520px) {
  .service {
    margin-bottom: 0;
  }
}
.service .bl-service {
  background-color: #F0E1E1;
  padding: 35px 0 45px;
  width: 100%;
}
.service .bl-service .bl-serviceBox {
  display: flex;
  justify-content: center;
  padding-left: 15px;
}
@media (max-width: 920px) {
  .service .bl-service .bl-serviceBox {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
  }
}
.service .bl-service .bl-serviceBox .bl-serviceBoxImg {
  width: 540px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 40px;
}
@media (max-width: 920px) {
  .service .bl-service .bl-serviceBox .bl-serviceBoxImg {
    margin: 0;
  }
}
@media (max-width: 520px) {
  .service .bl-service .bl-serviceBox .bl-serviceBoxImg {
    width: 300px;
    height: auto;
  }
}
.service .bl-service .bl-serviceBox .bl-serviceBoxImg img {
  width: 100%;
  height: 100%;
}
.service .bl-service .bl-serviceBox .bl-serviceBoxContents {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 920px) {
  .service .bl-service .bl-serviceBox .bl-serviceBoxContents {
    margin-bottom: 50px;
  }
}
@media (max-width: 520px) {
  .service .bl-service .bl-serviceBox .bl-serviceBoxContents {
    width: 90%;
  }
}
.service .bl-service .bl-serviceBox .bl-serviceBoxContents .bl-commonHeadingBox {
  margin-top: 15px;
  margin-bottom: 20px;
}
.service .bl-service .bl-serviceBox .bl-serviceBoxContents .el-serviceBoxConCatchcopy {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 520px) {
  .service .bl-service .bl-serviceBox .bl-serviceBoxContents .el-serviceBoxConCatchcopy {
    font-size: 20px;
  }
}
.service .bl-service .bl-serviceBox .bl-serviceBoxContents .el-serviceBoxConDescription {
  line-height: 2;
  margin-bottom: 20px;
}
@media (max-width: 520px) {
  .service .bl-service .bl-serviceBox .bl-serviceBoxContents .el-serviceBoxConDescription {
    font-size: 14px;
  }
}

/*about*/
.about {
  margin-bottom: 120px;
}
@media (max-width: 520px) {
  .about {
    margin-bottom: 0;
  }
}
.about .bl-about {
  width: 100%;
  height: 600px;
  background-image: url(../images/aboutBg.png);
  background-size: cover;
}
.about .bl-about .bl-aboutBox {
  padding: 40px 0 30px;
}
.about .bl-about .bl-aboutBox .bl-aboutBoxContents {
  background-color: #fff;
  width: 440px;
  margin: 0 auto;
  padding: 15px 20px 35px;
}
@media (max-width: 520px) {
  .about .bl-about .bl-aboutBox .bl-aboutBoxContents {
    width: 300px;
  }
}
.about .bl-about .bl-aboutBox .bl-aboutBoxContents .bl-commonHeadingBox {
  margin-bottom: 20px;
}
.about .bl-about .bl-aboutBox .bl-aboutBoxContents .el-aboutBoxConDescription {
  margin-bottom: 20px;
  line-height: 2;
}
.about .bl-about .bl-aboutBox .bl-aboutBoxContents .bl-commonBtn {
  margin-bottom: 35px;
}
.about .bl-about .bl-aboutBox .bl-aboutBoxContents .bl-aboutBoxConImg {
  width: 365px;
  height: 135px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .about .bl-about .bl-aboutBox .bl-aboutBoxContents .bl-aboutBoxConImg {
    width: 250px;
    height: auto;
  }
}
.about .bl-about .bl-aboutBox .bl-aboutBoxContents .bl-aboutBoxConImg img {
  width: 100%;
  height: 100%;
}

/*housing*/
.housing {
  margin-bottom: 120px;
}
@media (max-width: 520px) {
  .housing {
    margin-bottom: 0;
  }
}
.housing .bl-housing {
  background-color: #F0E1E1;
  padding: 25px 0 35px;
}
.housing .bl-housing .bl-housingBox {
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.housing .bl-housing .bl-housingBox .bl-commonHeadingBox {
  margin-bottom: 20px;
}
.housing .bl-housing .bl-housingBox .el-housingBoxCatchcopy {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 920px) {
  .housing .bl-housing .bl-housingBox .el-housingBoxCatchcopy {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .housing .bl-housing .bl-housingBox .el-housingBoxCatchcopy {
    font-size: 14px;
  }
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 920px) {
  .housing .bl-housing .bl-housingBox .bl-housingBoxCards {
    flex-direction: column;
  }
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard {
  background-color: #fff;
  width: 400px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 520px) {
  .housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard {
    width: 300px;
  }
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard:first-child {
  margin-right: 50px;
}
@media (max-width: 920px) {
  .housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard:first-child {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardImg {
  width: 400px;
  height: 225px;
  position: relative;
}
@media (max-width: 520px) {
  .housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardImg {
    width: 300px;
  }
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardImg .bl-housingBoxCardNum {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #EA641C;
  text-align: center;
  width: 50px;
  height: 40px;
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardImg .bl-housingBoxCardNum p {
  color: #fff;
  line-height: 40px;
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardContents {
  padding: 15px 30px 30px;
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardContents .el-housingBoxCardConTtl {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardContents .el-housingBoxCardConTtl {
    font-size: 20px;
  }
}
.housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardContents .el-housingBoxCardConDescription {
  line-height: 2;
}
@media (max-width: 520px) {
  .housing .bl-housing .bl-housingBox .bl-housingBoxCards .bl-housingBoxCard .bl-housingBoxCardContents .el-housingBoxCardConDescription {
    font-size: 14px;
  }
}

/*recruit*/
.recruit .bl-recruit {
  background-color: #F0E1E1;
  padding: 20px 0 45px;
}
.recruit .bl-recruit .bl-recruitBox {
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruit .bl-recruit .bl-recruitBox .bl-commonHeadingBox {
  margin-bottom: 40px;
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 55px;
}
@media (max-width: 520px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards {
    flex-direction: column;
  }
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard {
  width: 250px;
  height: 250px;
  margin-right: 55px;
  position: relative;
}
@media (max-width: 920px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 520px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard:first-child {
  margin-top: 60px;
}
@media (max-width: 920px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard:first-child {
    margin-top: 0;
  }
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard:last-child {
  margin-right: 0;
  margin-bottom: 60px;
}
@media (max-width: 920px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard:last-child {
    margin-bottom: 0;
  }
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard img {
  width: 100%;
  height: 100%;
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard .bl-recruitBoxCardLink {
  width: 200px;
  height: 60px;
  text-align: center;
  border-radius: 5px;
  background-color: rgba(245, 133, 21, 0.7);
  position: absolute;
  bottom: -15px;
  right: -15px;
}
@media (max-width: 920px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard .bl-recruitBoxCardLink {
    width: 180px;
  }
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard .bl-recruitBoxCardLink:hover {
  background-color: #F58515;
}
.recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard .bl-recruitBoxCardLink a {
  color: #fff;
  line-height: 60px;
}
@media (max-width: 920px) {
  .recruit .bl-recruit .bl-recruitBox .bl-recruitBoxCards .bl-recruitBoxCard .bl-recruitBoxCardLink a {
    font-size: 14px;
  }
}

/*contact*/
.contact .bl-contact {
  background-image: url(../images/contactBg.png);
  background-size: cover;
  padding: 65px 0 100px;
}
@media (max-width: 520px) {
  .contact .bl-contact {
    background-position: 80% 50%;
  }
}
.contact .bl-contact .bl-contactBox {
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .bl-contact .bl-contactBox .bl-commonHeadingBox {
  margin-bottom: 35px;
}
.contact .bl-contact .bl-contactBox .bl-commonHeadingBox .hl-white {
  color: #fff;
}
.contact .bl-contact .bl-contactBox .bl-commonHeadingBox .hl-bdwhite {
  border-left: 3px solid #fff;
}
.contact .bl-contact .bl-contactBox .el-contactBoxDescription {
  color: #fff;
  margin-bottom: 60px;
  line-height: 2;
}
@media (max-width: 520px) {
  .contact .bl-contact .bl-contactBox .el-contactBoxDescription {
    font-size: 14px;
    width: 90%;
  }
}
@media (min-width: 521px) {
  .contact .bl-contact .bl-contactBox .el-contactBoxDescription br {
    display: none;
  }
}
.contact .bl-contact .bl-contactBox .bl-contactBoxLinks {
  display: flex;
}
@media (max-width: 520px) {
  .contact .bl-contact .bl-contactBox .bl-contactBoxLinks {
    flex-direction: column;
  }
}
.contact .bl-contact .bl-contactBox .bl-contactBoxLinks .bl-contactBoxLink {
  width: 300px;
  height: 60px;
  background-color: #EA641C;
  margin-right: 70px;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 520px) {
  .contact .bl-contact .bl-contactBox .bl-contactBoxLinks .bl-contactBoxLink {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.contact .bl-contact .bl-contactBox .bl-contactBoxLinks .bl-contactBoxLink:nth-child(2) {
  background-color: #2D2D2D;
  margin-right: 0;
}
.contact .bl-contact .bl-contactBox .bl-contactBoxLinks .bl-contactBoxLink:hover {
  opacity: 0.7;
}
.contact .bl-contact .bl-contactBox .bl-contactBoxLinks .bl-contactBoxLink a {
  line-height: 60px;
  color: #fff;
}

/*footer*/
.footer .bl-footer {
  background-color: #F89772;
  padding: 75px 0;
}
.footer .bl-footer .bl-footerBox {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .footer .bl-footer .bl-footerBox {
    flex-direction: column;
    align-items: center;
  }
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo {
  margin-right: 130px;
  margin-left: 200px;
}
@media (max-width: 920px) {
  .footer .bl-footer .bl-footerBox .bl-footerBoxInfo {
    margin: 0;
  }
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo .bl-footerBoxInfoLogo {
  margin-bottom: 40px;
  width: 200px;
  height: 40px;
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo .bl-footerBoxInfoLogo img {
  width: 100%;
  height: 100%;
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo .bl-footerBoxInfoData {
  padding: 20px 0;
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo .bl-footerBoxInfoData p {
  color: #fff;
  margin-bottom: 15px;
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo .bl-footerBoxInfoData a {
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
.footer .bl-footer .bl-footerBox .bl-footerBoxInfo .bl-footerBoxInfoData a:hover {
  opacity: 0.7;
}
.footer .bl-footer .bl-footerBox .bl-footerBoxMap {
  width: 500px;
  height: 280px;
  margin-right: 20px;
}
@media (max-width: 920px) {
  .footer .bl-footer .bl-footerBox .bl-footerBoxMap {
    margin: 0;
  }
}
@media (max-width: 520px) {
  .footer .bl-footer .bl-footerBox .bl-footerBoxMap {
    width: 300px;
    height: auto;
  }
}
.footer .bl-footer .bl-footerBox .bl-footerBoxMap iframe {
  width: 100%;
  height: 100%;
}

/*copyright*/
.copyright {
  background-color: #5D5D5D;
  height: 60px;
}
.copyright .bl-copyright {
  width: 100%;
  max-width: 1022px;
}
.copyright .bl-copyright p {
  margin-left: 20px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: #fff;
  line-height: 60px;
}/*# sourceMappingURL=style.css.map */