.container {
  margin-top: 200px;
}
@media screen and (max-width: 576px) {
  .container {
    margin-top: 0;
  }
}

.hero {
  position: relative;
  border-radius: 20px 20px 0 0;
  padding-top: 195px;
  padding-bottom: 100px;
  overflow: hidden;
  background-color: #fff;
}
.hero__icon {
  width: 60px;
  margin: 0 auto 25px;
}
.hero__heading {
  text-align: center;
}
.hero__heading--ja {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.hero__heading--en {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (max-width: 576px) {
  .hero {
    border-radius: 0;
  }
}

.thoughts {
  padding-top: 70px;
  padding-bottom: 100px;
  background-color: #FFE49D;
}
.thoughts__heading {
  width: 224px;
  margin: 0 auto 75px;
}
.thoughts__list {
  margin-bottom: 45px;
}
.thoughts__item:not(:last-of-type) {
  margin-bottom: 65px;
}
.thoughts__head {
  position: relative;
  width: 342px;
  margin-right: auto;
  margin-bottom: 25px;
  margin-left: auto;
  padding-top: 57px;
  background-image: url(../images/index_thoughts_pattern.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.thoughts__head--01 .thoughts__image {
  width: 202px;
  margin: 28px auto 0;
}
.thoughts__head--02 .thoughts__image {
  width: 165px;
  margin: 11px auto 0;
}
.thoughts__head--03 .thoughts__image {
  width: 354px;
  margin: 11px auto 0;
}
.thoughts__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 74px;
}
.thoughts__title {
  text-align: center;
}
.thoughts__title span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: #fff;
  color: #F4654D;
  font-size: 30px;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}
.thoughts__sentence {
  padding: 0 33px;
  color: #F4654D;
  font-size: 16px;
  line-height: 1.9375;
  letter-spacing: 0.05em;
}

#light {
  transform-origin: center 55%;
  transform-box: fill-box;
  animation: light 2s ease-in-out infinite alternate;
}

@keyframes light {
  from {
    transform: scale(0.7);
  }
  to {
    transform: scale(1);
  }
}
#face {
  transform-origin: center center;
  transform-box: fill-box;
  animation: face 2s ease-in-out infinite alternate;
}

@keyframes face {
  from {
    transform: rotate(-10deg);
  }
  to {
    transform: rotate(5deg);
  }
}
#girlhand {
  transform-origin: 27px 14px;
  transform-box: fill-box;
  animation: girlhand 2s ease-in-out infinite alternate;
}

@keyframes girlhand {
  from {
    transform: rotate(-25deg);
  }
  to {
    transform: rotate(0);
  }
}
#boyhand {
  transform-origin: 0px 14px;
  transform-box: fill-box;
  animation: boyhand 2s ease-in-out infinite alternate;
}

@keyframes boyhand {
  from {
    transform: rotate(20deg);
  }
  to {
    transform: rotate(0);
  }
}/*# sourceMappingURL=thouhgts.css.map */