.top__section {
  padding: 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../../images/top-circle.png");
  background-size: 110%;
  background-position-x: 102%;
  background-repeat: no-repeat;
  background-position-y: 150%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  .top__section {
    padding: 0 20px;
    background-image: url("../../images/SP-top-circle.png");
    background-size: 143%;
    background-position-x: center;
    background-position-y: -5%;
  }
}

.top__container--innner {
  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: calc( 100vh - 53px);
}

@media screen and (max-width: 768px) {
  .top__container--innner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top__container--right {
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top__container--right {
    width: 100%;
    margin-top: 76px;
  }
}

@media screen and (max-width: 768px) {
  .top__text--heading {
    margin-bottom: 20px;
  }
}

.top__container--left {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .top__container--left {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}

.top__image--eyecatch {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top__image--eyecatch {
    width: 60%;
  }
}

@media screen and (max-width: 400px) {
  .top__image--eyecatch {
    width: 100%;
  }
}

.message__article {
  margin-bottom: 40px;
}

.message__text--heading {
  color: #3B3B3B;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .message__text--heading {
    margin-bottom: 20px;
  }
}

.message__text--blue {
  color: #5CC1DF;
}

.message__text--content {
  color: #585858;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .message__text--content {
    width: unset;
  }
}

.service__section {
  background-color: #F6F6F7;
}

.text__color--green {
  color: #4DAE7C;
}

.service__text--description {
  color: #777777;
  width: 50%;
  margin: 0 auto 40px auto;
  font-weight: inherit;
}

@media screen and (max-width: 768px) {
  .service__text--description {
    width: 80%;
    margin: 0 auto 20px auto;
  }
}

.service__container--article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70%;
  margin: 0 auto 40px auto;
}

@media screen and (max-width: 768px) {
  .service__container--article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto 20px auto;
  }
}

.service__article--feature {
  background-color: white;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  width: calc( 100% / 3);
  margin: 0 10px;
  text-align: center;
  padding: 20px 10px;
}

@media screen and (max-width: 768px) {
  .service__article--feature {
    width: 100%;
    margin: 10px 0;
  }
}

.service__icon--feature {
  margin-bottom: 20px;
}

.service__heading--feature {
  margin-bottom: 10px;
}

.service__text--feature {
  color: #A7A7A7;
  position: relative;
  padding-top: 10px;
  width: 80%;
  margin: 0 auto;
}

.service__text--feature::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #E9CF86;
  position: absolute;
  top: 0;
  right: 0;
}

.service__text--attention {
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#67D99E), to(#5CC1DF));
  background: linear-gradient(to right, #67D99E, #5CC1DF);
  border-radius: 13px;
  padding: 15px 20px;
  width: 65%;
  margin: 0 auto 40px auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service__text--attention {
    padding: 13px 10px;
    width: 90%;
    margin: 0 auto 20px auto;
  }
}

.service__wrapper--detail {
  width: 60%;
  margin: 0 auto 30px auto;
  position: relative;
  padding-bottom: 20px;
}

.service__wrapper--detail ::after {
  content: '';
  width: 20%;
  height: 2px;
  background: black;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .service__wrapper--detail {
    width: 75%;
    margin: 0 auto 20px auto;
    padding-bottom: 15px;
  }
}

.service__wrapper--detail:last-child {
  margin: 0 auto;
}

.service__wrapper--detail:last-child ::after {
  display: none;
}

.section__feature {
  background: -webkit-gradient(linear, left top, right top, from(#67D99E), to(#5CC1DF));
  background: linear-gradient(to right, #67D99E, #5CC1DF);
  background-image: url("../../images/abstract-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}

.feature__container--article {
  width: 55%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .feature__container--article {
    width: 90%;
  }
}

.feature__article {
  margin-bottom: 20px;
}

.feature__item--number {
  font-size: 140px;
  opacity: 0.8;
  text-align: center;
  color: white;
  font-weight: bold;
  margin-bottom: -24px;
}

@media screen and (max-width: 768px) {
  .feature__item--number {
    font-size: 80px;
    margin-bottom: -12px;
  }
}

.feature__wrapper--content {
  background-color: white;
  border-radius: 23px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .feature__wrapper--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
  }
}

.feature__container--right {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .feature__container--right {
    width: 100%;
  }
}

.feature__text--heading {
  position: relative;
  padding-bottom: 10px;
  display: inline;
}

.feature__text--heading::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #E9CF86;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .feature__text--heading {
    display: block;
  }
}

.feature__text--content {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .feature__text--content {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.feature__container--left {
  width: 40%;
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  .feature__container--left {
    width: 100%;
    margin-left: unset;
  }
}

.feature__item--image {
  width: 100%;
}
/*# sourceMappingURL=top.css.map */