.effect {
  padding: 4rem 0 6rem;
  background: url(../images/bg-main.jpg) repeat;
}
.effect .inner {
  width: 90rem;
  position: relative;
  padding: 6rem 7rem;
  background: #1D1F46;
}
.effect .inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #B3F1EE;
}
.effect h2 {
  margin-bottom: 4rem;
  line-height: 1.2;
  font-size: 4rem;
  text-indent: 0.25em;
  color: #fff;
}
.effect h2 strong {
  display: block;
  font-size: 125%;
  text-indent: 0;
  color: #B3F1EE;
}
.effect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.effect-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}
.effect-list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
.effect-list li:nth-child(5) img {
  object-position: top;
}
.effect-list li span {
  font-weight: 600;
  font-size: 1.5rem;
  padding: 1rem 0;
}


@media screen and (max-width: 768px) {
  .effect {
    padding: 10rem 0;
    background: url(../images/bg-main.jpg) repeat;
  }
  .effect .inner {
    width: 100vw;
    position: relative;
    padding: 10rem 1rem;
    background: #1D1F46;
  }
  .effect .inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background: #B3F1EE;
  }
  .effect h2 {
    margin-bottom: 4rem;
    line-height: 1.2;
    font-size: 4rem;
    text-indent: 0.25em;
    color: #fff;
  }
  .effect h2 strong {
    display: block;
    font-size: 125%;
    text-indent: 0;
    color: #B3F1EE;
  }
  .effect-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .effect-list li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    background: #fff;
    text-align: center;
    width: 30%;
    min-width: 33vw;
  }
  .effect-list li img {
    width: 100%;
    height: 30rem;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
  }
  .effect-list li:nth-child(5) img {
    object-position: top;
  }
  .effect-list li span {
    font-weight: 600;
    font-size: 2rem;
    padding: 1rem 0;
  }


}