@charset "UTF-8";

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  background-color: #93AC6F;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  padding: 70px 0 160px;
  margin-bottom: 40px;
}
.mainvisual .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainvisual .text .catchphrase {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.mainvisual .text .catchphrase span {
  background-color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}
.mainvisual .text .description {
  font-weight: 500;
  line-height: 1.6;
}
.mainvisual .img {
  max-width: 560px;
}
.mainvisual .img img {
  border-radius: 20px; 
}

/*-------------------------------------------
Reason
-------------------------------------------*/
.reason {
  margin-bottom: 80px;
}
.reason .item {
  display: flex;
  justify-content: space-between;
}
.reason .item li {
  width: 30%;
  max-width: 250px;
  margin-right: 5%;
}
.reason .item li:last-child {
  margin-right: 0;
}
.reason .item li .img {
  margin-bottom: 20px;
}
.reason .item li .img img {
  border-radius: 50%;
}
.reason .item li .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

/*-------------------------------------------
Voice
-------------------------------------------*/
.voice {
  margin-bottom: 80px;
}
.voice .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.voice .item .img {
  max-width: 182px;
  margin-right: 40px;
}
.voice .item .img:nth-child(2) {
  margin-left: 40px;
  margin-right: 0;
}
.voice .item .img img {
  border: solid 1px #ddd;
  border-radius: 50%;
}
.voice .item .text {
  max-width: 660px;
  background-color: #fff;
  border: solid 1px #707070;
  border-radius: 8px;
  line-height: 2;
  padding: 20px;
  position: relative;
}
.voice .item .text::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-right: solid 1px #707070;
  border-bottom: solid 1px #707070;
  position: absolute;
  top: 45%;
}
.voice .item .text:nth-child(1)::after {
  transform: rotate(-45deg);
  right: -10px;
}
.voice .item .text:nth-child(2)::after {
  transform: rotate(135deg);
  left: -10px;
}
.voice .item .text .user {
  text-align: right;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  .mainvisual {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    padding: 50px 0 90px;
  }
  .mainvisual .inner {
    flex-direction: column;
  }
  .mainvisual .text .catchphrase {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .mainvisual .text .description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /*-------------------------------------------
  Reason
  -------------------------------------------*/
  .reason {
    margin-bottom: 40px;
  }
  .reason .item {
    flex-direction: column;
    align-items: center;
  }
  .reason .item li {
    width: 100%;
    margin: 0 0 40px;
  }
  .reason .item li:last-child {
    margin-bottom: 0;
  }

  /*-------------------------------------------
  Voice
  -------------------------------------------*/
  .voice {
    margin-bottom: 40px;
  }
  .voice .item .img {
    width: 100px;
    flex-shrink: 0;
    margin-right: 20px;
  }
  .voice .item .img:nth-child(2) {
    margin-left: 20px;
  }
  .voice .item .text {
    font-size: 14px;
    padding: 10px;
  }
}