.wrapper {
  position: relative;
  width: 1200px;
  margin: 0px auto;
}

.infoArea {
  padding: 31px 0 20px;
  background-color: #fff;
}
.infoArea img {
  max-width: 100%;
}
.infoArea .title {
  height: 70px;
  margin-bottom: 35px;
  background: url(/images/title.png?v2) no-repeat center;
}
.infoArea .data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1;
}
.infoArea .data li .circle {
  position: relative;
  width: 174px;
  height: 202px;
  background: url(/images/percentage-box.png) no-repeat 36%;
}
.infoArea .data li .circle:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 173px;
  height: 173px;
  background: url(/images/percentage-value.png) no-repeat center;
}
.infoArea .data li .info {
  position: relative;
  z-index: 1;
  padding-top: 45px;
  text-align: center;
}
.infoArea .data li .info .amount {
  display: block;
  color: #009af9;
  font-size: 48px;
  line-height: 75px;
}
.infoArea .data li .info .unit {
  color: #009af9;
  font-size: 16px;
}
.infoArea .data li p {
  margin: 0 0 25px;
  color: #323232;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.infoArea .data li .shadow {
  position: absolute;
  top: 5px;
  width: 86.5px;
  height: 173px;
  overflow: hidden;
}
.infoArea .data li .shadow > div {
  position: absolute;
  width: 86.5px;
  height: 173px;
  left: 0;
  top: 0;
  overflow: hidden;
}
.infoArea .data li .shadow > div > div {
  position: absolute;
  top: 0;
  width: 173px;
  height: 173px;
  border-radius: 50%;
  border: 15px solid rgba(247, 247, 248, 0.8);
}
.infoArea .data li .shadow.shadowLeft {
  left: 0;
}
.infoArea .data li .shadow.shadowLeft > div {
  transform-origin: right;
}
.infoArea .data li .shadow.shadowLeft > div > div {
  left: 0;
}
.infoArea .data li.rotate218 .shadow.shadowLeft > div,
.infoArea .data li.rotate322 .shadow.shadowLeft > div,
.infoArea .data li.rotate180 .shadow.shadowLeft > div,
.infoArea .data li.rotate288 .shadow.shadowLeft > div {
  transform: rotate(181deg);
  animation: rotate181 0.7s linear infinite;
  animation-iteration-count: 1;
}
.infoArea .data li .shadow.shadowRight {
  right: 0;
}
.infoArea .data li .shadow.shadowRight > div {
  transform-origin: left;
}
.infoArea .data li .shadow.shadowRight > div > div {
  right: 0;
}
.infoArea .data li.rotate180 .shadow.shadowRight > div {
  transform: rotate(1deg);
  animation: rotate1 0.3s linear 0.7s infinite both;
  animation-iteration-count: 1;
}
.infoArea .data li.rotate218 .shadow.shadowRight > div {
  transform: rotate(38deg);
  animation: rotate38 0.3s linear 0.7s infinite both;
  animation-iteration-count: 1;
}
.infoArea .data li.rotate322 .shadow.shadowRight > div {
  transform: rotate(142deg);
  animation: rotate142 0.3s linear 0.7s infinite both;
  animation-iteration-count: 1;
}
.infoArea .data li.rotate288 .shadow.shadowRight > div {
  transform: rotate(108deg);
  animation: rotate108 0.3s linear 0.7s infinite both;
  animation-iteration-count: 1;
}
.infoArea ul.benefit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.infoArea ul.benefit li {
  width: 580px;
  font-size: 0;
  margin-bottom: 20px;
}
.infoArea ul.benefit li:before {
  content: "";
  display: inline-block;
  width: 113px;
  height: 113px;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center;
}
.infoArea ul.benefit li p {
  display: inline-block;
  width: 414px;
  height: 101px;
  vertical-align: top;
  margin: 0;
  padding: 10px 22px 0 29px;
  color: #343e46;
  font-size: 12px;
  line-height: 2;
  border: 1px solid #00c0ff;
  border-left: none;
  border-radius: 0 10px 10px 0;
}
.infoArea ul.benefit li p span {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}
.infoArea ul.benefit li.pro:before {
  background-image: url(/images/icon_pro.png);
}
.infoArea ul.benefit li.security:before {
  background-image: url(/images/icon_security.png);
}
.infoArea ul.benefit li.conv:before {
  background-image: url(/images/icon_conv.png);
}
.infoArea ul.benefit li.fast:before {
  background-image: url(/images/icon_fast.png);
}

@keyframes rotate38 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(38deg);
  }
}
@keyframes rotate142 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(142deg);
  }
}
@keyframes rotate181 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(181deg);
  }
}
@keyframes rotate1 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1deg);
  }
}
@keyframes rotate108 {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(108deg);
  }
}
