/* CSS Document */
body {
  background-color: #FEFFE2;
}
.nodisplay{
  display: none;
}
/*--- section-top ---*/
.section-top {
  padding-top: 50px;
  margin-bottom: 30px;
}
.section-top h1 {
  font-size: 36px;
  font-weight: bold;
  color: #2BA464;
  margin-bottom: 10px;
}
/*--- section-top(PC) ---*/
@media(min-width: 1025px) {
  .section-top{
    margin-bottom: 40px;
  }
  .section-top h1 {
    font-size: 60px;
  }
}
/*--- section-overview  ---*/
.section-overview {
  padding: 30px 40px;
  text-align: left;
  margin: 0 20px;
  margin-bottom: 40px;
  background-color: #FFFFFF;
  border-radius: 30px;
}
.section-overview p {
  margin-bottom: 20px;
}
.section-overview img {
  width: 100%;
  margin: 0 auto;
}
/*--- section-overview(PC)  ---*/
@media(min-width: 1025px) {
  .section-overview {
    width: 1024px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    border-radius: 50px;
    margin-bottom: 80px;
  }
  .section-overview p {
    padding: 20px 60px 20px 20px;
    font-size: 20px;
    line-height: 180%;
  }
  .section-overview img {
    width: 40%;
  }
}
/*--- section-functions  ---*/
.section-functions h2 {
  font-size: 24px;
  color: #2ba464;
  margin-bottom: 10px;
}
.section-functions__function {
  padding: 20px 40px;
  margin: 0 auto;
  text-align: left;
}
.section-functions__function-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.section-functions__function-explanation-bg { /* 説明文の白背景 */
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translateX(-100%);
}
@keyframes explanation-slide-mobile { /* 説明文の白背景のスライドアニメーション */
  0% {
    transform: translate(-100%, 0)
  }
  100% {
    transform: translate(0, 0)
  }
}
.is-animated { /* jsでis-animatedクラスが付与された際にアニメーションを動作 */
  animation: explanation-slide-mobile 1s 0.7s forwards;
}
.section-functions__function img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.section-functions__function-explanation {
  padding: 15px;
  position: relative;
  z-index: 1;
}
.section-functions__function-explanation b{
  display: inline-block;
  font-size: 12px;
  margin-bottom: 3px;
}
.section-functions__function-explanation h3 {
  font-size: 20px;
  color: #825121;
  margin-bottom: 20px;
}
.section-functions__function-explanation p {
  margin-bottom: 20px;
}
.migiyose {
  text-align: right;
}
.section-functions__function-moreinfo {
  display: inline-block;
  text-align: left;
  padding: 5px 20px;
  background-color: #2BA464;
  color: white;
  text-decoration: none;
  margin-left: auto;
  width: 150px;
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
}
/*--- section-functions(PC)  ---*/
@media(min-width: 1025px) {
  .section-functions {
    width: 1024px;
    margin: 0 auto;
  }
  .section-functions h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .section-functions__function-container {
    display: flex;
    justify-content: space-between;
  }
  .section-functions__function img {
    width: 30%;
  }
  .section-functions__function-explanation {
    width: 70%;
    padding: 20px 30px;
  }
  .section-functions__function-explanation b{
  font-size: 14px;
  margin-bottom: 13px;
}
  .section-functions__function-explanation h3{
    font-size: 30px;
  }
  .section-functions__function-explanation p{
    font-size: 20px;
    line-height: 180%;
  }
  .is-animated { /* jsでis-animatedクラスが付与された際にアニメーションを動作 */
    animation: explanation-slide-mobile 1s 0.2s forwards;
  }
  .section-functions__function-moreinfo{
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}
/*--- トップに戻るボタン ---*/
.back-to-top-button{
  display: inline-block;
  background-color: #2ba464;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media(min-width: 1025px){
  .back-to-top-button{
    font-size: 20px;
    padding: 20px;
  }
}