@charset "UTF-8";
/* =========================================================
 *
 * structure__mes
 * ====================================================== */
.structure__mes {
  background-color: #8ec6db;
  padding: 80px 0 184px;
  position: relative;
  text-align: center;
  font-size: 20px;
  line-height: 2;
  margin-bottom: -120px;
}

.structure__mes > * {
  color: #fff;
}

.structure__mes::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 200px 0;
  border-color: transparent #8ec6db transparent transparent;
  position: absolute;
  bottom: -200px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .structure__mes {
    padding: 60px 0 184px;
    text-align: left;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .structure__mes {
    padding: 40px 0;
    margin-bottom: 0;
  }

  .structure__mes > * {
    color: #fff;
  }

  .structure__mes br {
    display: none;
  }

  .structure__mes::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100vw 200px 0;
    border-color: transparent #8ec6db transparent transparent;
    position: absolute;
    bottom: -200px;
    z-index: -1;
  }
}

/* =========================================================
 * FUN COMPASSⓇ エンジンの仕組み
 * structure__cont
 * ====================================================== */

.structure__cont {
  background-color: #fff;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 88px 40px 32px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.structure__cont h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.5;
}

.structure__cont__link{
  width: 600px;
  text-align: center;
  height: 68px;
  border: 1px solid #8ec6db;
  border-radius: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 20px;
  transition: 0.3s ease;
  margin-top: 50px;
  color:#8ec6db !important;
  margin-bottom: 150px;
}


@media (hover: hover) and (pointer: fine) {
  .structure__cont__link:hover {
    background-color: #8ec6db;
      color: #fff !important;
    }
}

@media screen and (max-width: 960px) {
  .structure__cont {
    padding-top: 40px;
  }
   .structure__cont__link {
      max-width:600px;
      width: 90%;
      margin: 0 auto 20px;
      font-size: 18px;
      line-height: 1.3;
    }

    .structure__cont__link:nth-of-type(2){
      margin-bottom: 150px;
      margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
  .structure__cont {
    box-shadow: none;
    border-radius: 0px;
    padding: 0px;
    padding-bottom: 35px;
    overflow: scroll;
    margin: 0;
    margin-bottom: 10px;
    background-color: unset;
  }

  .structure__cont h2 {
    text-align: left;
    font-size: 6.4vw;
    margin-bottom: 20px;
  }

  .structure__cont > div:first-child {
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px;
    width: 1160px;
    margin: 0 20px;
    background-color: #fff;
    position: relative;
  }

.structure__cont>div:first-child::after {
      position: absolute;
      content: '';
      top: 0;
      left: 100%;
      height: 1px;
      width: 20px;
      background-color: transparent;
    }

    .structure__cont__link {
      max-width:90%;
      width: auto;
      margin: 0 auto 100px;
    }

}