@charset "UTF-8";
html {
  font-size: 0.714vw;
}

@media (max-width: 999px) {
  html {
    font-size: 0.9vw;
  }
}

@media (max-width: 575px) {
  html {
    font-size: 2vw;
  }
}

html body {
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  width: 100%;
  height: auto;
  /*1.フェードインアニメーションの指定*/
}

html body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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;
  z-index: 140;
  background-color: rgba(0, 0, 0, 0);
  padding: 25px 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 575px) {
  html body header {
    padding: 12px 7px;
  }
}

html body header .logo {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 33rem;
  height: auto;
}

html body header .logo .logoWhite {
  width: 100%;
  height: auto;
  z-index: 12;
}

html body header .logo .logoBlack {
  position: absolute;
  top: 1rem;
  left: 2.5rem;
  width: 33rem;
  height: auto;
  z-index: 11;
  opacity: 0;
}

@media (max-width: 575px) {
  html body header .logo .logoBlack {
    top: 1.5rem;
    left: 0.5rem;
  }
}

html body header ul {
  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;
  margin-right: 2rem;
  margin-bottom: 0;
}

html body header ul li {
  list-style: none;
}

html body header ul li a {
  display: inline-block;
  margin-left: 12px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

html body header.scroll-nav {
  padding: 10px 15px;
  background: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

html body header.scroll-nav ul li a {
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

html body header.scroll-nav ul li ahover {
  color: skyblue;
}

html body .top {
  position: relative;
  width: 100%;
  height: 85rem;
  /*サイドバーアニメーション制御*/
}

html body .top .hamburger_btn {
  position: fixed;
  right: 2rem;
  top: 1rem;
  width: 70px;
  height: 72px;
  cursor: pointer;
  z-index: 150;
}

@media (max-width: 575px) {
  html body .top .hamburger_btn {
    top: 1rem;
    right: 2rem;
    width: 60px;
    height: 62px;
  }
}

html body .top .hamburger_btn .line {
  position: absolute;
  top: 0;
  left: 19px;
  width: 32px;
  height: 2px;
  background: #B6E0D8;
  text-align: center;
}

@media (max-width: 575px) {
  html body .top .hamburger_btn .line {
    left: 15px;
    width: 28px;
  }
}

html body .top .hamburger_btn .line_01 {
  top: 23px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

html body .top .hamburger_btn .line_02 {
  top: 31px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

html body .top .hamburger_btn .btn_line01 {
  -webkit-transform: translateY(4px) rotate(-45deg);
          transform: translateY(4px) rotate(-45deg);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color: #0C7883;
}

html body .top .hamburger_btn .btn_line02 {
  -webkit-transform: translateY(-4px) rotate(45deg);
          transform: translateY(-4px) rotate(45deg);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color: #0C7883;
}

html body .top .hamburger_btn:hover {
  -webkit-box-shadow: 3px 4px 20px #c5dfe8;
          box-shadow: 3px 4px 20px #c5dfe8;
}

@media (max-width: 575px) {
  html body .top .hamburger_btn:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

html body .top .hamburger_active {
  z-index: 150;
}

html body .top .menu-enter-active, html body .top .menu-leave-active {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

html body .top .menu-enter, html body .top .menu-leave-to {
  opacity: 0;
}

html body .top .menu-leave, html body .top .menu-enter-to {
  opacity: 1;
}

html body .top .menu {
  background-color: #B6E0D8;
  z-index: 140;
  padding: 2rem 1rem;
  position: fixed;
  width: 50%;
  height: 80rem;
  top: 0;
  right: 0;
}

@media (max-width: 575px) {
  html body .top .menu {
    right: 0;
    width: 65%;
    height: 100%;
  }
}

html body .top .menu ul {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20rem;
  margin: 0 17rem;
  padding: 0;
}

@media (max-width: 575px) {
  html body .top .menu ul {
    margin: 0 4rem;
  }
}

html body .top .menu ul li {
  list-style: none;
  line-height: 1;
  padding: 3.5rem 0;
}

@media (max-width: 575px) {
  html body .top .menu ul li {
    padding: 4rem 0;
  }
}

html body .top .menu ul li a {
  font-family: "YakuHanJP_Noto";
  color: #0C7883;
  font-size: 2.2rem;
  font-weight: lighter;
  letter-spacing: 3px;
  text-decoration: none;
}

html body .top .menu ul li:hover {
  opacity: .7;
}

html body .top #slide_wrapp {
  position: relative;
  overflow: hidden;
}

html body .top #slide_wrapp .slide_item {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.5s linear, -webkit-transform 7.5s linear;
  transition: opacity 0.5s linear, -webkit-transform 7.5s linear;
  transition: opacity 0.5s linear, transform 7.5s linear;
  transition: opacity 0.5s linear, transform 7.5s linear, -webkit-transform 7.5s linear;
  z-index: 1;
}

html body .top #slide_wrapp .slide_item:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

html body .top #slide_wrapp .slide_item.show_ {
  opacity: 1;
}

html body .top #slide_wrapp .slide_item.zoom_ {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

html body .top #slide_wrapp .slide_item img {
  width: 100%;
  height: auto;
}

html body .top #slide_wrapp_smp {
  position: relative;
  overflow: hidden;
}

html body .top #slide_wrapp_smp .slide_item_smp {
  width: 100%;
  height: 85rem;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 2s linear, -webkit-transform 7.5s linear;
  transition: opacity 2s linear, -webkit-transform 7.5s linear;
  transition: opacity 2s linear, transform 7.5s linear;
  transition: opacity 2s linear, transform 7.5s linear, -webkit-transform 7.5s linear;
  z-index: 1;
}

html body .top #slide_wrapp_smp .slide_item_smp:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

html body .top #slide_wrapp_smp .slide_item_smp.show_ {
  opacity: 1;
}

html body .top #slide_wrapp_smp .slide_item_smp.zoom_ {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

html body .top #slide_wrapp_smp .slide_item_smp img {
  width: 100%;
  height: 85rem;
}

html body .top .top_center {
  position: absolute;
  top: 37rem;
  left: 10rem;
  color: white;
  z-index: 130;
}

@media (max-width: 575px) {
  html body .top .top_center {
    width: 40rem;
    top: 34rem;
    left: 3rem;
  }
}

html body .top .top_center h1 {
  font-size: 5rem;
  font-weight: lighter;
  letter-spacing: 5px;
  margin-bottom: 4rem;
}

html body .top .top_center h1 span {
  letter-spacing: 1px;
}

@media (max-width: 575px) {
  html body .top .top_center h1 {
    font-size: 5rem;
    font-weight: normal;
  }
}

html body .contentWrap {
  width: 100%;
  height: auto;
  margin-top: 40rem;
  background-color: white;
}

html body .contentWrap .content1 .contentA {
  position: relative;
  width: 100%;
  height: 58rem;
  margin-top: 24rem;
  background-color: #85eb7a;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA {
    height: 85rem;
  }
}

html body .contentWrap .content1 .contentA .imgWrapper {
  position: absolute;
  top: -5rem;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content1 .contentA .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content1 .contentA .logo {
  position: absolute;
  bottom: 7rem;
  right: 8rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA .logo {
    width: 39rem;
    bottom: 2rem;
    right: 12rem;
  }
}

html body .contentWrap .content1 .contentA .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content1 .contentA .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content1 .contentA .textWrapper {
  padding: 10rem 3rem 3rem 80rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA .textWrapper {
    padding: 27rem 7rem 3rem 3rem;
  }
}

html body .contentWrap .content1 .contentA .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content1 .contentA .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content1 .contentA .textWrapper p {
    line-height: 40px;
  }
}

html body .contentWrap .content2 .contentB {
  position: relative;
  width: 100%;
  height: 58rem;
  margin-top: 24rem;
  background-color: #f0d456;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB {
    height: 79rem;
  }
}

html body .contentWrap .content2 .contentB .imgWrapper {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content2 .contentB .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content2 .contentB .logo {
  position: absolute;
  bottom: 10rem;
  left: 6.5rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB .logo {
    bottom: 4rem;
    left: 6.5rem;
  }
}

html body .contentWrap .content2 .contentB .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content2 .contentB .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content2 .contentB .textWrapper {
  padding: 11rem 80rem 3rem 6rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB .textWrapper {
    padding: 29rem 5rem 3rem 6rem;
  }
}

html body .contentWrap .content2 .contentB .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content2 .contentB .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content2 .contentB .textWrapper p {
    line-height: 40px;
  }
}

html body .contentWrap .content3 .contentA {
  position: relative;
  width: 100%;
  height: 58rem;
  margin-top: 24rem;
  background-color: #f09a5d;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA {
    height: 75rem;
  }
}

html body .contentWrap .content3 .contentA .imgWrapper {
  position: absolute;
  top: -5rem;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content3 .contentA .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content3 .contentA .logo {
  position: absolute;
  bottom: 12rem;
  right: 8rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA .logo {
    width: 39rem;
    bottom: 4rem;
    right: 11.5rem;
  }
}

html body .contentWrap .content3 .contentA .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content3 .contentA .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content3 .contentA .textWrapper {
  padding: 10rem 3rem 3rem 80rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA .textWrapper {
    padding: 30rem 6rem 3rem 3rem;
  }
}

html body .contentWrap .content3 .contentA .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content3 .contentA .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content3 .contentA .textWrapper p {
    line-height: 40px;
  }
}

html body .contentWrap .content4 .contentB {
  position: relative;
  width: 100%;
  height: 58rem;
  margin-top: 24rem;
  background-color: #5e8cf7;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB {
    height: 83rem;
  }
}

html body .contentWrap .content4 .contentB .imgWrapper {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content4 .contentB .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content4 .contentB .logo {
  position: absolute;
  bottom: 9rem;
  left: 6.5rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB .logo {
    bottom: 4rem;
    left: 6.5rem;
  }
}

html body .contentWrap .content4 .contentB .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content4 .contentB .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content4 .contentB .textWrapper {
  padding: 11rem 80rem 3rem 6rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB .textWrapper {
    padding: 29rem 5rem 3rem 6rem;
  }
}

html body .contentWrap .content4 .contentB .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content4 .contentB .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content4 .contentB .textWrapper p {
    line-height: 40px;
  }
}

html body .contentWrap .content5 .contentA {
  position: relative;
  width: 100%;
  height: 58rem;
  margin-top: 24rem;
  background-color: #54b52d;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA {
    height: 76rem;
  }
}

html body .contentWrap .content5 .contentA .imgWrapper {
  position: absolute;
  top: -5rem;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content5 .contentA .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content5 .contentA .logo {
  position: absolute;
  bottom: 12rem;
  right: 8rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA .logo {
    width: 39rem;
    bottom: 4rem;
    right: 11.5rem;
  }
}

html body .contentWrap .content5 .contentA .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content5 .contentA .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content5 .contentA .textWrapper {
  padding: 10rem 3rem 3rem 80rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA .textWrapper {
    padding: 31rem 6rem 3rem 3rem;
  }
}

html body .contentWrap .content5 .contentA .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content5 .contentA .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content5 .contentA .textWrapper p {
    line-height: 40px;
  }
}

html body .contentWrap .content6 .contentB {
  position: relative;
  width: 100%;
  height: 63rem;
  margin-top: 24rem;
  background-color: #ba1c51;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB {
    height: 84rem;
  }
}

html body .contentWrap .content6 .contentB .imgWrapper {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content6 .contentB .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content6 .contentB .logo {
  position: absolute;
  bottom: 5rem;
  left: 6.5rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB .logo {
    bottom: 4rem;
    left: 6.5rem;
  }
}

html body .contentWrap .content6 .contentB .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content6 .contentB .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content6 .contentB .textWrapper {
  padding: 11rem 80rem 3rem 6rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB .textWrapper {
    padding: 24rem 5rem 3rem 6rem;
  }
}

html body .contentWrap .content6 .contentB .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content6 .contentB .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content6 .contentB .textWrapper p {
    line-height: 40px;
  }
}

html body .contentWrap .content7 .contentA {
  position: relative;
  width: 100%;
  height: 58rem;
  margin-top: 24rem;
  background-color: #f2be44;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA {
    height: 67rem;
  }
}

html body .contentWrap .content7 .contentA .imgWrapper {
  position: absolute;
  top: -5rem;
  width: 75rem;
  height: 30rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA .imgWrapper {
    top: -10rem;
    width: 46rem;
  }
}

html body .contentWrap .content7 .contentA .imgWrapper img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 7px 8px 20px rgba(0, 0, 0, 0.3);
}

html body .contentWrap .content7 .contentA .logo {
  position: absolute;
  bottom: 11rem;
  right: 8rem;
  width: 55rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA .logo {
    width: 39rem;
    bottom: 4rem;
    right: 11.5rem;
  }
}

html body .contentWrap .content7 .contentA .logo .logoWrapper {
  width: 20rem;
  height: auto;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA .logo .logoWrapper {
    width: 13rem;
  }
}

html body .contentWrap .content7 .contentA .logo .logoWrapper img {
  width: 100%;
  height: auto;
}

html body .contentWrap .content7 .contentA .textWrapper {
  padding: 10rem 3rem 3rem 80rem;
  color: white;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA .textWrapper {
    padding: 27rem 6rem 3rem 3rem;
  }
}

html body .contentWrap .content7 .contentA .textWrapper h3 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA .textWrapper h3 {
    font-size: 4rem;
    text-align: left;
  }
}

html body .contentWrap .content7 .contentA .textWrapper p {
  font-size: 2rem;
  line-height: 50px;
}

@media (max-width: 575px) {
  html body .contentWrap .content7 .contentA .textWrapper p {
    line-height: 40px;
  }
}

html body .growthfarm {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 10rem;
}

html body .growthfarm .wrapper {
  width: 100%;
  height: 50rem;
  margin-top: 24rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../img/FV_Agriculture.jpg);
}

html body .growthfarm .wrapper .inner {
  color: white;
  width: 80rem;
  margin: 0 auto;
  text-align: center;
  padding: 20rem 0;
}

@media (max-width: 575px) {
  html body .growthfarm .wrapper .inner {
    width: 50rem;
  }
}

html body .growthfarm .wrapper .inner h1 {
  font-size: 4rem;
  letter-spacing: 4px;
}

html body .growthfarm .gc_textWrapper {
  width: 100%;
  height: auto;
  margin-top: 10rem;
}

html body .growthfarm .gc_textWrapper .gc_textInner {
  width: 50rem;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 575px) {
  html body .growthfarm .gc_textWrapper .gc_textInner {
    width: 35rem;
  }
}

html body .growthfarm .gc_textWrapper .gc_textInner h1 {
  font-weight: lighter;
  font-size: 2rem;
}

@media (max-width: 575px) {
  html body .growthfarm .gc_textWrapper .gc_textInner h1 {
    font-size: 2.5rem;
  }
}

html body .growthfarm .gc_textWrapper .gc_textInner p {
  margin-top: 4rem;
  font-size: 1.6rem;
  font-weight: lighter;
  line-height: 40px;
  text-align: left;
}

@media (max-width: 575px) {
  html body .growthfarm .gc_textWrapper .gc_textInner p {
    font-size: 2rem;
  }
}

html body .contact {
  width: 100%;
  height: 80rem;
  margin-top: 18rem;
}

@media (max-width: 575px) {
  html body .contact {
    height: 86rem;
  }
}

html body .contact .contactInner {
  position: relative;
}

html body .contact .contactInner a {
  cursor: pointer;
  text-decoration: none;
}

html body .contact .contactInner a .contactUs {
  position: relative;
  width: 65rem;
  height: auto;
}

html body .contact .contactInner a .contactUs:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

html body .contact .contactInner a .contactUs:hover h1 {
  background: -webkit-linear-gradient(0deg, #8FD3F4, #A0F2BE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 575px) {
  html body .contact .contactInner a .contactUs {
    width: 41rem;
  }
}

html body .contact .contactInner a .contactUs img {
  width: 100%;
  height: auto;
}

html body .contact .contactInner a .contactUs h1 {
  position: absolute;
  color: white;
  letter-spacing: 4px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

html body .contact .contactInner .insta {
  position: absolute;
  top: 8rem;
  right: 20rem;
  width: 32rem;
  padding: 20rem 0;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  background: -webkit-gradient(linear, left top, right bottom, from(#8FD3F4), to(#A0F2BE));
  background: linear-gradient(to bottom right, #8FD3F4, #A0F2BE);
}

html body .contact .contactInner .insta:hover {
  -webkit-box-shadow: 0px 0px 30px 0px gainsboro;
          box-shadow: 0px 0px 30px 0px gainsboro;
}

@media (max-width: 575px) {
  html body .contact .contactInner .insta {
    top: 32rem;
    right: 0;
    width: 30rem;
    padding: 12rem 0;
  }
}

html body .contact .contactInner .insta .instaInner {
  color: white;
}

html body .contact .contactInner .insta .instaInner p {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-top: 3rem;
}

html body footer {
  width: 100%;
  height: auto;
  padding: 10rem;
  text-align: center;
  background-color: #1b365d;
}

@media (max-width: 575px) {
  html body footer {
    padding: 8rem 4rem;
  }
}

html body footer h1 {
  background: -webkit-linear-gradient(0deg, #8FD3F4, #A0F2BE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: system-ui;
  font-size: 6rem;
  margin-bottom: 3rem;
}

html body footer p {
  color: white;
}

html body .fadeIn {
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
  -webkit-transition: 3s;
  transition: 3s;
  opacity: 0;
}

html body .fadeIn.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}
/*# sourceMappingURL=sdgs.css.map */